/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SVX_DLGCTRL_HXX #define INCLUDED_SVX_DLGCTRL_HXX #include #include #include #include #include #include #include class XOBitmap; class XOutdevItemPool; namespace com { namespace sun { namespace star { namespace awt { struct Point; } } } } /************************************************************************* |* Derived from SfxTabPage for being able to get notified through the |* virtual method from the control. \************************************************************************/ class SAL_WARN_UNUSED SvxTabPage : public SfxTabPage { public: SvxTabPage(vcl::Window *pParent, const OString& rID, const OUString& rUIXMLDescription, const SfxItemSet &rAttrSet) : SfxTabPage(pParent, rID, rUIXMLDescription, &rAttrSet) { } virtual void PointChanged( vcl::Window* pWindow, RECT_POINT eRP ) = 0; }; /************************************************************************* |* Control for display and selection of the corner and center points of |* an object \************************************************************************/ enum class CTL_STATE { NONE = 0, NOHORZ = 1, // no horizontal input information is used NOVERT = 2, // no vertical input information is used }; namespace o3tl { template<> struct typed_flags : is_typed_flags {}; } class SvxRectCtlAccessibleContext; class SvxPixelCtlAccessible; class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxRectCtl : public Control { private: SVX_DLLPRIVATE void InitSettings(vcl::RenderContext& rRenderContext); SVX_DLLPRIVATE void InitRectBitmap(); SVX_DLLPRIVATE Bitmap& GetRectBitmap(); SVX_DLLPRIVATE void Resize_Impl(); protected: SvxRectCtlAccessibleContext* pAccContext; sal_uInt16 nBorderWidth; sal_uInt16 nRadius; Size aSize; Point aPtLT, aPtMT, aPtRT; Point aPtLM, aPtMM, aPtRM; Point aPtLB, aPtMB, aPtRB; Point aPtNew; RECT_POINT eRP, eDefRP; CTL_STYLE eCS; Bitmap* pBitmap; CTL_STATE m_nState; bool mbCompleteDisable : 1; bool mbUpdateForeground : 1; bool mbUpdateBackground : 1; void MarkToResetSettings(bool bUpdateForeground, bool bUpdateBackground); RECT_POINT GetRPFromPoint( Point, bool bRTL = false ) const; Point GetPointFromRP( RECT_POINT ) const; void SetFocusRect( const Rectangle* pRect = NULL ); // pRect == NULL -> calculate rectangle in method Point SetActualRPWithoutInvalidate( RECT_POINT eNewRP ); // returns the last point virtual void GetFocus() SAL_OVERRIDE; virtual void LoseFocus() SAL_OVERRIDE; Point GetApproxLogPtFromPixPt( const Point& rRoughPixelPoint ) const; public: SvxRectCtl( vcl::Window* pParent, RECT_POINT eRpt = RP_MM, sal_uInt16 nBorder = 200, sal_uInt16 nCircle = 80, CTL_STYLE eStyle = CS_RECT ); void SetControlSettings(RECT_POINT eRpt = RP_MM, sal_uInt16 nBorder = 200, sal_uInt16 nCircle = 80, CTL_STYLE eStyle = CS_RECT); virtual ~SvxRectCtl(); virtual void dispose() SAL_OVERRIDE; virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE; virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; virtual void KeyInput( const KeyEvent& rKeyEvt ) SAL_OVERRIDE; virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE; virtual Size GetOptimalSize() const SAL_OVERRIDE; void Reset(); RECT_POINT GetActualRP() const { return eRP;} void SetActualRP( RECT_POINT eNewRP ); void SetState( CTL_STATE nState ); sal_uInt8 GetNumOfChildren() const; // returns number of usable radio buttons Rectangle CalculateFocusRectangle() const; Rectangle CalculateFocusRectangle( RECT_POINT eRectPoint ) const; virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE; RECT_POINT GetApproxRPFromPixPt( const ::com::sun::star::awt::Point& rPixelPoint ) const; bool IsCompletelyDisabled() const { return mbCompleteDisable; } void DoCompletelyDisable(bool bNew); void SetCS(CTL_STYLE eNew); }; /************************************************************************* |* Preview control for the display of bitmaps \************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxBitmapCtl { protected: Size aSize; sal_uInt16 nLines; Color aPixelColor, aBackgroundColor; const sal_uInt16* pBmpArray; public: SvxBitmapCtl( vcl::Window* pParent, const Size& rSize ); ~SvxBitmapCtl(); BitmapEx GetBitmapEx(); void SetBmpArray( const sal_uInt16* pPixel ) { pBmpArray = pPixel; } void SetLines( sal_uInt16 nLns ) { nLines = nLns; } void SetPixelColor( Color aColor ) { aPixelColor = aColor; } void SetBackgroundColor( Color aColor ) { aBackgroundColor = aColor; } }; /************************************************************************* |* Control for editing bitmaps \************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxPixelCtl : public Control { private: using OutputDevice::SetLineColor; protected: sal_uInt16 nLines, nSquares; Color aPixelColor; Color aBackgroundColor; Color aLineColor; Size aRectSize; sal_uInt16* pPixel; bool bPaintable; //Add member identifying position Point aFocusPosition; Rectangle implCalFocusRect( const Point& aPosition ); void ChangePixel( sal_uInt16 nPixel ); public: SvxPixelCtl( vcl::Window* pParent, sal_uInt16 nNumber = 8 ); virtual ~SvxPixelCtl(); virtual void dispose() SAL_OVERRIDE; virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE; virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE; virtual Size GetOptimalSize() const SAL_OVERRIDE; void SetXBitmap( const BitmapEx& rBitmapEx ); void SetPixelColor( const Color& rCol ) { aPixelColor = rCol; } void SetBackgroundColor( const Color& rCol ) { aBackgroundColor = rCol; } void SetLineColor( const Color& rCol ) { aLineColor = rCol; } sal_uInt16 GetLineCount() const { return nLines; } sal_uInt16 GetBitmapPixel( const sal_uInt16 nPixelNumber ); sal_uInt16* GetBitmapPixelPtr() { return pPixel; } void SetPaintable( bool bTmp ) { bPaintable = bTmp; } void Reset(); SvxPixelCtlAccessible* m_pAccess; ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > m_xAccess; virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE; long GetSquares() const { return nSquares ; } long GetWidth() const { return aRectSize.getWidth() ; } long GetHeight() const { return aRectSize.getHeight() ; } //Device Pixel . long ShowPosition( const Point &pt); long PointToIndex(const Point &pt) const; Point IndexToPoint(long nIndex) const ; long GetFoucsPosIndex() const ; //Keyboard function for key input and focus handling function virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; virtual void GetFocus() SAL_OVERRIDE; virtual void LoseFocus() SAL_OVERRIDE; }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED ColorLB : public ColorListBox { public: ColorLB( vcl::Window* pParent, ResId Id ) : ColorListBox( pParent, Id ) {} ColorLB( vcl::Window* pParent, WinBits aWB ) : ColorListBox( pParent, aWB ) {} void Fill( const XColorListRef &pTab ); void Append( const XColorEntry& rEntry ); void Modify( const XColorEntry& rEntry, sal_Int32 nPos ); }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED HatchingLB : public ListBox { XHatchListRef mpList; public: explicit HatchingLB(vcl::Window* pParent, WinBits aWB); void Fill( const XHatchListRef &pList ); void Append( const XHatchEntry& rEntry, const Bitmap& rBitmap ); void Modify( const XHatchEntry& rEntry, sal_Int32 nPos, const Bitmap& rBitmap ); }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED GradientLB : public ListBox { XGradientListRef mpList; public: explicit GradientLB(vcl::Window* pParent, WinBits aWB); void Fill( const XGradientListRef &pList ); void Append( const XGradientEntry& rEntry, const Bitmap& rBitmap ); void Modify( const XGradientEntry& rEntry, sal_Int32 nPos, const Bitmap& rBitmap ); void SelectEntryByList( const XGradientListRef &pList, const OUString& rStr, const XGradient& rXGradient, sal_uInt16 nDist = 0 ); }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED BitmapLB : public ListBox { public: explicit BitmapLB(vcl::Window* pParent, WinBits aWB); void Fill(const XBitmapListRef &pList); void Append(const Size& rSize, const XBitmapEntry& rEntry); void Modify(const Size& rSize, const XBitmapEntry& rEntry, sal_Int32 nPos); private: BitmapEx maBitmapEx; XBitmapListRef mpList; }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED FillAttrLB : public ColorListBox { private: BitmapEx maBitmapEx; public: FillAttrLB( vcl::Window* pParent, WinBits aWB ); void Fill( const XHatchListRef &pList ); void Fill( const XGradientListRef &pList ); void Fill( const XBitmapListRef &pList ); }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED FillTypeLB : public ListBox { public: FillTypeLB( vcl::Window* pParent, ResId Id ) : ListBox( pParent, Id ) {} FillTypeLB( vcl::Window* pParent, WinBits aWB ) : ListBox( pParent, aWB ) {} void Fill(); }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED LineLB : public ListBox { private: /// bitfield /// defines if standard fields (none, solid) are added, default is true bool mbAddStandardFields : 1; public: LineLB(vcl::Window* pParent, WinBits aWB); void Fill(const XDashListRef &pList); bool getAddStandardFields() const { return mbAddStandardFields; } void setAddStandardFields(bool bNew); void Append(const XDashEntry& rEntry, const Bitmap& rBitmap ); void Modify(const XDashEntry& rEntry, sal_Int32 nPos, const Bitmap& rBitmap ); }; /************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED LineEndLB : public ListBox { public: LineEndLB( vcl::Window* pParent, WinBits aWB ); void Fill( const XLineEndListRef &pList, bool bStart = true ); void Append( const XLineEndEntry& rEntry, const Bitmap& rBitmap, bool bStart = true ); void Modify( const XLineEndEntry& rEntry, sal_Int32 nPos, const Bitmap& rBitmap, bool bStart = true ); }; class SdrObject; class SdrPathObj; class SdrModel; class SAL_WARN_UNUSED SvxPreviewBase : public Control { private: SdrModel* mpModel; VclPtr mpBufferDevice; protected: void InitSettings(bool bForeground, bool bBackground); // prepare buffered paint void LocalPrePaint(vcl::RenderContext& rRenderContext); // end and output buffered paint void LocalPostPaint(vcl::RenderContext& rRenderContext); public: SvxPreviewBase(vcl::Window* pParent); virtual ~SvxPreviewBase(); virtual void dispose() SAL_OVERRIDE; // change support virtual void StateChanged(StateChangedType nStateChange) SAL_OVERRIDE; virtual void DataChanged(const DataChangedEvent& rDCEvt) SAL_OVERRIDE; // dada read access SdrModel& getModel() const { return *mpModel; } OutputDevice& getBufferDevice() const { return *mpBufferDevice; } }; /************************************************************************* |* |* SvxLinePreview |* \************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxXLinePreview : public SvxPreviewBase { private: SdrPathObj* mpLineObjA; SdrPathObj* mpLineObjB; SdrPathObj* mpLineObjC; Graphic* mpGraphic; bool mbWithSymbol; Size maSymbolSize; public: SvxXLinePreview( vcl::Window* pParent ); virtual ~SvxXLinePreview(); virtual void dispose() SAL_OVERRIDE; void SetLineAttributes(const SfxItemSet& rItemSet); void ShowSymbol( bool b ) { mbWithSymbol = b; }; void SetSymbol( Graphic* p, const Size& s ); void ResizeSymbol( const Size& s ); virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE; virtual Size GetOptimalSize() const SAL_OVERRIDE; }; /************************************************************************* |* |* SvxXRectPreview |* \************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxXRectPreview : public SvxPreviewBase { private: SdrObject* mpRectangleObject; public: SvxXRectPreview(vcl::Window* pParent); virtual ~SvxXRectPreview(); virtual void dispose() SAL_OVERRIDE; void SetAttributes(const SfxItemSet& rItemSet); virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE; }; /************************************************************************* |* |* SvxXShadowPreview |* \************************************************************************/ class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxXShadowPreview : public SvxPreviewBase { private: Point maShadowOffset; SdrObject* mpRectangleObject; SdrObject* mpRectangleShadow; public: SvxXShadowPreview(vcl::Window *pParent); virtual ~SvxXShadowPreview(); virtual void dispose() SAL_OVERRIDE; void SetRectangleAttributes(const SfxItemSet& rItemSet); void SetShadowAttributes(const SfxItemSet& rItemSet); void SetShadowPosition(const Point& rPos); virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE; }; #endif // INCLUDED_SVX_DLGCTRL_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ alue='libreoffice-7-1-4'>libreoffice-7-1-4 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/hu
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/hu
parent965f3562a25b75fc3401d3b44ed96e2e5093ed72 (diff)
update translations for LibreOffice 4.0 beta1
Change-Id: I35e0bf7dfef1541f76508edb962e89bc5d78e339
Diffstat (limited to 'source/hu')
-rw-r--r--source/hu/accessibility/source/helper.po4
-rw-r--r--source/hu/android/sdremote/res/values.po414
-rw-r--r--source/hu/avmedia/source/framework.po15
-rw-r--r--source/hu/avmedia/source/viewer.po7
-rw-r--r--source/hu/basctl/source/basicide.po164
-rw-r--r--source/hu/basctl/source/dlged.po23
-rw-r--r--source/hu/basctl/uiconfig/basicide/ui.po7
-rw-r--r--source/hu/basic/source/classes.po138
-rw-r--r--source/hu/basic/source/sbx.po9
-rw-r--r--source/hu/chart2/source/controller/dialogs.po415
-rw-r--r--source/hu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/hu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/hu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/hu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/hu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po7
-rw-r--r--source/hu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/hu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/connectivity/source/resource.po136
-rw-r--r--source/hu/cui/source/customize.po174
-rw-r--r--source/hu/cui/source/dialogs.po452
-rw-r--r--source/hu/cui/source/options.po673
-rw-r--r--source/hu/cui/source/tabpages.po985
-rw-r--r--source/hu/cui/uiconfig/ui.po188
-rw-r--r--source/hu/dbaccess/source/core/resource.po70
-rw-r--r--source/hu/dbaccess/source/ext/macromigration.po46
-rw-r--r--source/hu/dbaccess/source/sdbtools/resource.po9
-rw-r--r--source/hu/dbaccess/source/ui/app.po65
-rw-r--r--source/hu/dbaccess/source/ui/browser.po39
-rw-r--r--source/hu/dbaccess/source/ui/control.po21
-rw-r--r--source/hu/dbaccess/source/ui/dlg.po369
-rw-r--r--source/hu/dbaccess/source/ui/inc.po13
-rw-r--r--source/hu/dbaccess/source/ui/misc.po48
-rw-r--r--source/hu/dbaccess/source/ui/querydesign.po75
-rw-r--r--source/hu/dbaccess/source/ui/relationdesign.po10
-rw-r--r--source/hu/dbaccess/source/ui/tabledesign.po74
-rw-r--r--source/hu/dbaccess/source/ui/uno.po15
-rw-r--r--source/hu/desktop/source/app.po31
-rw-r--r--source/hu/desktop/source/deployment/gui.po92
-rw-r--r--source/hu/desktop/source/deployment/manager.po8
-rw-r--r--source/hu/desktop/source/deployment/misc.po6
-rw-r--r--source/hu/desktop/source/deployment/registry.po8
-rw-r--r--source/hu/desktop/source/deployment/registry/component.po8
-rw-r--r--source/hu/desktop/source/deployment/registry/configuration.po4
-rw-r--r--source/hu/desktop/source/deployment/registry/help.po5
-rw-r--r--source/hu/desktop/source/deployment/registry/package.po3
-rw-r--r--source/hu/desktop/source/deployment/registry/script.po6
-rw-r--r--source/hu/desktop/source/deployment/registry/sfwk.po3
-rw-r--r--source/hu/desktop/source/deployment/unopkg.po12
-rw-r--r--source/hu/desktop/uiconfig/ui.po73
-rw-r--r--source/hu/dictionaries/af_ZA.po3
-rw-r--r--source/hu/dictionaries/an_ES.po3
-rw-r--r--source/hu/dictionaries/ar.po3
-rw-r--r--source/hu/dictionaries/be_BY.po3
-rw-r--r--source/hu/dictionaries/bg_BG.po3
-rw-r--r--source/hu/dictionaries/bn_BD.po3
-rw-r--r--source/hu/dictionaries/br_FR.po3
-rw-r--r--source/hu/dictionaries/ca.po3
-rw-r--r--source/hu/dictionaries/cs_CZ.po3
-rw-r--r--source/hu/dictionaries/da_DK.po3
-rw-r--r--source/hu/dictionaries/de.po3
-rw-r--r--source/hu/dictionaries/el_GR.po3
-rw-r--r--source/hu/dictionaries/en.po3
-rw-r--r--source/hu/dictionaries/en/dialog.po39
-rw-r--r--source/hu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/hu/dictionaries/es.po3
-rw-r--r--source/hu/dictionaries/et_EE.po3
-rw-r--r--source/hu/dictionaries/fr_FR.po3
-rw-r--r--source/hu/dictionaries/gd_GB.po3
-rw-r--r--source/hu/dictionaries/gl.po3
-rw-r--r--source/hu/dictionaries/gu_IN.po3
-rw-r--r--source/hu/dictionaries/he_IL.po3
-rw-r--r--source/hu/dictionaries/hi_IN.po3
-rw-r--r--source/hu/dictionaries/hr_HR.po3
-rw-r--r--source/hu/dictionaries/hu_HU.po3
-rw-r--r--source/hu/dictionaries/hu_HU/dialog.po34
-rw-r--r--source/hu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/hu/dictionaries/it_IT.po3
-rw-r--r--source/hu/dictionaries/ku_TR.po3
-rw-r--r--source/hu/dictionaries/lt_LT.po3
-rw-r--r--source/hu/dictionaries/lv_LV.po3
-rw-r--r--source/hu/dictionaries/ne_NP.po3
-rw-r--r--source/hu/dictionaries/nl_NL.po3
-rw-r--r--source/hu/dictionaries/no.po3
-rw-r--r--source/hu/dictionaries/oc_FR.po3
-rw-r--r--source/hu/dictionaries/pl_PL.po3
-rw-r--r--source/hu/dictionaries/pt_BR.po7
-rw-r--r--source/hu/dictionaries/pt_BR/dialog.po311
-rw-r--r--source/hu/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po33
-rw-r--r--source/hu/dictionaries/pt_PT.po3
-rw-r--r--source/hu/dictionaries/ro.po3
-rw-r--r--source/hu/dictionaries/ru_RU.po3
-rw-r--r--source/hu/dictionaries/ru_RU/dialog.po16
-rw-r--r--source/hu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/hu/dictionaries/si_LK.po3
-rw-r--r--source/hu/dictionaries/sk_SK.po3
-rw-r--r--source/hu/dictionaries/sl_SI.po3
-rw-r--r--source/hu/dictionaries/sr.po3
-rw-r--r--source/hu/dictionaries/sv_SE.po3
-rw-r--r--source/hu/dictionaries/sw_TZ.po3
-rw-r--r--source/hu/dictionaries/te_IN.po3
-rw-r--r--source/hu/dictionaries/th_TH.po3
-rw-r--r--source/hu/dictionaries/uk_UA.po3
-rw-r--r--source/hu/dictionaries/vi.po3
-rw-r--r--source/hu/dictionaries/zu_ZA.po3
-rw-r--r--source/hu/editeng/source/accessibility.po4
-rw-r--r--source/hu/editeng/source/editeng.po18
-rw-r--r--source/hu/editeng/source/items.po238
-rw-r--r--source/hu/editeng/source/misc.po8
-rw-r--r--source/hu/editeng/source/outliner.po8
-rw-r--r--source/hu/extensions/source/abpilot.po42
-rw-r--r--source/hu/extensions/source/bibliography.po76
-rw-r--r--source/hu/extensions/source/dbpilots.po58
-rw-r--r--source/hu/extensions/source/propctrlr.po386
-rw-r--r--source/hu/extensions/source/scanner.po27
-rw-r--r--source/hu/extensions/source/update/check.po48
-rw-r--r--source/hu/extensions/source/update/check/org/openoffice/Office.po3
-rw-r--r--source/hu/filter/source/config/fragments/filters.po74
-rw-r--r--source/hu/filter/source/config/fragments/internalgraphicfilters.po46
-rw-r--r--source/hu/filter/source/config/fragments/types.po25
-rw-r--r--source/hu/filter/source/flash.po4
-rw-r--r--source/hu/filter/source/graphicfilter/eps.po3
-rw-r--r--source/hu/filter/source/pdf.po127
-rw-r--r--source/hu/filter/source/t602.po13
-rw-r--r--source/hu/filter/source/xsltdialog.po326
-rw-r--r--source/hu/filter/uiconfig/ui.po121
-rw-r--r--source/hu/forms/source/resource.po62
-rw-r--r--source/hu/formula/source/core/resource.po303
-rw-r--r--source/hu/formula/source/ui/dlg.po40
-rw-r--r--source/hu/fpicker/source/office.po48
-rw-r--r--source/hu/framework/source/classes.po40
-rw-r--r--source/hu/framework/source/services.po8
-rw-r--r--source/hu/helpcontent2/source/auxiliary.po831
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/guide.po87
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po37248
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/01.po69
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/02.po204
-rw-r--r--source/hu/helpcontent2/source/text/scalc.po186
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po201
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po49816
-rw-r--r--source/hu/helpcontent2/source/text/scalc/02.po125
-rw-r--r--source/hu/helpcontent2/source/text/scalc/04.po189
-rw-r--r--source/hu/helpcontent2/source/text/scalc/05.po126
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po1424
-rw-r--r--source/hu/helpcontent2/source/text/schart.po98
-rw-r--r--source/hu/helpcontent2/source/text/schart/00.po64
-rw-r--r--source/hu/helpcontent2/source/text/schart/01.po935
-rw-r--r--source/hu/helpcontent2/source/text/schart/02.po27
-rw-r--r--source/hu/helpcontent2/source/text/schart/04.po34
-rw-r--r--source/hu/helpcontent2/source/text/sdraw.po133
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/00.po4
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/01.po5
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/04.po105
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/guide.po281
-rw-r--r--source/hu/helpcontent2/source/text/shared.po1436
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po1610
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po5555
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po16366
-rw-r--r--source/hu/helpcontent2/source/text/shared/04.po314
-rw-r--r--source/hu/helpcontent2/source/text/shared/05.po148
-rw-r--r--source/hu/helpcontent2/source/text/shared/07.po9
-rw-r--r--source/hu/helpcontent2/source/text/shared/autokorr.po50
-rw-r--r--source/hu/helpcontent2/source/text/shared/autopi.po1164
-rw-r--r--source/hu/helpcontent2/source/text/shared/explorer/database.po1924
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po2559
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po10356
-rw-r--r--source/hu/helpcontent2/source/text/simpress.po504
-rw-r--r--source/hu/helpcontent2/source/text/simpress/00.po170
-rw-r--r--source/hu/helpcontent2/source/text/simpress/01.po1093
-rw-r--r--source/hu/helpcontent2/source/text/simpress/02.po687
-rw-r--r--source/hu/helpcontent2/source/text/simpress/04.po203
-rw-r--r--source/hu/helpcontent2/source/text/simpress/guide.po653
-rw-r--r--source/hu/helpcontent2/source/text/smath.po70
-rw-r--r--source/hu/helpcontent2/source/text/smath/00.po85
-rw-r--r--source/hu/helpcontent2/source/text/smath/01.po1551
-rw-r--r--source/hu/helpcontent2/source/text/smath/02.po8
-rw-r--r--source/hu/helpcontent2/source/text/smath/04.po28
-rw-r--r--source/hu/helpcontent2/source/text/smath/guide.po106
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po2694
-rw-r--r--source/hu/helpcontent2/source/text/swriter/00.po304
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po3302
-rw-r--r--source/hu/helpcontent2/source/text/swriter/02.po3695
-rw-r--r--source/hu/helpcontent2/source/text/swriter/04.po260
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po12302
-rw-r--r--source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po553
-rw-r--r--source/hu/librelogo/source.po35
-rw-r--r--source/hu/librelogo/source/help/en-US.po2780
-rw-r--r--source/hu/librelogo/source/pythonpath.po141
-rw-r--r--source/hu/librelogo/source/registry/data/org/openoffice/Office.po118
-rw-r--r--source/hu/librelogo/source/registry/data/org/openoffice/Office/UI.po39
-rw-r--r--source/hu/mysqlc/source.po4
-rw-r--r--source/hu/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/hu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po71
-rw-r--r--source/hu/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po4
-rw-r--r--source/hu/nlpsolver/src/locale.po43
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office.po1932
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po7527
-rw-r--r--source/hu/padmin/source.po150
-rw-r--r--source/hu/readlicense_oo/docs.po125
-rw-r--r--source/hu/reportbuilder/java/com/sun/star/report/function/metadata.po8
-rw-r--r--source/hu/reportbuilder/registry/data/org/openoffice/Office.po14
-rw-r--r--source/hu/reportbuilder/registry/data/org/openoffice/Office/UI.po68
-rw-r--r--source/hu/reportbuilder/registry/data/org/openoffice/TypeDetection.po6
-rw-r--r--source/hu/reportbuilder/util.po4
-rw-r--r--source/hu/reportdesign/source/core/resource.po18
-rw-r--r--source/hu/reportdesign/source/ui/dlg.po123
-rw-r--r--source/hu/reportdesign/source/ui/inspection.po84
-rw-r--r--source/hu/reportdesign/source/ui/report.po93
-rw-r--r--source/hu/sc/source/core/src.po13
-rw-r--r--source/hu/sc/source/ui/cctrl.po8
-rw-r--r--source/hu/sc/source/ui/dbgui.po319
-rw-r--r--source/hu/sc/source/ui/docshell.po6
-rw-r--r--source/hu/sc/source/ui/drawfunc.po45
-rw-r--r--source/hu/sc/source/ui/formdlg.po18
-rw-r--r--source/hu/sc/source/ui/miscdlgs.po109
-rw-r--r--source/hu/sc/source/ui/navipi.po40
-rw-r--r--source/hu/sc/source/ui/optdlg.po11
-rw-r--r--source/hu/sc/source/ui/pagedlg.po76
-rw-r--r--source/hu/sc/source/ui/src.po3203
-rw-r--r--source/hu/sc/source/ui/styleui.po25
-rw-r--r--source/hu/sc/uiconfig/scalc/ui.po148
-rw-r--r--source/hu/scaddins/source/analysis.po778
-rw-r--r--source/hu/scaddins/source/datefunc.po46
-rw-r--r--source/hu/sccomp/source/solver.po13
-rw-r--r--source/hu/scp2/source/accessories.po2366
-rw-r--r--source/hu/scp2/source/activex.po4
-rw-r--r--source/hu/scp2/source/base.po12
-rw-r--r--source/hu/scp2/source/calc.po21
-rw-r--r--source/hu/scp2/source/draw.po17
-rw-r--r--source/hu/scp2/source/extensions.po92
-rw-r--r--source/hu/scp2/source/gnome.po4
-rw-r--r--source/hu/scp2/source/graphicfilter.po32
-rw-r--r--source/hu/scp2/source/impress.po23
-rw-r--r--source/hu/scp2/source/javafilter.po26
-rw-r--r--source/hu/scp2/source/kde.po4
-rw-r--r--source/hu/scp2/source/math.po12
-rw-r--r--source/hu/scp2/source/onlineupdate.po4
-rw-r--r--source/hu/scp2/source/ooo.po554
-rw-r--r--source/hu/scp2/source/python.po6
-rw-r--r--source/hu/scp2/source/quickstart.po4
-rw-r--r--source/hu/scp2/source/sdkoo.po4
-rw-r--r--source/hu/scp2/source/smoketest.po4
-rw-r--r--source/hu/scp2/source/stdlibs.po4
-rw-r--r--source/hu/scp2/source/tde.po4
-rw-r--r--source/hu/scp2/source/winexplorerext.po4
-rw-r--r--source/hu/scp2/source/writer.po26
-rw-r--r--source/hu/scp2/source/xsltfilter.po4
-rw-r--r--source/hu/scripting/source/pyprov.po34
-rw-r--r--source/hu/sd/source/core.po94
-rw-r--r--source/hu/sd/source/filter/html.po65
-rw-r--r--source/hu/sd/source/ui/accessibility.po14
-rw-r--r--source/hu/sd/source/ui/animations.po162
-rw-r--r--source/hu/sd/source/ui/annotations.po29
-rw-r--r--source/hu/sd/source/ui/app.po581
-rw-r--r--source/hu/sd/source/ui/dlg.po376
-rw-r--r--source/hu/sd/source/ui/slideshow.po20
-rw-r--r--source/hu/sd/source/ui/table.po12
-rw-r--r--source/hu/sd/source/ui/view.po55
-rw-r--r--source/hu/sd/uiconfig/sdraw/ui.po14
-rw-r--r--source/hu/sd/uiconfig/simpress/ui.po15
-rw-r--r--source/hu/sdext/source/minimizer.po4
-rw-r--r--source/hu/sdext/source/minimizer/registry/data/org/openoffice/Office.po3
-rw-r--r--source/hu/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po70
-rw-r--r--source/hu/sdext/source/pdfimport.po34
-rw-r--r--source/hu/sdext/source/presenter.po38
-rw-r--r--source/hu/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po376
-rw-r--r--source/hu/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po686
-rw-r--r--source/hu/setup_native/source/mac.po25
-rw-r--r--source/hu/sfx2/source/appl.po134
-rw-r--r--source/hu/sfx2/source/bastyp.po4
-rw-r--r--source/hu/sfx2/source/dialog.po251
-rw-r--r--source/hu/sfx2/source/doc.po201
-rw-r--r--source/hu/sfx2/source/menu.po12
-rw-r--r--source/hu/sfx2/source/view.po27
-rw-r--r--source/hu/sfx2/uiconfig/ui.po13
-rw-r--r--source/hu/shell/source/win32/shlxthandler/res.po39
-rw-r--r--source/hu/starmath/source.po450
-rw-r--r--source/hu/starmath/uiconfig/smath/ui.po10
-rw-r--r--source/hu/svl/source/items.po3
-rw-r--r--source/hu/svl/source/misc.po76
-rw-r--r--source/hu/svtools/source/contnr.po55
-rw-r--r--source/hu/svtools/source/control.po48
-rw-r--r--source/hu/svtools/source/dialogs.po202
-rw-r--r--source/hu/svtools/source/java.po30
-rw-r--r--source/hu/svtools/source/misc.po528
-rw-r--r--source/hu/svtools/source/toolpanel.po4
-rw-r--r--source/hu/svtools/uiconfig/ui.po120
-rw-r--r--source/hu/svx/inc.po74
-rw-r--r--source/hu/svx/source/accessibility.po39
-rw-r--r--source/hu/svx/source/core.po3
-rw-r--r--source/hu/svx/source/dialog.po4034
-rw-r--r--source/hu/svx/source/engine3d.po149
-rw-r--r--source/hu/svx/source/fmcomp.po24
-rw-r--r--source/hu/svx/source/form.po272
-rw-r--r--source/hu/svx/source/gallery2.po184
-rw-r--r--source/hu/svx/source/items.po141
-rw-r--r--source/hu/svx/source/src.po123
-rw-r--r--source/hu/svx/source/stbctrls.po28
-rw-r--r--source/hu/svx/source/svdraw.po898
-rw-r--r--source/hu/svx/source/table.po3
-rw-r--r--source/hu/svx/source/tbxctrls.po87
-rw-r--r--source/hu/svx/source/toolbars.po20
-rw-r--r--source/hu/svx/source/unodialogs/textconversiondlgs.po64
-rw-r--r--source/hu/sw/source/core/layout.po4
-rw-r--r--source/hu/sw/source/core/undo.po167
-rw-r--r--source/hu/sw/source/core/unocore.po9
-rw-r--r--source/hu/sw/source/ui/app.po299
-rw-r--r--source/hu/sw/source/ui/chrdlg.po99
-rw-r--r--source/hu/sw/source/ui/config.po280
-rw-r--r--source/hu/sw/source/ui/dbui.po339
-rw-r--r--source/hu/sw/source/ui/dialog.po89
-rw-r--r--source/hu/sw/source/ui/dochdl.po13
-rw-r--r--source/hu/sw/source/ui/docvw.po82
-rw-r--r--source/hu/sw/source/ui/envelp.po156
-rw-r--r--source/hu/sw/source/ui/fldui.po440
-rw-r--r--source/hu/sw/source/ui/fmtui.po47
-rw-r--r--source/hu/sw/source/ui/frmdlg.po191
-rw-r--r--source/hu/sw/source/ui/globdoc.po4
-rw-r--r--source/hu/sw/source/ui/index.po176
-rw-r--r--source/hu/sw/source/ui/lingu.po18
-rw-r--r--source/hu/sw/source/ui/misc.po207
-rw-r--r--source/hu/sw/source/ui/ribbar.po106
-rw-r--r--source/hu/sw/source/ui/shells.po57
-rw-r--r--source/hu/sw/source/ui/smartmenu.po3
-rw-r--r--source/hu/sw/source/ui/table.po72
-rw-r--r--source/hu/sw/source/ui/uiview.po39
-rw-r--r--source/hu/sw/source/ui/utlui.po579
-rw-r--r--source/hu/sw/source/ui/web.po13
-rw-r--r--source/hu/sw/source/ui/wrtsh.po8
-rw-r--r--source/hu/sw/uiconfig/sw/ui.po41
-rw-r--r--source/hu/sw/uiconfig/swriter/ui.po337
-rw-r--r--source/hu/swext/mediawiki/help.po125
-rw-r--r--source/hu/swext/mediawiki/src.po4
-rw-r--r--source/hu/swext/mediawiki/src/registry/data/org/openoffice/Office.po4
-rw-r--r--source/hu/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po34
-rw-r--r--source/hu/sysui/desktop/share.po69
-rw-r--r--source/hu/tubes/uiconfig/ui.po9
-rw-r--r--source/hu/uui/source.po153
-rw-r--r--source/hu/vcl/qa/cppunit/builder.po82
-rw-r--r--source/hu/vcl/source/edit.po7
-rw-r--r--source/hu/vcl/source/src.po160
-rw-r--r--source/hu/vcl/uiconfig/ui.po65
-rw-r--r--source/hu/wizards/source/euro.po85
-rw-r--r--source/hu/wizards/source/formwizard.po727
-rw-r--r--source/hu/wizards/source/importwizard.po79
-rw-r--r--source/hu/wizards/source/template.po78
-rw-r--r--source/hu/xmlsecurity/source/component.po3
-rw-r--r--source/hu/xmlsecurity/source/dialogs.po80
355 files changed, 6370 insertions, 201479 deletions
diff --git a/source/hu/accessibility/source/helper.po b/source/hu/accessibility/source/helper.po
index e6dc37ed710..af7cf0df482 100644
--- a/source/hu/accessibility/source/helper.po
+++ b/source/hu/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-03-25 09:50+0200\n"
"Last-Translator: Andras <timar74@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 "Tallózás"
-#. pfc%
#: accessiblestrings.src
msgctxt ""
"accessiblestrings.src\n"
diff --git a/source/hu/android/sdremote/res/values.po b/source/hu/android/sdremote/res/values.po
new file mode 100644
index 00000000000..496f9f69409
--- /dev/null
+++ b/source/hu/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: hu\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/hu/avmedia/source/framework.po b/source/hu/avmedia/source/framework.po
index 71f30157ce0..bd9a7cf9bb5 100644
--- a/source/hu/avmedia/source/framework.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Megnyitás"
-#. Zoi}
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Apply"
msgstr "Alkalmaz"
-#. jsqR
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Play"
msgstr "Lejátszás"
-#. -A$L
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Pause"
msgstr "Szünet"
-#. _Ew|
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Stop"
msgstr "Megállítás"
-#. W7Lq
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Repeat"
msgstr "Ismétlés"
-#. iM66
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Mute"
msgstr "Elnémítás"
-#. 9![y
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. =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 "Kifeszített"
-#. 0jm/
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
diff --git a/source/hu/avmedia/source/viewer.po b/source/hu/avmedia/source/viewer.po
index 0ffef8caf10..f8707c4b027 100644
--- a/source/hu/avmedia/source/viewer.po
+++ b/source/hu/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: 2012-06-12 22:41+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Mozgókép és hang beillesztése"
-#. F:?1
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Open Movie and Sound"
msgstr "Mozgókép és hang megnyitása"
-#. DFNw
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "All movie and sound files"
msgstr "Minden mozgókép- és hangfájl"
-#. l}VA
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "All files"
msgstr "Minden fájl"
-#. 7ms(
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
diff --git a/source/hu/basctl/source/basicide.po b/source/hu/basctl/source/basicide.po
index 8868fd5ed59..ccc642e82b2 100644
--- a/source/hu/basctl/source/basicide.po
+++ b/source/hu/basctl/source/basicide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12 22:41+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "Objektumkatalógus"
-#. V`%U
#: objdlg.src
msgctxt ""
"objdlg.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Objects Tree"
msgstr "Objektumfa"
-#. ZE~=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "<All>"
msgstr "<Mind>"
-#. W2+)
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "< No Module >"
msgstr "< Hiányzó modul >"
-#. M]dX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Incorrect Password"
msgstr "Helytelen jelszó"
-#. r,H6
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Load"
msgstr "Betöltés"
-#. g+qX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Save"
msgstr "Mentés"
-#. :\(K
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -91,7 +83,6 @@ msgstr ""
"A forrásszöveg túl nagy, és se lefordítani se menteni nem lehet.\n"
"Törölje a megjegyzések egy részét, vagy bizonyos metódusokat helyezzen át egy másik modulba."
-#. 6Nvl
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Error opening file"
msgstr "Hiba a fájl megnyitásakor"
-#. I#3L
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -109,7 +99,6 @@ msgctxt ""
msgid "Error loading library"
msgstr "Hiba a programkönyvtár betöltésekor."
-#. $@^F
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -118,7 +107,6 @@ msgctxt ""
msgid "The file does not contain any BASIC libraries"
msgstr "A fájl nem tartalmaz semmilyen BASIC könyvtárat"
-#. qcF/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -127,7 +115,6 @@ msgctxt ""
msgid "Invalid Name"
msgstr "Érvénytelen név"
-#. U@~0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -136,7 +123,6 @@ msgctxt ""
msgid "A library name can have up to 30 characters."
msgstr "A programkönyvtár neve legfeljebb 30 karakter lehet."
-#. JMM[
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -145,7 +131,6 @@ msgctxt ""
msgid "Macros from other documents are not accessible."
msgstr "Más dokumentumból származó makrók nem érhetők el."
-#. %NUf
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -154,7 +139,6 @@ msgctxt ""
msgid "This library is read-only."
msgstr "Ez a programkönyvtár csak olvasható."
-#. CHXF
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "'XX' cannot be replaced."
msgstr "„XX” nem cserélhető le."
-#. pDgK
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "'XX' cannot be added."
msgstr "„XX” nem adható hozzá."
-#. 1pz+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -181,7 +163,6 @@ msgctxt ""
msgid "'XX' was not added."
msgstr "„XX” nem lett hozzáadva."
-#. AJK1
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -190,7 +171,6 @@ msgctxt ""
msgid "Enter password for 'XX'"
msgstr "Írja be „XX” jelszavát"
-#. kC\9
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -199,7 +179,6 @@ msgctxt ""
msgid "Name already exists"
msgstr "A név már létezik"
-#. r)bk
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -208,7 +187,6 @@ msgctxt ""
msgid "(Signed)"
msgstr "(Aláírt)"
-#. FxwV
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -217,7 +195,6 @@ msgctxt ""
msgid "Object with same name already exists"
msgstr "Már van ilyen nevű objektum"
-#. k~#P
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "The 'XX' file already exists"
msgstr "Már létező fájl: „XX”"
-#. F[$.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -241,7 +217,6 @@ msgstr ""
"\n"
"További információkért tekintse meg a biztonsági beállításokat."
-#. ZTC%
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -250,7 +225,6 @@ msgctxt ""
msgid "Compile Error: "
msgstr "Fordítási hiba: "
-#. ~kzi
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -259,7 +233,6 @@ msgctxt ""
msgid "Runtime Error: #"
msgstr "Futás közbeni hiba: #"
-#. 3.!B
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -268,7 +241,6 @@ msgctxt ""
msgid "Search key not found"
msgstr "A keresési kulcs nem található."
-#. wXS@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -277,7 +249,6 @@ msgctxt ""
msgid "Search to last module complete. Continue at first module?"
msgstr "A keresés az utolsó modulnál véget ért. Folytatja az első modullal?"
-#. ?Hng
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Search key replaced XX times"
msgstr "A keresési kulcs XX helyen kicserélve"
-#. dX9n
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "The file could not be read"
msgstr "A fájlt nem sikerült beolvasni"
-#. 9[xg
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "The file could not be saved"
msgstr "A fájlt nem sikerült menteni"
-#. lKe\
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "The name of the default library cannot be changed."
msgstr "Az alapértelmezett programkönyvtár neve nem változtatható meg."
-#. ,#9v
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "The name of a referenced library cannot be changed."
msgstr "A hivatkozott programkönyvtár neve nem változtatható meg."
-#. ^}M`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -331,7 +297,6 @@ msgctxt ""
msgid "The default library cannot be deactivated"
msgstr "Az alapértelmezett programkönyvtár nem kapcsolható ki."
-#. Zr~A
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -340,7 +305,6 @@ msgctxt ""
msgid "Generating source"
msgstr "Forrás előállítása"
-#. W83h
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -349,7 +313,6 @@ msgctxt ""
msgid "File name:"
msgstr "Fájlnév:"
-#. ,=wX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -358,7 +321,6 @@ msgctxt ""
msgid "Import Libraries"
msgstr "Programkönyvtárak importálása"
-#. e3f;
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -367,7 +329,6 @@ msgctxt ""
msgid "Do you want to delete the macro XX?"
msgstr "Biztosan törölni akarja ezt a makrót: XX?"
-#. H~pG
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -376,7 +337,6 @@ msgctxt ""
msgid "Do you want to delete the XX dialog?"
msgstr "Biztosan törölni akarja a párbeszédablakot: XX?"
-#. |SeE
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -385,7 +345,6 @@ msgctxt ""
msgid "Do you want to delete the XX library?"
msgstr "Biztosan törölni akarja ezt a programkönyvtárat: XX?"
-#. je{o
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -394,7 +353,6 @@ msgctxt ""
msgid "Do you want to delete the reference to the XX library?"
msgstr "Biztosan törölni akarja a(z) XX programkönyvtárra mutató hivatkozást?"
-#. Xm7Q
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -403,7 +361,6 @@ msgctxt ""
msgid "Do you want to delete the XX module?"
msgstr "Biztosan törölni akarja ezt a modult: XX?"
-#. =z=.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -412,7 +369,6 @@ msgctxt ""
msgid "Object or method not found"
msgstr "Az objektum vagy metódus nem található"
-#. 5lGk
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -421,7 +377,6 @@ msgctxt ""
msgid "BASIC"
msgstr "BASIC"
-#. q#Ee
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -430,7 +385,6 @@ msgctxt ""
msgid "Ln"
msgstr "Sor"
-#. d@%(
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -439,7 +393,6 @@ msgctxt ""
msgid "Col"
msgstr "Oszl."
-#. GksX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -448,7 +401,6 @@ msgctxt ""
msgid "Document"
msgstr "Dokumentum"
-#. [HYz
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -457,7 +409,6 @@ msgctxt ""
msgid "Macro Bar"
msgstr "Makró eszköztár"
-#. WT!/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -466,7 +417,6 @@ msgctxt ""
msgid "The window cannot be closed while BASIC is running."
msgstr "A BASIC futása közben az ablak nem zárható be."
-#. ob;X
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -475,7 +425,6 @@ msgctxt ""
msgid "The default library cannot be replaced."
msgstr "Az alapértelmezett programkönyvtárat nem lehet lecserélni."
-#. _sL@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -484,7 +433,6 @@ msgctxt ""
msgid "Reference to 'XX' not possible."
msgstr "„XX”-re való hivatkozás nem lehetséges."
-#. $;d+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -493,7 +441,6 @@ msgctxt ""
msgid "Watch"
msgstr "Figyelés"
-#. q[F0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -502,7 +449,6 @@ msgctxt ""
msgid "Variable"
msgstr "Változó"
-#. [\2#
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -511,7 +457,6 @@ msgctxt ""
msgid "Value"
msgstr "Érték"
-#. `~4,
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -520,7 +465,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. IPB!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -529,7 +473,6 @@ msgctxt ""
msgid "Call Stack"
msgstr "Hívási verem"
-#. mK3f
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -538,7 +481,6 @@ msgctxt ""
msgid "BASIC Initialization"
msgstr "BASIC előkészítése"
-#. 8;n!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -547,7 +489,6 @@ msgctxt ""
msgid "Module"
msgstr "Modul"
-#. U5LV
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -556,7 +497,6 @@ msgctxt ""
msgid "Dialog"
msgstr "Párbeszédablak"
-#. *?3+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -565,7 +505,6 @@ msgctxt ""
msgid "Library"
msgstr "Programkönyvtár"
-#. p-J$
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -574,7 +513,6 @@ msgctxt ""
msgid "New Library"
msgstr "Új programkönyvtár"
-#. wl|E
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -583,7 +521,6 @@ msgctxt ""
msgid "New Module"
msgstr "Új modul"
-#. )f3c
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -592,7 +529,6 @@ msgctxt ""
msgid "New Dialog"
msgstr "Új párbeszédablak"
-#. Ub!,
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -601,7 +537,6 @@ msgctxt ""
msgid "All"
msgstr "Összes"
-#. }RLC
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -610,7 +545,6 @@ msgctxt ""
msgid "Page"
msgstr "Oldal"
-#. :WO!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -619,7 +553,6 @@ msgctxt ""
msgid "A name must be entered."
msgstr "Kötelező egy nevet megadni."
-#. -@v4
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -632,7 +565,6 @@ msgstr ""
"A szerkesztés után újra kell indítani a programot.\n"
"Folytatja?"
-#. dU+x
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -641,7 +573,6 @@ msgctxt ""
msgid "Do you want to replace the text in all active modules?"
msgstr "Az összes aktív modulban lecseréli a szöveget?"
-#. fOE;
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -650,7 +581,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. $`24
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -659,7 +589,6 @@ msgctxt ""
msgid "Remove Watch"
msgstr "Figyelés törlése"
-#. p0?t
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -668,7 +597,6 @@ msgctxt ""
msgid "Watch:"
msgstr "Figyelés:"
-#. )hOO
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -677,7 +605,6 @@ msgctxt ""
msgid "Calls: "
msgstr "Hívások: "
-#. C-#U
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -686,7 +613,6 @@ msgctxt ""
msgid "My Macros"
msgstr "Saját makrók"
-#. ?!XO
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -695,7 +621,6 @@ msgctxt ""
msgid "My Dialogs"
msgstr "Saját párbeszédablakok"
-#. sJGU
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -704,7 +629,6 @@ msgctxt ""
msgid "My Macros & Dialogs"
msgstr "Saját makrók és párbeszédablakok"
-#. iWd/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -713,7 +637,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME-makrók"
-#. RsXB
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -722,7 +645,6 @@ msgctxt ""
msgid "%PRODUCTNAME Dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok"
-#. gllN
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -731,7 +653,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros & Dialogs"
msgstr "%PRODUCTNAME-makrók és -párbeszédablakok"
-#. lH-y
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -741,7 +662,6 @@ msgctxt ""
msgid "Active"
msgstr "Aktív"
-#. mQvu
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -751,7 +671,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Tulajdonságok..."
-#. 3sc.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -760,7 +679,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. a@W+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -770,7 +688,6 @@ msgctxt ""
msgid "Manage Breakpoints..."
msgstr "Töréspontok kezelése..."
-#. Wcy=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -779,7 +696,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Töréspontok kezelése"
-#. s2^S
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -789,7 +705,6 @@ msgctxt ""
msgid "BASIC Module"
msgstr "BASIC-modul"
-#. 5IIo
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -799,7 +714,6 @@ msgctxt ""
msgid "BASIC Dialog"
msgstr "BASIC-párbeszédablak"
-#. \%gc
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -809,7 +723,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. LAie
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -819,7 +732,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. UkD8
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -829,7 +741,6 @@ msgctxt ""
msgid "Rename"
msgstr "Átnevezés"
-#. M.5i
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -839,7 +750,6 @@ msgctxt ""
msgid "Hide"
msgstr "Elrejtés"
-#. CQ?d
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -849,7 +759,6 @@ msgctxt ""
msgid "Modules..."
msgstr "Modulok..."
-#. SdR)
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -859,7 +768,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Tulajdonságok..."
-#. aau`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -868,7 +776,6 @@ msgctxt ""
msgid "Do you want to overwrite the XX macro?"
msgstr "Felülírja a(z) XX makrót?"
-#. %DZ@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -877,7 +784,6 @@ msgctxt ""
msgid "<Not localized>"
msgstr "<Nincs honosítva>"
-#. ofo`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -886,7 +792,6 @@ msgctxt ""
msgid "[Default Language]"
msgstr "[Alapértelmezett nyelv]"
-#. G@B=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -895,7 +800,6 @@ msgctxt ""
msgid "Document Objects"
msgstr "Dokumentumobjektumok"
-#. ^X3N
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -904,7 +808,6 @@ msgctxt ""
msgid "Forms"
msgstr "Űrlapok"
-#. L4Z+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -913,7 +816,6 @@ msgctxt ""
msgid "Modules"
msgstr "Modulok"
-#. Mx!0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -922,7 +824,6 @@ msgctxt ""
msgid "Class Modules"
msgstr "Osztálymodulok"
-#. M@CT
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -931,7 +832,6 @@ msgctxt ""
msgid "Rename"
msgstr "Átnevezés"
-#. eq\m
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -940,7 +840,6 @@ msgctxt ""
msgid "Replace"
msgstr "Csere"
-#. W@VC
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -949,7 +848,6 @@ msgctxt ""
msgid "Dialog Import - Name already used"
msgstr "Párbeszédablak-importálás – A név már használatban van"
-#. T3_B
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -970,7 +868,6 @@ msgstr ""
"Nevezze át a párbeszédablakot az aktuális párbeszédablak megtartásához, vagy cserélje le a meglévő párbeszédablakot.\n"
" "
-#. :_6e
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -979,7 +876,6 @@ msgctxt ""
msgid "Add"
msgstr "Hozzáadás"
-#. Yr+\
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -988,7 +884,6 @@ msgctxt ""
msgid "Omit"
msgstr "Kihagyás"
-#. ^T?v
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -997,7 +892,6 @@ msgctxt ""
msgid "Dialog Import - Language Mismatch"
msgstr "Párbeszédablak-importálás – Eltérő nyelvek"
-#. :5]p
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1018,7 +912,6 @@ msgstr ""
"Megjegyzés: A párbeszédablak által nem támogatott nyelvek esetén a párbeszédablak alapértelmezett nyelve lesz használva.\n"
" "
-#. cm14
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1027,7 +920,6 @@ msgctxt ""
msgid "Goto Line"
msgstr "Ugrás sorra"
-#. t.GK
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1037,7 +929,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. lKY=
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1047,7 +938,6 @@ msgctxt ""
msgid "Help information"
msgstr "Súgószöveg"
-#. ?gj(
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1057,7 +947,6 @@ msgctxt ""
msgid "Help ID"
msgstr "Súgó azonosítója"
-#. -p|Q
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1067,7 +956,6 @@ msgctxt ""
msgid "Help file name"
msgstr "Súgófájl neve"
-#. #``S
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1076,7 +964,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. Mq-_
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1086,7 +973,6 @@ msgctxt ""
msgid "New"
msgstr "Új"
-#. qYmA
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1096,7 +982,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. I$iQ
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1106,7 +991,6 @@ msgctxt ""
msgid "Active"
msgstr "Aktív"
-#. jk[T
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1116,7 +1000,6 @@ msgctxt ""
msgid "Pass Count:"
msgstr "Menetek száma:"
-#. WAj7
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1126,7 +1009,6 @@ msgctxt ""
msgid "Breakpoints"
msgstr "Töréspontok"
-#. jB*a
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1135,7 +1017,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Töréspontok kezelése"
-#. D?0f
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1145,7 +1026,6 @@ msgctxt ""
msgid "Modules"
msgstr "Modulok"
-#. W_]=
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1155,7 +1035,6 @@ msgctxt ""
msgid "Dialogs"
msgstr "Párbeszédablakok"
-#. 36Js
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1165,7 +1044,6 @@ msgctxt ""
msgid "Libraries"
msgstr "Könyvtárak"
-#. !*g@
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1174,7 +1052,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Macro Organizer"
msgstr "%PRODUCTNAME Basic makrószervező"
-#. i6H6
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1184,7 +1061,6 @@ msgctxt ""
msgid "M~odule"
msgstr "M~odul"
-#. }0uw
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1194,7 +1070,6 @@ msgctxt ""
msgid "~Edit"
msgstr "Sz~erkesztés"
-#. sCzN
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1204,7 +1079,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. ,ASe
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1214,7 +1088,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. WT=T
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1224,7 +1097,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. frR:
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1234,7 +1106,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. #kf+
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1244,7 +1115,6 @@ msgctxt ""
msgid "Dialog"
msgstr "Párbeszédablak"
-#. Fpj/
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1254,7 +1124,6 @@ msgctxt ""
msgid "~Edit"
msgstr "Sz~erkesztés"
-#. ~UGN
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1264,7 +1133,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. ABdx
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1274,7 +1142,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. JU]Z
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1284,7 +1151,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. YAwH
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1294,7 +1160,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. 78@@
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1304,7 +1169,6 @@ msgctxt ""
msgid "L~ocation"
msgstr "H~ely"
-#. nCdL
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1314,7 +1178,6 @@ msgctxt ""
msgid "~Library"
msgstr "~Programkönyvtár"
-#. \U8x
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1324,7 +1187,6 @@ msgctxt ""
msgid "~Edit"
msgstr "Sz~erkesztés"
-#. hP(Q
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1334,7 +1196,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. 1tDJ
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1344,7 +1205,6 @@ msgctxt ""
msgid "~Password..."
msgstr "~Jelszó..."
-#. A^5`
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1354,7 +1214,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. VTeK
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1364,7 +1223,6 @@ msgctxt ""
msgid "~Import..."
msgstr "~Importálás..."
-#. NG%_
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1374,7 +1232,6 @@ msgctxt ""
msgid "E~xport..."
msgstr "E~xportálás..."
-#. zp?S
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1384,7 +1241,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. Kc.v
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1394,7 +1250,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. Y1`2
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1404,7 +1259,6 @@ msgctxt ""
msgid "Insert as reference (read-only)"
msgstr "Beszúrás hivatkozásként (csak olvasható)"
-#. 4c8N
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1414,7 +1268,6 @@ msgctxt ""
msgid "Replace existing libraries"
msgstr "Létező könyvtárak cseréje"
-#. p;}g
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1424,7 +1277,6 @@ msgctxt ""
msgid "~Line Number:"
msgstr "~Sorszámozás: "
-#. `(e~
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1434,7 +1286,6 @@ msgctxt ""
msgid "~Name:"
msgstr "~Név:"
-#. iO@h
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1444,7 +1295,6 @@ msgctxt ""
msgid "Export as ~extension"
msgstr "Exportálás ~kiterjesztésként"
-#. 9)l.
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1454,7 +1304,6 @@ msgctxt ""
msgid "Export as BASIC library"
msgstr "Exportálás BASIC-programkönyvtárként"
-#. \D2F
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1463,7 +1312,6 @@ msgctxt ""
msgid "Export Basic library"
msgstr "Basic-programkönyvtár exportálása"
-#. T7$-
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1472,7 +1320,6 @@ msgctxt ""
msgid "Export library as extension"
msgstr "Programkönyvtár exportálása kiterjesztésként"
-#. rsB+
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1481,7 +1328,6 @@ msgctxt ""
msgid "Export as BASIC library"
msgstr "Exportálás BASIC-programkönyvtárként"
-#. /g+L
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1490,7 +1336,6 @@ msgctxt ""
msgid "Extension"
msgstr "Kiterjesztés"
-#. ch4W
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1499,7 +1344,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. ,b1I
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1508,7 +1352,6 @@ msgctxt ""
msgid "~New"
msgstr "Ú~j"
-#. Kn8D
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1517,7 +1360,6 @@ msgctxt ""
msgid "Choose"
msgstr "Kiválasztás"
-#. ic*r
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1526,7 +1368,6 @@ msgctxt ""
msgid "Run"
msgstr "Futtatás"
-#. ,D#!
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1535,7 +1376,6 @@ msgctxt ""
msgid "~Save"
msgstr "M~entés"
-#. pRPI
#: basicprint.src
msgctxt ""
"basicprint.src\n"
@@ -1545,7 +1385,6 @@ msgctxt ""
msgid "Print range"
msgstr "Nyomtatási tartomány"
-#. D_5S
#: basicprint.src
msgctxt ""
"basicprint.src\n"
@@ -1555,7 +1394,6 @@ msgctxt ""
msgid "All ~Pages"
msgstr "Összes ~oldal"
-#. 2N4s
#: basicprint.src
msgctxt ""
"basicprint.src\n"
diff --git a/source/hu/basctl/source/dlged.po b/source/hu/basctl/source/dlged.po
index b8fc148f15d..1ceb264aa0d 100644
--- a/source/hu/basctl/source/dlged.po
+++ b/source/hu/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-03-25 09:48+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Elérhető nyelvek"
-#. JGIq
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Add..."
msgstr "Hozzáadás..."
-#. _oXj
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. p]vE
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. }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 "Az alapértelmezett nyelv lesz használva, ha a felhasználói felület nyelvéhez illő honosítás nem érhető el. Ezen kívül az alapértelmezett nyelv valamennyi karakterlánca átmásolódik az újonnan hozzáadott nyelvek erőforrásai közé."
-#. *TMb
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. SfP_
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "[Default Language]"
msgstr "[Alapértelmezett nyelv]"
-#. so),
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. @,QV
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "<Press 'Add' to create language resources>"
msgstr "<Nyomja meg a Hozzáadás gombot új nyelvi erőforrás létrehozásához>"
-#. Z@]S
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Manage User Interface Languages [$1]"
msgstr "A felhasználói felület nyelveinek kezelése [$1]"
-#. {@Ru
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -129,7 +118,6 @@ msgstr ""
"\n"
"Szeretné törölni a kijelölt nyelvekhez tartozó erőforrásokat?"
-#. Q13J
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -138,7 +126,6 @@ msgctxt ""
msgid "Delete Language Resources"
msgstr "Nyelvi erőforrások törlése"
-#. Ag$]
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -148,7 +135,6 @@ msgctxt ""
msgid "Default language"
msgstr "Alapértelmezett nyelv"
-#. ?(~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 "Jelöljön ki egy nyelvet, amely a felhasználói felület alapértelmezett nyelve lesz. Minden jelenleg meglévő karakterlánc hozzá lesz rendelve a kijelölt nyelvhez létrehozott erőforrásokhoz."
-#. 0~l0
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "Add User Interface Languages"
msgstr "A felhasználói felület nyelveinek hozzáadása"
-#. \JB_
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Available Languages"
msgstr "Elérhető nyelvek"
-#. 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 "Jelölje ki a hozzáadandó nyelveket. Ezekhez a nyelvekhez létre fognak jönni az erőforrások a programkönyvtárban. A felhasználói felület jelenlegi alapértelmezett nyelvének karakterláncai alapértelmezés szerint át fognak másolódni ezekbe az új erőforrásokba."
-#. 6a+c
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -197,7 +179,6 @@ msgctxt ""
msgid "Set Default User Interface Language"
msgstr "A felhasználóit felület alapértelmezett nyelvének beállítása"
-#. ]nNM
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "Properties: "
msgstr "Tulajdonságok: "
-#. I_7p
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "No Control marked"
msgstr "Nincs megjelölve vezérlőelem"
-#. ,!pS
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
diff --git a/source/hu/basctl/uiconfig/basicide/ui.po b/source/hu/basctl/uiconfig/basicide/ui.po
index e14dab35cd7..a9c86df4bdb 100644
--- a/source/hu/basctl/uiconfig/basicide/ui.po
+++ b/source/hu/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"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dCgB
#: basicmacrodialog.ui
msgctxt ""
"basicmacrodialog.ui\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Macros"
msgstr "%PRODUCTNAME Basic-makrók"
-#. ;$kl
#: basicmacrodialog.ui
#, fuzzy
msgctxt ""
@@ -36,7 +34,6 @@ msgctxt ""
msgid "Existing macros in:"
msgstr "Létező m~akrók:"
-#. peL)
#: basicmacrodialog.ui
#, fuzzy
msgctxt ""
@@ -47,7 +44,6 @@ msgctxt ""
msgid "Macro from"
msgstr "Makró ~forrása"
-#. O@}F
#: basicmacrodialog.ui
#, fuzzy
msgctxt ""
@@ -58,7 +54,6 @@ msgctxt ""
msgid "Save macro in"
msgstr "Ma~kró mentése"
-#. 0h%}
#: basicmacrodialog.ui
msgctxt ""
"basicmacrodialog.ui\n"
diff --git a/source/hu/basic/source/classes.po b/source/hu/basic/source/classes.po
index 86ee24dbfb4..72637ae6792 100644
--- a/source/hu/basic/source/classes.po
+++ b/source/hu/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-03-25 09:47+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Szintaktikai hiba."
-#. Zz8?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Return without Gosub."
msgstr "Return Gosub nélkül."
-#. S[$m
#: sb.src
msgctxt ""
"sb.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Incorrect entry; please retry."
msgstr "Helytelen bemenet; próbálja újra."
-#. ES_7
#: sb.src
msgctxt ""
"sb.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Invalid procedure call."
msgstr "Érvénytelen eljáráshívás."
-#. ;hGR
#: sb.src
msgctxt ""
"sb.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Overflow."
msgstr "Túlcsordulás."
-#. \AfP
#: sb.src
msgctxt ""
"sb.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Not enough memory."
msgstr "Nincs elég memória."
-#. ml6H
#: sb.src
msgctxt ""
"sb.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Array already dimensioned."
msgstr "A tömb már dimenzionálva van."
-#. b|NG
#: sb.src
msgctxt ""
"sb.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Index out of defined range."
msgstr "Az index a definiált határokon kívülre mutat."
-#. \~}O
#: sb.src
msgctxt ""
"sb.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Duplicate definition."
msgstr "Többszörös definíció."
-#. _#VG
#: sb.src
msgctxt ""
"sb.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Division by zero."
msgstr "Osztás nullával."
-#. $4kM
#: sb.src
msgctxt ""
"sb.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Variable not defined."
msgstr "A változó nincs definiálva."
-#. l6X6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Data type mismatch."
msgstr "Az adattípus nem egyezik."
-#. jcL%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Invalid parameter."
msgstr "Érvénytelen paraméter."
-#. q/0#
#: sb.src
msgctxt ""
"sb.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Process interrupted by user."
msgstr "A felhasználó megszakította a folyamatot."
-#. _dYH
#: sb.src
msgctxt ""
"sb.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Resume without error."
msgstr "Hiba nélküli folytatás."
-#. hYO\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Not enough stack memory."
msgstr "Nincs elég veremmemória."
-#. %_Dv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Sub-procedure or function procedure not defined."
msgstr "Aleljárás vagy függvényeljárás nincsen definiálva."
-#. 7rBQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Error loading DLL file."
msgstr "Hiba a DLL-fájl betöltésekor."
-#. :I|%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Wrong DLL call convention."
msgstr "Hibás DLL-hívási konvenció."
-#. [so#
#: sb.src
msgctxt ""
"sb.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Internal error $(ARG1)."
msgstr "Belső hiba $(ARG1)."
-#. M75T
#: sb.src
msgctxt ""
"sb.src\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Invalid file name or file number."
msgstr "Érvénytelen fájlnév vagy fájlszám."
-#. }_Yn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "File not found."
msgstr "Fájl nem található."
-#. ;Ybb
#: sb.src
msgctxt ""
"sb.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "Incorrect file mode."
msgstr "Helytelen fájlmód."
-#. Zp9;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "File already open."
msgstr "A fájl már meg van nyitva."
-#. UsS4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Device I/O error."
msgstr "Eszköz I/O hiba."
-#. TIHT
#: sb.src
msgctxt ""
"sb.src\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "File already exists."
msgstr "A fájl már létezik."
-#. os1N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "Incorrect record length."
msgstr "Helytelen rekordhossz."
-#. sZrg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Disk or hard drive full."
msgstr "A lemez megtelt."
-#. _s0e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "Reading exceeds EOF."
msgstr "Olvasás a fájl vége (EOF) után."
-#. /3x%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "Incorrect record number."
msgstr "Helytelen rekordszám."
-#. h4Q[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "Too many files."
msgstr "Túl sok fájl."
-#. 5da~
#: sb.src
msgctxt ""
"sb.src\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "Device not available."
msgstr "Az eszköz nem hozzáférhető."
-#. 84*.
#: sb.src
msgctxt ""
"sb.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "Access denied."
msgstr "Hozzáférés megtagadva."
-#. gcYO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "Disk not ready."
msgstr "A lemez nem üzemkész."
-#. S!Ag
#: sb.src
msgctxt ""
"sb.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "Not implemented."
msgstr "Nincs megvalósítva."
-#. sK~8
#: sb.src
msgctxt ""
"sb.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Renaming on different drives impossible."
msgstr "A különböző meghajtók közötti átnevezés nem lehetséges."
-#. hY25
#: sb.src
msgctxt ""
"sb.src\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "Path/File access error."
msgstr "A megadott útvonal/fájl nem érhető el."
-#. Xsrw
#: sb.src
msgctxt ""
"sb.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "Path not found."
msgstr "Az útvonal nem található."
-#. H2ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "Object variable not set."
msgstr "Az objektumváltozó nincs beállítva."
-#. t1Oh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "Invalid string pattern."
msgstr "Helytelen karakterlánc-minta."
-#. 1=Ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "Use of zero not permitted."
msgstr "Itt nem állhat nulla."
-#. COPc
#: sb.src
msgctxt ""
"sb.src\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "DDE Error."
msgstr "DDE-hiba."
-#. tGZl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "Awaiting response to DDE connection."
msgstr "Várakozás a DDE-kapcsolat válaszára."
-#. 4!fm
#: sb.src
msgctxt ""
"sb.src\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "No DDE channels available."
msgstr "A DDE-csatornák elérhetetlenek."
-#. P*QO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "No application responded to DDE connect initiation."
msgstr "Egy alkalmazás sem válaszolt a DDE-kapcsolat kezdeményezésre."
-#. EOuh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "Too many applications responded to DDE connect initiation."
msgstr "Túl sok alkalmazás válaszolt a DDE-kapcsolat kezdeményezésre."
-#. fDA1
#: sb.src
msgctxt ""
"sb.src\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "DDE channel locked."
msgstr "A DDE-csatorna lezárva."
-#. b+-d
#: sb.src
msgctxt ""
"sb.src\n"
@@ -495,7 +447,6 @@ msgctxt ""
msgid "External application cannot execute DDE operation."
msgstr "Külső alkalmazás nem hajthat végre DDE-műveletet."
-#. B:IX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "Timeout while waiting for DDE response."
msgstr "Időtúllépés a DDE válaszára várva."
-#. $TRU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "User pressed ESCAPE during DDE operation."
msgstr "A felhasználó a DDE-művelet közben megnyomta az Esc billentyűt."
-#. hPzU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "External application busy."
msgstr "A külső alkalmazás foglalt."
-#. [Ik;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "DDE operation without data."
msgstr "DDE-művelet adat nélkül."
-#. NydK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -545,7 +492,6 @@ msgctxt ""
msgid "Data are in wrong format."
msgstr "Adat helytelen formában."
-#. G?W:
#: sb.src
msgctxt ""
"sb.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "External application has been terminated."
msgstr "A külső alkalmazás befejeződött."
-#. Ql6A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "DDE connection interrupted or modified."
msgstr "DDE-kapcsolat megszakítva vagy módosítva."
-#. `R@[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "DDE method invoked with no channel open."
msgstr "A DDE-metódus meghívásakor nem volt nyitott csatorna."
-#. Eaq)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "Invalid DDE link format."
msgstr "Érvénytelen DDE-hivatkozásformátum."
-#. FuG|
#: sb.src
msgctxt ""
"sb.src\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "DDE message has been lost."
msgstr "A DDE-üzenet elveszett."
-#. EaPZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "Paste link already performed."
msgstr "A hivatkozás beillesztése már megtörtént."
-#. aJ-`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Link mode cannot be set due to invalid link topic."
msgstr "A hivatkozás érvénytelen tárgya miatt nem lehet beállítani a módját."
-#. w[Uz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "DDE requires the DDEML.DLL file."
msgstr "A DDE-nek szüksége van a DDEML.DLL fájlra."
-#. 3n#`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "Module cannot be loaded; invalid format."
msgstr "A modult nem lehet betölteni; rossz formátum."
-#. X3pu
#: sb.src
msgctxt ""
"sb.src\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "Invalid object index."
msgstr "Érvénytelen objektumindex."
-#. .IBB
#: sb.src
msgctxt ""
"sb.src\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "Object is not available."
msgstr "Az objektum nem érhető el."
-#. |~H?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "Incorrect property value."
msgstr "Rossz tulajdonságérték."
-#. dgFD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "This property is read-only."
msgstr "Ez a tulajdonság csak olvasható."
-#. E*c;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "This property is write only."
msgstr "Ez a tulajdonság csak írható."
-#. F_sE
#: sb.src
msgctxt ""
"sb.src\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "Invalid object reference."
msgstr "Rossz objektumhivatkozás."
-#. b\Y;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "Property or method not found: $(ARG1)."
msgstr "A tulajdonság vagy metódus nem található: $(ARG1)."
-#. )D(6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -715,7 +645,6 @@ msgctxt ""
msgid "Object required."
msgstr "Objektum szükséges."
-#. LX{Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -725,7 +654,6 @@ msgctxt ""
msgid "Invalid use of an object."
msgstr "Objektum helytelen használata."
-#. r5h!
#: sb.src
msgctxt ""
"sb.src\n"
@@ -735,7 +663,6 @@ msgctxt ""
msgid "OLE Automation is not supported by this object."
msgstr "Az objektum nem támogatja az OLE Automationt."
-#. 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 "Az objektum nem rendelkezik ilyen tulajdonsággal vagy metódussal."
-#. y;7g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -755,7 +681,6 @@ msgctxt ""
msgid "OLE Automation Error."
msgstr "OLE Automation hiba."
-#. gjcL
#: sb.src
msgctxt ""
"sb.src\n"
@@ -765,7 +690,6 @@ msgctxt ""
msgid "This action is not supported by given object."
msgstr "Az objektum nem támogatja a műveletet."
-#. ^ssg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -775,7 +699,6 @@ msgctxt ""
msgid "Named arguments are not supported by given object."
msgstr "A megadott objektum nem támogatja a nevesített argumentumokat."
-#. 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 "A megadott objektum nem támogatja a jelenlegi területi beállításokat."
-#. ~~$5
#: sb.src
msgctxt ""
"sb.src\n"
@@ -795,7 +717,6 @@ msgctxt ""
msgid "Named argument not found."
msgstr "A nevesített argumentum nem található."
-#. 0Sm4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -805,7 +726,6 @@ msgctxt ""
msgid "Argument is not optional."
msgstr "Az argumentum nem elhagyható."
-#. \wCF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -815,7 +735,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr "Érvénytelen számú paraméter."
-#. p:r?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -825,7 +744,6 @@ msgctxt ""
msgid "Object is not a list."
msgstr "Az objektum nem lista."
-#. N_,C
#: sb.src
msgctxt ""
"sb.src\n"
@@ -835,7 +753,6 @@ msgctxt ""
msgid "Invalid ordinal number."
msgstr "Érvénytelen sorszám."
-#. odO9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -845,7 +762,6 @@ msgctxt ""
msgid "Specified DLL function not found."
msgstr "A megadott DLL-függvény nem található."
-#. %ilX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -855,7 +771,6 @@ msgctxt ""
msgid "Invalid clipboard format."
msgstr "Érvénytelen vágólapformátum."
-#. `,mF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -865,7 +780,6 @@ msgctxt ""
msgid "Object does not have this property."
msgstr "Az objektumnak nincs ilyen tulajdonsága."
-#. ^[|F
#: sb.src
msgctxt ""
"sb.src\n"
@@ -875,7 +789,6 @@ msgctxt ""
msgid "Object does not have this method."
msgstr "Az objektumnak nincs ilyen metódusa."
-#. M4QZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -885,7 +798,6 @@ msgctxt ""
msgid "Required argument lacking."
msgstr "Szükséges argumentum hiányzik."
-#. 8ZCD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -895,7 +807,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr "Érvénytelen számú paraméter."
-#. ^V?f
#: sb.src
msgctxt ""
"sb.src\n"
@@ -905,7 +816,6 @@ msgctxt ""
msgid "Error executing a method."
msgstr "Hiba a metódus végrehajtása során."
-#. mpQe
#: sb.src
msgctxt ""
"sb.src\n"
@@ -915,7 +825,6 @@ msgctxt ""
msgid "Unable to set property."
msgstr "A tulajdonság nem állítható be."
-#. S61)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -925,7 +834,6 @@ msgctxt ""
msgid "Unable to determine property."
msgstr "A tulajdonság nem meghatározható."
-#. 3ALz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -935,7 +843,6 @@ msgctxt ""
msgid "Unexpected symbol: $(ARG1)."
msgstr "Nem várt szimbólum: $(ARG1)."
-#. ;,vQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -945,7 +852,6 @@ msgctxt ""
msgid "Expected: $(ARG1)."
msgstr "Szükséges: $(ARG1)."
-#. \5Ps
#: sb.src
msgctxt ""
"sb.src\n"
@@ -955,7 +861,6 @@ msgctxt ""
msgid "Symbol expected."
msgstr "Szimbólum szükséges."
-#. 2YW\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -965,7 +870,6 @@ msgctxt ""
msgid "Variable expected."
msgstr "Változó szükséges."
-#. 0YGl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -975,7 +879,6 @@ msgctxt ""
msgid "Label expected."
msgstr "Címke szükséges."
-#. #RU$
#: sb.src
msgctxt ""
"sb.src\n"
@@ -985,7 +888,6 @@ msgctxt ""
msgid "Value cannot be applied."
msgstr "Az érték nem alkalmazható."
-#. L_i+
#: sb.src
msgctxt ""
"sb.src\n"
@@ -995,7 +897,6 @@ msgctxt ""
msgid "Variable $(ARG1) already defined."
msgstr "A változó már létezik: $(ARG1)."
-#. kW8M
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1005,7 +906,6 @@ msgctxt ""
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Az aleljárás vagy függvény már létezik: $(ARG1)."
-#. dyMK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1015,7 +915,6 @@ msgctxt ""
msgid "Label $(ARG1) already defined."
msgstr "A címke már létezik $(ARG1)."
-#. Qq+^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1025,7 +924,6 @@ msgctxt ""
msgid "Variable $(ARG1) not found."
msgstr "A változó nem létezik: $(ARG1)."
-#. WDkj
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1035,7 +933,6 @@ msgctxt ""
msgid "Array or procedure $(ARG1) not found."
msgstr "A tömb vagy eljárás nem található: $(ARG1)."
-#. hlPl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1045,7 +942,6 @@ msgctxt ""
msgid "Procedure $(ARG1) not found."
msgstr "Az eljárás nem található: $(ARG1)."
-#. pDfg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1055,7 +951,6 @@ msgctxt ""
msgid "Label $(ARG1) undefined."
msgstr "A címke nem létezik: $(ARG1)."
-#. P?iO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1065,7 +960,6 @@ msgctxt ""
msgid "Unknown data type $(ARG1)."
msgstr "Ismeretlen adattípus: $(ARG1)."
-#. e_}A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1075,7 +969,6 @@ msgctxt ""
msgid "Exit $(ARG1) expected."
msgstr "Kilépés szükséges: $(ARG1)."
-#. DQDp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1085,7 +978,6 @@ msgctxt ""
msgid "Statement block still open: $(ARG1) missing."
msgstr "A kódblokk még mindig nyitott, hiányzik: $(ARG1)."
-#. !:%@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1095,7 +987,6 @@ msgctxt ""
msgid "Parentheses do not match."
msgstr "A zárójelezés nem megfelelő."
-#. i9/Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1105,7 +996,6 @@ msgctxt ""
msgid "Symbol $(ARG1) already defined differently."
msgstr "A következő szimbólum már máshogy lett definiálva: $(ARG1)."
-#. \LXI
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1115,7 +1005,6 @@ msgctxt ""
msgid "Parameters do not correspond to procedure."
msgstr "A paraméterek nem felelnek meg az eljárásnak."
-#. ]_#9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1125,7 +1014,6 @@ msgctxt ""
msgid "Invalid character in number."
msgstr "Érvénytelen karakter a számban."
-#. yd^N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1135,7 +1023,6 @@ msgctxt ""
msgid "Array must be dimensioned."
msgstr "Meg kell adni a tömb méreteit."
-#. U]7r
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1145,7 +1032,6 @@ msgctxt ""
msgid "Else/Endif without If."
msgstr "If nélküli Else/Endif."
-#. l,@@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1155,7 +1041,6 @@ msgctxt ""
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) nem engedélyezett eljáráson belül."
-#. rQae
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1165,7 +1050,6 @@ msgctxt ""
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) nem engedélyezett eljáráson kívül."
-#. o71[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1175,7 +1059,6 @@ msgctxt ""
msgid "Dimension specifications do not match."
msgstr "A méretmegadások nem egyeznek."
-#. tGW%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1185,7 +1068,6 @@ msgctxt ""
msgid "Unknown option: $(ARG1)."
msgstr "Ismeretlen opció: $(ARG1)."
-#. a+s?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1195,7 +1077,6 @@ msgctxt ""
msgid "Constant $(ARG1) redefined."
msgstr "A(z) $(ARG1) konstans újradefiniálva."
-#. {Kr_
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1205,7 +1086,6 @@ msgctxt ""
msgid "Program too large."
msgstr "A program túl nagy."
-#. XTNn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1215,7 +1095,6 @@ msgctxt ""
msgid "Strings or arrays not permitted."
msgstr "Karakterláncok vagy tömbök nem megengedettek."
-#. 7Lkp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1225,7 +1104,6 @@ msgctxt ""
msgid "An exception occurred $(ARG1)."
msgstr "A következő kivétel történt: $(ARG1)."
-#. ECV`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1235,7 +1113,6 @@ msgctxt ""
msgid "This array is fixed or temporarily locked."
msgstr "Ez a tömb rögzített vagy ideiglenesen zárolt."
-#. uD8]
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1245,7 +1122,6 @@ msgctxt ""
msgid "Out of string space."
msgstr "A karakterláncok számára lefoglalt terület elfogyott."
-#. 3@]t
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1255,7 +1131,6 @@ msgctxt ""
msgid "Expression Too Complex."
msgstr "A kifejezés túl bonyolult."
-#. mE%R
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1265,7 +1140,6 @@ msgctxt ""
msgid "Can't perform requested operation."
msgstr "A kért művelet nem hajtható végre."
-#. MY$g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1275,7 +1149,6 @@ msgctxt ""
msgid "Too many DLL application clients."
msgstr "Túl sok DLL-alkalmazásügyfél van."
-#. E-7l
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1285,7 +1158,6 @@ msgctxt ""
msgid "For loop not initialized."
msgstr "A for ciklus nincs inicializálva."
-#. ,T}E
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1295,7 +1167,6 @@ msgctxt ""
msgid "$(ARG1)"
msgstr "$(ARG1)"
-#. j@+e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1304,7 +1175,6 @@ msgctxt ""
msgid "The macro running has been interrupted"
msgstr "A makró futása megszakadt"
-#. xR6k
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1313,7 +1183,6 @@ msgctxt ""
msgid "Reference will not be saved: "
msgstr "A hivatkozás nem lesz mentve: "
-#. 0pV\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1322,7 +1191,6 @@ msgctxt ""
msgid "Error loading library '$(ARG1)'."
msgstr "Hiba a programkönyvtár betöltésekor: „$(ARG1)”."
-#. AT.h
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1331,7 +1199,6 @@ msgctxt ""
msgid "Error saving library: '$(ARG1)'."
msgstr "Hiba a programkönyvtár mentésekor: „$(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 "Nem lehet inicializálni a BASIC-et a megadott fájlból: „$(ARG1)”."
-#. }9dQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1349,7 +1215,6 @@ msgctxt ""
msgid "Error saving BASIC: '$(ARG1)'."
msgstr "Hiba a BASIC mentésekor: „$(ARG1)”."
-#. n{Uv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1358,7 +1223,6 @@ msgctxt ""
msgid "Error removing library."
msgstr "Hiba a programkönyvtár eltávolításakor."
-#. ZSrL
#: sb.src
msgctxt ""
"sb.src\n"
diff --git a/source/hu/basic/source/sbx.po b/source/hu/basic/source/sbx.po
index a044e3790a8..fc512c1cd35 100644
--- a/source/hu/basic/source/sbx.po
+++ b/source/hu/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-03-25 09:47+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Be"
-#. X209
#: format.src
msgctxt ""
"format.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Off"
msgstr "Ki"
-#. Q-y5
#: format.src
msgctxt ""
"format.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "Igaz"
-#. \YCB
#: format.src
msgctxt ""
"format.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "Hamis"
-#. ld7q
#: format.src
msgctxt ""
"format.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. nKe!
#: format.src
msgctxt ""
"format.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. )lVb
#: format.src
msgctxt ""
"format.src\n"
diff --git a/source/hu/chart2/source/controller/dialogs.po b/source/hu/chart2/source/controller/dialogs.po
index d0edbbff84f..e844633e32d 100644
--- a/source/hu/chart2/source/controller/dialogs.po
+++ b/source/hu/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-06-12 22:42+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Pozíció"
-#. 2bA!
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Szöveg iránya"
-#. (Y46
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Szöveg~irány"
-#. Ta3j
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Sche~me"
msgstr "Sé~ma"
-#. wD[=
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "~Shading"
msgstr "Á~rnyalás"
-#. /QqL
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Object borders"
msgstr "~Objektumszegélyek"
-#. QmzN
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Rounded edges"
msgstr "~Lekerekített sarkok"
-#. aS{~
#: dlg_DataSource.src
msgctxt ""
"dlg_DataSource.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Data Ranges"
msgstr "Adattartományok"
-#. oDtD
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "~Display legend"
msgstr "~Jelmagyarázat megjelenítése"
-#. !n%9
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Bal oldalon"
-#. 1P9H
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Jobb oldalon"
-#. N~Zf
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Felül"
-#. N+Ks
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Alul"
-#. `]m)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Negative and Positive"
msgstr "Negatív és pozitív"
-#. GeY)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Negative"
msgstr "Negatív"
-#. .l[7
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -171,7 +155,6 @@ msgctxt ""
msgid "Positive"
msgstr "Pozitív"
-#. -21e
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "From Data Table"
msgstr "Adattáblázatból"
-#. tqK@
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Linear (%SERIESNAME)"
msgstr "Lineáris (%SERIESNAME)"
-#. 5^hJ
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -198,7 +179,6 @@ msgctxt ""
msgid "Logarithmic (%SERIESNAME)"
msgstr "Logaritmikus (%SERIESNAME)"
-#. =?g\
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "Exponential (%SERIESNAME)"
msgstr "Exponenciális (%SERIESNAME)"
-#. F=I/
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -216,7 +195,6 @@ msgctxt ""
msgid "Power (%SERIESNAME)"
msgstr "Hatványfüggvény (%SERIESNAME)"
-#. cI\E
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -225,7 +203,6 @@ msgctxt ""
msgid "Mean (%SERIESNAME)"
msgstr "Átlag (%SERIESNAME)"
-#. ?J)8
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "Space"
msgstr "Szóköz"
-#. W4nI
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "Comma"
msgstr "Vessző"
-#. ABZF
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "Semicolon"
msgstr "Pontosvessző"
-#. Fp7(
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -265,7 +239,6 @@ msgctxt ""
msgid "New line"
msgstr "Új sor"
-#. 93Rx
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -274,7 +247,6 @@ msgctxt ""
msgid "Simple"
msgstr "Egyszerű"
-#. X)Cq
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Realistic"
msgstr "Realisztikus"
-#. *(X]
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Custom"
msgstr "Egyéni"
-#. h.]G
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -301,7 +271,6 @@ msgctxt ""
msgid "Shape"
msgstr "Alakzat"
-#. (BCV
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -310,7 +279,6 @@ msgctxt ""
msgid "~Number of lines"
msgstr "V~onalak száma"
-#. ;4CQ
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -319,7 +287,6 @@ msgctxt ""
msgid "Separator"
msgstr "Elválasztó"
-#. 9e|j
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -328,7 +295,6 @@ msgctxt ""
msgid "Column"
msgstr "Oszlop"
-#. Q:Pn
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -337,7 +303,6 @@ msgctxt ""
msgid "Bar"
msgstr "Sáv"
-#. :%2T
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -346,7 +311,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. -v_=
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -355,7 +319,6 @@ msgctxt ""
msgid "Pie"
msgstr "Torta"
-#. ~WAm
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -364,7 +327,6 @@ msgctxt ""
msgid "Exploded Pie Chart"
msgstr "Robbantott torta"
-#. 6.V@
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -373,7 +335,6 @@ msgctxt ""
msgid "Exploded Donut Chart"
msgstr "Robbantott fánk"
-#. [bQ{
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -382,7 +343,6 @@ msgctxt ""
msgid "Donut"
msgstr "Fánk"
-#. OMPv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -391,7 +351,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. x#-|
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -400,7 +359,6 @@ msgctxt ""
msgid "XY (Scatter)"
msgstr "Pont (XY)"
-#. 4*:L
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -409,7 +367,6 @@ msgctxt ""
msgid "Points and Lines"
msgstr "Pontok és vonalak"
-#. HY{t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -418,7 +375,6 @@ msgctxt ""
msgid "Points Only"
msgstr "Csak pontok"
-#. 6sa/
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -427,7 +383,6 @@ msgctxt ""
msgid "Lines Only"
msgstr "Csak vonalak"
-#. #R3E
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -436,7 +391,6 @@ msgctxt ""
msgid "3D Lines"
msgstr "Térbeli vonalak"
-#. `4;t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -445,7 +399,6 @@ msgctxt ""
msgid "Column and Line"
msgstr "Oszlop és vonal"
-#. XvZ.
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -454,7 +407,6 @@ msgctxt ""
msgid "Columns and Lines"
msgstr "Oszlopok és vonalak"
-#. $G_8
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -463,7 +415,6 @@ msgctxt ""
msgid "Stacked Columns and Lines"
msgstr "Halmozott oszlopok és vonalak"
-#. d3jd
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -472,7 +423,6 @@ msgctxt ""
msgid "Net"
msgstr "Háló"
-#. 0;S`
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -481,7 +431,6 @@ msgctxt ""
msgid "Stock"
msgstr "Árfolyam"
-#. R:j4
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -490,7 +439,6 @@ msgctxt ""
msgid "Stock Chart 1"
msgstr "Árfolyamdiagram 1"
-#. iAu$
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -499,7 +447,6 @@ msgctxt ""
msgid "Stock Chart 2"
msgstr "Árfolyamdiagram 2"
-#. jV!_
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -508,7 +455,6 @@ msgctxt ""
msgid "Stock Chart 3"
msgstr "Árfolyamdiagram 3"
-#. =09H
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -517,7 +463,6 @@ msgctxt ""
msgid "Stock Chart 4"
msgstr "Árfolyamdiagram 4"
-#. p^8~
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -526,7 +471,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normál"
-#. SuFe
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -535,7 +479,6 @@ msgctxt ""
msgid "Stacked"
msgstr "Halmozott"
-#. (Gg1
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -544,7 +487,6 @@ msgctxt ""
msgid "Percent Stacked"
msgstr "Halmozott százalék"
-#. ?LZx
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -553,7 +495,6 @@ msgctxt ""
msgid "Deep"
msgstr "Mély"
-#. 8`?Y
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -562,7 +503,6 @@ msgctxt ""
msgid "Filled"
msgstr "Kitöltött"
-#. CIIf
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -571,7 +511,6 @@ msgctxt ""
msgid "Bubble"
msgstr "Buborék"
-#. .*xv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -580,7 +519,6 @@ msgctxt ""
msgid "Bubble Chart"
msgstr "Buborékdiagram"
-#. =E`M
#: dlg_View3D.src
msgctxt ""
"dlg_View3D.src\n"
@@ -589,7 +527,6 @@ msgctxt ""
msgid "3D View"
msgstr "Térbeli nézet"
-#. |)N:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -599,7 +536,6 @@ msgctxt ""
msgid "Insert Row"
msgstr "Sor beszúrása"
-#. .2pr
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -609,7 +545,6 @@ msgctxt ""
msgid "Insert Series"
msgstr "Adatsor beszúrása"
-#. 4^5V
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -619,7 +554,6 @@ msgctxt ""
msgid "Insert Text Column"
msgstr "Szövegoszlop beszúrása"
-#. #HR6
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -629,7 +563,6 @@ msgctxt ""
msgid "Delete Row"
msgstr "Sor törlése"
-#. km3:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -639,7 +572,6 @@ msgctxt ""
msgid "Delete Series"
msgstr "Adatsor törlése"
-#. $3sv
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -649,7 +581,6 @@ msgctxt ""
msgid "Move Series Right"
msgstr "Adatsor mozgatása jobbra"
-#. P/dj
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -659,7 +590,6 @@ msgctxt ""
msgid "Move Row Down"
msgstr "Sor mozgatása lefelé"
-#. $$77
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -668,7 +598,6 @@ msgctxt ""
msgid "Data Table"
msgstr "Adattáblázat"
-#. =E\\
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -678,7 +607,6 @@ msgctxt ""
msgid "Choose a data range"
msgstr "Adattartomány kiválasztása"
-#. t;Y!
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -688,7 +616,6 @@ msgctxt ""
msgid "~Data range"
msgstr "~Adattartomány"
-#. @p99
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -698,7 +625,6 @@ msgctxt ""
msgid "Data series in ~rows"
msgstr "Adatsorok ~sorokban"
-#. 69eT
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -708,7 +634,6 @@ msgctxt ""
msgid "Data series in ~columns"
msgstr "Adatsorok ~oszlopokban"
-#. K@Zi
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -718,7 +643,6 @@ msgctxt ""
msgid "~First row as label"
msgstr "Az ~első sor legyen címke"
-#. [w4)
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -728,7 +652,6 @@ msgctxt ""
msgid "F~irst column as label"
msgstr "Az első ~oszlop legyen címke"
-#. 8]is
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -738,7 +661,6 @@ msgctxt ""
msgid "Regression Type"
msgstr "Regresszió típusa"
-#. (wAr
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -748,7 +670,6 @@ msgctxt ""
msgid "~None"
msgstr "~Nincs"
-#. GG9S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -758,7 +679,6 @@ msgctxt ""
msgid "~Linear"
msgstr "~Lineáris"
-#. 4:q_
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -768,7 +688,6 @@ msgctxt ""
msgid "L~ogarithmic"
msgstr "L~ogaritmikus"
-#. 9K`S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -778,7 +697,6 @@ msgctxt ""
msgid "E~xponential"
msgstr "E~xponenciális"
-#. b9pq
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -788,7 +706,6 @@ msgctxt ""
msgid "~Power"
msgstr "~Hatvány"
-#. knid
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -798,7 +715,6 @@ msgctxt ""
msgid "Equation"
msgstr "Egyenlet"
-#. l)?b
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -808,7 +724,6 @@ msgctxt ""
msgid "Show ~equation"
msgstr "~Egyenlet megjelenítése"
-#. fljX
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -818,7 +733,6 @@ msgctxt ""
msgid "Show ~coefficient of determination (R²)"
msgstr "~Determinációs együttható (R²) megjelenítése"
-#. W|.3
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -828,7 +742,6 @@ msgctxt ""
msgid "~Clockwise direction"
msgstr "~Az óra mutató járásával megegyező irány"
-#. ,hUr
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -838,7 +751,6 @@ msgctxt ""
msgid "Starting angle"
msgstr "Kezdő szög"
-#. 8icR
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -848,7 +760,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~fok"
-#. E8Nh
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -858,7 +769,6 @@ msgctxt ""
msgid "Plot options"
msgstr "Rajzolási beállítások"
-#. 5SC{
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -868,7 +778,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr "Rejtett cellák értékeinek ~kirajzolása"
-#. ;bc;
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -878,7 +787,6 @@ msgctxt ""
msgid "~Light source"
msgstr "~Fényforrás"
-#. b@)R
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -888,7 +796,6 @@ msgctxt ""
msgid "~Ambient light"
msgstr "~Szórt fény"
-#. jXhM
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -897,7 +804,6 @@ msgctxt ""
msgid "Light Preview"
msgstr "Megvilágítás előnézete"
-#. i80-
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -907,7 +813,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "~Függőlegesen halmozott"
-#. i\vL
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -917,7 +822,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~fok"
-#. 0.Y#
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -927,7 +831,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Szöveg iránya"
-#. hDoi
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -937,7 +840,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Szöveg~irány"
-#. YA|:
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -947,7 +849,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. SBG(
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -957,7 +858,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Betűhatások"
-#. I@Wu
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -967,7 +867,6 @@ msgctxt ""
msgid "Font Position"
msgstr "Betűhelyzet"
-#. VWxy
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -976,7 +875,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. VD+x
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -985,7 +883,6 @@ msgctxt ""
msgid "Numbers are required. Check your input."
msgstr "Számok szükségesek. Ellenőrizze a bemenetet."
-#. #o=H
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -994,7 +891,6 @@ msgctxt ""
msgid "The major interval requires a positive number. Check your input."
msgstr "A főbeosztás értékének pozitívnak kell lennie. Ellenőrizze a bemenetet."
-#. c9]c
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1003,7 +899,6 @@ msgctxt ""
msgid "The logarithmic scale requires positive numbers. Check your input."
msgstr "A logaritmikus skálához pozitív számok szükségesek. Ellenőrizze a bemenetet."
-#. dA{W
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1012,7 +907,6 @@ msgctxt ""
msgid "The minimum must be lower than the maximum. Check your input."
msgstr "A minimumnak kisebbnek kell lennie a maximumnál. Ellenőrizze a bemenetet."
-#. uCXQ
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1021,7 +915,6 @@ msgctxt ""
msgid "The major interval needs to be greater than the minor interval. Check your input."
msgstr "A főbeosztás értékének nagyobbnak kell lennie az albeosztás értékénél. Ellenőrizze a bemenetet."
-#. [=Fj
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1030,7 +923,6 @@ msgctxt ""
msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
msgstr "A főbeosztás és az albeosztás értéke a felbontás értékénél nagyobb vagy azzal megegyező lehet. Ellenőrizze a bemenetet."
-#. jLX5
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1040,7 +932,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. OO2y
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1050,7 +941,6 @@ msgctxt ""
msgid "Major grids"
msgstr "Főrács"
-#. B[TW
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1060,7 +950,6 @@ msgctxt ""
msgid "~X axis"
msgstr "~X tengely"
-#. L068
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1070,7 +959,6 @@ msgctxt ""
msgid "~Y axis"
msgstr "~Y tengely"
-#. 9]MJ
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1080,7 +968,6 @@ msgctxt ""
msgid "~Z axis"
msgstr "~Z tengely"
-#. S|.I
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1090,7 +977,6 @@ msgctxt ""
msgid "Secondary axes"
msgstr "Másodlagos tengelyek"
-#. L(K}
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1100,7 +986,6 @@ msgctxt ""
msgid "Minor grids"
msgstr "Segédrács"
-#. #+EL
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1110,7 +995,6 @@ msgctxt ""
msgid "Choose a chart type"
msgstr "Diagramtípus kiválasztása"
-#. !A4Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1120,7 +1004,6 @@ msgctxt ""
msgid "X axis with Categories"
msgstr "X tengely kategóriákkal"
-#. [QFc
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1130,7 +1013,6 @@ msgctxt ""
msgid "~3D Look"
msgstr "~Térhatású"
-#. }\g@
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1140,7 +1022,6 @@ msgctxt ""
msgid "~Stack series"
msgstr "~Adatsorok halmozása"
-#. wAj`
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1150,7 +1031,6 @@ msgctxt ""
msgid "On top"
msgstr "Fent"
-#. {_ID
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1160,7 +1040,6 @@ msgctxt ""
msgid "Percent"
msgstr "Százalék"
-#. fJnZ
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1170,7 +1049,6 @@ msgctxt ""
msgid "Deep"
msgstr "Mély"
-#. 4Y]o
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1180,7 +1058,6 @@ msgctxt ""
msgid "S~mooth lines"
msgstr "Si~ma vonalak"
-#. 4M\0
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1190,7 +1067,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Tulajdonságok..."
-#. CX=Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1200,7 +1076,6 @@ msgctxt ""
msgid "~Sort by X values"
msgstr "~Rendezés X értékek szerint"
-#. lEJ3
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1210,7 +1085,6 @@ msgctxt ""
msgid "Cubic spline"
msgstr "Harmadfokú spline"
-#. =8uq
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1220,7 +1094,6 @@ msgctxt ""
msgid "B-Spline"
msgstr "B-spline"
-#. P[^4
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1230,7 +1103,6 @@ msgctxt ""
msgid "~Resolution"
msgstr "~Felbontás"
-#. 7znu
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1240,7 +1112,6 @@ msgctxt ""
msgid "~Degree of polynomials"
msgstr "~Fokszám"
-#. Yq=6
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1250,7 +1121,6 @@ msgctxt ""
msgid "Customize data ranges for individual data series"
msgstr "Adattartományok testreszabása az egyes adatsorokhoz"
-#. s+aV
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1260,7 +1130,6 @@ msgctxt ""
msgid "Data ~series"
msgstr "Adat~sorok"
-#. JWm_
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1270,7 +1139,6 @@ msgctxt ""
msgid "~Data ranges"
msgstr "~Adattartományok"
-#. .:VG
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1280,7 +1148,6 @@ msgctxt ""
msgid "Ran~ge for %VALUETYPE"
msgstr "%VALUETYPE ~tartománya"
-#. Zl#c
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1290,7 +1157,6 @@ msgctxt ""
msgid "~Categories"
msgstr "~Kategóriák"
-#. 1m2y
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1300,7 +1166,6 @@ msgctxt ""
msgid "Data ~labels"
msgstr "Adat~feliratok"
-#. f[R%
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1310,7 +1175,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. kBDc
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1320,7 +1184,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. G^6K
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1330,7 +1193,6 @@ msgctxt ""
msgid "Sho~w labels"
msgstr "~Címkék megjelenítése"
-#. Zoa+
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1340,7 +1202,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Szöveg iránya"
-#. a`5r
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1350,7 +1211,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "~Függőlegesen halmozott"
-#. 68oB
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1360,7 +1220,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~fok"
-#. e9@?
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1370,7 +1229,6 @@ msgctxt ""
msgid "Text flow"
msgstr "Szövegbeosztás"
-#. 0egC
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1380,7 +1238,6 @@ msgctxt ""
msgid "O~verlap"
msgstr "Á~tfedés"
-#. l:ya
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1390,7 +1247,6 @@ msgctxt ""
msgid "~Break"
msgstr "~Törés"
-#. .@6\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1400,7 +1256,6 @@ msgctxt ""
msgid "Order"
msgstr "Sorrend"
-#. g:FP
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1410,7 +1265,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~Mozaik"
-#. ,jVO
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1420,7 +1274,6 @@ msgctxt ""
msgid "St~agger odd"
msgstr "Pár~os címke eltolása"
-#. 8H5\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1430,7 +1283,6 @@ msgctxt ""
msgid "Stagger ~even"
msgstr "Párat~lan címke eltolása"
-#. 6S](
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1440,7 +1292,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "A~utomatikus"
-#. 1o^t
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1450,7 +1301,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Szöveg~irány"
-#. 0/!M
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1460,7 +1310,6 @@ msgctxt ""
msgid "~Title"
msgstr "~Cím"
-#. PZFl
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1470,7 +1319,6 @@ msgctxt ""
msgid "~Subtitle"
msgstr "~Alcím"
-#. VBni
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1480,7 +1328,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. %y.|
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1490,7 +1337,6 @@ msgctxt ""
msgid "~X axis"
msgstr "~X tengely"
-#. 1O{i
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1500,7 +1346,6 @@ msgctxt ""
msgid "~Y axis"
msgstr "~Y tengely"
-#. QkE=
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1510,7 +1355,6 @@ msgctxt ""
msgid "~Z axis"
msgstr "~Z tengely"
-#. ffL@
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1520,7 +1364,6 @@ msgctxt ""
msgid "Secondary Axes"
msgstr "Másodlagos tengelyek"
-#. @8#P
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1530,7 +1373,6 @@ msgctxt ""
msgid "X ~axis"
msgstr "X ~tengely"
-#. TS(}
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1540,7 +1382,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr "Y t~engely"
-#. -C0w
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1550,7 +1391,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr "Behúzás és térköz"
-#. :WTi
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1560,7 +1400,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. 8tw(
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1570,7 +1409,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
-#. {Klu
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1580,7 +1418,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tabulátor"
-#. jers
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1589,7 +1426,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "Bekezdés"
-#. #C55
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1598,7 +1434,6 @@ msgctxt ""
msgid " degrees"
msgstr " fok"
-#. BMbV
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1608,7 +1443,6 @@ msgctxt ""
msgid "~Right-angled axes"
msgstr "~Derékszögű tengelyek"
-#. jWQx
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1618,7 +1452,6 @@ msgctxt ""
msgid "~X rotation"
msgstr "~X elforgatás"
-#. (%\N
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1628,7 +1461,6 @@ msgctxt ""
msgid "~Y rotation"
msgstr "~Y elforgatás"
-#. miUt
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1638,7 +1470,6 @@ msgctxt ""
msgid "~Z rotation"
msgstr "~Z elforgatás"
-#. N=!e
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1648,7 +1479,6 @@ msgctxt ""
msgid "~Perspective"
msgstr "~Perspektíva"
-#. =YB6
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1658,7 +1488,6 @@ msgctxt ""
msgid "X ~axis"
msgstr "X ~tengely"
-#. hZjk
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1668,7 +1497,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr "Y t~engely"
-#. N7M7
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1678,7 +1506,6 @@ msgctxt ""
msgid "Z axi~s"
msgstr "Z te~ngely"
-#. #b?E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1687,7 +1514,6 @@ msgctxt ""
msgid "Chart Wizard"
msgstr "Diagramtündér"
-#. OV$q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1696,7 +1522,6 @@ msgctxt ""
msgid "Smooth Lines"
msgstr "Sima vonalak"
-#. MLs=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1705,7 +1530,6 @@ msgctxt ""
msgid "Number Format for Percentage Value"
msgstr "Százalékérték számformátuma"
-#. [2mK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1714,7 +1538,6 @@ msgctxt ""
msgid "Chart Type"
msgstr "Diagramtípus"
-#. }`h%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1723,7 +1546,6 @@ msgctxt ""
msgid "Data Range"
msgstr "Adattartomány"
-#. @QzI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1732,7 +1554,6 @@ msgctxt ""
msgid "Chart Elements"
msgstr "Diagramelemek"
-#. ,QlR
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1741,7 +1562,6 @@ msgctxt ""
msgid "Chart Location"
msgstr "Diagram helye"
-#. GOT7
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1750,7 +1570,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. w^ul
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1759,7 +1578,6 @@ msgctxt ""
msgid "Borders"
msgstr "Szegélyek"
-#. bx$a
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1768,7 +1586,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. HE9j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1777,7 +1594,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Átlátszóság"
-#. :7)n
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1786,7 +1602,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. Rje4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1795,7 +1610,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Betűhatások"
-#. _Au`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1804,7 +1618,6 @@ msgctxt ""
msgid "Numbers"
msgstr "Számok"
-#. `Y1Y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1813,7 +1626,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. 8QM_
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1822,7 +1634,6 @@ msgctxt ""
msgid "Up"
msgstr "Fel"
-#. 1$X/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1831,7 +1642,6 @@ msgctxt ""
msgid "Down"
msgstr "Le"
-#. rr/8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1840,7 +1650,6 @@ msgctxt ""
msgid "Layout"
msgstr "Elrendezés"
-#. ]S?b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1849,7 +1658,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. 4L1%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1858,7 +1666,6 @@ msgctxt ""
msgid "Scale"
msgstr "Skála"
-#. 3l@l
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1867,7 +1674,6 @@ msgctxt ""
msgid "Positioning"
msgstr "Elhelyezés"
-#. x\.E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1876,7 +1682,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. 4MGk
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1885,7 +1690,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr "X hibasávok"
-#. 0Igp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1894,7 +1698,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr "Y hibasávok"
-#. Y]0*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1903,7 +1706,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr "Z hibasávok"
-#. YU\X
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1912,7 +1714,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. 5=oK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1921,7 +1722,6 @@ msgctxt ""
msgid "Perspective"
msgstr "Perspektíva"
-#. e{?y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1930,7 +1730,6 @@ msgctxt ""
msgid "Appearance"
msgstr "Megjelenés"
-#. [)o%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1939,7 +1738,6 @@ msgctxt ""
msgid "Illumination"
msgstr "Megvilágítás"
-#. /(B=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1948,7 +1746,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
-#. :+op
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1957,7 +1754,6 @@ msgctxt ""
msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
msgstr "Átlagértékvonal %AVERAGE_VALUE értékkel és %STD_DEVIATION szórással"
-#. E%IQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1966,7 +1762,6 @@ msgctxt ""
msgid "Axis"
msgstr "Tengely"
-#. ibaz
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1975,7 +1770,6 @@ msgctxt ""
msgid "X Axis"
msgstr "X tengely"
-#. ,/Rn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1984,7 +1778,6 @@ msgctxt ""
msgid "Y Axis"
msgstr "Y tengely"
-#. 1om8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1993,7 +1786,6 @@ msgctxt ""
msgid "Z Axis"
msgstr "Z tengely"
-#. -#_=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2002,7 +1794,6 @@ msgctxt ""
msgid "Secondary X Axis"
msgstr "Másodlagos X tengely"
-#. gWrK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2011,7 +1802,6 @@ msgctxt ""
msgid "Secondary Y Axis"
msgstr "Másodlagos Y tengely"
-#. ?[f8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2020,7 +1810,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. YgOW
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2029,7 +1818,6 @@ msgctxt ""
msgid "Grids"
msgstr "Rácsok"
-#. ke3*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2038,7 +1826,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. lOW(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2047,7 +1834,6 @@ msgctxt ""
msgid "X Axis Major Grid"
msgstr "X tengely főrács"
-#. #wk1
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2056,7 +1842,6 @@ msgctxt ""
msgid "Y Axis Major Grid"
msgstr "Y tengely főrács"
-#. UH@@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2065,7 +1850,6 @@ msgctxt ""
msgid "Z Axis Major Grid"
msgstr "Z tengely főrács"
-#. 9?cE
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2074,7 +1858,6 @@ msgctxt ""
msgid "X Axis Minor Grid"
msgstr "X tengely segédrács"
-#. YWO5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2083,7 +1866,6 @@ msgctxt ""
msgid "Y Axis Minor Grid"
msgstr "Y tengely segédrács"
-#. 4j6J
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2092,7 +1874,6 @@ msgctxt ""
msgid "Z Axis Minor Grid"
msgstr "Z tengely segédrács"
-#. sYEn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2101,7 +1882,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. 8c`i
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2110,7 +1890,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. kLHp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2119,7 +1898,6 @@ msgctxt ""
msgid "Titles"
msgstr "Címek"
-#. m[@6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2128,7 +1906,6 @@ msgctxt ""
msgid "Main Title"
msgstr "Főcím"
-#. .lG5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2137,7 +1914,6 @@ msgctxt ""
msgid "Subtitle"
msgstr "Alcím"
-#. *jdG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2146,7 +1922,6 @@ msgctxt ""
msgid "X Axis Title"
msgstr "X tengely címe"
-#. SX[Q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2155,7 +1930,6 @@ msgctxt ""
msgid "Y Axis Title"
msgstr "Y tengely címe"
-#. ]7.b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2164,7 +1938,6 @@ msgctxt ""
msgid "Z Axis Title"
msgstr "Z tengely címe"
-#. $HXQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2173,7 +1946,6 @@ msgctxt ""
msgid "Secondary X Axis Title"
msgstr "Másodlagos X tengely címe"
-#. @.5E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2182,7 +1954,6 @@ msgctxt ""
msgid "Secondary Y Axis Title"
msgstr "Másodlagos Y tengely címe"
-#. ?5k5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2191,7 +1962,6 @@ msgctxt ""
msgid "Label"
msgstr "Címke"
-#. .%E/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2200,7 +1970,6 @@ msgctxt ""
msgid "Data Labels"
msgstr "Adatfeliratok"
-#. oe^C
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2209,7 +1978,6 @@ msgctxt ""
msgid "Data Point"
msgstr "Adatpont"
-#. *`4I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2218,7 +1986,6 @@ msgctxt ""
msgid "Data Points"
msgstr "Adatpontok"
-#. 5;Uc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2227,7 +1994,6 @@ msgctxt ""
msgid "Legend Key"
msgstr "Jelmagyarázat jel"
-#. 1mXl
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2236,7 +2002,6 @@ msgctxt ""
msgid "Data Series"
msgstr "Adatsor"
-#. A^\/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2245,7 +2010,6 @@ msgctxt ""
msgid "Data Series"
msgstr "Adatsorok"
-#. Q.Bm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2254,7 +2018,6 @@ msgctxt ""
msgid "Trend Line"
msgstr "Trendvonal"
-#. 3A2I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2263,7 +2026,6 @@ msgctxt ""
msgid "Trend Lines"
msgstr "Trendvonalak"
-#. ~J6k
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2272,7 +2034,6 @@ msgctxt ""
msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
msgstr "%FORMULA trendvonal, amelynek pontossága R² = %RSQUARED"
-#. vzbm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2281,7 +2042,6 @@ msgctxt ""
msgid "Mean Value Line"
msgstr "Középértékvonal"
-#. (_Oj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2290,7 +2050,6 @@ msgctxt ""
msgid "Equation"
msgstr "Egyenlőség"
-#. 1hj{
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2299,7 +2058,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr "X hibasávok"
-#. RN#6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2308,7 +2066,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr "Y hibasávok"
-#. Jr2O
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2317,7 +2074,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr "Z hibasávok"
-#. Zp(8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2326,7 +2082,6 @@ msgctxt ""
msgid "Stock Loss"
msgstr "Árfolyamveszteség"
-#. ;nt8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2335,7 +2090,6 @@ msgctxt ""
msgid "Stock Gain"
msgstr "Árfolyamnyereség"
-#. 33)~
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2344,7 +2098,6 @@ msgctxt ""
msgid "Chart Area"
msgstr "Diagramterület"
-#. 3-4`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2353,7 +2106,6 @@ msgctxt ""
msgid "Chart"
msgstr "Diagram"
-#. t8[[
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2362,7 +2114,6 @@ msgctxt ""
msgid "Chart Wall"
msgstr "Diagramháttér"
-#. 0Hq|
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2371,7 +2122,6 @@ msgctxt ""
msgid "Chart Floor"
msgstr "Diagram alapsíkja"
-#. awbi
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2380,7 +2130,6 @@ msgctxt ""
msgid "Drawing Object"
msgstr "Rajzobjektum"
-#. T0^x
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2389,7 +2138,6 @@ msgctxt ""
msgid "Select data range"
msgstr "Adattartomány kijelölése"
-#. YlE)
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2398,7 +2146,6 @@ msgctxt ""
msgid "Select a color using the color dialog"
msgstr "Szín választása a szín párbeszédablakkal"
-#. 5Wbc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2407,7 +2154,6 @@ msgctxt ""
msgid "Light Source %LIGHTNUMBER"
msgstr "Fényforrás %LIGHTNUMBER"
-#. bv_+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2416,7 +2162,6 @@ msgctxt ""
msgid "Data Series '%SERIESNAME'"
msgstr "„%SERIESNAME” adatsor"
-#. -x7j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2425,7 +2170,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER"
msgstr "Adatpont: %POINTNUMBER"
-#. R7n^
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2434,7 +2178,6 @@ msgctxt ""
msgid "Values: %POINTVALUES"
msgstr "Értékek: %POINTVALUES"
-#. DM-.
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2443,7 +2186,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
msgstr "Adatpont: %POINTNUMBER, adatsor: %SERIESNUMBER, érték: %POINTVALUES"
-#. _ofE
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2452,7 +2194,6 @@ msgctxt ""
msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
msgstr "A(z) %SERIESNUMBER számú adatsorból a(z) %POINTNUMBER adatpont kijelölve, érték: %POINTVALUES"
-#. 3f^o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2461,7 +2202,6 @@ msgctxt ""
msgid "%OBJECTNAME selected"
msgstr "%OBJECTNAME kijelölve"
-#. }NA@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2470,7 +2210,6 @@ msgctxt ""
msgid "Pie exploded by %PERCENTVALUE percent"
msgstr "%PERCENTVALUE százalékkal robbantott tortadiagram"
-#. {Pez
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2479,7 +2218,6 @@ msgctxt ""
msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
msgstr "%OBJECTNAME „%SERIESNAME” adatsorhoz"
-#. Tkh#
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2488,7 +2226,6 @@ msgctxt ""
msgid "%OBJECTNAME for all Data Series"
msgstr "%OBJECTNAME minden adatsorhoz"
-#. f,Vj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2497,7 +2234,6 @@ msgctxt ""
msgid "Edit chart type"
msgstr "Diagramtípus szerkesztése"
-#. owTG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2506,7 +2242,6 @@ msgctxt ""
msgid "Edit data ranges"
msgstr "Adattartományok szerkesztése"
-#. h[n4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2515,7 +2250,6 @@ msgctxt ""
msgid "Edit 3D view"
msgstr "Térbeli nézet szerkesztése"
-#. 7wE:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2524,7 +2258,6 @@ msgctxt ""
msgid "Edit chart data"
msgstr "Diagramadatok szerkesztése"
-#. G9*d
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2533,7 +2266,6 @@ msgctxt ""
msgid "Legend on/off"
msgstr "Jelmagyarázat be/ki"
-#. ms!r
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2542,7 +2274,6 @@ msgctxt ""
msgid "Horizontal grid on/off"
msgstr "Vízszintes rácsozat be/ki"
-#. zxjI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2551,7 +2282,6 @@ msgctxt ""
msgid "Scale Text"
msgstr "Szöveg átméretezése"
-#. ]oB2
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2560,7 +2290,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr "Automatikus elrendezés"
-#. 1Gan
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2569,7 +2298,6 @@ msgctxt ""
msgid "This function cannot be completed with the selected objects."
msgstr "Ezt a műveletet nem lehet végrehajtani a kiválasztott objektumokkal."
-#. KLJ:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2578,7 +2306,6 @@ msgctxt ""
msgid "Edit text"
msgstr "Szöveg szerkesztése"
-#. zNY4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2587,7 +2314,6 @@ msgctxt ""
msgid "Column %COLUMNNUMBER"
msgstr "%COLUMNNUMBER. oszlop"
-#. 23K3
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2596,7 +2322,6 @@ msgctxt ""
msgid "Row %ROWNUMBER"
msgstr "%ROWNUMBER. sor"
-#. S=*e
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2605,7 +2330,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. $=l!
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2614,7 +2338,6 @@ msgctxt ""
msgid "X-Values"
msgstr "X értékek"
-#. $f\y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2623,7 +2346,6 @@ msgctxt ""
msgid "Y-Values"
msgstr "Y értékek"
-#. I[7E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2632,7 +2354,6 @@ msgctxt ""
msgid "Bubble Sizes"
msgstr "Buborékméretek"
-#. q(j;
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2641,7 +2362,6 @@ msgctxt ""
msgid "X-Error-Bars"
msgstr "X hibasávok"
-#. lrQ\
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2650,7 +2370,6 @@ msgctxt ""
msgid "Positive X-Error-Bars"
msgstr "Pozitív X hibasávok"
-#. QFp(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2659,7 +2378,6 @@ msgctxt ""
msgid "Negative X-Error-Bars"
msgstr "Negatív X hibasávok"
-#. imSO
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2668,7 +2386,6 @@ msgctxt ""
msgid "Y-Error-Bars"
msgstr "Y hibasávok"
-#. `UFh
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2677,7 +2394,6 @@ msgctxt ""
msgid "Positive Y-Error-Bars"
msgstr "Pozitív Y hibasávok"
-#. l@)o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2686,7 +2402,6 @@ msgctxt ""
msgid "Negative Y-Error-Bars"
msgstr "Negatív Y hibasávok"
-#. ],hv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2695,7 +2410,6 @@ msgctxt ""
msgid "Open Values"
msgstr "Értékek megnyitása"
-#. B*OJ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2704,7 +2418,6 @@ msgctxt ""
msgid "Close Values"
msgstr "Értékek bezárása"
-#. i3VT
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2713,7 +2426,6 @@ msgctxt ""
msgid "Low Values"
msgstr "Alacsony értékek"
-#. cD^v
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2722,7 +2434,6 @@ msgctxt ""
msgid "High Values"
msgstr "Magas értékek"
-#. ;-Ya
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2731,7 +2442,6 @@ msgctxt ""
msgid "Categories"
msgstr "Kategóriák"
-#. IZBn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2740,7 +2450,6 @@ msgctxt ""
msgid "Unnamed Series"
msgstr "Névtelen adatsorok"
-#. ~O0Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2749,7 +2458,6 @@ msgctxt ""
msgid "Unnamed Series %NUMBER"
msgstr "Névtelen adatsorok %NUMBER"
-#. |QKQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2758,7 +2466,6 @@ msgctxt ""
msgid "Select Range for %VALUETYPE of %SERIESNAME"
msgstr "Válasszon tartományt a következőhöz: %SERIESNAME %VALUETYPE"
-#. x!Se
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2767,7 +2474,6 @@ msgctxt ""
msgid "Select Range for Categories"
msgstr "Tartomány kijelölése kategóriákhoz"
-#. m3}R
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2776,7 +2482,6 @@ msgctxt ""
msgid "Select Range for data labels"
msgstr "Tartomány kijelölése adatfeliratokhoz"
-#. RJb?
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2785,7 +2490,6 @@ msgctxt ""
msgid "Select Range for Positive Error Bars"
msgstr "Válasszon tartományt a pozitív hibasávokhoz"
-#. `C$+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2794,7 +2498,6 @@ msgctxt ""
msgid "Select Range for Negative Error Bars"
msgstr "Válasszon tartományt a negatív hibasávokhoz"
-#. ?E$Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2807,7 +2510,6 @@ msgstr ""
"Az utoljára megadott adata helytelen.\n"
"Elveti ezt a módosítást és bezárja a párbeszédablakot?"
-#. nCOv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2816,7 +2518,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "Balról jobbra"
-#. $kId
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2825,7 +2526,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "Jobbról balra"
-#. S`BX
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2834,7 +2534,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "Szülőobjektum beállításainak használata"
-#. rckm
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2844,7 +2543,6 @@ msgctxt ""
msgid "Axis line"
msgstr "Tengelyvonal"
-#. SD6X
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2854,7 +2552,6 @@ msgctxt ""
msgid "~Cross other axis at"
msgstr "~Másik tengely metszése"
-#. c9cc
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2864,7 +2561,6 @@ msgctxt ""
msgid "Start"
msgstr "Kezdés"
-#. YVFb
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2874,7 +2570,6 @@ msgctxt ""
msgid "End"
msgstr "Vége"
-#. Hw.^
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2884,7 +2579,6 @@ msgctxt ""
msgid "Value"
msgstr "Érték"
-#. +-{(
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2894,7 +2588,6 @@ msgctxt ""
msgid "Category"
msgstr "Kategória"
-#. ~`FW
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2904,7 +2597,6 @@ msgctxt ""
msgid "Axis ~between categories"
msgstr "~Tengely kategóriák között"
-#. LY7z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2914,7 +2606,6 @@ msgctxt ""
msgid "Labels"
msgstr "Címkék"
-#. 8[W:
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2924,7 +2615,6 @@ msgctxt ""
msgid "~Place labels"
msgstr "~Címkék elhelyezése"
-#. D[s0
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2934,7 +2624,6 @@ msgctxt ""
msgid "Near axis"
msgstr "Tengelyhez közel"
-#. S%S2
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2944,7 +2633,6 @@ msgctxt ""
msgid "Near axis (other side)"
msgstr "Tengelyhez közel (másik oldal)"
-#. 1Qec
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2954,7 +2642,6 @@ msgctxt ""
msgid "Outside start"
msgstr "Kívülről kezdve"
-#. %t1}
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2964,7 +2651,6 @@ msgctxt ""
msgid "Outside end"
msgstr "Kívül végződve"
-#. QN1h
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2974,7 +2660,6 @@ msgctxt ""
msgid "~Distance"
msgstr "~Távolság"
-#. mPyG
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2984,7 +2669,6 @@ msgctxt ""
msgid "Interval marks"
msgstr "Beosztásjelek"
-#. /VJ\
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2994,7 +2678,6 @@ msgctxt ""
msgid "Major:"
msgstr "Főbeosztás:"
-#. t^2?
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3004,7 +2687,6 @@ msgctxt ""
msgid "~Inner"
msgstr "~Belső"
-#. ~FK?
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3014,7 +2696,6 @@ msgctxt ""
msgid "~Outer"
msgstr "~Külső"
-#. @~-@
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3024,7 +2705,6 @@ msgctxt ""
msgid "Minor:"
msgstr "Albeosztás:"
-#. 3/jC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3034,7 +2714,6 @@ msgctxt ""
msgid "I~nner"
msgstr "B~első"
-#. q[lj
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3044,7 +2723,6 @@ msgctxt ""
msgid "O~uter"
msgstr "Kü~lső"
-#. -O43
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3054,7 +2732,6 @@ msgctxt ""
msgid "Place ~marks"
msgstr "~Jelek elhelyezése"
-#. jiQk
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3064,7 +2741,6 @@ msgctxt ""
msgid "At labels"
msgstr "Címkéknél"
-#. V3YC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3074,7 +2750,6 @@ msgctxt ""
msgid "At axis"
msgstr "Tengelynél"
-#. 8E8C
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3084,7 +2759,6 @@ msgctxt ""
msgid "At axis and labels"
msgstr "Tengelynél és címkéknél"
-#. ;!Z4
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3094,7 +2768,6 @@ msgctxt ""
msgid "Grids"
msgstr "Rács"
-#. XP5Z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3104,7 +2777,6 @@ msgctxt ""
msgid "Show major ~grid"
msgstr "~Főrács megjelenítése"
-#. /pjH
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3114,7 +2786,6 @@ msgctxt ""
msgid "Mo~re..."
msgstr "~Részletek..."
-#. 3LQ!
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3124,7 +2795,6 @@ msgctxt ""
msgid "~Show minor grid"
msgstr "~Segédrács megjelenítése"
-#. ZpxH
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3134,7 +2804,6 @@ msgctxt ""
msgid "Mor~e..."
msgstr "Rés~zletek..."
-#. =[g1
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3144,7 +2813,6 @@ msgctxt ""
msgid "Standard Error"
msgstr "Standard hiba"
-#. hiJ@
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3154,7 +2822,6 @@ msgctxt ""
msgid "Standard Deviation"
msgstr "Szórás"
-#. ;Hm,
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3164,7 +2831,6 @@ msgctxt ""
msgid "Variance"
msgstr "Szórásnégyzet"
-#. D]IP
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3174,7 +2840,6 @@ msgctxt ""
msgid "Error Margin"
msgstr "Hibahatár"
-#. ,[ic
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3184,7 +2849,6 @@ msgctxt ""
msgid "Error Category"
msgstr "Hibakategória"
-#. |Bzt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3194,7 +2858,6 @@ msgctxt ""
msgid "~None"
msgstr "~Nincs"
-#. (T]f
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3204,7 +2867,6 @@ msgctxt ""
msgid "~Constant Value"
msgstr "Állan~dó érték"
-#. 21lr
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3214,7 +2876,6 @@ msgctxt ""
msgid "~Percentage"
msgstr "~Százalék"
-#. 40%j
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3224,7 +2885,6 @@ msgctxt ""
msgid "Cell ~Range"
msgstr "Cella~tartomány"
-#. ;Mat
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3234,7 +2894,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. [9VJ
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3244,7 +2903,6 @@ msgctxt ""
msgid "P~ositive (+)"
msgstr "P~ozitív (+)"
-#. 1,gt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3254,7 +2912,6 @@ msgctxt ""
msgid "~Negative (-)"
msgstr "~Negatív (-)"
-#. LUUh
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3264,7 +2921,6 @@ msgctxt ""
msgid "Same value for both"
msgstr "Ugyanaz az érték mindkettőhöz"
-#. Fj-Q
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3274,7 +2930,6 @@ msgctxt ""
msgid "Error Indicator"
msgstr "Hibajelző"
-#. cl0H
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3284,7 +2939,6 @@ msgctxt ""
msgid "Positive ~and Negative"
msgstr "Pozitív é~s negatív"
-#. _eU_
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3294,7 +2948,6 @@ msgctxt ""
msgid "Pos~itive"
msgstr "Poz~itív"
-#. FS4-
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3304,7 +2957,6 @@ msgctxt ""
msgid "Ne~gative"
msgstr "Ne~gatív"
-#. 5KHP
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3314,7 +2966,6 @@ msgctxt ""
msgid "Days"
msgstr "Nap"
-#. *u.K
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3324,7 +2975,6 @@ msgctxt ""
msgid "Months"
msgstr "Hónap"
-#. )(SQ
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3334,7 +2984,6 @@ msgctxt ""
msgid "Years"
msgstr "Év"
-#. ~9J`
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3344,7 +2993,6 @@ msgctxt ""
msgid "Scale"
msgstr "Skála"
-#. dTXi
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3354,7 +3002,6 @@ msgctxt ""
msgid "~Reverse direction"
msgstr "~Fordított irány"
-#. :\7L
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3364,7 +3011,6 @@ msgctxt ""
msgid "~Logarithmic scale"
msgstr "~Logaritmikus skála"
-#. )tli
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3374,7 +3020,6 @@ msgctxt ""
msgid "T~ype"
msgstr "~Típus"
-#. fGyk
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3384,7 +3029,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. _1xX
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3394,7 +3038,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. :yj^
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3404,7 +3047,6 @@ msgctxt ""
msgid "Date"
msgstr "Dátum"
-#. j%DR
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3414,7 +3056,6 @@ msgctxt ""
msgid "~Minimum"
msgstr "~Minimum"
-#. #X(g
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3424,7 +3065,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. V^*c
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3434,7 +3074,6 @@ msgctxt ""
msgid "Ma~ximum"
msgstr "Ma~ximum"
-#. ez:a
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3444,7 +3083,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "A~utomatikus"
-#. 52OW
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3454,7 +3092,6 @@ msgctxt ""
msgid "R~esolution"
msgstr "F~elbontás"
-#. vO{%
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3464,7 +3101,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "Automat~ikus"
-#. CUJ9
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3474,7 +3110,6 @@ msgctxt ""
msgid "Ma~jor interval"
msgstr "~Főbeosztás"
-#. XCc[
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3484,7 +3119,6 @@ msgctxt ""
msgid "Au~tomatic"
msgstr "~Automatikus"
-#. ;r1\
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3494,7 +3128,6 @@ msgctxt ""
msgid "Minor inter~val count"
msgstr "Albe~osztások száma"
-#. {bi6
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3504,7 +3137,6 @@ msgctxt ""
msgid "Minor inter~val"
msgstr "Albeosztás"
-#. {*X1
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3514,7 +3146,6 @@ msgctxt ""
msgid "Aut~omatic"
msgstr "Auto~matikus"
-#. [;l[
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3524,7 +3155,6 @@ msgctxt ""
msgid "Re~ference value"
msgstr "~Referenciaérték"
-#. =H40
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3534,7 +3164,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "Automat~ikus"
-#. 6:Wa
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3544,7 +3173,6 @@ msgctxt ""
msgid "Box"
msgstr "Téglalap"
-#. -l2b
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3554,7 +3182,6 @@ msgctxt ""
msgid "Cylinder"
msgstr "Henger"
-#. PKtY
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3564,7 +3191,6 @@ msgctxt ""
msgid "Cone"
msgstr "Kúp"
-#. 57Zr
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3574,7 +3200,6 @@ msgctxt ""
msgid "Pyramid"
msgstr "Gúla"
-#. -7}K
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3584,7 +3209,6 @@ msgctxt ""
msgid "Best fit"
msgstr "Legjobb illesztés"
-#. s8-Y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3594,7 +3218,6 @@ msgctxt ""
msgid "Center"
msgstr "Középre"
-#. bSEA
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3604,7 +3227,6 @@ msgctxt ""
msgid "Above"
msgstr "Felett"
-#. u\_G
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3614,7 +3236,6 @@ msgctxt ""
msgid "Top left"
msgstr "Bal felső"
-#. a9#w
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3624,7 +3245,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. =-^)
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3634,7 +3254,6 @@ msgctxt ""
msgid "Bottom left"
msgstr "Bal alsó"
-#. i3le
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3644,7 +3263,6 @@ msgctxt ""
msgid "Below"
msgstr "Alatt"
-#. ui1O
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3654,7 +3272,6 @@ msgctxt ""
msgid "Bottom right"
msgstr "Jobb alsó"
-#. G8,p
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3664,7 +3281,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobbra"
-#. DnRS
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3674,7 +3290,6 @@ msgctxt ""
msgid "Top right"
msgstr "Jobb felső"
-#. @A~T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3684,7 +3299,6 @@ msgctxt ""
msgid "Inside"
msgstr "Belül"
-#. Ub2P
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3694,7 +3308,6 @@ msgctxt ""
msgid "Outside"
msgstr "Kívül"
-#. ^q^+
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3704,7 +3317,6 @@ msgctxt ""
msgid "Near origin"
msgstr "A kezdőpont közelében"
-#. r(m@
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3714,7 +3326,6 @@ msgctxt ""
msgid "Show value as ~number"
msgstr "É~rték megjelenítése számként"
-#. 1j\s
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3724,7 +3335,6 @@ msgctxt ""
msgid "Number ~format..."
msgstr "~Számformátum..."
-#. b5UV
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3734,7 +3344,6 @@ msgctxt ""
msgid "Show value as ~percentage"
msgstr "É~rték megjelenítése százalékértékként"
-#. kGL.
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3744,7 +3353,6 @@ msgctxt ""
msgid "Percentage f~ormat..."
msgstr "S~zázalékérték formátuma..."
-#. Hgqq
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3754,7 +3362,6 @@ msgctxt ""
msgid "Show ~category"
msgstr "~Kategória megjelenítése"
-#. =L9T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3764,7 +3371,6 @@ msgctxt ""
msgid "Show ~legend key"
msgstr "Je~lmagyarázat megjelenítése"
-#. V0kj
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3774,7 +3380,6 @@ msgctxt ""
msgid "Place~ment"
msgstr "~Elhelyezés"
-#. HUEL
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3784,7 +3389,6 @@ msgctxt ""
msgid "Rotate Text"
msgstr "Szöveg elforgatása"
-#. ;\$8
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3794,7 +3398,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~fok"
-#. 4#_y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3804,7 +3407,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Szöveg~irány"
-#. ng[|
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3814,7 +3416,6 @@ msgctxt ""
msgid "Align data series to"
msgstr "Adatsor igazítása"
-#. ~_SB
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3824,7 +3425,6 @@ msgctxt ""
msgid "Primary Y axis"
msgstr "Elsődleges Y tengely"
-#. _zJy
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3834,7 +3434,6 @@ msgctxt ""
msgid "Secondary Y axis"
msgstr "Másodlagos Y tengely"
-#. XQNr
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3844,7 +3443,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. KMAa
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3854,7 +3452,6 @@ msgctxt ""
msgid "~Overlap"
msgstr "~Átfedés"
-#. p1=I
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3864,7 +3461,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Térköz"
-#. Z[1D
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3874,7 +3470,6 @@ msgctxt ""
msgid "Connection lines"
msgstr "Összekötő vonalak"
-#. 0*o)
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3884,7 +3479,6 @@ msgctxt ""
msgid "Show ~bars side by side"
msgstr "~Sávok megjelenítése"
-#. QK3f
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3894,7 +3488,6 @@ msgctxt ""
msgid "Plot options"
msgstr "Rajzolási beállítások"
-#. |\AV
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3904,7 +3497,6 @@ msgctxt ""
msgid "Plot missing values"
msgstr "Hiányzó értékek kirajzolása"
-#. #96`
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3914,7 +3506,6 @@ msgctxt ""
msgid "~Leave gap"
msgstr "~Hézag hagyása"
-#. um\c
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3924,7 +3515,6 @@ msgctxt ""
msgid "~Assume zero"
msgstr "~Legyen nulla"
-#. ATS2
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3934,7 +3524,6 @@ msgctxt ""
msgid "~Continue line"
msgstr "~Folytonos vonal"
-#. _SmQ
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3944,7 +3533,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr "Rejtett cellák értékeinek ~kirajzolása"
-#. ]ma^
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
@@ -3954,7 +3542,6 @@ msgctxt ""
msgid "Choose titles, legend, and grid settings"
msgstr "Címek, jelmagyarázat és rács beállítása"
-#. @8D|
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
diff --git a/source/hu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index c05ca752cfd..bf5e13b94a3 100644
--- a/source/hu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 09:58+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ALWO
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "ADO"
msgstr "ADO"
-#. =/ma
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Microsoft Access"
msgstr "Microsoft Access"
-#. NuVU
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
index 07af45d67ad..7efed259335 100644
--- a/source/hu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 09:59+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :[M$
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
index 3080208dc82..499ca97a7e3 100644
--- a/source/hu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 09:59+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +A^i
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
index 4da17d194a6..45f2a1ba7f9 100644
--- a/source/hu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 09:59+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Tc`~
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Evolution Local"
msgstr "Helyi Evolution"
-#. hK7\
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Evolution LDAP"
msgstr "Evolution LDAP"
-#. kWa#
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
index 35b89726a79..80cfebf0033 100644
--- a/source/hu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 09:59+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. LIZi
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
index 1bffb127edc..a3deb9764e9 100644
--- a/source/hu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:00+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. B1h3
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
index 917f8956065..b744bddad28 100644
--- a/source/hu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:00+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 2wEV
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "JDBC"
msgstr "JDBC"
-#. 73*p
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
index 78384de8d6b..bfa852b5b4e 100644
--- a/source/hu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:00+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 6J-U
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index 3ce2fbd083a..e7892537ee0 100644
--- a/source/hu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:00+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. KR!^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index d41e7697ffc..fe9573615c0 100644
--- a/source/hu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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-03-25 09:51+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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/hu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
index f441833b5cd..ff3b90869e1 100644
--- a/source/hu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:01+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Br*`
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Microsoft Outlook Address Book"
msgstr "Microsoft Outlook-címjegyzék"
-#. [/:1
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Microsoft Windows Address Book"
msgstr "Microsoft Windows-címjegyzék"
-#. %2[M
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "SeaMonkey Address Book"
msgstr "SeaMonkey-címjegyzék"
-#. 54[^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Thunderbird/Icedove Address Book"
msgstr "Thunderbird/Icedove-címjegyzék"
-#. zqSc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index 2eba58d6c0e..615217447a8 100644
--- a/source/hu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:02+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (_UU
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "MySQL (JDBC)"
msgstr "MySQL (JDBC)"
-#. ORu8
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "MySQL (ODBC)"
msgstr "MySQL (ODBC)"
-#. bwU]
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
index bb3e88e4b4d..3acfeb00366 100644
--- a/source/hu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:03+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. FkM2
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
index db9c520f1e0..eb6870b3e58 100644
--- a/source/hu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-06-13 10:03+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Ckhc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/hu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
index c7edc77b75e..6401ab50f13 100644
--- a/source/hu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ b/source/hu/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: 2012-09-07 13:33+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4\P|
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/hu/connectivity/source/resource.po b/source/hu/connectivity/source/resource.po
index b105a00e7bf..1aa0eb9c501 100644
--- a/source/hu/connectivity/source/resource.po
+++ b/source/hu/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-10-08 11:36+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Mozilla-/Seamonkey-címjegyzék"
#. 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 "Thunderbird-címjegyzék"
-#. $Ihk
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Outlook Express Addressbook"
msgstr "Outlook Express-címjegyzék "
-#. @KYo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Outlook (MAPI) Addressbook"
msgstr "Outlook- (MAPI) címjegyzék"
-#. 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áblák létrehozása nem támogatott ebben a címjegyzéktípusban."
-#. +$$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 "Nem lehet új címjegyzéket létrehozni miközben fut a 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 "Egy címjegyzékbejegyzés kikeresése sikertelen volt, ismeretlen hiba történt."
-#. 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 "Egy címjegyzéknév kikeresése sikertelen volt, ismeretlen hiba történt."
-#. 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 "Az eredményre várakozás közben időtúllépés következett be."
-#. 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 "Hiba történt a lekérdezés végrehajtása közben."
-#. 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 "Nem változtathatja meg a Mozilla-címjegyzéket miközben a Mozilla fut."
-#. `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 "A Mozilla-címjegyzéket egy másik folyamat megváltoztatta, nem lehet módosítani ebben az állapotban."
-#. RrJO
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "Can't find the requested row."
msgstr "Nem található a kért sor."
-#. 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 "Nem található a kért sorhoz tartozó kártya."
-#. /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 "A lekérdezést nem lehet végrehajtani. Legalább egy táblát meg kell adni."
-#. 1W%h
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -161,7 +145,6 @@ msgctxt ""
msgid "The driver does not support the 'COUNT' function."
msgstr "Az illesztőprogram nem támogatja a „COUNT” függvényt."
-#. $@ms
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -170,7 +153,6 @@ msgctxt ""
msgid "This statement type not supported by this database driver."
msgstr "Ezt az utasítást nem támogatja ez az adatbázis-illesztőprogram."
-#. EL7J
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "An unknown error occurred."
msgstr "Ismeretlen hiba történt."
-#. @3sw
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -188,7 +169,6 @@ msgctxt ""
msgid "Could not create a new address book. Mozilla error code is $1$."
msgstr "Nem lehet új címjegyzéket létrehozni. A Mozilla-hibakód: $1$."
-#. `0Um
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -197,7 +177,6 @@ msgctxt ""
msgid "The library '$libname$' could not be loaded."
msgstr "A(z) „$libname$” könyvtárat nem sikerült betölteni."
-#. +MQ~
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -206,7 +185,6 @@ msgctxt ""
msgid "An error occurred while refreshing the current row."
msgstr "Hiba történt az aktuális sor frissítése közben."
-#. NMzi
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -215,7 +193,6 @@ msgctxt ""
msgid "An error occurred while getting the current row."
msgstr "Hiba történt az aktuális sor lekérése közben."
-#. OSgY
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -224,7 +201,6 @@ msgctxt ""
msgid "The row update can not be canceled."
msgstr "A sor frissítését nem lehet megszakítani."
-#. cW9u
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -233,7 +209,6 @@ msgctxt ""
msgid "A new row can not be created."
msgstr "Nem hozható létre új sor."
-#. $E$+
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -242,7 +217,6 @@ msgctxt ""
msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
msgstr "A lekérdezést nem lehet végrehajtani. Az „IS NULL” csak oszlopnévvel használható."
-#. Fb]K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -251,7 +225,6 @@ msgctxt ""
msgid "Illegal cursor movement occurred."
msgstr "Nem megengedett kurzormozgás történt."
-#. 23.f
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -260,7 +233,6 @@ msgctxt ""
msgid "Please commit row '$position$' before update rows or insert new rows."
msgstr "Sorok frissítése előtt vagy új sorok beszúrása előtt tárolja a(z) „$position$” sort."
-#. ;4ia
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -269,7 +241,6 @@ msgctxt ""
msgid "The update call can not be executed. The row is invalid."
msgstr "A frissítési hívást nem lehet végrehajtani. A sor érvénytelen."
-#. =+Aj
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -278,7 +249,6 @@ msgctxt ""
msgid "The current row can not be saved."
msgstr "Az aktuális sort nem lehet menteni."
-#. Q%m0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -287,7 +257,6 @@ msgctxt ""
msgid "No hostname was provided."
msgstr "Nincs megadva a gépnév."
-#. R^[G
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -296,7 +265,6 @@ msgctxt ""
msgid "No Base DN was provided."
msgstr "Nincs megadva az alap DN."
-#. |cpH
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -305,7 +273,6 @@ msgctxt ""
msgid "The connection to the LDAP server could not be established."
msgstr "Nem sikerült létrehozni a kapcsolatot az LDAP-kiszolgálóhoz."
-#. o-5b
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -314,7 +281,6 @@ msgctxt ""
msgid "It doesn't exist a connection to the database."
msgstr "Nincs kapcsolódva az adatbázishoz."
-#. KDhr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -323,7 +289,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 "Megpróbált beállítani egy paramétert a(z) „$pos$” pozíciónál, de csak „$count$” paraméter engedélyezett. Ennek egyik oka lehet az, hogy a „ParameterNameSubstitution” tulajdonság nincs IGAZ értékre állítva az adatforrásban."
-#. yvZX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -332,7 +297,6 @@ msgctxt ""
msgid "End of InputStream reached before satisfying length specified when InputStream was set."
msgstr "Elérte az InputStream végét az InputStream beállításakor megadott hosszúság elérése előtt."
-#. #Wb^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -341,7 +305,6 @@ msgctxt ""
msgid "The input stream was not set."
msgstr "Az InputStream nincs beállítva."
-#. :KKT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -350,7 +313,6 @@ msgctxt ""
msgid "There is no element named '$name$'."
msgstr "Nincs „$name$” nevű elem."
-#. ;HCE
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -359,7 +321,6 @@ msgctxt ""
msgid "Invalid bookmark value"
msgstr "Érvénytelen könyvjelzőérték"
-#. (FRl
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -368,7 +329,6 @@ msgctxt ""
msgid "Privilege not granted: Only table privileges can be granted."
msgstr "A jogosultság nem lett megadva: csak táblajogosultságok adhatók."
-#. DeN#
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -377,7 +337,6 @@ msgctxt ""
msgid "Privilege not revoked: Only table privileges can be revoked."
msgstr "A jogosultság nem lett visszavonva: csak táblajogosultságok vonhatók vissza."
-#. ;H!L
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -386,7 +345,6 @@ msgctxt ""
msgid "The column name '$columnname$' is unknown."
msgstr "Ismeretlen oszlopnév: „$columnname$”."
-#. N7LX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -395,7 +353,6 @@ msgctxt ""
msgid "Function sequence error."
msgstr "Függvény sorrendi hibája."
-#. xmW\
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -404,7 +361,6 @@ msgctxt ""
msgid "Invalid descriptor index."
msgstr "Érvénytelen a leíró indexe."
-#. kM=T
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -413,7 +369,6 @@ msgctxt ""
msgid "The driver does not support the function '$functionname$'."
msgstr "Az illesztőprogram nem támogatja ezt a funkciót: „$functionname$”."
-#. 7iBd
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -422,7 +377,6 @@ msgctxt ""
msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
msgstr "Az illesztőprogram nem támogatja ezt a funkciót: „$featurename$”. Nincs implementálva."
-#. E0Xc
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -431,7 +385,6 @@ msgctxt ""
msgid "The formula for TypeInfoSettings is wrong!"
msgstr "A TypeInfoSettings formulája rossz!"
-#. ;#iF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -440,7 +393,6 @@ msgctxt ""
msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
msgstr "A(z) „$string$” karakterlánc hosszabb lenne, mint a maximális $maxlen$ karakter, ha a(z) „$charset$” karakterkódolásra konvertálná."
-#. Jb4D
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -449,7 +401,6 @@ msgctxt ""
msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
msgstr "A(z) „$string$” karakterlánc nem konvertálható a(z) „$charset$” kódolás használatával."
-#. DMWV
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -458,7 +409,6 @@ msgctxt ""
msgid "The connection URL is invalid."
msgstr "A kapcsolati URL érvénytelen."
-#. 84as
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -467,7 +417,6 @@ msgctxt ""
msgid "The query can not be executed. It is too complex."
msgstr "A lekérdezést nem lehet végrehajtani. Túl bonyolult."
-#. !w]^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -476,7 +425,6 @@ msgctxt ""
msgid "The query can not be executed. The operator is too complex."
msgstr "A lekérdezést nem lehet végrehajtani. Az operátor túl bonyolult."
-#. !=}r
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -485,7 +433,6 @@ msgctxt ""
msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
msgstr "A lekérdezést nem lehet végrehajtani. A „LIKE” kifejezés nem alkalmazható ilyen típusú oszlopokra."
-#. k1,7
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -494,7 +441,6 @@ msgctxt ""
msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
msgstr "A lekérdezést nem lehet végrehajtani. A „LIKE” csak karakterlánc-argumentummal használható."
-#. V(Tp
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -503,7 +449,6 @@ msgctxt ""
msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
msgstr "A lekérdezést nem lehet végrehajtani. A „NOT LIKE” feltétel túl bonyolult."
-#. NizQ
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -512,7 +457,6 @@ msgctxt ""
msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
msgstr "A lekérdezést nem lehet végrehajtani. A „LIKE” feltétel helyettesítő karaktert tartalmaz a közepén."
-#. Zp#N
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -521,7 +465,6 @@ msgctxt ""
msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
msgstr "A lekérdezést nem lehet végrehajtani. A „LIKE” feltétel túl sok helyettesítő karaktert tartalmaz."
-#. t@2d
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -530,7 +473,6 @@ msgctxt ""
msgid "The column name '$columnname$' is not valid."
msgstr "Érvénytelen oszlopnév: „$columnname$”."
-#. [EUN
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -539,7 +481,6 @@ msgctxt ""
msgid "The statement contains an invalid selection of columns."
msgstr "A kifejezés oszlopok érvénytelen kiválasztását tartalmazza."
-#. bW^]
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -548,7 +489,6 @@ msgctxt ""
msgid "The column at position '$position$' could not be updated."
msgstr "Az oszlop a(z) „$position$” pozícióban nem frissíthető."
-#. 7JGA
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -557,7 +497,6 @@ msgctxt ""
msgid "The file $filename$ could not be loaded."
msgstr "A(z) $filename$ fájl betöltése nem sikerült."
-#. blWo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -572,7 +511,6 @@ msgstr ""
"\n"
"$error_message$"
-#. pcTO
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -581,7 +519,6 @@ msgctxt ""
msgid "The type could not be converted."
msgstr "A típus nem konvertálható."
-#. @l*(
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -590,7 +527,6 @@ msgctxt ""
msgid "Could not append column: invalid column descriptor."
msgstr "Nem sikerült hozzáfűzni az oszlopot: érvénytelen oszlopleíró."
-#. MtK~
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -599,7 +535,6 @@ msgctxt ""
msgid "Could not create group: invalid object descriptor."
msgstr "Nem sikerült létrehozni a csoportot: érvénytelen objektumleíró."
-#. WOm(
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -608,7 +543,6 @@ msgctxt ""
msgid "Could not create index: invalid object descriptor."
msgstr "Nem sikerült létrehozni az indexet: érvénytelen objektumleíró."
-#. ^3J2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -617,7 +551,6 @@ msgctxt ""
msgid "Could not create key: invalid object descriptor."
msgstr "Nem sikerült létrehozni a kulcsot: érvénytelen objektumleíró."
-#. U-bq
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -626,7 +559,6 @@ msgctxt ""
msgid "Could not create table: invalid object descriptor."
msgstr "Nem sikerült létrehozni a táblát: érvénytelen objektumleíró."
-#. b1dt
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -635,7 +567,6 @@ msgctxt ""
msgid "Could not create user: invalid object descriptor."
msgstr "Nem sikerült létrehozni a felhasználót: érvénytelen objektumleíró."
-#. (L0,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -644,7 +575,6 @@ msgctxt ""
msgid "Could not create view: invalid object descriptor."
msgstr "Nem sikerült létrehozni a nézetet: érvénytelen objektumleíró."
-#. 7|fo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -653,7 +583,6 @@ msgctxt ""
msgid "Could not create view: no command object."
msgstr "Nem sikerült létrehozni a nézetet: nincs parancsobjektum."
-#. q4w0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -662,7 +591,6 @@ msgctxt ""
msgid "The connection could not be created. May be the necessary data provider is not installed."
msgstr "Nem sikerült létrehozni a kapcsolatot. Lehet, hogy a szükséges adatszolgáltató nincs telepítve."
-#. ?4_.
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -671,7 +599,6 @@ msgctxt ""
msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
msgstr "Az index nem törölhető. Ismeretlen hiba történt a fájlrendszer elérésekor."
-#. nBp5
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -680,7 +607,6 @@ msgctxt ""
msgid "The index could not be created. Only one column per index is allowed."
msgstr "Az index nem hozható létre. Indexenként csak egy oszlop engedélyezett."
-#. Q+[N
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -689,7 +615,6 @@ msgctxt ""
msgid "The index could not be created. The values are not unique."
msgstr "Az index nem hozható létre. Az értékek nem egyediek."
-#. `g]A
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -698,7 +623,6 @@ msgctxt ""
msgid "The index could not be created. An unknown error appeared."
msgstr "Az index nem hozható létre. Ismeretlen hiba történt."
-#. n2d9
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -707,7 +631,6 @@ msgctxt ""
msgid "The index could not be created. The file '$filename$' is used by an other index."
msgstr "Az index nem hozható létre. A(z) „$filename$” fájlt egy másik index használja."
-#. @84P
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -716,7 +639,6 @@ msgctxt ""
msgid "The index could not be created. The size of the chosen column is to big."
msgstr "Az index nem hozható létre. A kiválasztott oszlop túl nagy."
-#. }+.?
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -725,7 +647,6 @@ msgctxt ""
msgid "The name '$name$' doesn't match SQL naming constraints."
msgstr "A(z) „$name$” név nem felel meg az SQL elnevezési szabályainak."
-#. 9^!2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -734,7 +655,6 @@ msgctxt ""
msgid "The file $filename$ could not be deleted."
msgstr "A(z) $filename$ fájl törlése nem sikerült."
-#. 6z@%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -743,7 +663,6 @@ msgctxt ""
msgid "Invalid column type for column '$columnname$'."
msgstr "A(z) „$columnname$” oszlop oszloptípusa érvénytelen."
-#. nGQz
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -752,7 +671,6 @@ msgctxt ""
msgid "Invalid precision for column '$columnname$'."
msgstr "A(z) „$columnname$” oszlop pontossága érvénytelen."
-#. EZe!
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -761,7 +679,6 @@ msgctxt ""
msgid "Precision is less than scale for column '$columnname$'."
msgstr "A(z) „$columnname$” oszlop pontossága kevesebb, mint a skála."
-#. 9oP9
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -770,7 +687,6 @@ msgctxt ""
msgid "Invalid column name length for column '$columnname$'."
msgstr "A(z) „$columnname$” oszlop nevének hossza érvénytelen."
-#. q00K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -779,7 +695,6 @@ msgctxt ""
msgid "Duplicate value found in column '$columnname$'."
msgstr "A(z) „$columnname$” oszlopban duplikált érték van."
-#. X(VT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -794,7 +709,6 @@ msgstr ""
"\n"
"A megadott „$value$” érték hosszabb, mint az engedélyezett számjegyek száma."
-#. 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 "A(z) „$columnname$” oszlop nem módosítható. Lehetséges, hogy a fájlrendszer írásvédett."
-#. ]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 "A(z) „$columnname$” oszlop nem frissíthető. Az érték érvénytelen ehhez az oszlophoz."
-#. 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 "A(z) „$columnname$” oszlop nem adható hozzá. Lehetséges, hogy a fájlrendszer írásvédett."
-#. 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 "A(z) „$position$” helyen az oszlop nem törölhető. Lehetséges, hogy a fájlrendszer írásvédett."
-#. :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 "A(z) „$tablename$” tábla nem törölhető. Lehetséges, hogy a fájlrendszer írásvédett."
-#. u)|,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -848,7 +757,6 @@ msgctxt ""
msgid "The table could not be altered."
msgstr "Nem sikerült módosítani a táblát."
-#. 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 "A következő fájl érvénytelen (vagy nem felismerhető) dBase-fájl: „$filename$”."
-#. Dk63
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -866,7 +773,6 @@ msgctxt ""
msgid "Cannot open Evolution address book."
msgstr "Nem sikerült megnyitni az Evolution-címjegyzéket."
-#. Mg+@
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -875,7 +781,6 @@ msgctxt ""
msgid "Can only sort by table columns."
msgstr "Csak táblaoszlop szerint lehet rendezni."
-#. 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 "A lekérdezést nem lehet végrehajtani. Túl bonyolult. Csak a „COUNT(*)” támogatott."
-#. =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 "A lekérdezést nem lehet végrehajtani. A „BETWEEN” argumentumok nem helyesek."
-#. -}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 "A lekérdezést nem lehet végrehajtani. A függvény nem támogatott."
-#. $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 "A táblát nem lehet módosítani, mert csak olvasható."
-#. 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 "A sort nem lehet törölni. Be van állítva az „Inaktív rekordok megjelenítése”."
-#. )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 "A sort nem lehet törölni. Már törölve van."
-#. #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 "A lekérdezést nem lehet végrehajtani. Több mint egy táblát tartalmaz."
-#. =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 "A lekérdezést nem lehet végrehajtani. Nem tartalmaz érvényes táblát."
-#. 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 "A lekérdezést nem lehet végrehajtani. Nem tartalmaz érvényes oszlopokat."
-#. 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 "A megadott paraméterértékek száma nem egyezik a paraméterekkel."
-#. $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 "Az URL nem érvényes: „$URL”. Nem hozható létre kapcsolat."
-#. 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 "A(z) „$classname$” illesztőprogram-osztály nem tölthető be."
-#. 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 "Nem található Java-telepítés. Ellenőrizze a telepítését."
-#. 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 "A lekérdezés végrehajtása nem eredményezett érvényes eredményhalmazt."
-#. 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 "A frissítési utasítás végrehajtása egy sorra sincs hatással."
-#. 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 "A további illesztőprogramosztály-útvonal: „$classpath$”."
-#. 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 "A(z) „$position$” pozícióban levő paraméter típusa ismeretlen."
-#. )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 "A(z) „$position$” pozícióban levő oszlop típusa ismeretlen."
-#. :lOr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1046,7 +933,6 @@ msgctxt ""
msgid "No suitable KDE installation was found."
msgstr "Nem található megfelelő KDE-telepítés."
-#. 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 "Legalább KDE $major$.$minor$ szükséges a KDE-címjegyzék eléréséhez."
-#. 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 "A KDE verziója túl új. Ismereteink szerint a programmal legfeljebb a KDE $major$.$minor$ használható.\n"
-#. p0jK
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1077,7 +961,6 @@ msgstr ""
"Ha biztos benne, hogy működni fog ezzel a KDE-verzióval is, akkor végrehajthatja a következő Basic makrót, amely letiltja a verzióellenőrzést:\n"
"\n"
-#. ^EJF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1086,7 +969,6 @@ msgctxt ""
msgid "Parameters can appear only in prepared statements."
msgstr "Paraméterek csak előkészített kifejezésekben jelenhetnek meg."
-#. s-^1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1095,7 +977,6 @@ msgctxt ""
msgid "No such table!"
msgstr "Nincs ilyen tábla!"
-#. nSH:
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1104,7 +985,6 @@ msgctxt ""
msgid "No suitable Mac OS installation was found."
msgstr "Nem található megfelelő Mac OS-telepítés."
-#. =qP1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1113,7 +993,6 @@ msgctxt ""
msgid "The connection can not be established. No storage or URL was given."
msgstr "Nem hozható létre a kapcsolat. Nem lett megadva tároló vagy URL."
-#. jzB,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1122,7 +1001,6 @@ msgctxt ""
msgid "The given URL contains no valid local file system path. Please check the location of your database file."
msgstr "A megadott URL nem tartalmaz érvényes útvonalat a helyi fájlrendszerre. Ellenőrizze az adatbázisfájljának helyét."
-#. )?4o
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1131,7 +1009,6 @@ msgctxt ""
msgid "An error occurred while obtaining the connection's table container."
msgstr "Hiba történt a kapcsolat táblatárolójának lekérése közben."
-#. (05j
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1140,7 +1017,6 @@ msgctxt ""
msgid "An error occurred while creating the table editor dialog."
msgstr "Hiba történt a táblaszerkesztő párbeszédablak létrehozása közben."
-#. 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 "Nincs „$tablename$” nevű tábla."
-#. 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 "A megadott DocumentUI nem lehet NULL."
-#. 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 "A rekordművelet meg lett vétózva."
-#. 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 "Az utasítás ciklikus hivatkozást tartalmaz egy vagy több allekérdezésre."
-#. 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 "A név nem tartalmazhat perjelet („/”)."
-#. lXOt
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1194,7 +1065,6 @@ msgctxt ""
msgid "$1$ is no SQL conform identifier."
msgstr "A(z) $1$ nem SQL-megfelelő azonosító."
-#. 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 "A lekérdezés neve nem tartalmazhat idézőjelet."
-#. 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 "A következő név már használatban van az adatbázisban: „$1$”."
-#. Dlp:
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1221,7 +1089,6 @@ msgctxt ""
msgid "No connection to the database exists."
msgstr "Nincs kapcsolat az adatbázishoz."
-#. zt(%
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1230,7 +1097,6 @@ msgctxt ""
msgid "No $1$ exists."
msgstr "Nincs $1$."
-#. @b{T
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
diff --git a/source/hu/cui/source/customize.po b/source/hu/cui/source/customize.po
index c1bb7c3ce36..832f860c527 100644
--- a/source/hu/cui/source/customize.po
+++ b/source/hu/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-03-25 09:50+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Esemény"
-#. _xpn
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr "Hozzárendelt művelet"
-#. ja\n
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Save In"
msgstr "Mentés ide"
-#. |M9I
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Assign:"
msgstr "Hozzárendelés:"
-#. uAWW
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "M~acro..."
msgstr "M~akró..."
-#. $*0r
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. S8A)
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Menus"
msgstr "Menük"
-#. B%*x
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Keyboard"
msgstr "Billentyűzet"
-#. cJGx
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "Eszköztárak"
-#. lU#W
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. 0wGy
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Customize"
msgstr "Testreszabás"
-#. +L?G
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Menu"
msgstr "Menü"
-#. eR2U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Begin a Group"
msgstr "Csoporthatároló"
-#. b_K*
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Rename..."
msgstr "Átnevezés..."
-#. r%|N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Delete..."
msgstr "Törlés..."
-#. d(`f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. L4rV
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "Move..."
msgstr "Áthelyezés..."
-#. }SVT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "Restore Default Settings"
msgstr "Alapértelmezett beállítások visszaállítása"
-#. #ivo
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Restore Default Command"
msgstr "Alapértelmezett parancs visszaállítása"
-#. =DbR
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -205,7 +185,6 @@ msgctxt ""
msgid "Text only"
msgstr "Csak szöveg"
-#. 6,\u
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Toolbar Name"
msgstr "Eszköztár neve"
-#. 9[PA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Save In"
msgstr "Mentés ide"
-#. eXdU
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Menus"
msgstr "%PRODUCTNAME %MODULENAME-menük"
-#. t$1q
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -243,7 +219,6 @@ msgctxt ""
msgid "New..."
msgstr "Új..."
-#. @~lW
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "Menu Content"
msgstr "Menütartalom"
-#. lic=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -263,7 +237,6 @@ msgctxt ""
msgid "Entries"
msgstr "Bejegyzések"
-#. ={na
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "Add..."
msgstr "Hozzáadás..."
-#. Cz(c
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Modify"
msgstr "Módosítás"
-#. VCwD
#: cfg.src
#, fuzzy
msgctxt ""
@@ -294,7 +265,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. %5;f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -304,7 +274,6 @@ msgctxt ""
msgid "Add Submenu..."
msgstr "Almenü hozzáadása..."
-#. l0_N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -314,7 +283,6 @@ msgctxt ""
msgid "Icons Only"
msgstr "Csak ikonok"
-#. T0]N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -324,7 +292,6 @@ msgctxt ""
msgid "Icons & Text"
msgstr "Ikonok és szöveg"
-#. ^udJ
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -334,7 +301,6 @@ msgctxt ""
msgid "Change Icon..."
msgstr "Ikon lecserélése..."
-#. 7wjq
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -344,7 +310,6 @@ msgctxt ""
msgid "Reset Icon"
msgstr "Ikon visszaállítása"
-#. }~_]
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -353,7 +318,6 @@ msgctxt ""
msgid "New Menu %n"
msgstr "Új menü %n"
-#. J{=Y
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "New Toolbar %n"
msgstr "Új eszköztár %n"
-#. 1~C[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -371,7 +334,6 @@ msgctxt ""
msgid "Move Menu"
msgstr "Menü áthelyezése"
-#. HII,
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -380,7 +342,6 @@ msgctxt ""
msgid "Add Submenu"
msgstr "Almenü hozzáadása"
-#. !6m^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -389,7 +350,6 @@ msgctxt ""
msgid "Submenu name"
msgstr "Almenü neve"
-#. 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 "Menühöz történő parancshozzáadáshoz válasszon ki egy kategóriát, majd a parancsot. A parancsokat át is húzhatja Testreszabás párbeszédablak Menük lapjának Menütartalom listájába."
-#. OPXN
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Menu name"
msgstr "Menü neve"
-#. JS(w
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -418,7 +376,6 @@ msgctxt ""
msgid "Menu position"
msgstr "Menü pozíciója"
-#. -k#d
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -427,7 +384,6 @@ msgctxt ""
msgid "New Menu"
msgstr "Új menü"
-#. 4dv?
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -436,7 +392,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. L}y(
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -446,7 +401,6 @@ msgctxt ""
msgid "Icons"
msgstr "Ikonok"
-#. .?[S
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -456,7 +410,6 @@ msgctxt ""
msgid "Import..."
msgstr "Importálás..."
-#. ry*^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -466,7 +419,6 @@ msgctxt ""
msgid "Delete..."
msgstr "Törlés..."
-#. 7iIT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -480,7 +432,6 @@ msgstr ""
"Megjegyzés:\n"
"A legjobb minőség elérése érdekében az ikon méretének 16×16 képpontnak kell lennie. Az ettől eltérő ikonokat a program automatikusan átméretezi."
-#. \DF}
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -489,7 +440,6 @@ msgctxt ""
msgid "Change Icon"
msgstr "Ikon lecserélése"
-#. dRXT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -503,7 +453,6 @@ msgstr ""
"Az alább felsorolt fájlokat nem lehetett importálni.\n"
"A fájlformátum nem volt értelmezhető."
-#. -f4B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -512,7 +461,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. s/P=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -521,7 +469,6 @@ msgctxt ""
msgid "The files listed below could not be imported. The file format could not be interpreted."
msgstr "Az alább felsorolt fájlokat nem lehetett importálni. A fájlformátum nem volt értelmezhető."
-#. 6?o6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -530,7 +477,6 @@ msgctxt ""
msgid "Are you sure to delete the image?"
msgstr "Biztosan törli a képet?"
-#. 3bqk
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -543,7 +489,6 @@ msgstr ""
"A(z) %ICONNAME ikon már szerepel a képlistában.\n"
"Lecserélni a meglévő ikont?"
-#. e1J_
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -552,7 +497,6 @@ msgctxt ""
msgid "Confirm Icon Replacement"
msgstr "Ikoncsere jóváhagyása"
-#. %\@%
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -561,7 +505,6 @@ msgctxt ""
msgid "Yes to All"
msgstr "Igen, mindet"
-#. w#!6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -570,7 +513,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Toolbars"
msgstr "%PRODUCTNAME %MODULENAME-eszköztárak"
-#. ig)B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -579,7 +521,6 @@ msgctxt ""
msgid "Toolbar"
msgstr "Eszköztár"
-#. Z}q6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -588,7 +529,6 @@ msgctxt ""
msgid "Toolbar Content"
msgstr "Eszköztár tartalma"
-#. o\66
#: cfg.src
#, fuzzy
msgctxt ""
@@ -598,7 +538,6 @@ msgctxt ""
msgid "Commands"
msgstr "Parancsok"
-#. NF$r
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -607,7 +546,6 @@ msgctxt ""
msgid "Command"
msgstr "Parancs"
-#. 13cn
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -616,7 +554,6 @@ msgctxt ""
msgid "Are you sure you want to delete the '%MENUNAME' menu?"
msgstr "Biztos benne, hogy törli a(z) „%MENUNAME” menüt?"
-#. naB`
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -625,7 +562,6 @@ msgctxt ""
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "Nincs több gomb az eszköztáron. Kívánja törölni az eszköztárat?"
-#. #p\j
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -634,7 +570,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "A(z) %SAVE IN SELECTION% menü beállításai a gyári értékekre kerülnek visszaállításra. Folytatja?"
-#. /TiS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -643,7 +578,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "A(z) %SAVE IN SELECTION% menü beállításai a gyári értékekre kerülnek visszaállításra. Folytatja?"
-#. iWEu
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -652,7 +586,6 @@ msgctxt ""
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "A(z) %SAVE IN SELECTION% eszköztár beállításai a gyári értékekre kerülnek visszaállításra. Folytatja?"
-#. _oP[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -661,7 +594,6 @@ msgctxt ""
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "Minden előzetes változtatás amit az eszköztáron végzett el fog veszni. Valóban alaphelyzetbe kívánja állítja az eszköztárat?"
-#. Q\pG
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -670,7 +602,6 @@ msgctxt ""
msgid "Function is already included in this popup."
msgstr "A felugró menü már tartalmazza ezt a funkciót."
-#. E7RS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -679,7 +610,6 @@ msgctxt ""
msgid "~New name"
msgstr "Új ~név"
-#. ^i*M
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -688,7 +618,6 @@ msgctxt ""
msgid "Rename Menu"
msgstr "Menü átnevezése"
-#. YbJA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -697,7 +626,6 @@ msgctxt ""
msgid "Rename Toolbar"
msgstr "Eszköztár átnevezése"
-#. jZ03
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -706,7 +634,6 @@ msgctxt ""
msgid "Up"
msgstr "Fel"
-#. D|%U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -715,7 +642,6 @@ msgctxt ""
msgid "Down"
msgstr "Le"
-#. 6/DA
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -724,7 +650,6 @@ msgctxt ""
msgid "~Save..."
msgstr "~Mentés..."
-#. [P~Y
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -733,7 +658,6 @@ msgctxt ""
msgid "R~eset"
msgstr "A~lapállapot"
-#. Cf|1
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -742,7 +666,6 @@ msgctxt ""
msgid "~Load..."
msgstr "~Betöltés..."
-#. HmDi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -751,7 +674,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. k8Ud
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -760,7 +682,6 @@ msgctxt ""
msgid "~Modify"
msgstr "~Módosítás"
-#. 2!F~
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -769,7 +690,6 @@ msgctxt ""
msgid "~New"
msgstr "Ú~j"
-#. ${0m
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -779,7 +699,6 @@ msgctxt ""
msgid "~Category"
msgstr "~Kategória"
-#. GiBa
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -788,7 +707,6 @@ msgctxt ""
msgid "Function"
msgstr "Funkció"
-#. Amm=
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -797,7 +715,6 @@ msgctxt ""
msgid "Functions"
msgstr "Funkciók"
-#. c3f:
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -807,7 +724,6 @@ msgctxt ""
msgid "Shortcut keys"
msgstr "Gyorsbillentyűk"
-#. ~gAl
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -817,7 +733,6 @@ msgctxt ""
msgid "~Keys"
msgstr "Bill~entyűk"
-#. q/*9
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -827,7 +742,6 @@ msgctxt ""
msgid "Load Keyboard Configuration"
msgstr "Billentyűzetbeállítások betöltése"
-#. )7Vi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -837,7 +751,6 @@ msgctxt ""
msgid "Save Keyboard Configuration"
msgstr "Billentyűzetbeállítások mentése"
-#. S:G]
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -847,7 +760,6 @@ msgctxt ""
msgid "Configuration"
msgstr "Beállítások"
-#. ~{9d
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -858,7 +770,6 @@ msgctxt ""
msgid "BASIC Macros"
msgstr "BASIC-makrók"
-#. MfpT
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -868,7 +779,6 @@ msgctxt ""
msgid "Styles"
msgstr "Stílusok"
-#. $W23
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -878,7 +788,6 @@ msgctxt ""
msgid "Event"
msgstr "Esemény"
-#. sp!~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -888,7 +797,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr "Hozzárendelt művelet"
-#. 7-A1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -898,7 +806,6 @@ msgctxt ""
msgid "Assign:"
msgstr "Hozzárendelés:"
-#. hQ$Q
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -908,7 +815,6 @@ msgctxt ""
msgid "M~acro..."
msgstr "M~akró..."
-#. StBD
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -918,7 +824,6 @@ msgctxt ""
msgid "Com~ponent..."
msgstr "Ko~mponens..."
-#. k+F@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -928,7 +833,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. wO#o
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -937,7 +841,6 @@ msgctxt ""
msgid "Assign action"
msgstr "Művelet hozzárendelése"
-#. }ncg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -947,7 +850,6 @@ msgctxt ""
msgid "Component method name"
msgstr "Komponens metódusneve"
-#. s\`/
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -956,7 +858,6 @@ msgctxt ""
msgid "Assign Component"
msgstr "Komponens hozzárendelése"
-#. dLYQ
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -965,7 +866,6 @@ msgctxt ""
msgid "Start Application"
msgstr "Alkalmazás indítása"
-#. v2d[
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -974,7 +874,6 @@ msgctxt ""
msgid "Close Application"
msgstr "Az alkalmazás bezárása"
-#. %H!x
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -983,7 +882,6 @@ msgctxt ""
msgid "New Document"
msgstr "Új dokumentum"
-#. AL^0
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -992,7 +890,6 @@ msgctxt ""
msgid "Document closed"
msgstr "A dokumentum bezáródik"
-#. @3Vd
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1001,7 +898,6 @@ msgctxt ""
msgid "Document is going to be closed"
msgstr "A dokumentum be lesz zárva"
-#. w;PH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1010,7 +906,6 @@ msgctxt ""
msgid "Open Document"
msgstr "Dokumentum megnyitása"
-#. %)}(
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1019,7 +914,6 @@ msgctxt ""
msgid "Save Document"
msgstr "Dokumentum mentése"
-#. `$b`
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1028,7 +922,6 @@ msgctxt ""
msgid "Save Document As"
msgstr "Dokumentum mentése másként"
-#. E*BO
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1037,7 +930,6 @@ msgctxt ""
msgid "Document has been saved"
msgstr "Dokumentum mentve"
-#. U?F8
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1046,7 +938,6 @@ msgctxt ""
msgid "Document has been saved as"
msgstr "Dokumentum mentve másként"
-#. njr\
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1055,7 +946,6 @@ msgctxt ""
msgid "Activate Document"
msgstr "Dokumentum aktiválása"
-#. zUV@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1064,7 +954,6 @@ msgctxt ""
msgid "Deactivate Document"
msgstr "Dokumentum deaktiválása"
-#. N-3~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1073,7 +962,6 @@ msgctxt ""
msgid "Print Document"
msgstr "Dokumentum nyomtatása"
-#. G]Kg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1082,7 +970,6 @@ msgctxt ""
msgid "'Modified' status was changed"
msgstr "A „Módosítva” állapot megváltozott"
-#. 0/eq
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1091,7 +978,6 @@ msgctxt ""
msgid "Printing of form letters started"
msgstr "Körlevelek nyomtatása elkezdődött"
-#. 8-#P
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1100,7 +986,6 @@ msgctxt ""
msgid "Printing of form letters finished"
msgstr "Körlevelek nyomtatása véget ért"
-#. o`,X
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1109,7 +994,6 @@ msgctxt ""
msgid "Merging of form fields started"
msgstr "Űrlapmezők egyesítése elkezdődött"
-#. %*EA
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1118,7 +1002,6 @@ msgctxt ""
msgid "Merging of form fields finished"
msgstr "Űrlapmezők egyesítése véget ért"
-#. C;1I
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1127,7 +1010,6 @@ msgctxt ""
msgid "Changing the page count"
msgstr "Oldalak számának változtatása"
-#. `CT^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1136,7 +1018,6 @@ msgctxt ""
msgid "Loaded a sub component"
msgstr "Alkomponens betöltése"
-#. d/Pf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1145,7 +1026,6 @@ msgctxt ""
msgid "Closed a sub component"
msgstr "Alkomponens bezárása"
-#. I,`n
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1154,7 +1034,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr "Paraméterek kitöltése"
-#. XsHX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1163,7 +1042,6 @@ msgctxt ""
msgid "Execute action"
msgstr "Művelet végrehajtása"
-#. K)DR
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1172,7 +1050,6 @@ msgctxt ""
msgid "After updating"
msgstr "Frissítés után"
-#. VH)#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1181,7 +1058,6 @@ msgctxt ""
msgid "Before updating"
msgstr "Frissítés előtt"
-#. NysH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1190,7 +1066,6 @@ msgctxt ""
msgid "Before record action"
msgstr "Rekordművelet előtt"
-#. -=So
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1199,7 +1074,6 @@ msgctxt ""
msgid "After record action"
msgstr "Rekordművelet után"
-#. Qtkn
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1208,7 +1082,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "Törlés megerősítése"
-#. zTYx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1217,7 +1090,6 @@ msgctxt ""
msgid "Error occurred"
msgstr "Hiba történt"
-#. qc3.
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1226,7 +1098,6 @@ msgctxt ""
msgid "While adjusting"
msgstr "Beállítás során"
-#. rL.|
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1235,7 +1106,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr "Amikor a fókuszt megkapja"
-#. Y.6e
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1244,7 +1114,6 @@ msgctxt ""
msgid "When losing focus"
msgstr "Amikor a fókuszt elveszti"
-#. B%3l
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1253,7 +1122,6 @@ msgctxt ""
msgid "Item status changed"
msgstr "Elem állapota változott"
-#. zIW^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1262,7 +1130,6 @@ msgctxt ""
msgid "Key pressed"
msgstr "Billentyű lenyomva"
-#. Q(de
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1271,7 +1138,6 @@ msgctxt ""
msgid "Key released"
msgstr "Billentyű felengedve"
-#. .Tf=
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1280,7 +1146,6 @@ msgctxt ""
msgid "When loading"
msgstr "Töltés közben"
-#. X2fy
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1289,7 +1154,6 @@ msgctxt ""
msgid "Before reloading"
msgstr "Újratöltés előtt"
-#. E.Q#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1298,7 +1162,6 @@ msgctxt ""
msgid "When reloading"
msgstr "Újratöltéskor"
-#. p#Vl
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1307,7 +1170,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr "Egér mozgott a billentyű lenyomása alatt"
-#. e*M;
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1316,7 +1178,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr "Egér belül"
-#. ]faH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1325,7 +1186,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr "Egér kívül"
-#. Yuu*
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1334,7 +1194,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr "Egér mozdult"
-#. LkIT
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1343,7 +1202,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr "Egérgomb lenyomása"
-#. JAG]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1352,7 +1210,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr "Egérgomb elengedése"
-#. !gkv
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1361,7 +1218,6 @@ msgctxt ""
msgid "Before record change"
msgstr "Rekordváltozás előtt"
-#. w`-2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1370,7 +1226,6 @@ msgctxt ""
msgid "After record change"
msgstr "Rekordváltozás után"
-#. Y0}2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1379,7 +1234,6 @@ msgctxt ""
msgid "After resetting"
msgstr "Alaphelyzetbe állítás után"
-#. JWpx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1388,7 +1242,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr "Alaphelyzetbe állítás előtt"
-#. eps}
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1397,7 +1250,6 @@ msgctxt ""
msgid "Approve action"
msgstr "Művelet jóváhagyása"
-#. seFP
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1406,7 +1258,6 @@ msgctxt ""
msgid "Before submitting"
msgstr "Elküldés előtt"
-#. \(IG
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1415,7 +1266,6 @@ msgctxt ""
msgid "Text modified"
msgstr "Szöveg módosítva"
-#. A%T%
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1424,7 +1274,6 @@ msgctxt ""
msgid "Before unloading"
msgstr "Kilépés előtt"
-#. !pfh
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1433,7 +1282,6 @@ msgctxt ""
msgid "When unloading"
msgstr "Kilépéskor"
-#. M,J1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1442,7 +1290,6 @@ msgctxt ""
msgid "Changed"
msgstr "Változott"
-#. RTE-
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1451,7 +1298,6 @@ msgctxt ""
msgid "Document created"
msgstr "Dokumentum létrehozása"
-#. Dr.t
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1460,7 +1306,6 @@ msgctxt ""
msgid "Document loading finished"
msgstr "Dokumentum betöltése kész"
-#. cV)6
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1469,7 +1314,6 @@ msgctxt ""
msgid "Saving of document failed"
msgstr "Dokumentum mentése sikertelen"
-#. YXUB
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1478,7 +1322,6 @@ msgctxt ""
msgid "'Save as' has failed"
msgstr "A „mentés másként” sikertelen"
-#. !%^]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1487,7 +1330,6 @@ msgctxt ""
msgid "Storing or exporting copy of document"
msgstr "Dokumentummásolat tárolása vagy exportálása"
-#. A)]:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1496,7 +1338,6 @@ msgctxt ""
msgid "Document copy has been created"
msgstr "Dokumentummásolat létrejött"
-#. J%Q:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1505,7 +1346,6 @@ msgctxt ""
msgid "Creating of document copy failed"
msgstr "Dokumentummásolat létrehozása sikertelen"
-#. Y{ap
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1514,7 +1354,6 @@ msgctxt ""
msgid "View created"
msgstr "Nézet létrehozva"
-#. RZ([
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1523,7 +1362,6 @@ msgctxt ""
msgid "View is going to be closed"
msgstr "A nézet be lesz zárva"
-#. p:$f
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1532,7 +1370,6 @@ msgctxt ""
msgid "View closed"
msgstr "A nézet bezáródik"
-#. Y,ra
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1541,7 +1378,6 @@ msgctxt ""
msgid "Document title changed"
msgstr "A dokumentum címe megváltozott"
-#. bNLp
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1550,7 +1386,6 @@ msgctxt ""
msgid "Document mode changed"
msgstr "Dokumentummód megváltozott"
-#. KLrx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1559,7 +1394,6 @@ msgctxt ""
msgid "Visible area changed"
msgstr "A látható terület megváltozott"
-#. gd`i
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1568,7 +1402,6 @@ msgctxt ""
msgid "Document has got a new storage"
msgstr "A dokumentumnak új tárolója van"
-#. A3BV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1577,7 +1410,6 @@ msgctxt ""
msgid "Document layout finished"
msgstr "Dokumentum elrendezése kész"
-#. Rmvf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1586,7 +1418,6 @@ msgctxt ""
msgid "Selection changed"
msgstr "A kijelölés módosult"
-#. iihC
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1595,7 +1426,6 @@ msgctxt ""
msgid "Double click"
msgstr "Dupla kattintás"
-#. 2!XX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1604,7 +1434,6 @@ msgctxt ""
msgid "Right click"
msgstr "Jobb kattintás"
-#. %[cV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1613,7 +1442,6 @@ msgctxt ""
msgid "Formulas calculated"
msgstr "Képletek kiszámítva"
-#. ^,UT
#: macropg.src
msgctxt ""
"macropg.src\n"
diff --git a/source/hu/cui/source/dialogs.po b/source/hu/cui/source/dialogs.po
index 223e653e961..2c2a7fd891f 100644
--- a/source/hu/cui/source/dialogs.po
+++ b/source/hu/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-07-12 12:21+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. JQkn
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Number of columns:"
msgstr "Oszlopok száma:"
-#. AH!B
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Number of rows:"
msgstr "Sorok száma:"
-#. #JL_
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Insert Table"
msgstr "Táblázat beszúrása"
-#. -+=O
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Origi~nal"
msgstr "Ere~deti"
-#. !@n?
#: commonlingui.src
#, fuzzy
msgctxt ""
@@ -65,7 +60,6 @@ msgctxt ""
msgid "~Word"
msgstr "S~zó"
-#. [Zi`
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr "~Javaslat"
-#. UxL3
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Ignore"
msgstr "~Mellőzés"
-#. PE#P
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Always I~gnore"
msgstr "M~indig mellőzi"
-#. dqEi
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~Csere"
-#. VVYV
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Always R~eplace"
msgstr "Mindig cse~réli"
-#. (+Di
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Options..."
msgstr "Beállítások..."
-#. 0O{B
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. KT;n
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "go to record"
msgstr "ugrás a rekordhoz"
-#. 7ojd
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "Record Number"
msgstr "Rekordszám"
-#. {EtJ
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. S,q=
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Név"
-#. 45eG
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -182,7 +165,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. QO;H
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -192,7 +174,6 @@ msgctxt ""
msgid "~Title"
msgstr "~Cím"
-#. p|s1
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "~Description"
msgstr "~Leírás"
-#. l78d
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -211,7 +191,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. (/fB
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -221,7 +200,6 @@ msgctxt ""
msgid "Enter the name for the new library."
msgstr "Adja meg az új könyvtár nevét."
-#. !N=@
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -231,7 +209,6 @@ msgctxt ""
msgid "Create Library"
msgstr "Könyvtár létrehozása"
-#. `J?K
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -241,7 +218,6 @@ msgctxt ""
msgid "Create Macro"
msgstr "Makró létrehozása"
-#. g/m.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -251,7 +227,6 @@ msgctxt ""
msgid "Enter the name for the new macro."
msgstr "Adja meg az új makró nevét."
-#. |{iY
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -261,7 +236,6 @@ msgctxt ""
msgid "Rename"
msgstr "Átnevezés"
-#. W%2?
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -271,7 +245,6 @@ msgctxt ""
msgid "Enter the new name for the selected object."
msgstr "Adja meg a kiválasztott objektum nevét."
-#. ri[#
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Create Library"
msgstr "Könyvtár létrehozása"
-#. ,-^k
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Do you want to delete the following object?"
msgstr "Biztosan törli az objektumot?"
-#. ~0)[
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr "Törlés jóváhagyása"
-#. _3$.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -307,7 +277,6 @@ msgctxt ""
msgid "The selected object could not be deleted."
msgstr "A kiválasztott objektum nem törölhető."
-#. H18j
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -316,7 +285,6 @@ msgctxt ""
msgid " You do not have permission to delete this object."
msgstr " Nincsen jogosultsága törölni a kiválasztott objektumot."
-#. 1Jv:
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -325,7 +293,6 @@ msgctxt ""
msgid "Error Deleting Object"
msgstr "Hiba az objektum törlése közben"
-#. cHhH
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -334,7 +301,6 @@ msgctxt ""
msgid "The object could not be created."
msgstr "Az objektum nem hozható létre."
-#. K*6W
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -343,7 +309,6 @@ msgctxt ""
msgid " Object with the same name already exists."
msgstr " Már van ilyen nevű objektum."
-#. Yq_l
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid " You do not have permission to create this object."
msgstr " Nincsen jogosultsága létrehozni az objektumot."
-#. spOJ
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -361,7 +325,6 @@ msgctxt ""
msgid "Error Creating Object"
msgstr "Hiba az objektum létrehozása közben"
-#. NQAL
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -370,7 +333,6 @@ msgctxt ""
msgid "The object could not be renamed."
msgstr "Az objektumot nem lehet átnevezni."
-#. 1*3R
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -379,7 +341,6 @@ msgctxt ""
msgid " You do not have permission to rename this object."
msgstr " Nincsen jogosultsága átnevezni a kiválasztott objektumot."
-#. HYLl
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -388,7 +349,6 @@ msgctxt ""
msgid "Error Renaming Object"
msgstr "Hiba az objektum átnevezése közben"
-#. s6](
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -397,7 +357,6 @@ msgctxt ""
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME hiba"
-#. C$nb
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -406,7 +365,6 @@ msgctxt ""
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "A(z) %LANGUAGENAME nyelvű szkriptnyelv nem támogatott."
-#. D#N(
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -415,7 +373,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Hiba lépett fel a(z) %LANGUAGENAME nyelvű %SCRIPTNAME-parancsfájl futtatása közben."
-#. E2ZD
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -424,7 +381,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Kivétel lépett fel a(z) %LANGUAGENAME nyelvű %SCRIPTNAME-parancsfájl futtatása közben."
-#. gw)D
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -433,7 +389,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Hiba lépett fel a(z) %LANGUAGENAME nyelvű %SCRIPTNAME-parancsfájl futtatása közben, a következő sorban: %LINENUMBER."
-#. p1zM
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -442,7 +397,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Kivétel lépett fel a(z) %LANGUAGENAME nyelvű %SCRIPTNAME-parancsfájl futtatása közben, a következő sorban: %LINENUMBER."
-#. HtXI
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -451,7 +405,6 @@ msgctxt ""
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "A szkriptelő keretrendszerben hiba lépett fel a %LANGUAGENAME nyelvű %SCRIPTNAME parancsfájl futtatása közben."
-#. 8qs{
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -460,7 +413,6 @@ msgctxt ""
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "A szkriptelő keretrendszerben hiba lépett fel a %LANGUAGENAME nyelvű %SCRIPTNAME parancsfájl futtatása közben, a következő sorban: %LINENUMBER."
-#. Dz^m
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -469,7 +421,6 @@ msgctxt ""
msgid "Type:"
msgstr "Típus:"
-#. k7^}
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -478,7 +429,6 @@ msgctxt ""
msgid "Message:"
msgstr "Üzenet:"
-#. 3lg2
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -487,7 +437,6 @@ msgctxt ""
msgid "Color Picker"
msgstr "Színválasztó"
-#. 3JWk
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -497,7 +446,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. xoSg
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -507,7 +455,6 @@ msgctxt ""
msgid "Pick a color from the document"
msgstr "Szín választása a dokumentumból"
-#. {iK^
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -517,7 +464,6 @@ msgctxt ""
msgid "RGB"
msgstr "RGB"
-#. =m%B
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -527,7 +473,6 @@ msgctxt ""
msgid "~Red"
msgstr "~Vörös"
-#. 0D3o
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -537,7 +482,6 @@ msgctxt ""
msgid "~Green"
msgstr "~Zöld"
-#. \#ic
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -547,7 +491,6 @@ msgctxt ""
msgid "~Blue"
msgstr "~Kék"
-#. fIkP
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -557,7 +500,6 @@ msgctxt ""
msgid "Hex ~#"
msgstr "Hexa ~#"
-#. 8)ee
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -567,7 +509,6 @@ msgctxt ""
msgid "HSB"
msgstr "HSB"
-#. s:(.
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -577,7 +518,6 @@ msgctxt ""
msgid "H~ue"
msgstr "Á~rnyalat"
-#. N57m
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -587,7 +527,6 @@ msgctxt ""
msgid "~Saturation"
msgstr "~Telítettség"
-#. cPyX
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -597,7 +536,6 @@ msgctxt ""
msgid "Bright~ness"
msgstr "~Fényesség"
-#. b+|\
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -607,7 +545,6 @@ msgctxt ""
msgid "CMYK"
msgstr "CMYK"
-#. ag@c
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -617,7 +554,6 @@ msgctxt ""
msgid "~Cyan"
msgstr "~Ciánkék"
-#. 5mFC
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -627,7 +563,6 @@ msgctxt ""
msgid "~Magenta"
msgstr "~Bíbor"
-#. 53Xa
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -637,7 +572,6 @@ msgctxt ""
msgid "~Yellow"
msgstr "~Sárga"
-#. ]emz
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -647,7 +581,6 @@ msgctxt ""
msgid "~Key"
msgstr "F~ekete"
-#. \pA8
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -657,7 +590,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. 2F1Z
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -666,7 +598,6 @@ msgctxt ""
msgid "Properties of "
msgstr "Tulajdonságok: "
-#. 15EY
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -676,7 +607,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. RbR?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -686,7 +616,6 @@ msgctxt ""
msgid "Files"
msgstr "Fájlok"
-#. 1WZ%
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -695,7 +624,6 @@ msgctxt ""
msgid "Properties of "
msgstr "Tulajdonságok: "
-#. is@h
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -705,7 +633,6 @@ msgctxt ""
msgid "Type:"
msgstr "Típus:"
-#. kA7V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -715,7 +642,6 @@ msgctxt ""
msgid "Location:"
msgstr "Hely:"
-#. )MmX
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -725,7 +651,6 @@ msgctxt ""
msgid "Contents:"
msgstr "Tartalom:"
-#. L(!(
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -735,7 +660,6 @@ msgctxt ""
msgid "Modified:"
msgstr "Módosítva:"
-#. ib8I
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -745,7 +669,6 @@ msgctxt ""
msgid "~File type"
msgstr "~Fájltípus"
-#. v)hb
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -755,7 +678,6 @@ msgctxt ""
msgid "~Find Files..."
msgstr "~Fájl keresése..."
-#. pL8^
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -765,7 +687,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. YxAu
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -775,7 +696,6 @@ msgctxt ""
msgid "A~dd All"
msgstr "Öss~zes hozzáadása"
-#. eEF:
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -785,7 +705,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "~Előnézet"
-#. in)o
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -795,7 +714,6 @@ msgctxt ""
msgid "Maddin1"
msgstr "Maddin1"
-#. 2!m.
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -805,7 +723,6 @@ msgctxt ""
msgid "Maddin2"
msgstr "Maddin2"
-#. ?3/P
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -815,7 +732,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. h*#`
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -824,7 +740,6 @@ msgctxt ""
msgid "Enter Title"
msgstr "Cím beírása"
-#. I9!p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -834,7 +749,6 @@ msgctxt ""
msgid "Directory"
msgstr "Könyvtár"
-#. VH{G
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -844,7 +758,6 @@ msgctxt ""
msgid "File type"
msgstr "Fájltípus"
-#. -Fub
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -853,7 +766,6 @@ msgctxt ""
msgid "Find"
msgstr "Keresés"
-#. cJ,d
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -863,7 +775,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. ~mtv
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -872,7 +783,6 @@ msgctxt ""
msgid "Apply"
msgstr "Alkalmaz"
-#. gdfS
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -882,7 +792,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. Ip#V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -891,7 +800,6 @@ msgctxt ""
msgid "Update"
msgstr "Frissítés"
-#. oY*p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -901,7 +809,6 @@ msgctxt ""
msgid "ID"
msgstr "Azonosító"
-#. ZViV
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -910,7 +817,6 @@ msgctxt ""
msgid "Theme ID"
msgstr "Témaazonosító"
-#. \{J1
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -919,7 +825,6 @@ msgctxt ""
msgid "<No Files>"
msgstr "<Nincs fájl>"
-#. jGG?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -928,7 +833,6 @@ msgctxt ""
msgid "Do you want to update the file list?"
msgstr "Frissíti a fájllistát?"
-#. Di38
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -937,7 +841,6 @@ msgctxt ""
msgid "Object;Objects"
msgstr "objektum;objektum"
-#. pJ-W
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -946,7 +849,6 @@ msgctxt ""
msgid "(read-only)"
msgstr "(csak olvasható)"
-#. 3:9w
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -955,7 +857,6 @@ msgctxt ""
msgid "<All Files>"
msgstr "<Minden fájl>"
-#. \^i-
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -964,7 +865,6 @@ msgctxt ""
msgid "This ID already exists..."
msgstr "Ez az azonosító már létezik..."
-#. _*.H
#: about.src
msgctxt ""
"about.src\n"
@@ -974,7 +874,6 @@ msgctxt ""
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr "Verzió: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
-#. fnif
#: about.src
msgctxt ""
"about.src\n"
@@ -984,7 +883,6 @@ msgctxt ""
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "A %PRODUCTNAME egy korszerű, egyszerűen használható nyílt forrású irodai programcsomag szövegszerkesztéshez, táblázatkezeléshez, bemutatókészítéshez és sok máshoz."
-#. vJe3
#: about.src
msgctxt ""
"about.src\n"
@@ -994,7 +892,6 @@ msgctxt ""
msgid "This release was supplied by %OOOVENDOR"
msgstr "A kiadás szállítója: %OOOVENDOR"
-#. W=Y_
#: about.src
msgctxt ""
"about.src\n"
@@ -1006,7 +903,6 @@ msgstr ""
"Copyright © 2000 - 2012 a LibreOffice hozzájárulói és/vagy a hozzájuk kapcsolható\n"
"vállalatok"
-#. PQ#6
#: about.src
msgctxt ""
"about.src\n"
@@ -1016,7 +912,6 @@ msgctxt ""
msgid "LibreOffice was based on OpenOffice.org"
msgstr "A LibreOffice az OpenOffice.org-on alapul"
-#. Inr3
#: about.src
msgctxt ""
"about.src\n"
@@ -1026,7 +921,6 @@ msgctxt ""
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "A(z) %PRODUCTNAME a LibreOffice-ból származik, ami az OpenOffice.org-on alapul"
-#. 9iuu
#: about.src
msgctxt ""
"about.src\n"
@@ -1036,7 +930,6 @@ msgctxt ""
msgid "(Build ID: $BUILDID)"
msgstr "(Build az.: $BUILDID)"
-#. NSIV
#: about.src
msgctxt ""
"about.src\n"
@@ -1046,7 +939,6 @@ msgctxt ""
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#. =p`t
#: about.src
msgctxt ""
"about.src\n"
@@ -1056,7 +948,6 @@ msgctxt ""
msgid "Credits"
msgstr "Köszönet"
-#. J3Jn
#: about.src
msgctxt ""
"about.src\n"
@@ -1066,7 +957,6 @@ msgctxt ""
msgid "Website"
msgstr "Weboldal"
-#. i2V.
#: about.src
msgctxt ""
"about.src\n"
@@ -1076,7 +966,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. G*]4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1086,7 +975,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. vUQR
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1096,7 +984,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Betűhatások"
-#. 3?)^
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1106,7 +993,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. hlh#
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1116,7 +1002,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr "Ázsiai tördelés"
-#. d\(S
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1126,7 +1011,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr "Behúzás és térköz"
-#. y/f$
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1136,7 +1020,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. D6qF
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1146,7 +1029,6 @@ msgctxt ""
msgid "Text Flow"
msgstr "Szövegbeosztás"
-#. UD_4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1156,7 +1038,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
-#. aTLc
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1166,7 +1047,6 @@ msgctxt ""
msgid "Background"
msgstr "Háttér"
-#. }1,p
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1175,7 +1055,6 @@ msgctxt ""
msgid "Text Format"
msgstr "Szövegformátum"
-#. v$gu
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1185,7 +1064,6 @@ msgctxt ""
msgid "~Options"
msgstr "~Beállítások"
-#. SM1b
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1194,7 +1072,6 @@ msgctxt ""
msgid "Attributes"
msgstr "Jellemzők"
-#. LD%H
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1204,7 +1081,6 @@ msgctxt ""
msgid "~Exchange characters"
msgstr "~Cserélhető karakterek"
-#. [Pi9
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1214,7 +1090,6 @@ msgctxt ""
msgid "~Add characters"
msgstr "~Karakterek hozzáadása"
-#. +(O;
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1224,7 +1099,6 @@ msgctxt ""
msgid "~Remove characters"
msgstr "K~arakterek eltávolítása"
-#. J:4C
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1234,7 +1108,6 @@ msgctxt ""
msgid "~Combine"
msgstr "Össze~vonás"
-#. gbBC
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1244,7 +1117,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. DuTs
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1253,7 +1125,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr "Hasonlóak keresése"
-#. k]@_
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1263,7 +1134,6 @@ msgctxt ""
msgid "Source:"
msgstr "Forrás:"
-#. !A.C
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1273,7 +1143,6 @@ msgctxt ""
msgid "~Insert as"
msgstr "~Beszúrás másként"
-#. OMLL
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1283,7 +1152,6 @@ msgctxt ""
msgid "Link to"
msgstr "Hivatkozás célja:"
-#. q{bE
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1293,7 +1161,6 @@ msgctxt ""
msgid "~As icon"
msgstr "~Ikonként"
-#. ,1%~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1303,7 +1170,6 @@ msgctxt ""
msgid "~Other Icon..."
msgstr "~Egyéb ikon..."
-#. )@lS
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1313,7 +1179,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. U@@a
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1323,7 +1188,6 @@ msgctxt ""
msgid "Object"
msgstr "Objektum"
-#. v8_5
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1332,7 +1196,6 @@ msgctxt ""
msgid "Paste Special"
msgstr "Irányított beillesztés"
-#. c`$+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1342,7 +1205,6 @@ msgctxt ""
msgid "Source file"
msgstr "Forrásfájl"
-#. a,w^
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1352,7 +1214,6 @@ msgctxt ""
msgid "Element:"
msgstr "Elem:"
-#. kM@g
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1362,7 +1223,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. hI/s
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1372,7 +1232,6 @@ msgctxt ""
msgid "Status"
msgstr "Allapot"
-#. tL)m
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1382,7 +1241,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. l3_@
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1392,7 +1250,6 @@ msgctxt ""
msgid "~Update"
msgstr "~Frissítés"
-#. /@R+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1402,7 +1259,6 @@ msgctxt ""
msgid "~Open"
msgstr "~Megnyitás"
-#. KQqI
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1412,7 +1268,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Módosítás..."
-#. ;R,p
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1422,7 +1277,6 @@ msgctxt ""
msgid "~Break Link"
msgstr "~Csatolás felbontása"
-#. sLvl
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1432,7 +1286,6 @@ msgctxt ""
msgid "Source file"
msgstr "Forrásfájl"
-#. 6!L8
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1442,7 +1295,6 @@ msgctxt ""
msgid "Element:"
msgstr "Elem:"
-#. b-eK
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1452,7 +1304,6 @@ msgctxt ""
msgid "Type:"
msgstr "Típus:"
-#. sE5o
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1462,7 +1313,6 @@ msgctxt ""
msgid "Update:"
msgstr "Frissítve:"
-#. qVkM
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1473,7 +1323,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. KO-M
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1483,7 +1332,6 @@ msgctxt ""
msgid "Ma~nual"
msgstr "~Kézi"
-#. U|Nc
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1493,7 +1341,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. YZ[\
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1503,7 +1350,6 @@ msgctxt ""
msgid "Manual"
msgstr "Kézi"
-#. 2CId
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1513,7 +1359,6 @@ msgctxt ""
msgid "Not available"
msgstr "Nem érhető el"
-#. oEVY
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1523,7 +1368,6 @@ msgctxt ""
msgid "Graphic"
msgstr "Kép"
-#. m8~j
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1533,7 +1377,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. 1Y;1
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1543,7 +1386,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr "Biztosan törli a kijelölt hivatkozást?"
-#. =-S)
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1553,7 +1395,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr "Biztosan törli a kijelölt hivatkozást?"
-#. 6j/[
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1563,7 +1404,6 @@ msgctxt ""
msgid "Waiting"
msgstr "Várakozás"
-#. *=%J
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1572,7 +1412,6 @@ msgctxt ""
msgid "Edit Links"
msgstr "Csatolások szerkesztése"
-#. ]q+~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1582,7 +1421,6 @@ msgctxt ""
msgid "Exchange source:"
msgstr "Forrás cseréje:"
-#. 4I9;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1592,7 +1430,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. aG_H
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1601,7 +1438,6 @@ msgctxt ""
msgid "Modify Link"
msgstr "Csatolás módosítása"
-#. (}N.
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1611,7 +1447,6 @@ msgctxt ""
msgid "~Class"
msgstr "~Osztály"
-#. ii$;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1621,7 +1456,6 @@ msgctxt ""
msgid "Class ~Location"
msgstr "Osztály ~elérési útvonala"
-#. T2j\
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1632,7 +1466,6 @@ msgctxt ""
msgid "~Search..."
msgstr "~Keresés..."
-#. 0QcZ
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1642,7 +1475,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. _a(?
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1652,7 +1484,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. Es_Q
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1661,7 +1492,6 @@ msgctxt ""
msgid "Insert Applet"
msgstr "Kisalkalmazás beszúrása"
-#. %a#=
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1671,7 +1501,6 @@ msgctxt ""
msgid "Author"
msgstr "Szerző"
-#. :A[;
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1681,7 +1510,6 @@ msgctxt ""
msgid "~Text"
msgstr "~Szöveg"
-#. !W!A
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1691,7 +1519,6 @@ msgctxt ""
msgid "Contents"
msgstr "Tartalom"
-#. Ss^W
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1701,7 +1528,6 @@ msgctxt ""
msgid "~Insert"
msgstr "~Beszúrás"
-#. @2#v
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1711,7 +1537,6 @@ msgctxt ""
msgid "Author"
msgstr "Szerző"
-#. ,40J
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1721,7 +1546,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr "Megjegyzés szerkesztése"
-#. K2K_
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1731,7 +1555,6 @@ msgctxt ""
msgid "Insert Comment"
msgstr "Megjegyzés beszúrása"
-#. eB(6
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1740,7 +1563,6 @@ msgctxt ""
msgid "Comment"
msgstr "Megjegyzés"
-#. ^tib
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1750,7 +1572,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. GZZ.
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1760,7 +1581,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Betűhatások"
-#. Ah.s
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1770,7 +1590,6 @@ msgctxt ""
msgid "Borders"
msgstr "Szegélyek"
-#. l\ks
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1780,7 +1599,6 @@ msgctxt ""
msgid "Background"
msgstr "Háttér"
-#. Nt}G
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1790,7 +1608,6 @@ msgctxt ""
msgid "Return"
msgstr "Vissza"
-#. $)x;
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1799,7 +1616,6 @@ msgctxt ""
msgid "Format Cells"
msgstr "Cellák formázása"
-#. pjv\
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1809,7 +1625,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. SN+G
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -1820,7 +1635,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. p1X7
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1830,7 +1644,6 @@ msgctxt ""
msgid " Pixel"
msgstr " képpont"
-#. nwbg
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -1841,7 +1654,6 @@ msgctxt ""
msgid "H~eight"
msgstr "~Magasság"
-#. N7R~
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1851,7 +1663,6 @@ msgctxt ""
msgid " Pixel"
msgstr " képpont"
-#. p3!y
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1861,7 +1672,6 @@ msgctxt ""
msgid "E~nhance edges"
msgstr "É~lek kiemelése"
-#. !bNm
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1870,7 +1680,6 @@ msgctxt ""
msgid "Mosaic"
msgstr "Mozaik"
-#. _0,q
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1880,7 +1689,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. ^PlP
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1890,7 +1698,6 @@ msgctxt ""
msgid "Threshold ~value"
msgstr "~Küszöbérték"
-#. ~)5X
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1900,7 +1707,6 @@ msgctxt ""
msgid "~Invert"
msgstr "~Invertálás"
-#. W(wS
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1909,7 +1715,6 @@ msgctxt ""
msgid "Solarization"
msgstr "Szolarizáció"
-#. _G@@
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1919,7 +1724,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. M2,n
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1929,7 +1733,6 @@ msgctxt ""
msgid "Aging degree"
msgstr "Öregítés mértéke"
-#. :d9]
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1938,7 +1741,6 @@ msgctxt ""
msgid "Aging"
msgstr "Öregítés"
-#. XZc%
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1948,7 +1750,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. xiDI
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1958,7 +1759,6 @@ msgctxt ""
msgid "Poster colors"
msgstr "Poszterszínek"
-#. gVT(
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1967,7 +1767,6 @@ msgctxt ""
msgid "Posterize"
msgstr "Poszterizálás"
-#. .oe|
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1977,7 +1776,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. \5\Z
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1987,7 +1785,6 @@ msgctxt ""
msgid "Light source"
msgstr "Fényforrás"
-#. dx+o
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1996,7 +1793,6 @@ msgctxt ""
msgid "Relief"
msgstr "Kiemelés"
-#. !#1M
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -2007,7 +1803,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Paraméterek"
-#. c3c4
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2017,7 +1812,6 @@ msgctxt ""
msgid "Smooth Radius"
msgstr ""
-#. v%.e
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2026,7 +1820,6 @@ msgctxt ""
msgid "Smooth"
msgstr "Simítás"
-#. :KSr
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2036,7 +1829,6 @@ msgctxt ""
msgid "Paths"
msgstr "Útvonalak"
-#. KdMM
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2046,7 +1838,6 @@ msgctxt ""
msgid "Mark the default path for new files."
msgstr "Alapértelmezett útvonal megjelölése új fájlokhoz."
-#. [51a
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2056,7 +1847,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. )N])
#: multipat.src
#, fuzzy
msgctxt ""
@@ -2067,7 +1857,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. En0v
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2077,7 +1866,6 @@ msgctxt ""
msgid "Path list"
msgstr "Útvonallista"
-#. TRw.
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2086,7 +1874,6 @@ msgctxt ""
msgid "Select Paths"
msgstr "Útvonalak kiválasztása"
-#. m6Tt
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2095,7 +1882,6 @@ msgctxt ""
msgid "The path %1 already exists."
msgstr "A(z) %1 útvonal már létezik."
-#. ct+:
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2104,7 +1890,6 @@ msgctxt ""
msgid "Select files"
msgstr "Fájlok kiválasztása"
-#. qaxg
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2113,7 +1898,6 @@ msgctxt ""
msgid "Files"
msgstr "Fájlok"
-#. WqDs
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2122,7 +1906,6 @@ msgctxt ""
msgid "Select Archives"
msgstr "Archívumfájlok kiválasztása"
-#. N4GD
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2131,7 +1914,6 @@ msgctxt ""
msgid "Archives"
msgstr "Archívumfájlok"
-#. Ejr6
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2140,7 +1922,6 @@ msgctxt ""
msgid "The file %1 already exists."
msgstr "A(z) %1 fájl már létezik."
-#. C!dE
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2150,7 +1931,6 @@ msgctxt ""
msgid "Text languag~e"
msgstr "Szöveg ny~elve"
-#. dq#@
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2160,7 +1940,6 @@ msgctxt ""
msgid "More..."
msgstr "További infó..."
-#. D]i)
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2170,7 +1949,6 @@ msgctxt ""
msgid "~Not in dictionary"
msgstr "~Nincs a szótárban"
-#. 19.u
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2180,7 +1958,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr "~Javaslat"
-#. Qj94
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2190,7 +1967,6 @@ msgctxt ""
msgid "Check ~grammar"
msgstr "Nyelvhelyesség-~ellenőrzés"
-#. mi]-
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2200,7 +1976,6 @@ msgctxt ""
msgid "~Ignore Once"
msgstr "~Mellőzés egyszer"
-#. 0}6\
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2210,7 +1985,6 @@ msgctxt ""
msgid "I~gnore All"
msgstr "Mindent ~mellőz"
-#. k#aT
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2220,7 +1994,6 @@ msgctxt ""
msgid "I~gnore Rule"
msgstr "Szabály ~mellőzése"
-#. y:He
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2230,7 +2003,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. _VN:
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2240,7 +2012,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. Ut6,
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2250,7 +2021,6 @@ msgctxt ""
msgid "~Change"
msgstr "~Módosítás"
-#. -f98
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2260,7 +2030,6 @@ msgctxt ""
msgid "Change A~ll"
msgstr "Mi~ndet cseréli"
-#. ;8tW
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2270,7 +2039,6 @@ msgctxt ""
msgid "AutoCor~rect"
msgstr "A~utomatikus javítás"
-#. .q5C
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2280,7 +2048,6 @@ msgctxt ""
msgid "O~ptions..."
msgstr "B~eállítások..."
-#. 2}-4
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2290,7 +2057,6 @@ msgctxt ""
msgid "~Undo"
msgstr "~Visszavonás"
-#. epNd
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2300,7 +2066,6 @@ msgctxt ""
msgid "Cl~ose"
msgstr "Be~zárás"
-#. ]$lP
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2310,7 +2075,6 @@ msgctxt ""
msgid "Resu~me"
msgstr "Foly~tatás"
-#. 3pED
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2320,7 +2084,6 @@ msgctxt ""
msgid "(no suggestions)"
msgstr "(nincs javaslat)"
-#. A_hh
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2330,7 +2093,6 @@ msgctxt ""
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Helyesírás: $LANGUAGE ($LOCATION)"
-#. :35q
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2340,7 +2102,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
msgstr "Helyesírás és nyelvhelyesség: $LANGUAGE ($LOCATION)"
-#. B3,S
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2350,7 +2111,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
msgstr "Helyesírás és nyelvhelyesség: $LANGUAGE ($LOCATION) [$VendorName]"
-#. Oruo
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2359,7 +2119,6 @@ msgctxt ""
msgid "Spellcheck: "
msgstr "Helyesírás-ellenőrzés: "
-#. lQDX
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2369,7 +2128,6 @@ msgctxt ""
msgid "~Split cell into"
msgstr "~Mennyiség"
-#. %S?v
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2379,7 +2137,6 @@ msgctxt ""
msgid "Split"
msgstr "Felosztás"
-#. T\yI
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2389,7 +2146,6 @@ msgctxt ""
msgid "H~orizontally"
msgstr "~Vízszintesen"
-#. ^C%S
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2399,7 +2155,6 @@ msgctxt ""
msgid "~Into equal proportions"
msgstr "~Egyenlő részekre"
-#. y(/I
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2409,7 +2164,6 @@ msgctxt ""
msgid "~Vertically"
msgstr "~Függőlegesen"
-#. sYN+
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2419,7 +2173,6 @@ msgctxt ""
msgid "Direction"
msgstr "Irány"
-#. 3hto
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2428,7 +2181,6 @@ msgctxt ""
msgid "Split Cells"
msgstr "Cellák felosztása"
-#. K\)t
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2437,7 +2189,6 @@ msgctxt ""
msgid "No alternatives found."
msgstr "Nincsenek szinonimák."
-#. [o|L
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2446,7 +2197,6 @@ msgctxt ""
msgid "Select File for Floating Frame"
msgstr "Válasszon fájlt az úszó kerethez"
-#. Bx0.
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2455,7 +2205,6 @@ msgctxt ""
msgid "My Macros"
msgstr "Saját makrók"
-#. [2V#
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2464,7 +2213,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME-makrók"
-#. S7)b
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2473,7 +2221,6 @@ msgctxt ""
msgid "Add Commands"
msgstr "Parancsok hozzáadása"
-#. s2Fv
#: cuires.src
#, fuzzy
msgctxt ""
@@ -2483,7 +2230,6 @@ msgctxt ""
msgid "Run"
msgstr "F~uttatás"
-#. mRwK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2492,7 +2238,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "Sorok beszúrása"
-#. EWNK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2501,7 +2246,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Oszlopok beszúrása"
-#. DJr*
#: iconcdlg.src
msgctxt ""
"iconcdlg.src\n"
@@ -2510,7 +2254,6 @@ msgctxt ""
msgid "~Back"
msgstr "~Vissza"
-#. hm/:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2520,7 +2263,6 @@ msgctxt ""
msgid "~Find"
msgstr "~Keresés"
-#. ?=/h
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2530,7 +2272,6 @@ msgctxt ""
msgid "Format"
msgstr "Formátum"
-#. gP:z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2540,7 +2281,6 @@ msgctxt ""
msgid "~Hangul/Hanja"
msgstr "~Hangul/handzsa"
-#. E*l:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2550,7 +2290,6 @@ msgctxt ""
msgid "Hanja (Han~gul)"
msgstr "Handzsa (ha~ngul)"
-#. ~\ef
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2560,7 +2299,6 @@ msgctxt ""
msgid "Hang~ul (Hanja)"
msgstr "Hang~ul (handzsa)"
-#. 9f_J
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2570,7 +2308,6 @@ msgctxt ""
msgid "Hangu~l"
msgstr "Hangu~l"
-#. =6~o
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2580,7 +2317,6 @@ msgctxt ""
msgid "Hang~ul"
msgstr "Hang~ul"
-#. {*IQ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2590,7 +2326,6 @@ msgctxt ""
msgid "Han~ja"
msgstr "Han~dzsa"
-#. qDL6
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2600,7 +2335,6 @@ msgctxt ""
msgid "Ha~nja"
msgstr "Ha~ndzsa"
-#. r^LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2610,7 +2344,6 @@ msgctxt ""
msgid "Conversion"
msgstr "Átalakítás"
-#. ,*V$
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2620,7 +2353,6 @@ msgctxt ""
msgid "Hangul ~only"
msgstr "~Csak hangul"
-#. .)vB
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2630,7 +2362,6 @@ msgctxt ""
msgid "Hanja onl~y"
msgstr "C~sak handzsa"
-#. .{gr
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2640,7 +2371,6 @@ msgctxt ""
msgid "Replace b~y character"
msgstr "Csere ~karakterenként"
-#. WK3M
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2650,7 +2380,6 @@ msgctxt ""
msgid "Hangul"
msgstr "Hangul"
-#. D;Ps
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2660,7 +2389,6 @@ msgctxt ""
msgid "Hanja"
msgstr "Handzsa"
-#. Z|[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2669,7 +2397,6 @@ msgctxt ""
msgid "Hangul/Hanja Conversion"
msgstr "Hangul/handzsa átalakítás"
-#. k=@D
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2679,7 +2406,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "Egyéni szótárak"
-#. =VVJ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2689,7 +2415,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. R8%Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2699,7 +2424,6 @@ msgctxt ""
msgid "Ignore post-positional word"
msgstr "Posztpozicionális szó ignorálása"
-#. i4n,
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2709,7 +2433,6 @@ msgctxt ""
msgid "Show recently used entries first"
msgstr "Legutóbb használtak jelenjenek meg elsőként"
-#. Qk`Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2719,7 +2442,6 @@ msgctxt ""
msgid "Replace all unique entries automatically"
msgstr "Összes egyedi bejegyzés cseréje"
-#. /\;u
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2729,7 +2451,6 @@ msgctxt ""
msgid "New..."
msgstr "Új..."
-#. Ms/R
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2739,7 +2460,6 @@ msgctxt ""
msgid "Edit..."
msgstr "Szerkesztés..."
-#. /8LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2749,7 +2469,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. pf5k
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2758,7 +2477,6 @@ msgctxt ""
msgid "Hangul/Hanja Options"
msgstr "Hangul/handzsa beállítások"
-#. z;6c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2768,7 +2486,6 @@ msgctxt ""
msgid "Dictionary"
msgstr "Szótár"
-#. =2[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2778,7 +2495,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Név"
-#. ][6Z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2787,7 +2503,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr "Új szótár"
-#. HMg`
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2797,7 +2512,6 @@ msgctxt ""
msgid "[Enter text here]"
msgstr "[Szöveg beírásához kattintson ide]"
-#. .c/~
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2807,7 +2521,6 @@ msgctxt ""
msgid "Book"
msgstr "Könyv"
-#. F[$_
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2817,7 +2530,6 @@ msgctxt ""
msgid "Original"
msgstr "Eredeti"
-#. rs.K
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2827,7 +2539,6 @@ msgctxt ""
msgid "Suggestions (max. 8)"
msgstr "Javaslatok (maximum 8)"
-#. Q$)s
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2837,7 +2548,6 @@ msgctxt ""
msgid "New"
msgstr "Új"
-#. g([7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2847,7 +2557,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. GF,c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2857,7 +2566,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. rr^7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2866,7 +2574,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr "Felhasználói szótár szerkesztése"
-#. p3_c
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2876,7 +2583,6 @@ msgctxt ""
msgid "Apply"
msgstr "Alkalmaz"
-#. z*]I
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2886,7 +2592,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. gy4G
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2895,7 +2600,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "Cél a dokumentumban"
-#. X/m:
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2904,7 +2608,6 @@ msgctxt ""
msgid "Targets do not exist in the document."
msgstr "A célok nem találhatóak a dokumentumban"
-#. i3C0
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2913,7 +2616,6 @@ msgctxt ""
msgid "Couldn't open the document."
msgstr "Nem sikerült megnyitni a dokumentumot."
-#. dTPN
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2922,7 +2624,6 @@ msgctxt ""
msgid "Mark Tree"
msgstr "Fa jel"
-#. BA]n
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2932,7 +2633,6 @@ msgctxt ""
msgid "File encryption password"
msgstr "Fájltitkosító jelszó"
-#. 8$u*
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2942,7 +2642,6 @@ msgctxt ""
msgid "~Enter password to open"
msgstr "~Megnyitási jelszó bevitele"
-#. NH6r
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2952,7 +2651,6 @@ msgctxt ""
msgid "Confirm password"
msgstr "Jelszó megerősítése"
-#. T3/i
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2962,7 +2660,6 @@ msgctxt ""
msgid "Note: After a password has been set, the document will only open with "
msgstr "Megjegyzés: A jelszó beállítása után a dokumentum csak azzal nyílik meg. "
-#. Ty55
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2972,7 +2669,6 @@ msgctxt ""
msgid "File sharing password"
msgstr "Fájlmegosztási jelszó"
-#. mSdf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2982,7 +2678,6 @@ msgctxt ""
msgid "Open file read-only"
msgstr "Fájl megnyitása csak olvashatóként"
-#. eY%Q
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2992,7 +2687,6 @@ msgctxt ""
msgid "Enter password to allow editing"
msgstr "Szerkesztési jelszó bevitele"
-#. ?qQg
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3002,7 +2696,6 @@ msgctxt ""
msgid "Confirm password"
msgstr "Jelszó megerősítése"
-#. CzkZ
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3012,7 +2705,6 @@ msgctxt ""
msgid "Password must be confirmed"
msgstr "A jelszót kétszer kell beírni megerősítés céljából"
-#. X7bk
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3022,7 +2714,6 @@ msgctxt ""
msgid "More ~Options"
msgstr "Több ~beállítás"
-#. N8Nb
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3032,7 +2723,6 @@ msgctxt ""
msgid "Fewer ~Options"
msgstr "Kevesebb ~beállítás"
-#. J=eq
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3042,7 +2732,6 @@ msgctxt ""
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "A jelszó megerősítése nem ugyanaz, mint a jelszó. Adja meg újra a jelszót, a két szövegmezőbe pontosan ugyanazt írja be."
-#. DBsf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3052,7 +2741,6 @@ msgctxt ""
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "A jelszavak megerősítései nem egyeznek meg az eredeti jelszavakkal. Adja meg újra a jelszavakat."
-#. KIwu
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3062,7 +2750,6 @@ msgctxt ""
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Adjon meg jelszót a megnyitáshoz vagy módosításhoz, vagy jelölje be a csak olvashatóként megnyitás jelölőnégyzetét."
-#. T913
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3071,7 +2758,6 @@ msgctxt ""
msgid "Set Password"
msgstr "Jelszó beállítása"
-#. GtFb
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3081,7 +2767,6 @@ msgctxt ""
msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
msgstr "Az alábbi mezők jelenleg rejtettek. Jelölje meg a látni kívánt mezőket, és kattintson az OK gombra."
-#. 66\h
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3090,7 +2775,6 @@ msgctxt ""
msgid "Show columns"
msgstr "Oszlopok megjelenítése"
-#. ;Nl/
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3100,7 +2784,6 @@ msgctxt ""
msgid "~URL"
msgstr "~URL"
-#. vyqo
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3110,7 +2793,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Célke~ret"
-#. dJ$b
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3120,7 +2802,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Név"
-#. x[gT
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3130,7 +2811,6 @@ msgctxt ""
msgid "Alternative ~text"
msgstr "A~lternatív szöveg"
-#. Jj@1
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3140,7 +2820,6 @@ msgctxt ""
msgid "~Description"
msgstr "~Leírás"
-#. m%N9
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3149,7 +2828,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. -|w`
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3159,7 +2837,6 @@ msgctxt ""
msgid "Search for"
msgstr "Keresés"
-#. cjUW
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3169,7 +2846,6 @@ msgctxt ""
msgid "~Text"
msgstr "~Szöveg"
-#. 1wk!
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3179,7 +2855,6 @@ msgctxt ""
msgid "Field content is ~NULL"
msgstr "A ~mező tartalma NULL"
-#. iIi@
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3189,7 +2864,6 @@ msgctxt ""
msgid "Field content is not NU~LL"
msgstr "A mező tartalma nem NU~LL"
-#. F:2/
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3199,7 +2873,6 @@ msgctxt ""
msgid "Where to search"
msgstr "A keresés helye"
-#. ,ugO
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3209,7 +2882,6 @@ msgctxt ""
msgid "Form"
msgstr "Űrlap"
-#. HDyg
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3219,7 +2891,6 @@ msgctxt ""
msgid "All Fields"
msgstr "Minden mező"
-#. 8B5A
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3229,7 +2900,6 @@ msgctxt ""
msgid "Single field"
msgstr "Egy mező"
-#. }9g]
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3239,7 +2909,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. p%(*
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3249,7 +2918,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. -Tst
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3259,7 +2927,6 @@ msgctxt ""
msgid "Apply field format"
msgstr "Mezőformátum alkalmazása"
-#. n\8{
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3269,7 +2936,6 @@ msgctxt ""
msgid "Match case"
msgstr "Kis- és nagybetű különbözik"
-#. it|3
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3279,7 +2945,6 @@ msgctxt ""
msgid "Search backwards"
msgstr "Keresés visszafelé"
-#. O`ez
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3289,7 +2954,6 @@ msgctxt ""
msgid "From Beginning"
msgstr "Az elejétől"
-#. 16xC
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3299,7 +2963,6 @@ msgctxt ""
msgid "Wildcard expression"
msgstr "Helyettesítő karakteres kifejezés"
-#. 0g-H
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3309,7 +2972,6 @@ msgctxt ""
msgid "Regular expression"
msgstr "Reguláris kifejezés"
-#. W8;M
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3319,7 +2981,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr "Hasonlóak keresése"
-#. m31=
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3329,7 +2990,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. jJ*}
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3339,7 +2999,6 @@ msgctxt ""
msgid "Match character width"
msgstr "Karakterszélesség egyeztetése"
-#. 3`xm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3349,7 +3008,6 @@ msgctxt ""
msgid "Sounds like (Japanese)"
msgstr "Hasonlóan hangzik (japán)"
-#. j7Sm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3359,7 +3017,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. |`#C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3369,7 +3026,6 @@ msgctxt ""
msgid "State"
msgstr "Állapot"
-#. 9VXk
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3379,7 +3035,6 @@ msgctxt ""
msgid "Record :"
msgstr "Rekord:"
-#. +m`C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3389,7 +3044,6 @@ msgctxt ""
msgid "Search"
msgstr "Keresés"
-#. ON)R
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3399,7 +3053,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. F([F
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3409,7 +3062,6 @@ msgctxt ""
msgid "~Help"
msgstr "~Súgó"
-#. USgK
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3418,7 +3070,6 @@ msgctxt ""
msgid "Record Search"
msgstr "Rekordkeresés..."
-#. kZ`W
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3427,7 +3078,6 @@ msgctxt ""
msgid "anywhere in the field"
msgstr "a mezőben bárhol"
-#. $?Bi
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3436,7 +3086,6 @@ msgctxt ""
msgid "beginning of field"
msgstr "a mező eleje"
-#. 2m2z
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3445,7 +3094,6 @@ msgctxt ""
msgid "end of field"
msgstr "a mező vége"
-#. 9y\(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3454,7 +3102,6 @@ msgctxt ""
msgid "entire field"
msgstr "az egész mező"
-#. Fyg1
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3463,7 +3110,6 @@ msgctxt ""
msgid "From top"
msgstr "Felülről"
-#. |pB(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3472,7 +3118,6 @@ msgctxt ""
msgid "From bottom"
msgstr "Alulról"
-#. W1kf
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3481,7 +3126,6 @@ msgctxt ""
msgid "No records corresponding to your data found."
msgstr "Nincs az adatainak megfelelő rekord."
-#. Nrm$
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3490,7 +3134,6 @@ msgctxt ""
msgid "An unknown error occurred. The search could not be finished."
msgstr "Ismeretlen hiba történt. A keresést nem lehetett befejezni."
-#. $9EZ
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3499,7 +3142,6 @@ msgctxt ""
msgid "Overflow, search continued at the beginning"
msgstr "Túlcsordulás, keresés folytatása az elejétől"
-#. *9Ss
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3508,7 +3150,6 @@ msgctxt ""
msgid "Overflow, search continued at the end"
msgstr "Túlcsordulás, keresés folytatása a végétől"
-#. _wV?
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3517,7 +3158,6 @@ msgctxt ""
msgid "counting records"
msgstr "rekordok számlálása"
-#. r7HA
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3527,7 +3167,6 @@ msgctxt ""
msgid "Hyperlink type"
msgstr "Hiperhivatkozás típusa"
-#. 0NYm
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3537,7 +3176,6 @@ msgctxt ""
msgid "~Web"
msgstr "~Web"
-#. $Qtr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3547,7 +3185,6 @@ msgctxt ""
msgid "~FTP"
msgstr "~FTP"
-#. (f_?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3557,7 +3194,6 @@ msgctxt ""
msgid "Tar~get"
msgstr "~Cél"
-#. SeM#
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3567,7 +3203,6 @@ msgctxt ""
msgid "~Login name"
msgstr "~Bejelentk. név"
-#. ,LPj
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3577,7 +3212,6 @@ msgctxt ""
msgid "~Password"
msgstr "~Jelszó"
-#. eU:P
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3587,7 +3221,6 @@ msgctxt ""
msgid "Anonymous ~user"
msgstr "Anonymous ~felhasználó"
-#. ,Bu[
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3597,7 +3230,6 @@ msgctxt ""
msgid "WWW Browser"
msgstr "Webböngésző"
-#. pVIH
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3607,7 +3239,6 @@ msgctxt ""
msgid "Open web browser, copy an URL, and paste it to Target field"
msgstr "Nyissa meg a webböngészőt, másoljon le egy URL-t, és illessze be a Cél mezőbe"
-#. jP[4
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3617,7 +3248,6 @@ msgctxt ""
msgid "Further settings"
msgstr "További beállítások"
-#. pwv)
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3627,7 +3257,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Célke~ret"
-#. V44A
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3637,7 +3266,6 @@ msgctxt ""
msgid "F~orm"
msgstr "~Formátum"
-#. i352
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3647,7 +3275,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. JoDD
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3657,7 +3284,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. +.[]
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3667,7 +3293,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "S~zöveg"
-#. TQ1?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3677,7 +3302,6 @@ msgctxt ""
msgid "N~ame"
msgstr "~Név"
-#. xp?2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3687,7 +3311,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. pB%$
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3697,7 +3320,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. IOK:
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3706,7 +3328,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
-#. P^3(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3716,7 +3337,6 @@ msgctxt ""
msgid "Mail & news"
msgstr "Levelezés és hírcsoportok"
-#. ?o1U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3726,7 +3346,6 @@ msgctxt ""
msgid "~E-mail"
msgstr "~E-mail"
-#. 5#*Q
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3736,7 +3355,6 @@ msgctxt ""
msgid "~News"
msgstr "~Hírek"
-#. PCm2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3746,7 +3364,6 @@ msgctxt ""
msgid "Re~cipient"
msgstr "Cí~mzett"
-#. V4A0
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3756,7 +3373,6 @@ msgctxt ""
msgid "~Subject"
msgstr "~Tárgy"
-#. Q=F`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3766,7 +3382,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr "Adatforrások..."
-#. A)ZY
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3776,7 +3391,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr "Adatforrások..."
-#. h}Wq
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3786,7 +3400,6 @@ msgctxt ""
msgid "Further settings"
msgstr "További beállítások"
-#. _-w;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3796,7 +3409,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Célke~ret"
-#. 9I9S
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3806,7 +3418,6 @@ msgctxt ""
msgid "F~orm"
msgstr "Űr~lap"
-#. !$_;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3816,7 +3427,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. 59P;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3826,7 +3436,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. ^@0{
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3836,7 +3445,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "S~zöveg"
-#. /dnx
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3846,7 +3454,6 @@ msgctxt ""
msgid "N~ame"
msgstr "~Név"
-#. p`hr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3856,7 +3463,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. aBLz
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3866,7 +3472,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. ?Rac
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3875,7 +3480,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
-#. j6u`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3885,7 +3489,6 @@ msgctxt ""
msgid "Document"
msgstr "Dokumentum"
-#. 1=Te
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3895,7 +3498,6 @@ msgctxt ""
msgid "~Path"
msgstr "Ú~tvonal"
-#. ~!|B
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3905,7 +3507,6 @@ msgctxt ""
msgid "Open File"
msgstr "Fájl megnyitása"
-#. s-25
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3915,7 +3516,6 @@ msgctxt ""
msgid "Open File"
msgstr "Fájl megnyitása"
-#. NgmW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3925,7 +3525,6 @@ msgctxt ""
msgid "Target in document"
msgstr "Cél a dokumentumban"
-#. #MYW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3935,7 +3534,6 @@ msgctxt ""
msgid "Targ~et"
msgstr "~Cél"
-#. A@6_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3945,7 +3543,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. ph[;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3955,7 +3552,6 @@ msgctxt ""
msgid "Test text"
msgstr "Próbaszöveg"
-#. $R`(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3965,7 +3561,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "Cél a dokumentumban"
-#. 0]co
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3975,7 +3570,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "Cél a dokumentumban"
-#. FF^(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3985,7 +3579,6 @@ msgctxt ""
msgid "Further settings"
msgstr "További beállítások"
-#. {awi
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3995,7 +3588,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Célke~ret"
-#. ZV\O
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4005,7 +3597,6 @@ msgctxt ""
msgid "F~orm"
msgstr "Űr~lap"
-#. [z4K
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4015,7 +3606,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. ,U.W
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4025,7 +3615,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. kvbO
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4035,7 +3624,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "S~zöveg"
-#. `|m|
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4045,7 +3633,6 @@ msgctxt ""
msgid "N~ame"
msgstr "~Név"
-#. D\6F
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4055,7 +3642,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. td!k
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4065,7 +3651,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. ]%Px
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4074,7 +3659,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
-#. *-*d
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4084,7 +3668,6 @@ msgctxt ""
msgid "New document"
msgstr "Új dokumentum"
-#. Q9Pb
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4094,7 +3677,6 @@ msgctxt ""
msgid "Edit ~now"
msgstr "Módosítás ~most"
-#. 6:]p
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4104,7 +3686,6 @@ msgctxt ""
msgid "Edit ~later"
msgstr "Módosítás ~később"
-#. 5m$V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4114,7 +3695,6 @@ msgctxt ""
msgid "~File"
msgstr "~Fájl"
-#. V0m0
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4124,7 +3704,6 @@ msgctxt ""
msgid "File ~type"
msgstr "Fájl~típus"
-#. sNOa
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4134,7 +3713,6 @@ msgctxt ""
msgid "Select Path"
msgstr "Útvonal kiválasztása"
-#. (:A,
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4144,7 +3722,6 @@ msgctxt ""
msgid "Select Path"
msgstr "Útvonal kiválasztása"
-#. -]a3
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4154,7 +3731,6 @@ msgctxt ""
msgid "Further settings"
msgstr "További beállítások"
-#. fmXl
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4164,7 +3740,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Célke~ret"
-#. |86V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4174,7 +3749,6 @@ msgctxt ""
msgid "F~orm"
msgstr "Űr~lap"
-#. mKrs
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4184,7 +3758,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. IFOf
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4194,7 +3767,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. r6BB
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4204,7 +3776,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "S~zöveg"
-#. ~Mq(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4214,7 +3785,6 @@ msgctxt ""
msgid "N~ame"
msgstr "~Név"
-#. dZXk
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4224,7 +3794,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. zK]z
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4234,7 +3803,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. x;ZE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4243,7 +3811,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
-#. 09mE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4252,7 +3819,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
-#. ]-/)
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4261,7 +3827,6 @@ msgctxt ""
msgid "Apply"
msgstr "Alkalmaz"
-#. TQGN
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4270,7 +3835,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. N$)L
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4279,7 +3843,6 @@ msgctxt ""
msgid "Mouse over object"
msgstr "Egérkurzor az objektum felett"
-#. ~,38
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4288,7 +3851,6 @@ msgctxt ""
msgid "Trigger hyperlink"
msgstr "Hiperhivatkozásra kattintás"
-#. !\1h
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4297,7 +3859,6 @@ msgctxt ""
msgid "Mouse leaves object"
msgstr "Az egérkurzor elhagyja az objektumot"
-#. (2V!
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4306,7 +3867,6 @@ msgctxt ""
msgid "Please type in a valid file name."
msgstr "Adjon meg érvényes fájlnevet."
-#. .mG@
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4315,7 +3875,6 @@ msgctxt ""
msgid "Internet"
msgstr "Internet"
-#. mSyU
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4324,7 +3883,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to a Web page or FTP server connection."
msgstr "Itt egy weboldalhoz vagy egy FTP-kiszolgálóhoz tud hiperhivatkozást létrehozni."
-#. A5}_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4333,7 +3891,6 @@ msgctxt ""
msgid "Mail & News"
msgstr "Levelezés és hírcsoportok"
-#. cHu(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4342,7 +3899,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
msgstr "Itt egy e-mail címhez vagy egy hírcsoporthoz tud hiperhivatkozást létrehozni."
-#. KN!U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4351,7 +3907,6 @@ msgctxt ""
msgid "Document"
msgstr "Dokumentum"
-#. eP`}
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4360,7 +3915,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an existing document or a target within a document."
msgstr "Itt egy meglévő dokumentumhoz vagy egy dokumentumban lévő objektumhoz tud hiperhivatkozást létrehozni."
-#. kU1%
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4369,7 +3923,6 @@ msgctxt ""
msgid "New Document"
msgstr "Új dokumentum"
-#. %r;g
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4378,7 +3931,6 @@ msgctxt ""
msgid "This is where you create a new document to which the new link points."
msgstr "Itt egy új dokumentumot tud létrehozni, amire a hiperlink mutatni fog."
-#. ?h/R
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4387,7 +3939,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. mAnp
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4396,7 +3947,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. X(k6
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
diff --git a/source/hu/cui/source/options.po b/source/hu/cui/source/options.po
index c831aa4bf5c..20fee99da31 100644
--- a/source/hu/cui/source/options.po
+++ b/source/hu/cui/source/options.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-07 13:33+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot 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 "~Cseretáblázat alkalmazása"
-#. odH$
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Font"
msgstr "~Betűkészlet"
-#. \q-r
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Re~place with"
msgstr "Cs~ere erre"
-#. onWg
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Apply"
msgstr "Alkalmaz"
-#. `z0Z
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. ]@Zo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Font settings for HTML, Basic and SQL sources"
msgstr "Betűkészlet-beállítások HTML-, Basic és SQL-forrásokhoz"
-#. ?yp8
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Fonts"
msgstr "Betűkészletek"
-#. A\x7
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Non-proportional fonts only"
msgstr "Csak rögzített szélességű betűkészletek"
-#. @jQo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "~Size"
msgstr "~Méret"
-#. pk(;
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Always"
msgstr "Mindig"
-#. j/M%
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Screen only"
msgstr "Csak képernyőn"
-#. \8--
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. NI?w
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Replace with"
msgstr "Csere erre"
-#. F?eD
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. ~0FQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Default text direction"
msgstr "Alapértelmezett szövegirány"
-#. obv%
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "~Left-to-right"
msgstr "~Balról jobbra"
-#. 8hHh
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "~Right-to-left"
msgstr "~Jobbról balra"
-#. M(q2
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Sheet view"
msgstr "Munkalap nézet"
-#. l@hP
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Right-~to-left"
msgstr "Jobbról ba~lra"
-#. %djQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "~Current document only"
msgstr "~Csak ebben a dokumentumban"
-#. f`v;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Color scheme"
msgstr "Színséma"
-#. \BMw
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "Scheme"
msgstr "Séma"
-#. Mn%,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "Save..."
msgstr "Mentés..."
-#. 6jmD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. k+mp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Custom colors"
msgstr "Egyéni színek"
-#. HJdj
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "On"
msgstr "Be"
-#. `?5*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "User interface elements"
msgstr "Felhasználói felület elemei"
-#. K]2@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Color setting"
msgstr "Színbeállítás"
-#. N-WH
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. E!Sq
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. nhy+
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "Document background"
msgstr "Dokumentum háttere"
-#. *~K*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "Text boundaries"
msgstr "Szövegszegélyek"
-#. h]I.
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "Application background"
msgstr "Alkalmazás háttere"
-#. fDF;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "Object boundaries"
msgstr "Objektumszegélyek"
-#. lbY~
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "Table boundaries"
msgstr "Táblázatszegélyek"
-#. G[YZ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Font color"
msgstr "Betűszín"
-#. QhTp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "Unvisited links"
msgstr "Nem látogatott hivatkozások"
-#. +U],
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "Visited links"
msgstr "Látogatott hivatkozások"
-#. )m1@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "AutoSpellcheck"
msgstr "Automatikus helyesírás-ellenőrzés"
-#. h4Xu
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr "Intelligens címkék"
-#. hw3I
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "Shadows"
msgstr "Árnyék"
-#. ]5`f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "Text Document"
msgstr "Szöveges dokumentum"
-#. 4s.*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. g]9j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "Field shadings"
msgstr "Mezők árnyalása"
-#. VAu1
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "Index and table shadings"
msgstr "Jegyzékek árnyalása"
-#. ~;h`
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "Script indicator"
msgstr "Parancsfájljelző"
-#. HQ?J
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "Section boundaries"
msgstr "Szakaszszegélyek"
-#. i1zC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -495,7 +447,6 @@ msgctxt ""
msgid "Headers and Footer delimiter"
msgstr "Élőfej és élőláb elválasztója"
-#. b:?Q
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "Page and column breaks"
msgstr "Oldal- és hasábtörések"
-#. 7a{;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "Direct cursor"
msgstr "Közvetlen kurzor"
-#. *a81
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "HTML-dokumentum"
-#. O72Y
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "SGML syntax highlighting"
msgstr "SGML-szintaxiskiemelés"
-#. P:Mr
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -545,7 +492,6 @@ msgctxt ""
msgid "Comment highlighting"
msgstr "Megjegyzés kiemelése"
-#. egNR
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "Keyword highlighting"
msgstr "Kulcsszó kiemelése"
-#. U^=j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. #g.f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "Munkafüzet"
-#. 7fQQ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "Grid lines"
msgstr "Rácsvonalak"
-#. |N03
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "Page breaks"
msgstr "Oldaltörés"
-#. Z/`c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "Manual page breaks"
msgstr "Kézi oldaltörés"
-#. c3J6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Automatic page breaks"
msgstr "Automatikus oldaltörés"
-#. b/b)
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "Detective"
msgstr "Detektív"
-#. dN3T
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "Detective error"
msgstr "Detektív hiba"
-#. 3#:,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "References"
msgstr "Hivatkozások"
-#. )+)m
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "Notes background"
msgstr "Megjegyzések háttere"
-#. xeXK
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "Drawing / Presentation"
msgstr "Rajz / Bemutató"
-#. 1~UG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. eY-7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "Basic Syntax Highlighting"
msgstr "Basic-szintaxiskiemelés"
-#. E]Y%
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "Identifier"
msgstr "Azonosító"
-#. ppBS
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "Comment"
msgstr "Megjegyzés"
-#. VRZD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -715,7 +645,6 @@ msgctxt ""
msgid "Number"
msgstr "Szám"
-#. TV`8
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -725,7 +654,6 @@ msgctxt ""
msgid "String"
msgstr "Karakterlánc"
-#. G3n@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -735,7 +663,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. tS83
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -745,7 +672,6 @@ msgctxt ""
msgid "Reserved expression"
msgstr "Fenntartott kifejezés"
-#. TKG7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -755,7 +681,6 @@ msgctxt ""
msgid "Error"
msgstr "Hiba"
-#. /@+6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -765,7 +690,6 @@ msgctxt ""
msgid "SQL Syntax Highlighting"
msgstr "SQL-szintaxiskiemelés"
-#. rl/b
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -775,7 +699,6 @@ msgctxt ""
msgid "Identifier"
msgstr "Azonosító"
-#. OEOC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -785,7 +708,6 @@ msgctxt ""
msgid "Number"
msgstr "Szám"
-#. t/k;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -795,7 +717,6 @@ msgctxt ""
msgid "String"
msgstr "Karakterlánc"
-#. (pRG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -805,7 +726,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. O6.s
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -815,7 +735,6 @@ msgctxt ""
msgid "Keyword"
msgstr "Kulcsszó"
-#. [?JL
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -825,7 +744,6 @@ msgctxt ""
msgid "Parameter"
msgstr "Paraméter"
-#. /Y[\
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -835,7 +753,6 @@ msgctxt ""
msgid "Comment"
msgstr "megjegyzés"
-#. vu[c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -845,7 +762,6 @@ msgctxt ""
msgid "Colorsettings of the Extensions"
msgstr "Kiterjesztések színbeállításai"
-#. \ig?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -855,7 +771,6 @@ msgctxt ""
msgid "Spell check highlighting"
msgstr "Helyesírás-ellenőrzés kiemelése"
-#. F@`=
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -865,7 +780,6 @@ msgctxt ""
msgid "Grammar check highlighting"
msgstr "Nyelvhelyesség-ellenőrzés kiemelése"
-#. /7J?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -874,7 +788,6 @@ msgctxt ""
msgid "Do you really want to delete the color scheme?"
msgstr "Tényleg törli a színsémát?"
-#. A*.;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -883,7 +796,6 @@ msgctxt ""
msgid "Color Scheme Deletion"
msgstr "Színséma törlése"
-#. xvT}
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -892,7 +804,6 @@ msgctxt ""
msgid "Save scheme"
msgstr "Séma mentése"
-#. [5mX
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -901,7 +812,6 @@ msgctxt ""
msgid "Name of color scheme"
msgstr "Színséma neve"
-#. B}jR
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -911,7 +821,6 @@ msgctxt ""
msgid "Miscellaneous options"
msgstr "Egyéb beállítások"
-#. =:Q$
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -921,7 +830,6 @@ msgctxt ""
msgid "Support ~assistive technology tools (program restart required)"
msgstr "~Kisegítő technológiai eszközök támogatása (a program újraindítása szükséges)"
-#. WcI~
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -931,7 +839,6 @@ msgctxt ""
msgid "Use te~xt selection cursor in read-only text documents"
msgstr "Szövegkijelölő kurzor használata a csak ~olvasható dokumentumokban"
-#. C-dh
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -941,7 +848,6 @@ msgctxt ""
msgid "Allow animated ~graphics"
msgstr "~Animált grafika engedélyezése"
-#. kweM
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -951,7 +857,6 @@ msgctxt ""
msgid "Allow animated ~text"
msgstr "A~nimált szöveg engedélyezése"
-#. =|Lk
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -961,7 +866,6 @@ msgctxt ""
msgid "~Help tips disappear after "
msgstr "Súgó~tippek eltűnnek "
-#. 4,NJ
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -971,7 +875,6 @@ msgctxt ""
msgid "seconds"
msgstr "mp múlva"
-#. GaI6
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -981,7 +884,6 @@ msgctxt ""
msgid "Options for high contrast appearance"
msgstr "Beállítások a kontrasztos megjelenéshez"
-#. q`[|
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -991,7 +893,6 @@ msgctxt ""
msgid "Automatically ~detect high contrast mode of operating system"
msgstr "Az operációs rendszer ~magas kontrasztú módjának automatikus felismerése"
-#. gpk%
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1001,7 +902,6 @@ msgctxt ""
msgid "Use automatic font ~color for screen display"
msgstr "A képernyőn használt ~betűszín automatikus kiválasztása"
-#. .Ij2
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1011,7 +911,6 @@ msgctxt ""
msgid "~Use system colors for page previews"
msgstr "~Rendszerszínek használata a nyomtatási képhez"
-#. 2x9@
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1021,7 +920,6 @@ msgctxt ""
msgid "Connection pool"
msgstr "Kapcsolatgyűjtő"
-#. 82!s
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1031,7 +929,6 @@ msgctxt ""
msgid "Connection pooling enabled"
msgstr "Kapcsolatgyűjtő engedélyezve"
-#. ZGsP
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1041,7 +938,6 @@ msgctxt ""
msgid "Drivers known in %PRODUCTNAME"
msgstr "A %PRODUCTNAME által ismert illesztőprogramok"
-#. g/*C
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1051,7 +947,6 @@ msgctxt ""
msgid "Current driver:"
msgstr "Aktuális illesztőprogram:"
-#. ?/pU
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1061,7 +956,6 @@ msgctxt ""
msgid "Enable pooling for this driver"
msgstr "A gyűjtés engedélyezése erre az illesztőprogramra"
-#. DGgy
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1071,7 +965,6 @@ msgctxt ""
msgid "Timeout (seconds)"
msgstr "Időtúllépés (másodpercben)"
-#. R]t8
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1081,7 +974,6 @@ msgctxt ""
msgid "Driver name"
msgstr "Illesztőprogram neve"
-#. UZ7P
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1091,7 +983,6 @@ msgctxt ""
msgid "Pool"
msgstr "Gyűjtő"
-#. sJ!}
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1101,7 +992,6 @@ msgctxt ""
msgid "Timeout"
msgstr "Időtúllépés"
-#. E8nj
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1111,7 +1001,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. Mjva
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1121,7 +1010,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. X6z@
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1131,7 +1019,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. h{?i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1141,7 +1028,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. 13lr
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1151,7 +1037,6 @@ msgctxt ""
msgid "Move Up"
msgstr "Mozgatás felfelé"
-#. Kk;M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1161,7 +1046,6 @@ msgctxt ""
msgid "Move Down"
msgstr "Mozgatás lefelé"
-#. A[h6
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1171,7 +1055,6 @@ msgctxt ""
msgid "~Back"
msgstr "~Vissza"
-#. \4Fz
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1181,7 +1064,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr "~További szótárak letöltése..."
-#. UK\l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1191,7 +1073,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. =s*M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1201,7 +1082,6 @@ msgctxt ""
msgid "Spelling"
msgstr "Helyesírás-ellenőrzés"
-#. vR0*
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1211,7 +1091,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Elválasztás"
-#. l^r:
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1221,7 +1100,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr "Szókincstár"
-#. oYol
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1231,7 +1109,6 @@ msgctxt ""
msgid "Grammar"
msgstr "Nyelvhelyesség"
-#. ld~b
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1240,7 +1117,6 @@ msgctxt ""
msgid "Edit Modules"
msgstr "Modulok szerkesztése"
-#. =*6X
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1250,7 +1126,6 @@ msgctxt ""
msgid "Characters before break"
msgstr "Karakterek száma a törés előtt"
-#. l^`~
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1260,7 +1135,6 @@ msgctxt ""
msgid "Characters after break"
msgstr "Karakterek száma a törés után"
-#. %2Y3
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1270,7 +1144,6 @@ msgctxt ""
msgid "Minimal word length"
msgstr "Minimális szóhossz"
-#. plc8
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1279,7 +1152,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Elválasztás"
-#. g)%k
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1289,7 +1161,6 @@ msgctxt ""
msgid "Writing aids"
msgstr "Írástámogatás"
-#. ^2GQ
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1299,7 +1170,6 @@ msgctxt ""
msgid "Available language modules"
msgstr "Rendelkezésre álló nyelvi modulok"
-#. ;*(T
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1309,7 +1179,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "S~zerkesztés..."
-#. 25qH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1319,7 +1188,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "Egyéni szótárak"
-#. cF:O
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1329,7 +1197,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. 5gA+
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1339,7 +1206,6 @@ msgctxt ""
msgid "Ed~it..."
msgstr "Szer~kesztés..."
-#. RImA
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1349,7 +1215,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. D?(.
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1359,7 +1224,6 @@ msgctxt ""
msgid "~Options"
msgstr "~Beállítások"
-#. ~f/{
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1369,7 +1233,6 @@ msgctxt ""
msgid "Edi~t..."
msgstr "S~zerkesztés..."
-#. \0)i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1379,7 +1242,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr "~További szótárak letöltése..."
-#. qh4p
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1389,7 +1251,6 @@ msgctxt ""
msgid "Check uppercase words"
msgstr "Nagybetűs szavak ellenőrzése"
-#. XFy]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1399,17 +1260,6 @@ msgctxt ""
msgid "Check words with numbers "
msgstr "Számot tartalmazó szavak ellenőrzése "
-#. b#n5
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SFXPAGE_LINGU\n"
-"STR_CAPITALIZATION\n"
-"string.text"
-msgid "Check capitalization"
-msgstr "Nagy kezdőbetűvel írandó szavak ellenőrzése"
-
-#. w+UH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1419,7 +1269,6 @@ msgctxt ""
msgid "Check special regions"
msgstr "Speciális területek ellenőrzése"
-#. J@b?
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1429,7 +1278,6 @@ msgctxt ""
msgid "Check spelling as you type"
msgstr "Helyesírás-ellenőrzés gépelés közben"
-#. !bY}
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1439,7 +1287,6 @@ msgctxt ""
msgid "Check grammar as you type"
msgstr "Nyelvhelyesség ellenőrzése gépelés közben"
-#. vT^Y
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1449,7 +1296,6 @@ msgctxt ""
msgid "Minimal number of characters for hyphenation: "
msgstr "Elválasztáshoz szükséges minimális betűszám: "
-#. Jjl;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1459,7 +1305,6 @@ msgctxt ""
msgid "Characters before line break: "
msgstr "Legalább ennyi karakter maradjon az elválasztójel előtt: "
-#. $__I
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1469,7 +1314,6 @@ msgctxt ""
msgid "Characters after line break: "
msgstr "Legalább ennyi karakter kerüljön át a következő sorba: "
-#. c_U/
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1479,7 +1323,6 @@ msgctxt ""
msgid "Hyphenate without inquiry"
msgstr "Elválasztás kérdés nélkül"
-#. iAE1
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1489,7 +1332,6 @@ msgctxt ""
msgid "Hyphenate special regions"
msgstr "Speciális területek elválasztása"
-#. m7s6
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1499,7 +1341,6 @@ msgctxt ""
msgid "Edit Available language modules"
msgstr "Rendelkezésre álló nyelvi modulok"
-#. 7Q/l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1509,7 +1350,6 @@ msgctxt ""
msgid "Edit User-defined dictionaries"
msgstr "Egyéni szótárak"
-#. 7,P;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1519,7 +1359,6 @@ msgctxt ""
msgid "Edit Options"
msgstr "Beállítások"
-#. g|q^
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1528,7 +1367,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. jI9]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1537,7 +1375,6 @@ msgctxt ""
msgid "Do you want to delete the dictionary?"
msgstr "Biztosan törölni akarja a szótárat?"
-#. OP:W
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1546,7 +1383,6 @@ msgctxt ""
msgid "Save"
msgstr "Mentés"
-#. (Gqx
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1556,7 +1392,6 @@ msgctxt ""
msgid "Load"
msgstr "Betöltés"
-#. oSZ,
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1566,7 +1401,6 @@ msgctxt ""
msgid "Load user-specific settings with the document"
msgstr "Felhasználói beállítások betöltése a dokumentummal együtt"
-#. `@VC
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1576,7 +1410,6 @@ msgctxt ""
msgid "Load printer settings with the document"
msgstr "Nyomtatóbeállítások betöltése a dokumentummal együtt"
-#. T^mK
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1586,7 +1419,6 @@ msgctxt ""
msgid "Save"
msgstr "Mentés"
-#. t%iL
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1596,7 +1428,6 @@ msgctxt ""
msgid "~Edit document properties before saving"
msgstr "~Dokumentumjellemzők szerkesztése mentés előtt"
-#. -[uP
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1606,7 +1437,6 @@ msgctxt ""
msgid "Al~ways create backup copy"
msgstr "~Mindig készítsen biztonsági másolatot"
-#. 0j[z
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1616,7 +1446,6 @@ msgctxt ""
msgid "Save ~AutoRecovery information every"
msgstr "Automatikus helyreállítási adatok mentése"
-#. ;W1!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1626,7 +1455,6 @@ msgctxt ""
msgid "Minutes"
msgstr "percenként"
-#. nUa=
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1636,7 +1464,6 @@ msgctxt ""
msgid "Save URLs relative to file system"
msgstr "A fájlrendszerhez viszonyított URL-ek mentése"
-#. V)$!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1646,7 +1473,6 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr "Internethez viszonyított URL-ek mentése"
-#. CmX8
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1656,7 +1482,6 @@ msgctxt ""
msgid "Default file format and ODF settings"
msgstr "Alapértelmezett fájlformátum és ODF-beállítások"
-#. %U6k
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1666,7 +1491,6 @@ msgctxt ""
msgid "ODF format version"
msgstr "ODF formátum verziója"
-#. Lr4b
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1676,7 +1500,6 @@ msgctxt ""
msgid "1.0/1.1"
msgstr "1.0/1.1"
-#. t.nq
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1686,7 +1509,6 @@ msgctxt ""
msgid "1.2"
msgstr "1.2"
-#. p7hQ
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1696,7 +1518,6 @@ msgctxt ""
msgid "1.2 Extended (compat mode)"
msgstr "1.2 Extended (kompat. mód)"
-#. ?(b+
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1706,7 +1527,6 @@ msgctxt ""
msgid "1.2 Extended (recommended)"
msgstr "1.2 Extended (javasolt)"
-#. q7Qe
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1716,7 +1536,6 @@ msgctxt ""
msgid "Size optimization for ODF format"
msgstr "Az ODF méretének optimalizálása"
-#. S:3M
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1726,7 +1545,6 @@ msgctxt ""
msgid "Warn when not saving in ODF or default format"
msgstr "Figyelmeztetés nem az ODF vagy az alapértelmezett formátumba mentéskor"
-#. ;w%I
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1736,7 +1554,6 @@ msgctxt ""
msgid "D~ocument type"
msgstr "Dokumentum ~típusa"
-#. ~PfO
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1746,7 +1563,6 @@ msgctxt ""
msgid "Always sa~ve as"
msgstr "Mi~ndig az alábbi formátumban mentse:"
-#. TQqH
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1756,7 +1572,6 @@ msgctxt ""
msgid "Text document"
msgstr "Szöveges dokumentum"
-#. F*A7
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1766,7 +1581,6 @@ msgctxt ""
msgid "HTML document"
msgstr "HTML-dokumentum"
-#. 43]|
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1776,7 +1590,6 @@ msgctxt ""
msgid "Master document"
msgstr "Fődokumentum"
-#. *6i)
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1786,7 +1599,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "Munkafüzet"
-#. WUb1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1796,7 +1608,6 @@ msgctxt ""
msgid "Presentation"
msgstr "Bemutató"
-#. CdO1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1806,7 +1617,6 @@ msgctxt ""
msgid "Drawing"
msgstr "Rajz"
-#. %x|?
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1817,7 +1627,6 @@ msgid "Formula"
msgstr "Képlet"
#. EN-US, the term 'extended' must not be translated.
-#. l^u*
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1827,7 +1636,6 @@ msgctxt ""
msgid "Not using ODF 1.2 Extended may cause information to be lost."
msgstr "Ha nem ODF 1.2 Extended formátumot használ, információ veszhet el."
-#. Ls=.
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1837,7 +1645,6 @@ msgctxt ""
msgid "Using \"%1\" as default file format may cause information loss.\n"
msgstr "A „%1” használata alapértelmezett fájlformátumként információvesztéshez vezethet.\n"
-#. zgR5
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1847,7 +1654,6 @@ msgctxt ""
msgid "Size ~1"
msgstr "Méret ~1"
-#. PO2R
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1857,7 +1663,6 @@ msgctxt ""
msgid "Size ~2"
msgstr "Méret ~2"
-#. 3g$2
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1867,7 +1672,6 @@ msgctxt ""
msgid "Size ~3"
msgstr "Méret ~3"
-#. 0r4N
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1877,7 +1681,6 @@ msgctxt ""
msgid "Size ~4"
msgstr "Méret ~4"
-#. MJC6
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1887,7 +1690,6 @@ msgctxt ""
msgid "Size ~5"
msgstr "Méret ~5"
-#. mreQ
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1897,7 +1699,6 @@ msgctxt ""
msgid "Size ~6"
msgstr "Méret ~6"
-#. VcR9
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1907,7 +1708,6 @@ msgctxt ""
msgid "Size ~7"
msgstr "Méret ~7"
-#. C%pS
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1917,7 +1717,6 @@ msgctxt ""
msgid "Font sizes"
msgstr "Betűméretek"
-#. |[RB
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1927,7 +1726,6 @@ msgctxt ""
msgid "Import"
msgstr "Importálás"
-#. bNGp
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1937,7 +1735,6 @@ msgctxt ""
msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr "„%ENGLISHUSLOCALE” ~területi beállítás használata a számokhoz"
-#. TxmA
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1947,7 +1744,6 @@ msgctxt ""
msgid "~Import unknown HTML tags as fields"
msgstr "~Ismeretlen HTML-kódok importálása mezőkként"
-#. MPj\
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1957,7 +1753,6 @@ msgctxt ""
msgid "Ignore ~font settings"
msgstr "B~etűbeállítások figyelmen kívül hagyása"
-#. GM(I
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1967,7 +1762,6 @@ msgctxt ""
msgid "Export"
msgstr "Exportálás"
-#. ABpI
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1976,7 +1770,6 @@ msgctxt ""
msgid "Display ~warning"
msgstr "~Figyelmeztetések megjelenítése"
-#. ^yzu
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1985,7 +1778,6 @@ msgctxt ""
msgid "~Print layout"
msgstr "~Nyomtatási elrendezés"
-#. bmJi
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1994,7 +1786,6 @@ msgctxt ""
msgid "~Copy local graphics to Internet"
msgstr "~Helyi képek másolása az internetre"
-#. *6ta
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2003,7 +1794,6 @@ msgctxt ""
msgid "Character set"
msgstr "Karakterkészlet"
-#. QsDh
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2013,7 +1803,6 @@ msgctxt ""
msgid "~Company"
msgstr "~Szervezet"
-#. 5~=-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2023,7 +1812,6 @@ msgctxt ""
msgid "First/Last ~name/Initials"
msgstr "~Utónév / Vezetéknév / Monogram"
-#. G#cq
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2033,7 +1821,6 @@ msgctxt ""
msgid "Last Name/First name/Father's name/Initials"
msgstr "Vezetéknév/Utónév/Apai név/Monogram"
-#. xakm
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2043,7 +1830,6 @@ msgctxt ""
msgid "Last/First ~name/Initials"
msgstr "Vezetéknév / ~Utónév / Monogram"
-#. /2XD
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2053,7 +1839,6 @@ msgctxt ""
msgid "~Street"
msgstr "~Utca"
-#. D+rO
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2063,7 +1848,6 @@ msgctxt ""
msgid "Street/Apartment number"
msgstr "Utca / Lakásszám"
-#. O0Ki
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2073,7 +1857,6 @@ msgctxt ""
msgid "Zip/City"
msgstr "Irányítószám / Település"
-#. Uao{
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2083,7 +1866,6 @@ msgctxt ""
msgid "City/State/Zip"
msgstr "Város / Állam / Irányítószám"
-#. oyb1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2093,7 +1875,6 @@ msgctxt ""
msgid "Country/Region"
msgstr "Ország / Régió"
-#. ?D$O
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2103,7 +1884,6 @@ msgctxt ""
msgid "~Title/Position"
msgstr "~Titulus / Beosztás"
-#. [ED-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2113,7 +1893,6 @@ msgctxt ""
msgid "Tel. (Home/Work)"
msgstr "Tel. (otthoni, munkahelyi)"
-#. o/5*
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2123,7 +1902,6 @@ msgctxt ""
msgid "Fa~x / E-mail"
msgstr "Fa~x / E-mail"
-#. 6dG1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2133,7 +1911,6 @@ msgctxt ""
msgid "Address "
msgstr "Cím "
-#. :M3h
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2143,7 +1920,6 @@ msgctxt ""
msgid "Use data for document properties"
msgstr "Dokumentum tulajdonságainak adatai"
-#. =jqL
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2152,7 +1928,6 @@ msgctxt ""
msgid "User Data"
msgstr "Felhasználó adatai"
-#. +fXe
#: readonlyimage.src
msgctxt ""
"readonlyimage.src\n"
@@ -2161,7 +1936,6 @@ msgctxt ""
msgid "This setting is protected by the Administrator"
msgstr "Ezt a beállítást a rendszergazda levédte"
-#. Eev*
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2171,7 +1945,6 @@ msgctxt ""
msgid "Security warnings"
msgstr "Biztonsági figyelmeztetések"
-#. 8A_[
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2181,7 +1954,6 @@ msgctxt ""
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr "Figyelmeztetés, ha a dokumentum feljegyzett változtatásokat, verzióinformációkat, rejtett információkat vagy megjegyzéseket tartalmaz:"
-#. B4O_
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2191,7 +1963,6 @@ msgctxt ""
msgid "When saving or sending"
msgstr "Mentéskor vagy küldéskor"
-#. shvw
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2201,7 +1972,6 @@ msgctxt ""
msgid "When signing"
msgstr "Aláíráskor"
-#. |U;4
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2211,7 +1981,6 @@ msgctxt ""
msgid "When printing"
msgstr "Nyomtatáskor"
-#. ccZm
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2221,7 +1990,6 @@ msgctxt ""
msgid "When creating PDF files"
msgstr "PDF-fájlok készítésekor"
-#. kd=Z
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2231,7 +1999,6 @@ msgctxt ""
msgid "Security options"
msgstr "Biztonsági beállítások"
-#. GF6W
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2241,7 +2008,6 @@ msgctxt ""
msgid "Remove personal information on saving"
msgstr "Személyes adatok eltávolítása mentéskor"
-#. fJp-
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2251,7 +2017,6 @@ msgctxt ""
msgid "Recommend password protection on saving"
msgstr "Jelszavas védelem javasolása mentéskor"
-#. ;MC6
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2261,7 +2026,6 @@ msgctxt ""
msgid "Ctrl-click required to follow hyperlinks"
msgstr "Ctrl-kattintás szükséges a hiperhivatkozás megnyitásához"
-#. K2#U
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2270,7 +2034,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr "Biztonsági beállítások és figyelmeztetések"
-#. Cp@J
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2280,7 +2043,6 @@ msgctxt ""
msgid "Chart colors"
msgstr "Diagramszínek"
-#. ;Rls
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2290,7 +2052,6 @@ msgctxt ""
msgid "Color table"
msgstr "Színtáblázat"
-#. 0\bZ
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2300,7 +2061,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. }Jrr
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2310,7 +2070,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. VVnT
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2320,7 +2079,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Alapértelmezett"
-#. YU9]
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2329,7 +2087,6 @@ msgctxt ""
msgid "Default Colors"
msgstr "Alapértelmezett színek"
-#. mPoM
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2338,7 +2095,6 @@ msgctxt ""
msgid "Data Series $(ROW)"
msgstr "Adatsorok $(ROW)"
-#. bo,w
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2347,7 +2103,6 @@ msgctxt ""
msgid "Do you really want to delete the chart color?"
msgstr "Tényleg törli a diagramszínt?"
-#. UU#8
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2356,7 +2111,6 @@ msgctxt ""
msgid "Chart Color Deletion"
msgstr "Diagramszín törlése"
-#. |FlO
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2366,7 +2120,6 @@ msgctxt ""
msgid "Registered name"
msgstr "Regisztrált név"
-#. }O[-
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2376,7 +2129,6 @@ msgctxt ""
msgid "Database file"
msgstr "Adatbázisfájl"
-#. ?),S
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2386,7 +2138,6 @@ msgctxt ""
msgid "~New..."
msgstr "Ú~j..."
-#. wuoU
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2396,7 +2147,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "S~zerkesztés..."
-#. `{zb
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2406,7 +2156,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. 0)Fh
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2416,7 +2165,6 @@ msgctxt ""
msgid "Registered databases"
msgstr "Regisztrált adatbázisok"
-#. =ae0
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2425,7 +2173,6 @@ msgctxt ""
msgid "Registered databases"
msgstr "Regisztrált adatbázisok"
-#. hZiT
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2435,7 +2182,6 @@ msgctxt ""
msgid "Treat as equal"
msgstr "Megegyezőként kezelendő"
-#. KmWi
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2445,7 +2191,6 @@ msgctxt ""
msgid "~uppercase/lowercase"
msgstr "~nagybetű/kisbetű"
-#. +88#
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2455,7 +2200,6 @@ msgctxt ""
msgid "~full-width/half-width forms"
msgstr "~teljes vagy félszélességű alakok"
-#. Yct?
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2465,7 +2209,6 @@ msgctxt ""
msgid "~hiragana/katakana"
msgstr "~hiragana/katakana"
-#. wZLN
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2475,7 +2218,6 @@ msgctxt ""
msgid "~contractions (yo-on, sokuon)"
msgstr "össze~vonások (yo-on, sokuon)"
-#. 89|:
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2485,7 +2227,6 @@ msgctxt ""
msgid "~minus/dash/cho-on"
msgstr "~mínusz/kötőjel/cho-on"
-#. :$;B
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2495,7 +2236,6 @@ msgctxt ""
msgid "'re~peat character' marks"
msgstr "ka~rakterismétlő jelek"
-#. Ll#h
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2505,7 +2245,6 @@ msgctxt ""
msgid "~variant-form kanji (itaiji)"
msgstr "~variáns-alakú kandzsi (itaiji)"
-#. RLD6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2515,7 +2254,6 @@ msgctxt ""
msgid "~old Kana forms"
msgstr "régi ~kana alakok"
-#. ?w}z
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2525,7 +2263,6 @@ msgctxt ""
msgid "~di/zi, du/zu"
msgstr "~di/zi, du/zu"
-#. 3X4L
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2535,7 +2272,6 @@ msgctxt ""
msgid "~ba/va, ha/fa"
msgstr "~ba/va, ha/fa"
-#. 3HC6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2545,7 +2281,6 @@ msgctxt ""
msgid "~tsi/thi/chi, dhi/zi"
msgstr "~tsi/thi/chi, dhi/zi"
-#. sU9=
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2555,7 +2290,6 @@ msgctxt ""
msgid "h~yu/fyu, byu/vyu"
msgstr "h~yu/fyu, byu/vyu"
-#. rauS
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2565,7 +2299,6 @@ msgctxt ""
msgid "~se/she, ze/je"
msgstr "~se/she, ze/je"
-#. N7LY
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2575,7 +2308,6 @@ msgctxt ""
msgid "~ia/iya (piano/piyano)"
msgstr "~ia/iya (piano/piyano)"
-#. ,odo
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2585,7 +2317,6 @@ msgctxt ""
msgid "~ki/ku (tekisuto/tekusuto)"
msgstr "~ki/ku (tekisuto/tekusuto)"
-#. Sz::
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2595,7 +2326,6 @@ msgctxt ""
msgid "Prolon~ged vowels (ka-/kaa)"
msgstr "~elnyújtott magánhangzók (ka-/kaa)"
-#. *kAs
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2605,7 +2335,6 @@ msgctxt ""
msgid "Ignore"
msgstr "Mellőzés"
-#. Q([|
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2615,7 +2344,6 @@ msgctxt ""
msgid "Pu~nctuation characters"
msgstr "Írás~jelek"
-#. j8v1
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2625,7 +2353,6 @@ msgctxt ""
msgid "~Whitespace characters"
msgstr "Ü~res karakterek (szóköz stb.)"
-#. +FWd
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2635,7 +2362,6 @@ msgctxt ""
msgid "Midd~le dots"
msgstr "Köz~benső pontok"
-#. \.Gn
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2644,7 +2370,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "Keresés japán szövegben"
-#. FaD!
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2654,7 +2379,6 @@ msgctxt ""
msgid "Online Update Options"
msgstr "Online frissítés beállításai"
-#. I9Np
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2664,7 +2388,6 @@ msgctxt ""
msgid "~Check for updates automatically"
msgstr "~Frissítések automatikus keresése"
-#. 3?@D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2674,7 +2397,6 @@ msgctxt ""
msgid "Every Da~y"
msgstr "~Naponta"
-#. ul)D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2684,7 +2406,6 @@ msgctxt ""
msgid "Every ~Week"
msgstr "H~etente"
-#. #rsS
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2694,7 +2415,6 @@ msgctxt ""
msgid "Every ~Month"
msgstr "~Havonta"
-#. doG(
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2704,7 +2424,6 @@ msgctxt ""
msgid "Last checked: %DATE%, %TIME%"
msgstr "Utolsó ellenőrzés: %DATE%, %TIME%"
-#. Oqg^
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2714,7 +2433,6 @@ msgctxt ""
msgid "Check ~now"
msgstr "~Ellenőrzés"
-#. 3a_)
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2724,7 +2442,6 @@ msgctxt ""
msgid "~Download updates automatically"
msgstr "~Frissítések automatikus letöltése"
-#. RhY~
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2734,7 +2451,6 @@ msgctxt ""
msgid "Download destination:"
msgstr "Letöltés célmappája:"
-#. EF+I
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2744,7 +2460,6 @@ msgctxt ""
msgid "Ch~ange..."
msgstr "Mó~dosítás..."
-#. xH/+
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2754,7 +2469,6 @@ msgctxt ""
msgid "Last checked: Not yet"
msgstr "Utolsó ellenőrzés: még nem volt"
-#. (/bd
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2763,7 +2477,6 @@ msgctxt ""
msgid "OnlineUpdate"
msgstr "OnlineUpdate"
-#. ,M0q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2773,7 +2486,6 @@ msgctxt ""
msgid "~Revert"
msgstr "~Visszavonás"
-#. _SYW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2783,7 +2495,6 @@ msgctxt ""
msgid "The selected module could not be loaded."
msgstr "A választott modul nem tölthető be"
-#. ukL;
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2792,7 +2503,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. !vl4
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2802,7 +2512,6 @@ msgctxt ""
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. BlF]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2812,7 +2521,6 @@ msgctxt ""
msgid "User Data"
msgstr "Felhasználó adatai"
-#. ,::m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2822,7 +2530,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. hFl~
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2832,7 +2539,6 @@ msgctxt ""
msgid "Memory"
msgstr "Memória"
-#. gG;B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2842,7 +2548,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. {Joa
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2852,7 +2557,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. /;d:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2862,7 +2566,6 @@ msgctxt ""
msgid "Paths"
msgstr "Útvonalak"
-#. `PF{
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2872,7 +2575,6 @@ msgctxt ""
msgid "Colors"
msgstr "Színek"
-#. ]X~[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2882,7 +2584,6 @@ msgctxt ""
msgid "Fonts"
msgstr "Betűkészletek"
-#. 0@56
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2892,7 +2593,6 @@ msgctxt ""
msgid "Security"
msgstr "Biztonság"
-#. HSPe
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2902,7 +2602,6 @@ msgctxt ""
msgid "Appearance"
msgstr "Megjelenés"
-#. Ek#u
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2912,7 +2611,6 @@ msgctxt ""
msgid "Accessibility"
msgstr "Kisegítő lehetőségek"
-#. YkY/
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2922,7 +2620,6 @@ msgctxt ""
msgid "Advanced"
msgstr ""
-#. rwW`
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2932,7 +2629,6 @@ msgctxt ""
msgid "Online Update"
msgstr "Online frissítés"
-#. B]l]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2942,7 +2638,6 @@ msgctxt ""
msgid "Language Settings"
msgstr "Nyelvi beállítások"
-#. lOH[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2952,7 +2647,6 @@ msgctxt ""
msgid "Languages"
msgstr "Nyelvek"
-#. F=\y
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2962,7 +2656,6 @@ msgctxt ""
msgid "Writing Aids"
msgstr "Írástámogatás"
-#. (*pv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2972,7 +2665,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "Keresés japán szövegben"
-#. Hr[3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2982,7 +2674,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr "Ázsiai tördelés"
-#. 0@QW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2992,7 +2683,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr "Komplex szöveg megjelenítése"
-#. 6j_?
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3002,7 +2692,6 @@ msgctxt ""
msgid "Internet"
msgstr "Internet"
-#. MRTU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3012,7 +2701,6 @@ msgctxt ""
msgid "Proxy"
msgstr "Proxy"
-#. HxUr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3022,7 +2710,6 @@ msgctxt ""
msgid "E-mail"
msgstr "E-mail"
-#. :|lO
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3032,7 +2719,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr "Bővítőmodul böngészőhöz"
-#. jB7_
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3042,7 +2728,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
-#. Ez,w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3052,7 +2737,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. cj#h
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3062,7 +2746,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. z4hb
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3072,7 +2755,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr "Formázási segédletek"
-#. kX$3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3082,7 +2764,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. l.2B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3092,7 +2773,6 @@ msgctxt ""
msgid "Basic Fonts (Western)"
msgstr "Alap betűkészletek (nyugati)"
-#. _UXE
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3102,7 +2782,6 @@ msgctxt ""
msgid "Basic Fonts (Asian)"
msgstr "Alap betűkészletek (ázsiai)"
-#. YX:%
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3112,7 +2791,6 @@ msgctxt ""
msgid "Basic Fonts (CTL)"
msgstr "Alap betűkészletek (CTL)"
-#. mP=E
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3122,7 +2800,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. H2Y#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3132,7 +2809,6 @@ msgctxt ""
msgid "Table"
msgstr "Táblázat"
-#. 3SB_
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3142,7 +2818,6 @@ msgctxt ""
msgid "Changes"
msgstr "Módosítások"
-#. $lFu
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3152,7 +2827,6 @@ msgctxt ""
msgid "Comparison"
msgstr "Összehasonlítás"
-#. aB\D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3162,7 +2836,6 @@ msgctxt ""
msgid "Compatibility"
msgstr "Kompatibilitás"
-#. `=]l
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3172,7 +2845,6 @@ msgctxt ""
msgid "AutoCaption"
msgstr "Automatikus felirat"
-#. `J:Q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3182,7 +2854,6 @@ msgctxt ""
msgid "Mail Merge E-mail"
msgstr "Körlevél e-mailben"
-#. 9dn(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3192,7 +2863,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME Writer/Web"
-#. GnRw
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3202,7 +2872,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. Nv%(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3212,7 +2881,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr "Formázási segédletek"
-#. XWQ[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3222,7 +2890,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. :B|!
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3232,7 +2899,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. Romr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3242,7 +2908,6 @@ msgctxt ""
msgid "Table"
msgstr "Táblázat"
-#. [K)m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3252,7 +2917,6 @@ msgctxt ""
msgid "Background"
msgstr "Háttér"
-#. +iBl
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3262,7 +2926,6 @@ msgctxt ""
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME Math"
-#. +uDg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3272,7 +2935,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. 5K-k
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3282,7 +2944,6 @@ msgctxt ""
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc"
-#. H9xU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3292,7 +2953,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. NU%N
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3302,7 +2962,6 @@ msgctxt ""
msgid "Defaults"
msgstr "Alapbeállítások"
-#. N|0.
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3312,7 +2971,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. kG\1
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3322,7 +2980,6 @@ msgctxt ""
msgid "International"
msgstr "Nemzetközi"
-#. \$l3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3332,7 +2989,6 @@ msgctxt ""
msgid "Calculate"
msgstr "Számítás"
-#. Sk`5
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3342,7 +2998,6 @@ msgctxt ""
msgid "Formula"
msgstr "Képlet"
-#. 3SG+
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3352,7 +3007,6 @@ msgctxt ""
msgid "Sort Lists"
msgstr "Rendezett listák"
-#. W6fZ
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3362,7 +3016,6 @@ msgctxt ""
msgid "Changes"
msgstr "Módosítások"
-#. T9C=
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3372,7 +3025,6 @@ msgctxt ""
msgid "Compatibility"
msgstr "Kompatibilitás"
-#. _W9Z
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3382,7 +3034,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. ^xQ(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3392,7 +3043,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. j\gR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3402,7 +3052,6 @@ msgctxt ""
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME Impress"
-#. /sAH
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3412,7 +3061,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. nUS2
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3422,7 +3070,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. ,J0#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3432,7 +3079,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. !q@W
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3442,7 +3088,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. GPOG
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3452,7 +3097,6 @@ msgctxt ""
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME Draw"
-#. cV2r
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3462,7 +3106,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. xmuL
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3472,7 +3115,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. m!qY
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3482,7 +3124,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. mP5D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3492,7 +3133,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. 9)sB
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3502,7 +3142,6 @@ msgctxt ""
msgid "Charts"
msgstr "Diagramok"
-#. `r:w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3512,7 +3151,6 @@ msgctxt ""
msgid "Default Colors"
msgstr "Alapértelmezett színek"
-#. cKkg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3522,7 +3160,6 @@ msgctxt ""
msgid "Load/Save"
msgstr "Megnyitás és mentés"
-#. m?g:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3532,7 +3169,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. 4+LR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3542,7 +3178,6 @@ msgctxt ""
msgid "VBA Properties"
msgstr "VBA-beállítások"
-#. WbyR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3552,7 +3187,6 @@ msgctxt ""
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#. OoXN
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3562,7 +3196,6 @@ msgctxt ""
msgid "HTML Compatibility"
msgstr "HTML-kompatibilitás"
-#. #={;
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3572,7 +3205,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
-#. [;2j
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3582,7 +3214,6 @@ msgctxt ""
msgid "Connections"
msgstr "Kapcsolatok"
-#. xR[v
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3592,7 +3223,6 @@ msgctxt ""
msgid "Databases"
msgstr "Adatbázisok"
-#. 5!e[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3601,7 +3231,6 @@ msgctxt ""
msgid "Site certificates"
msgstr "Webhely-tanúsítványok"
-#. lwlv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3610,7 +3239,6 @@ msgctxt ""
msgid "Personal certificates"
msgstr "Személyes tanúsítványok"
-#. _aZX
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3620,7 +3248,6 @@ msgctxt ""
msgid "Kerning"
msgstr "Alávágás"
-#. eVTz
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3630,7 +3257,6 @@ msgctxt ""
msgid "~Western characters only"
msgstr "~Csak nyugati karakterek közt"
-#. 2eI_
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3640,7 +3266,6 @@ msgctxt ""
msgid "Western ~text and Asian punctuation"
msgstr "Nyugati karakterek és ázsiai írás~jelek közt"
-#. ApQn
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3650,7 +3275,6 @@ msgctxt ""
msgid "Character spacing"
msgstr "Betűköz"
-#. Yn]P
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3660,7 +3284,6 @@ msgctxt ""
msgid "~No compression"
msgstr "~Tömörítetlen"
-#. /.mE
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3670,7 +3293,6 @@ msgctxt ""
msgid "~Compress punctuation only"
msgstr "~Csak a központozás tömörítése"
-#. `Al!
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3680,7 +3302,6 @@ msgctxt ""
msgid "Compress ~punctuation and Japanese Kana"
msgstr "Í~rásjelek és japán kana tömörítése is"
-#. 4@Z{
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3690,7 +3311,6 @@ msgctxt ""
msgid "First and last characters"
msgstr "Első és utolsó karakter"
-#. Ur]C
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3700,7 +3320,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Nyelv"
-#. fqOF
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3710,7 +3329,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Alapértelmezett"
-#. gT-)
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3720,7 +3338,6 @@ msgctxt ""
msgid "Not at start of line:"
msgstr "Sor elején nem állhat:"
-#. aB5-
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3730,7 +3347,6 @@ msgctxt ""
msgid "Not at end of line:"
msgstr "Sor végén nem állhat:"
-#. I08U
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3740,7 +3356,6 @@ msgctxt ""
msgid "Without user-defined line break symbols"
msgstr "Felhasználói sortörésjelek nélkül"
-#. ^Bw~
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3749,7 +3364,6 @@ msgctxt ""
msgid "Proxy"
msgstr "Proxy"
-#. ]I@@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3759,7 +3373,6 @@ msgctxt ""
msgid "Java options"
msgstr "Java-beállítások"
-#. ^KHF
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3769,7 +3382,6 @@ msgctxt ""
msgid "~Use a Java runtime environment"
msgstr "~Java-futtatókörnyezet használata"
-#. PmPu
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3779,7 +3391,6 @@ msgctxt ""
msgid "~Java runtime environments (JRE) already installed:"
msgstr "~Jelenleg telepített Java-futtatókörnyezetek (JRE-k):"
-#. J5Cr
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3789,7 +3400,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. u_S0
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3799,7 +3409,6 @@ msgctxt ""
msgid "~Parameters..."
msgstr "~Paraméterek..."
-#. Oo.1
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3809,7 +3418,6 @@ msgctxt ""
msgid "~Class Path..."
msgstr "~Osztály útvonala..."
-#. V?5n
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3819,7 +3427,6 @@ msgctxt ""
msgid "Optional (unstable) options"
msgstr ""
-#. dPu2
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3829,7 +3436,6 @@ msgctxt ""
msgid "Enable experimental features"
msgstr ""
-#. AiLT
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3839,7 +3445,6 @@ msgctxt ""
msgid "Enable macro recording"
msgstr ""
-#. u7\^
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3849,7 +3454,6 @@ msgctxt ""
msgid "Location: "
msgstr "Hely: "
-#. AM%f
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3859,7 +3463,6 @@ msgctxt ""
msgid "with accessibility support"
msgstr "kisegítő lehetőségekkel"
-#. oER6
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3869,7 +3472,6 @@ msgctxt ""
msgid "Select a Java Runtime Environment"
msgstr "Java-futtatókörnyezet választása"
-#. ?gY7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3879,7 +3481,6 @@ msgctxt ""
msgid "Vendor"
msgstr "Gyártó"
-#. WX4e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3889,7 +3490,6 @@ msgctxt ""
msgid "Version"
msgstr "Verzió"
-#. Cp`H
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3899,7 +3499,6 @@ msgctxt ""
msgid "Features"
msgstr "Tulajdonságok"
-#. -z1]
#: optjava.src
#, fuzzy
msgctxt ""
@@ -3909,7 +3508,6 @@ msgctxt ""
msgid "Java"
msgstr "Java"
-#. MD=`
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3919,7 +3517,6 @@ msgctxt ""
msgid "Java start ~parameter"
msgstr "Java indító~paramétere"
-#. mfGf
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3929,7 +3526,6 @@ msgctxt ""
msgid "~Assign"
msgstr "~Hozzárendelés"
-#. 80/}
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3939,7 +3535,6 @@ msgctxt ""
msgid "Assig~ned start parameters"
msgstr "~Hozzárendelt indítóparaméterek"
-#. Cp@,
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3949,7 +3544,6 @@ msgctxt ""
msgid "For example: -Dmyprop=c:\\program files\\java"
msgstr "Például: -Dmyprop=c:\\program files\\java"
-#. K?)3
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3959,7 +3553,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. kVa7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3968,7 +3561,6 @@ msgctxt ""
msgid "Java Start Parameters"
msgstr "Java indítóparaméterei"
-#. gB:p
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3978,7 +3570,6 @@ msgctxt ""
msgid "A~ssigned folders and archives"
msgstr "H~ozzárendelt mappák és archívumok"
-#. \Hm@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3988,7 +3579,6 @@ msgctxt ""
msgid "~Add Archive..."
msgstr "Archívumfájl ~hozzáadása..."
-#. `*Vb
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3998,7 +3588,6 @@ msgctxt ""
msgid "Add ~Folder"
msgstr "Mappa ~hozzáadása"
-#. =A:e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4008,7 +3597,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. ]WhV
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4017,7 +3605,6 @@ msgctxt ""
msgid "Class Path"
msgstr "Osztály útvonala"
-#. ;DoI
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4030,7 +3617,6 @@ msgstr ""
"A kiválasztott mappa nem tartalmaz Java futtatási környezetet.\n"
"Válasszon egy másik mappát."
-#. m+7R
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4043,20 +3629,6 @@ msgstr ""
"A kiválasztott Java futtatási környezet verziószáma tál alacsony.\n"
"Válasszon egy másik mappát."
-#. 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 ""
-"A kiválasztott Java futtatási környezet helyes működéséhez újra kell indítani a %PRODUCTNAME szoftvert.\n"
-"Indítsa most újra a %PRODUCTNAME szoftvert"
-
-#. I?^k
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4069,7 +3641,6 @@ msgstr ""
"A megváltoztatott beállítások életbe lépéséhez újra kell indítani a %PRODUCTNAME szoftvert.\n"
"Indítsa most újra a %PRODUCTNAME szoftvert."
-#. !j-G
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4079,7 +3650,6 @@ msgctxt ""
msgid "~Database file"
msgstr "~Adatbázisfájl"
-#. =w2.
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4089,7 +3659,6 @@ msgctxt ""
msgid "~Browse..."
msgstr "~Tallózás..."
-#. X\SR
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4099,7 +3668,6 @@ msgctxt ""
msgid "Registered ~name"
msgstr "Regisztrált ~név"
-#. iuUJ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4109,7 +3677,6 @@ msgctxt ""
msgid "Edit Database Link"
msgstr "Adatbázis-kapcsolat szerkesztése"
-#. }?4O
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4119,7 +3686,6 @@ msgctxt ""
msgid "Create Database Link"
msgstr "Adatbázis-kapcsolat létrehozása"
-#. ^+uQ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4134,7 +3700,6 @@ msgstr ""
"$file$\n"
"nem létezik."
-#. ^gHK
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4149,7 +3714,6 @@ msgstr ""
"$file$\n"
"nem létezik a helyi fájlrendszeren."
-#. q3PM
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4162,7 +3726,6 @@ msgstr ""
"A(z) „$file$” fájlt már egy másik adatbázis használja.\n"
"Válasszon egy másik nevet."
-#. a%b8
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4171,7 +3734,6 @@ msgctxt ""
msgid "Do you want to delete the entry?"
msgstr "Törli a bejegyzést?"
-#. p~{X
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4181,7 +3743,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. uq/K
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4191,7 +3752,6 @@ msgctxt ""
msgid "Path"
msgstr "Útvonal"
-#. fg$t
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4201,7 +3761,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "S~zerkesztés..."
-#. d=*h
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4211,7 +3770,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Alapértelmezett"
-#. Z}*7
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4221,7 +3779,6 @@ msgctxt ""
msgid "Paths used by %PRODUCTNAME"
msgstr "A %PRODUCTNAME által használt útvonalak"
-#. Nwsb
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4231,7 +3788,6 @@ msgctxt ""
msgid "Edit Paths: %1"
msgstr "Útvonalak szerkesztése: %1"
-#. 0P6,
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4240,7 +3796,6 @@ msgctxt ""
msgid "Paths"
msgstr "Útvonalak"
-#. TOsx
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4253,7 +3808,6 @@ msgstr ""
"A konfigurációs és a leveleket tároló könyvtár nem lehet azonos.\n"
"Válasszon egy másik könyvtárat."
-#. a%Fs
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4262,7 +3816,6 @@ msgctxt ""
msgid "Configuration"
msgstr "Beállítások"
-#. M4Rz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4271,7 +3824,6 @@ msgctxt ""
msgid "My Documents"
msgstr "Dokumentumok"
-#. J!sZ
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4280,7 +3832,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Grafikák"
-#. 6isK
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4289,7 +3840,6 @@ msgctxt ""
msgid "Icons"
msgstr "Ikonok"
-#. f@It
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4298,7 +3848,6 @@ msgctxt ""
msgid "Palettes"
msgstr "Paletták"
-#. Q4Fe
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4307,7 +3856,6 @@ msgctxt ""
msgid "Backups"
msgstr "Biztonsági mentések"
-#. uXYX
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4316,7 +3864,6 @@ msgctxt ""
msgid "Modules"
msgstr "Modulok"
-#. y9c)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4325,7 +3872,6 @@ msgctxt ""
msgid "Templates"
msgstr "Sablonok"
-#. $%aO
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4334,7 +3880,6 @@ msgctxt ""
msgid "AutoText"
msgstr "Szövegblokk"
-#. pa_k
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4343,7 +3888,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr "Szótárak"
-#. P:~D
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4352,7 +3896,6 @@ msgctxt ""
msgid "Help"
msgstr "Súgó"
-#. Q@)T
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4361,7 +3904,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Képtár"
-#. S.x/
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4370,7 +3912,6 @@ msgctxt ""
msgid "Message Storage"
msgstr "Üzenettároló"
-#. !YM[
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4379,7 +3920,6 @@ msgctxt ""
msgid "Temporary files"
msgstr "Ideiglenes fájlok"
-#. \Tm)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4388,7 +3928,6 @@ msgctxt ""
msgid "Plug-ins"
msgstr "Bővítőmodulok"
-#. rnxz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4397,7 +3936,6 @@ msgctxt ""
msgid "Folder Bookmarks"
msgstr "Mappa könyvjelzők"
-#. n,@:
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4406,7 +3944,6 @@ msgctxt ""
msgid "Filters"
msgstr "Szűrők"
-#. 7NA@
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4415,7 +3952,6 @@ msgctxt ""
msgid "Add-ins"
msgstr "Kiegészítők"
-#. 9)3c
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4424,7 +3960,6 @@ msgctxt ""
msgid "User Configuration"
msgstr "Felhasználói beállítások"
-#. ,hkG
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4433,7 +3968,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "Egyéni szótárak"
-#. e%Dj
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4442,7 +3976,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "Automatikus javítás"
-#. H[\{
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4451,7 +3984,6 @@ msgctxt ""
msgid "Writing aids"
msgstr "Írástámogatás"
-#. 2k_@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4461,7 +3993,6 @@ msgctxt ""
msgid "Sequence checking"
msgstr "Sorrendellenőrzés"
-#. @1PN
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4471,7 +4002,6 @@ msgctxt ""
msgid "Use se~quence checking"
msgstr "~Jelsorrend ellenőrzése"
-#. V_P(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4481,7 +4011,6 @@ msgctxt ""
msgid "Restricted"
msgstr "Korlátozott"
-#. jr*4
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4491,7 +4020,6 @@ msgctxt ""
msgid "~Type and replace"
msgstr "~Csere beírás közben"
-#. |9e(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4501,7 +4029,6 @@ msgctxt ""
msgid "Cursor control"
msgstr "Kurzor beállítása"
-#. 21je
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4511,7 +4038,6 @@ msgctxt ""
msgid "Movement"
msgstr "Mozgás"
-#. jVib
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4521,7 +4047,6 @@ msgctxt ""
msgid "Lo~gical"
msgstr "Lo~gikai"
-#. ,_Hy
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4531,7 +4056,6 @@ msgctxt ""
msgid "~Visual"
msgstr "~Látható"
-#. 9n4m
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4541,7 +4065,6 @@ msgctxt ""
msgid "General options"
msgstr "Általános beállítások"
-#. S)~V
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4551,7 +4074,6 @@ msgctxt ""
msgid "~Numerals"
msgstr "~Számok"
-#. Mx/@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4561,7 +4083,6 @@ msgctxt ""
msgid "Arabic"
msgstr "Arab"
-#. JQn\
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4571,7 +4092,6 @@ msgctxt ""
msgid "Hindi"
msgstr "Hindi"
-#. _:Y2
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4581,7 +4101,6 @@ msgctxt ""
msgid "System"
msgstr "Rendszer"
-#. 4!])
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4591,7 +4110,6 @@ msgctxt ""
msgid "Context"
msgstr "Környezet"
-#. 0LeK
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4600,7 +4118,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr "Komplex szöveg megjelenítése"
-#. `JwJ
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4610,7 +4127,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Név"
-#. a,F2
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4620,7 +4136,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Nyelv"
-#. xMXC
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4630,7 +4145,6 @@ msgctxt ""
msgid "~Exception (-)"
msgstr "~Kivétel (-)"
-#. 5%0s
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4640,7 +4154,6 @@ msgctxt ""
msgid "Dictionary"
msgstr "Szótár"
-#. mOZ)
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4649,7 +4162,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr "Új szótár"
-#. Kvmc
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4659,7 +4171,6 @@ msgctxt ""
msgid "~Book"
msgstr "Szótá~r"
-#. Y*4t
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4669,7 +4180,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Nyelv"
-#. $cYD
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4679,7 +4189,6 @@ msgctxt ""
msgid "~Word"
msgstr "S~zó"
-#. Iq}[
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4689,7 +4198,6 @@ msgctxt ""
msgid "Replace ~By:"
msgstr "~Csere erre:"
-#. Z0=6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4699,7 +4207,6 @@ msgctxt ""
msgid "~New"
msgstr "Ú~j"
-#. 9!S6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4709,7 +4216,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. l;`f
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4719,7 +4225,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~Csere"
-#. U`I*
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4729,7 +4234,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. =jF^
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4738,7 +4242,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr "Felhasználói szótár szerkesztése"
-#. O/91
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4751,7 +4254,6 @@ msgstr ""
"A megadott név már létezik.\n"
"Adjon meg egy új nevet."
-#. !TG=
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4760,7 +4262,6 @@ msgctxt ""
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Szeretné megváltoztatni a(z) „%1” szótár nyelvét?"
-#. gcMt
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4770,7 +4271,6 @@ msgctxt ""
msgid "Microsoft Word 97/2000/XP"
msgstr "Microsoft Word 97/2000/XP"
-#. qe?;
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4780,7 +4280,6 @@ msgctxt ""
msgid "Load Basic ~code"
msgstr "Basi~c-kód betöltése"
-#. KSy7
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4790,7 +4289,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr "Végr~ehajtható kód"
-#. \!]w
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4800,7 +4298,6 @@ msgctxt ""
msgid "Save ~original Basic code"
msgstr "~Eredeti Basic-kód mentése"
-#. (_Nm
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4810,7 +4307,6 @@ msgctxt ""
msgid "Microsoft Excel 97/2000/XP"
msgstr "Microsoft Excel 97/2000/XP"
-#. r5%B
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4820,7 +4316,6 @@ msgctxt ""
msgid "Lo~ad Basic code"
msgstr "~Basic-kód betöltése"
-#. :vUd
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4830,7 +4325,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr "Végr~ehajtható kód"
-#. t^0I
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4840,7 +4334,6 @@ msgctxt ""
msgid "Sa~ve original Basic code"
msgstr "E~redeti Basic-kód mentése"
-#. az!8
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4850,7 +4343,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 97/2000/XP"
msgstr "Microsoft PowerPoint 97/2000/XP"
-#. NV{`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4860,7 +4352,6 @@ msgctxt ""
msgid "Load Ba~sic code"
msgstr "Ba~sic-kód betöltése"
-#. AJeg
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4870,7 +4361,6 @@ msgctxt ""
msgid "Sav~e original Basic code"
msgstr "Ere~deti Basic-kód mentése"
-#. 41rG
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4880,7 +4370,6 @@ msgctxt ""
msgid "[L]"
msgstr "[T]"
-#. {)7]
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4890,7 +4379,6 @@ msgctxt ""
msgid "[S]"
msgstr "[M]"
-#. XIRT
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4900,7 +4388,6 @@ msgctxt ""
msgid "[L]: Load and convert the object"
msgstr "[T]: Az objektum betöltése és átalakítása"
-#. thlE
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4910,7 +4397,6 @@ msgctxt ""
msgid "[S]: Convert and save the object"
msgstr "[M]: Az objektum átalakítása és mentése"
-#. =lGU
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4920,7 +4406,6 @@ msgctxt ""
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType → %PRODUCTNAME Math vagy fordítva"
-#. %DHi
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4930,7 +4415,6 @@ msgctxt ""
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord → %PRODUCTNAME Writer vagy fordítva"
-#. c@,c
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4940,7 +4424,6 @@ msgctxt ""
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel → %PRODUCTNAME Calc vagy fordítva"
-#. Sx,`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4950,7 +4433,6 @@ msgctxt ""
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint → %PRODUCTNAME Impress vagy fordítva"
-#. p2,2
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4960,7 +4442,6 @@ msgctxt ""
msgid "Undo"
msgstr "Visszavonás"
-#. Ro8]
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4970,7 +4451,6 @@ msgctxt ""
msgid "Number of steps"
msgstr "Lépések száma"
-#. SN_f
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4980,7 +4460,6 @@ msgctxt ""
msgid "Graphics cache"
msgstr "Képgyorsítótár"
-#. $Q^P
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4990,7 +4469,6 @@ msgctxt ""
msgid "Use for %PRODUCTNAME"
msgstr "%PRODUCTNAME által használt"
-#. PEO$
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5000,7 +4478,6 @@ msgctxt ""
msgid "MB"
msgstr "MB"
-#. x^j\
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5010,7 +4487,6 @@ msgctxt ""
msgid "Memory per object"
msgstr "Memória objektumonként"
-#. 3pMy
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5020,7 +4496,6 @@ msgctxt ""
msgid "MB"
msgstr "MB"
-#. asb/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5030,7 +4505,6 @@ msgctxt ""
msgid "Remove from memory after"
msgstr "Törlés a memóriából"
-#. n3R0
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5040,7 +4514,6 @@ msgctxt ""
msgid "hh:mm"
msgstr "(óó:pp) után"
-#. }ZKK
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5050,7 +4523,6 @@ msgctxt ""
msgid "Cache for inserted objects"
msgstr "A beszúrt objektumok gyorsítótára"
-#. F3y+
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5060,7 +4532,6 @@ msgctxt ""
msgid "Number of objects"
msgstr "Objektumok száma"
-#. Ikf/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5070,7 +4541,6 @@ msgctxt ""
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME gyorsindító"
-#. dx^3
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5080,7 +4550,6 @@ msgctxt ""
msgid "Load %PRODUCTNAME during system start-up"
msgstr "A %PRODUCTNAME betöltése a rendszer indításakor"
-#. 6K=X
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5090,7 +4559,6 @@ msgctxt ""
msgid "Enable systray Quickstarter"
msgstr "Gyorsindító engedélyezése"
-#. `!9w
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5100,7 +4568,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr "Bővítőmodul böngészőhöz"
-#. $;4R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5110,7 +4577,6 @@ msgctxt ""
msgid "~Display documents in browser"
msgstr "~Dokumentumok megjelenítése a böngészőben"
-#. ~1YW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5120,7 +4586,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. I1kK
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5130,7 +4595,6 @@ msgctxt ""
msgid "Proxy s~erver"
msgstr "~Proxykiszolgáló"
-#. SK(E
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5140,7 +4604,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. Vk}?
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5150,7 +4613,6 @@ msgctxt ""
msgid "System"
msgstr "Rendszer"
-#. 6O!V
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5160,7 +4622,6 @@ msgctxt ""
msgid "Manual"
msgstr "Kézi"
-#. e*Z6
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5170,7 +4631,6 @@ msgctxt ""
msgid "Use browser settings"
msgstr "Böngésző beállításainak használata"
-#. -Pi*
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5180,7 +4640,6 @@ msgctxt ""
msgid "HT~TP proxy"
msgstr "~HTTP-proxy"
-#. F\0r
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5190,7 +4649,6 @@ msgctxt ""
msgid "~Port"
msgstr "~Port"
-#. Uq`o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5200,7 +4658,6 @@ msgctxt ""
msgid "HTTP~S proxy"
msgstr "~HTTPS-proxy"
-#. ZeX%
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5210,7 +4667,6 @@ msgctxt ""
msgid "P~ort"
msgstr "P~ort"
-#. BF:g
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5220,7 +4676,6 @@ msgctxt ""
msgid "~FTP proxy"
msgstr "~FTP-proxy"
-#. Mr$j
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5230,7 +4685,6 @@ msgctxt ""
msgid "P~ort"
msgstr "P~ort"
-#. !L}c
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5240,7 +4694,6 @@ msgctxt ""
msgid "~SOCKS proxy"
msgstr "~SOCKS-proxy"
-#. L]+m
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5250,7 +4703,6 @@ msgctxt ""
msgid "Po~rt"
msgstr "Po~rt"
-#. I*u`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5260,7 +4712,6 @@ msgctxt ""
msgid "~No proxy for:"
msgstr "~Nincs proxy:"
-#. AUdH
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5270,7 +4721,6 @@ msgctxt ""
msgid "Separator ;"
msgstr "Elválasztó jel: ;"
-#. fL;R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5280,7 +4730,6 @@ msgctxt ""
msgid "DNS server"
msgstr "DNS-kiszolgáló"
-#. X5$^
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5290,7 +4739,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. K{(7
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5300,7 +4748,6 @@ msgctxt ""
msgid "~Manual"
msgstr "~Kézi"
-#. bm95
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5310,7 +4757,6 @@ msgctxt ""
msgid "is not a valid entry for this field. Please specify a value between 0 and 255."
msgstr "erre a mezőre nem érvényes érték. Adjon meg 0 és 255 közötti értéket."
-#. pmi`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5320,7 +4766,6 @@ msgctxt ""
msgid "is not a valid entry for this field. Please specify a value between 1 and 255."
msgstr "erre a mezőre nem érvényes érték. Adjon meg 1 és 255 közötti értéket."
-#. idzD
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5329,7 +4774,6 @@ msgctxt ""
msgid "Proxy"
msgstr "Proxy"
-#. Y~::
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5339,7 +4783,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr "Biztonsági beállítások és figyelmeztetések"
-#. _\Tj
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5349,7 +4792,6 @@ msgctxt ""
msgid "Adjust security related options and define warnings for hidden information in documents."
msgstr "Biztonsággal kapcsolatos beállítások megadása és figyelmeztetések beállítása a dokumentumok rejtett információi számára"
-#. C%[/
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5359,7 +4801,6 @@ msgctxt ""
msgid "Options..."
msgstr "Beállítások..."
-#. j,Fn
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5369,7 +4810,6 @@ msgctxt ""
msgid "Passwords for web connections"
msgstr "Jelszó a webes kapcsolatokhoz"
-#. (D5s
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5379,7 +4819,6 @@ msgctxt ""
msgid "Persistently save passwords for web connections"
msgstr "Webes kapcsolatok jelszavainak mentése"
-#. gOOu
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5389,7 +4828,6 @@ msgctxt ""
msgid "Connections..."
msgstr "Kapcsolatok..."
-#. -sma
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5399,7 +4837,6 @@ msgctxt ""
msgid "Protected by a master password (recommended)"
msgstr "Védelem mesterjelszóval (ajánlott)"
-#. lAZG
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5409,7 +4846,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 "A jelszavakat egy mesterjelszó védi. Ezt minden munkamenetben meg kell adnia egyszer, ha a %PRODUCTNAME egy jelszót a védett jelszólistából olvas ki."
-#. uHou
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5419,7 +4855,6 @@ msgctxt ""
msgid "Master Password..."
msgstr "Mesterjelszó..."
-#. O;6$
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5429,7 +4864,6 @@ msgctxt ""
msgid "Macro security"
msgstr "Makróbiztonság"
-#. #8PW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5439,7 +4873,6 @@ msgctxt ""
msgid "Adjust the security level for executing macros and specify trusted macro developers."
msgstr "A makróvégrehajtás biztonsági szintjének beállítása és a megbízható makrófejlesztők megadása."
-#. H$.Y
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5449,7 +4882,6 @@ msgctxt ""
msgid "Macro Security..."
msgstr "Makróbiztonság..."
-#. FBJ,
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5459,7 +4891,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr "Tanúsítvány útvonala"
-#. 3Kf2
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5469,7 +4900,6 @@ msgctxt ""
msgid "Select the Network Security Services certificate directory to use for digital signatures."
msgstr "Válassza ki a Hálózati biztonsági szolgáltatások digitális aláírásokhoz használandó tanúsítványkönyvtárát."
-#. Zqv8
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5479,7 +4909,6 @@ msgctxt ""
msgid "Certificate..."
msgstr "Tanúsítvány..."
-#. !a9h
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5495,7 +4924,6 @@ msgstr ""
"\n"
"Törli a jelszólistát, és alaphelyzetbe állítja a mesterjelszót?"
-#. ]bE+
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5504,7 +4932,6 @@ msgctxt ""
msgid "Security"
msgstr "Biztonság"
-#. ,LvN
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5519,7 +4946,6 @@ msgstr ""
"\n"
"A legmagasabb portszám 65535."
-#. 3C$K
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5537,7 +4963,6 @@ msgstr ""
"\n"
"Letiltja a Javát?"
-#. TY*W
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5547,7 +4972,6 @@ msgctxt ""
msgid "~Don't show warning again"
msgstr "~Ne jelenítse meg többet ezt a figyelmeztetést"
-#. qa8o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5557,7 +4981,6 @@ msgctxt ""
msgid "Sending documents as e-mail attachments"
msgstr "Dokumentumok küldése e-mail mellékletként"
-#. hZYo
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5567,7 +4990,6 @@ msgctxt ""
msgid "~E-mail program"
msgstr "~Levelezőprogram"
-#. eU/[
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5577,7 +4999,6 @@ msgctxt ""
msgid "All files"
msgstr "Minden fájl"
-#. [(%E
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5587,7 +5008,6 @@ msgctxt ""
msgid "Web login information (passwords are never shown)"
msgstr "Webes bejelentkezési információk (a jelszavak sosem jelennek meg)"
-#. tLxk
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5597,7 +5017,6 @@ msgctxt ""
msgid "Remove"
msgstr "Eltávolítás"
-#. cEle
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5607,7 +5026,6 @@ msgctxt ""
msgid "Remove All"
msgstr "Összes eltávolítása"
-#. z#ym
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5617,7 +5035,6 @@ msgctxt ""
msgid "Change Password..."
msgstr "Jelszócsere..."
-#. %\[;
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5627,7 +5044,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. G8nn
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5637,7 +5053,6 @@ msgctxt ""
msgid "Website"
msgstr "Webhely"
-#. U9ns
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5647,7 +5062,6 @@ msgctxt ""
msgid "User name"
msgstr "Felhasználói név"
-#. ix]!
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5656,7 +5070,6 @@ msgctxt ""
msgid "Stored Web Connection Information"
msgstr "Tárolt webes kapcsolatinformáció"
-#. ,I]I
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5666,7 +5079,6 @@ msgctxt ""
msgid "Help"
msgstr "Súgó"
-#. YD+@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5676,7 +5088,6 @@ msgctxt ""
msgid "~Tips"
msgstr "T~ippek"
-#. eD=X
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5686,7 +5097,6 @@ msgctxt ""
msgid "~Extended tips"
msgstr "~Részletes tippek"
-#. 1#:d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5696,7 +5106,6 @@ msgctxt ""
msgid "~Help Agent"
msgstr "~Segéd"
-#. f6g6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5706,7 +5115,6 @@ msgctxt ""
msgid "~Reset Help Agent"
msgstr "Segéd ~alaphelyzetbe állítása"
-#. g#x(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5716,7 +5124,6 @@ msgctxt ""
msgid "Open/Save dialogs"
msgstr "Megnyitás és mentés párbeszédablakok"
-#. mmS2
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5726,7 +5133,6 @@ msgctxt ""
msgid "~Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok ~használata"
-#. j@+#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5736,7 +5142,6 @@ msgctxt ""
msgid "Show ODMA DMS dialogs first"
msgstr "ODMA DMS párbeszédablakok használata"
-#. j(J3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5746,7 +5151,6 @@ msgctxt ""
msgid "Print dialogs"
msgstr "Nyomtatási párbeszédablakok"
-#. -#;*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5756,7 +5160,6 @@ msgctxt ""
msgid "Use %PRODUCTNAME ~dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok ~használata"
-#. `ed@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5766,7 +5169,6 @@ msgctxt ""
msgid "Document status"
msgstr "Dokumentumállapot"
-#. MOx)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5776,7 +5178,6 @@ msgctxt ""
msgid "~Printing sets \"document modified\" status"
msgstr "~Nyomtatáskor „módosított” állapotba kerül"
-#. Ak[c
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5786,7 +5187,6 @@ msgctxt ""
msgid "Allow to save document even when the document is not modified"
msgstr "Módosítatlan dokumentum mentésének engedélyezése"
-#. iK!g
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5796,7 +5196,6 @@ msgctxt ""
msgid "Year (two digits)"
msgstr "Év (két számjeggyel)"
-#. lZJ7
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5806,7 +5205,6 @@ msgctxt ""
msgid "Interpret as years between"
msgstr "A következő évszámok között:"
-#. D*H`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5816,7 +5214,6 @@ msgctxt ""
msgid "and "
msgstr "és "
-#. bKH[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5826,7 +5223,6 @@ msgctxt ""
msgid "User Interface"
msgstr "Felhasználói felület"
-#. .yL.
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5836,7 +5232,6 @@ msgctxt ""
msgid "Sc~aling"
msgstr "~Méretezés"
-#. $cC*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5846,7 +5241,6 @@ msgctxt ""
msgid "Icon size and style"
msgstr "Ikonméret és ikonstílus"
-#. VCmX
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5856,7 +5250,6 @@ msgctxt ""
msgid "Icon size"
msgstr "Ikonméret"
-#. hB~A
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5866,7 +5259,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. ,kLh
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5876,7 +5268,6 @@ msgctxt ""
msgid "Small"
msgstr "Kicsi"
-#. KvFm
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5886,7 +5277,6 @@ msgctxt ""
msgid "Large"
msgstr "Nagy"
-#. NC@)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5896,7 +5286,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. (z#]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5906,7 +5295,6 @@ msgctxt ""
msgid "Galaxy (default)"
msgstr "Galaxy (alapértelmezett)"
-#. jH)b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5916,7 +5304,6 @@ msgctxt ""
msgid "High Contrast"
msgstr "Kontrasztos"
-#. 4Nju
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5926,7 +5313,6 @@ msgctxt ""
msgid "Industrial"
msgstr "Industrial"
-#. 2xKW
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5936,7 +5322,6 @@ msgctxt ""
msgid "Crystal"
msgstr "Crystal"
-#. ~U.}
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5946,7 +5331,6 @@ msgctxt ""
msgid "Tango"
msgstr "Tango"
-#. uy%%
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5956,7 +5340,6 @@ msgctxt ""
msgid "Oxygen"
msgstr "Oxygen"
-#. IxiQ
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5966,7 +5349,6 @@ msgctxt ""
msgid "Classic"
msgstr "Klasszikus"
-#. @%|F
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5976,7 +5358,6 @@ msgctxt ""
msgid "Human"
msgstr "Human"
-#. obAt
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5986,7 +5367,6 @@ msgctxt ""
msgid "Tango Testing"
msgstr ""
-#. q%e@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5996,7 +5376,6 @@ msgctxt ""
msgid "Use system ~font for user interface"
msgstr "Rendszer~betű a felhasználói felületen"
-#. l/O3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6006,7 +5385,6 @@ msgctxt ""
msgid "Screen font antialiasing"
msgstr "Betűk élsimítása a képernyőn"
-#. xn~k
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6016,7 +5394,6 @@ msgctxt ""
msgid "from"
msgstr "minimum"
-#. f_!h
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6026,7 +5403,6 @@ msgctxt ""
msgid "Pixels"
msgstr "képpont"
-#. 3{aO
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6036,7 +5412,6 @@ msgctxt ""
msgid "Menu"
msgstr "Menü"
-#. B~H]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6046,7 +5421,6 @@ msgctxt ""
msgid "Icons in menus"
msgstr "Ikonok a menükben"
-#. ijM9
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6056,7 +5430,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. bP%i
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6066,7 +5439,6 @@ msgctxt ""
msgid "Hide"
msgstr "Elrejtés"
-#. #6tp
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6076,7 +5448,6 @@ msgctxt ""
msgid "Show"
msgstr "Megjelenítés"
-#. v?27
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6086,7 +5457,6 @@ msgctxt ""
msgid "Font Lists"
msgstr "Betűkészlet-listák"
-#. h0hR
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6096,7 +5466,6 @@ msgctxt ""
msgid "Show p~review of fonts"
msgstr "Betűkészletek ~előnézete"
-#. M[V(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6106,7 +5475,6 @@ msgctxt ""
msgid "Show font h~istory"
msgstr "~Betűelőzmények megjelenítése"
-#. 5Emv
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6116,7 +5484,6 @@ msgctxt ""
msgid "Graphics output"
msgstr "Grafikus kimenet"
-#. *a`d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6126,7 +5493,6 @@ msgctxt ""
msgid "Use hardware acceleration"
msgstr "Hardveres gyorsítás alkalmazása"
-#. 2p0?
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6136,7 +5502,6 @@ msgctxt ""
msgid "Use Anti-Aliasing"
msgstr "Élsimítás használata"
-#. aMIe
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6146,7 +5511,6 @@ msgctxt ""
msgid "Mouse"
msgstr "Egér"
-#. =HWk
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6156,7 +5520,6 @@ msgctxt ""
msgid "Mouse positioning"
msgstr "Egérpozicionálás"
-#. IPmL
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6166,7 +5529,6 @@ msgctxt ""
msgid "Default button"
msgstr "Alapértelmezett gomb"
-#. \bTM
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6176,7 +5538,6 @@ msgctxt ""
msgid "Dialog center"
msgstr "Párbeszédablak közepe"
-#. KU?K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6186,7 +5547,6 @@ msgctxt ""
msgid "No automatic positioning"
msgstr "Nincs automatikus pozicionálás"
-#. futz
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6196,7 +5556,6 @@ msgctxt ""
msgid "Middle mouse button"
msgstr "Középső egérgomb"
-#. q96U
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6206,7 +5565,6 @@ msgctxt ""
msgid "No function"
msgstr "Funkció nélküli"
-#. K2/~
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6216,7 +5574,6 @@ msgctxt ""
msgid "Automatic scrolling"
msgstr "Automatikus görgetés"
-#. A!(K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6226,7 +5583,6 @@ msgctxt ""
msgid "Paste clipboard"
msgstr "Vágólap beillesztése"
-#. atGU
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6236,7 +5592,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. $s.b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6246,7 +5601,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Átlátszóság"
-#. ,{Ex
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6256,7 +5610,6 @@ msgctxt ""
msgid "%"
msgstr "%"
-#. [j=#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6266,7 +5619,6 @@ msgctxt ""
msgid "Language of"
msgstr "Nyelv"
-#. VZt6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6276,7 +5628,6 @@ msgctxt ""
msgid "~User interface"
msgstr "~Felhasználói felület"
-#. HXP_
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6286,7 +5637,6 @@ msgctxt ""
msgid "Locale setting"
msgstr "Területi beállítások"
-#. /%${
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6296,7 +5646,6 @@ msgctxt ""
msgid "Decimal separator key"
msgstr "Tizedesjel-billentyű"
-#. L)[t
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6306,7 +5655,6 @@ msgctxt ""
msgid "~Same as locale setting ( %1 )"
msgstr "M~egegyezik a területi beállításéval ( %1 )"
-#. hK+W
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6316,7 +5664,6 @@ msgctxt ""
msgid "~Default currency"
msgstr "~Alapértelmezett pénznem"
-#. K8$R
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6326,7 +5673,6 @@ msgctxt ""
msgid "Date acceptance ~patterns"
msgstr "Elfogadott ~dátummintázatok"
-#. 6bDG
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6336,7 +5682,6 @@ msgctxt ""
msgid "Default languages for documents"
msgstr "A dokumentumok alapértelmezett nyelve"
-#. w)d+
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6346,7 +5691,6 @@ msgctxt ""
msgid "Western"
msgstr "Nyugati"
-#. X4of
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6356,7 +5700,6 @@ msgctxt ""
msgid "Asian"
msgstr "Ázsiai"
-#. 3Wy@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6366,7 +5709,6 @@ msgctxt ""
msgid "C~TL"
msgstr "C~TL"
-#. `nYT
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6376,7 +5718,6 @@ msgctxt ""
msgid "For the current document only"
msgstr "Csak az aktuális dokumentumra"
-#. lKr)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6386,7 +5727,6 @@ msgctxt ""
msgid "Enhanced language support"
msgstr "Kiterjesztett nyelvtámogatás"
-#. W=V`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6396,7 +5736,6 @@ msgctxt ""
msgid "Show UI elements for East Asia~n writings"
msgstr ""
-#. ~k5-
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6406,7 +5745,6 @@ msgctxt ""
msgid "Show UI elements for B~i-Directional writing"
msgstr ""
-#. H(%/
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6416,7 +5754,6 @@ msgctxt ""
msgid "Ignore s~ystem input language"
msgstr ""
-#. V#v[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6425,7 +5762,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 "A felhasználói felület nyelve megváltozott, de csak a %PRODUCTNAME %PRODUCTVERSION következő elindításakor lép életbe."
-#. DIQJ
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6435,7 +5771,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr "Tanúsítvány útvonala"
-#. 2bc[
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6445,7 +5780,6 @@ msgctxt ""
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
msgstr "Válassza ki vagy vegye fel a Hálózati biztonsági szolgáltatások digitális aláírásokhoz használandó helyes tanúsítványkönyvtárát:"
-#. buLe
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6455,7 +5789,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. At/*
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6465,7 +5798,6 @@ msgctxt ""
msgid "Select a Certificate directory"
msgstr "Válasszon tanúsítványkönyvtárat"
-#. 7lQw
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6475,7 +5807,6 @@ msgctxt ""
msgid "manual"
msgstr "kézi"
-#. ,{`@
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6485,7 +5816,6 @@ msgctxt ""
msgid "Profile"
msgstr "Profil"
-#. ]mvi
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6495,7 +5825,6 @@ msgctxt ""
msgid "Directory"
msgstr "Könyvtár"
-#. $AA:
#: certpath.src
msgctxt ""
"certpath.src\n"
diff --git a/source/hu/cui/source/tabpages.po b/source/hu/cui/source/tabpages.po
index a6a609f9beb..553533d57fc 100644
--- a/source/hu/cui/source/tabpages.po
+++ b/source/hu/cui/source/tabpages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-11-15 14:39+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -16,7 +16,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1352990388.0\n"
-#. bz*m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Please enter a name for the gradient:"
msgstr "Adja meg a színátmenet nevét:"
-#. \|^?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Do you want to delete the gradient?"
msgstr "Törölni kívánja a színátmenetet?"
-#. J0=v
#: strings.src
msgctxt ""
"strings.src\n"
@@ -48,7 +45,6 @@ msgstr ""
"Megváltoztathatja a kiválasztott színátmenetet,\n"
"vagy újat vehet fel."
-#. aoNW
#: strings.src
msgctxt ""
"strings.src\n"
@@ -57,7 +53,6 @@ msgctxt ""
msgid "Please enter a name for the bitmap:"
msgstr "Adja meg a bitkép nevét:"
-#. 5`b,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -66,7 +61,6 @@ msgctxt ""
msgid "Please enter a name for the external bitmap:"
msgstr "Adja meg a külső bitkép nevét:"
-#. T!Xf
#: strings.src
msgctxt ""
"strings.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Are you sure you want to delete the bitmap?"
msgstr "Biztosan törli a bitképet?"
-#. ^oVM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -89,7 +82,6 @@ msgstr ""
"Megváltoztathatja a kiválasztott bitképet,\n"
"vagy újat vehet fel."
-#. tc;;
#: strings.src
msgctxt ""
"strings.src\n"
@@ -98,7 +90,6 @@ msgctxt ""
msgid "Please enter a name for the line style:"
msgstr "Adja meg a vonalstílus nevét:"
-#. D$-e
#: strings.src
msgctxt ""
"strings.src\n"
@@ -107,7 +98,6 @@ msgctxt ""
msgid "Do you want to delete the line style?"
msgstr "Törölni akarja a vonalstílust?"
-#. w9S4
#: strings.src
msgctxt ""
"strings.src\n"
@@ -121,7 +111,6 @@ msgstr ""
"Megváltoztathatja a kiválasztott vonalstílust,\n"
"vagy újat vehet fel."
-#. N:w[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -130,7 +119,6 @@ msgctxt ""
msgid "Please enter a name for the hatching:"
msgstr "Adja meg a vonalkázás nevét:"
-#. I2,Z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -139,7 +127,6 @@ msgctxt ""
msgid "Do you want to delete the hatching?"
msgstr "Biztosan törölni akarja a vonalkázást?"
-#. NluX
#: strings.src
msgctxt ""
"strings.src\n"
@@ -153,7 +140,6 @@ msgstr ""
"Módosítsa a kiválasztott vonalkázás típusát, vagy\n"
"vegyen fel egy új vonalkázási típust."
-#. qQ5L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -162,7 +148,6 @@ msgctxt ""
msgid "Modify"
msgstr "Módosítás"
-#. t-9^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -171,7 +156,6 @@ msgctxt ""
msgid "Add"
msgstr "Hozzáadás"
-#. 2c?|
#: strings.src
msgctxt ""
"strings.src\n"
@@ -180,7 +164,6 @@ msgctxt ""
msgid "Please enter a name for the new color:"
msgstr "Adja meg az új szín nevét:"
-#. Z/p*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -189,7 +172,6 @@ msgctxt ""
msgid "Do you want to delete the color?"
msgstr "Törölni kívánja a színt?"
-#. v3Pw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -203,7 +185,6 @@ msgstr ""
"Megváltoztathatja a kiválasztott színt,\n"
"vagy újat vehet fel."
-#. Wb(#
#: strings.src
msgctxt ""
"strings.src\n"
@@ -212,7 +193,6 @@ msgctxt ""
msgid "Table"
msgstr "Táblázat"
-#. \a0q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -221,7 +201,6 @@ msgctxt ""
msgid "The file could not be saved!"
msgstr "A fájl mentése nem sikerült!"
-#. %Y#{
#: strings.src
msgctxt ""
"strings.src\n"
@@ -230,7 +209,6 @@ msgctxt ""
msgid "The file could not be loaded!"
msgstr "A fájl betöltése nem sikerült!"
-#. x7o*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -239,7 +217,6 @@ msgctxt ""
msgid "The list was modified without saving. Would you like to save the list now?"
msgstr "A lista megváltozott, de nincs mentve. Kívánja menteni a listát most?"
-#. BY;z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -252,7 +229,6 @@ msgstr ""
"A választott név már létezik.\n"
"Válasszon másikat."
-#. [S=I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -261,7 +237,6 @@ msgctxt ""
msgid "Please enter a name for the new arrowhead:"
msgstr "Adja meg az új nyílhegy nevét:"
-#. `z*8
#: strings.src
msgctxt ""
"strings.src\n"
@@ -270,7 +245,6 @@ msgctxt ""
msgid "Do you want to delete the arrowhead?"
msgstr "Törli a nyílhegyet?"
-#. _}D`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -283,7 +257,6 @@ msgstr ""
"A nyílhegy megváltozott, de nincs mentve.\n"
"Kívánja most menteni a nyílhegyet?"
-#. .0;n
#: strings.src
#, fuzzy
msgctxt ""
@@ -293,7 +266,6 @@ msgctxt ""
msgid "Transparent"
msgstr "Átlátszó"
-#. ADJg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -302,7 +274,6 @@ msgctxt ""
msgid "No %1"
msgstr "Nincs %1"
-#. )mlP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -311,7 +282,6 @@ msgctxt ""
msgid "Family"
msgstr "Család"
-#. X3I]
#: strings.src
msgctxt ""
"strings.src\n"
@@ -320,7 +290,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. .j5E
#: strings.src
#, fuzzy
msgctxt ""
@@ -330,7 +299,6 @@ msgctxt ""
msgid "Style"
msgstr "S~tílus"
-#. shf_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -339,7 +307,6 @@ msgctxt ""
msgid "Typeface"
msgstr "Betűstílus"
-#. P!fM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -349,7 +316,6 @@ msgctxt ""
msgid "Transparency mode"
msgstr "Áttetsző mód"
-#. {i/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -359,7 +325,6 @@ msgctxt ""
msgid "~No transparency"
msgstr "Nincsenek át~látszó elemek"
-#. .7Zf
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -369,7 +334,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "Á~tlátszóság"
-#. rM_C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -379,7 +343,6 @@ msgctxt ""
msgid "Gradient"
msgstr "Színátmenet"
-#. 6TX_
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -389,7 +352,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr "~Típus"
-#. |2t9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -399,7 +361,6 @@ msgctxt ""
msgid "Linear"
msgstr "Számtani sorozat"
-#. =jQm
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -409,7 +370,6 @@ msgctxt ""
msgid "Axial"
msgstr "Tengelyirányú"
-#. 3EP1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -419,7 +379,6 @@ msgctxt ""
msgid "Radial"
msgstr "Sugárirányú"
-#. ]#aZ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -429,7 +388,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr "Ellipszoid"
-#. Hm;f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -439,7 +397,6 @@ msgctxt ""
msgid "Quadratic"
msgstr "Másodfokú"
-#. AU==
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -449,7 +406,6 @@ msgctxt ""
msgid "Square"
msgstr "Négyzet"
-#. \!^1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -459,7 +415,6 @@ msgctxt ""
msgid "Center ~X"
msgstr "Középpont ~X"
-#. {6$S
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -469,7 +424,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr "Középpont ~Y"
-#. DTd=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -479,7 +433,6 @@ msgctxt ""
msgid "~Angle"
msgstr "S~zög"
-#. _UQe
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -489,7 +442,6 @@ msgctxt ""
msgid " degrees"
msgstr " fok"
-#. efT`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -499,7 +451,6 @@ msgctxt ""
msgid "~Border"
msgstr "Sz~egély"
-#. %6k1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -509,7 +460,6 @@ msgctxt ""
msgid "~Start value"
msgstr "~Kezdőérték"
-#. C:@8
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -519,7 +469,6 @@ msgctxt ""
msgid "~End value"
msgstr "~Végső érték"
-#. rCSD
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -528,7 +477,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Átlátszóság"
-#. SP\]
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -538,7 +486,6 @@ msgctxt ""
msgid "Fill"
msgstr "Kitöltés"
-#. Vgl^
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -548,7 +495,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. s2L2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -558,7 +504,6 @@ msgctxt ""
msgid "Color"
msgstr "Szín"
-#. ;9Ac
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -568,7 +513,6 @@ msgctxt ""
msgid "Gradient"
msgstr "Színátmenet"
-#. 2e5%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -578,7 +522,6 @@ msgctxt ""
msgid "Hatching"
msgstr "Vonalkázás"
-#. 9#s5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -588,7 +531,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "Bitkép"
-#. -*;%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -598,7 +540,6 @@ msgctxt ""
msgid "Increments"
msgstr "Alakzatok száma"
-#. 0Ka5
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -609,7 +550,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "A~utomatikus"
-#. G7o[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -619,7 +559,6 @@ msgctxt ""
msgid "~Background color"
msgstr "~Háttérszín"
-#. dc;2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -629,7 +568,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. c-j`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -639,7 +577,6 @@ msgctxt ""
msgid "~Original"
msgstr "~Eredeti"
-#. :lE~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -649,7 +586,6 @@ msgctxt ""
msgid "Re~lative"
msgstr "~Relatív"
-#. 5@6t
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -659,7 +595,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "S~zélesség"
-#. 8h5f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -669,7 +604,6 @@ msgctxt ""
msgid "H~eight"
msgstr "~Magasság"
-#. *?n9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -679,7 +613,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. ]u)i
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -689,7 +622,6 @@ msgctxt ""
msgid "~X Offset"
msgstr "~X eltolás"
-#. QpB:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -699,7 +631,6 @@ msgctxt ""
msgid "~Y Offset"
msgstr "~Y eltolás"
-#. .2MN
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -709,7 +640,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~Mozaik"
-#. #b^l
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -719,7 +649,6 @@ msgctxt ""
msgid "Auto~Fit"
msgstr "Automatikus ~méretezés"
-#. `JeJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -729,7 +658,6 @@ msgctxt ""
msgid "Offset"
msgstr "Eltolás"
-#. NLX;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -739,7 +667,6 @@ msgctxt ""
msgid "Ro~w"
msgstr "~Sor"
-#. dO`|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -749,7 +676,6 @@ msgctxt ""
msgid "Colu~mn"
msgstr "~Oszlop"
-#. q?g-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -758,7 +684,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. O#Q2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -768,7 +693,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. ,4#.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -778,7 +702,6 @@ msgctxt ""
msgid "~Use shadow"
msgstr "~Árnyékolás alkalmazása"
-#. fW-$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -788,7 +711,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Pozíció"
-#. n#ns
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -798,7 +720,6 @@ msgctxt ""
msgid "~Distance"
msgstr "~Távolság"
-#. Fr1[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -808,7 +729,6 @@ msgctxt ""
msgid "~Color"
msgstr "~Szín"
-#. +{\k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -818,7 +738,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "Á~tlátszóság"
-#. @PQ:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -827,7 +746,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Árnyékolt"
-#. B-Y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -837,7 +755,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. A0nG
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -847,7 +764,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Térköz"
-#. ,ASA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -857,7 +773,6 @@ msgctxt ""
msgid "A~ngle"
msgstr "S~zög"
-#. _k2A
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -867,7 +782,6 @@ msgctxt ""
msgid " degrees"
msgstr " fok"
-#. $~=7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -877,7 +791,6 @@ msgctxt ""
msgid "~Line type"
msgstr "~Vonaltípus"
-#. 1*KW
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -887,7 +800,6 @@ msgctxt ""
msgid "Single"
msgstr "Egyszeres"
-#. hQak
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -897,7 +809,6 @@ msgctxt ""
msgid "Crossed"
msgstr "Keresztezett"
-#. P;=x
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -907,7 +818,6 @@ msgctxt ""
msgid "Triple"
msgstr "Tripla"
-#. HGtc
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -917,7 +827,6 @@ msgctxt ""
msgid "Line ~color"
msgstr "Vo~nalszín"
-#. \`*%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -927,7 +836,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. ^_8R
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -937,7 +845,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Módosítás..."
-#. C*D-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -947,7 +854,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Törlés..."
-#. mxu`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -957,7 +863,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. B%1Q
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -967,7 +872,6 @@ msgctxt ""
msgid "Load Hatches List"
msgstr "Vonalkázáslista betöltése"
-#. sE5p
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -977,7 +881,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. _^|?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -987,7 +890,6 @@ msgctxt ""
msgid "Save Hatches List"
msgstr "Vonalkázáslista mentése"
-#. ma9g
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -997,7 +899,6 @@ msgctxt ""
msgid "Embed"
msgstr "Beágyazás"
-#. T)]y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1006,7 +907,6 @@ msgctxt ""
msgid "Hatching"
msgstr "Vonalkázás"
-#. Hr,+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1016,7 +916,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. )o`;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1026,7 +925,6 @@ msgctxt ""
msgid "Pattern Editor"
msgstr "Mintaszerkesztő"
-#. -/{@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1036,7 +934,6 @@ msgctxt ""
msgid "~Foreground color"
msgstr "~Előtérszín"
-#. Hk2Z
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1046,7 +943,6 @@ msgctxt ""
msgid "~Background color"
msgstr "~Háttérszín"
-#. -s:C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1056,7 +952,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "Bitkép"
-#. +Rpr
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1066,7 +961,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. E\/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1076,7 +970,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Módosítás..."
-#. ZnY%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1086,7 +979,6 @@ msgctxt ""
msgid "~Import..."
msgstr "~Importálás..."
-#. sBG#
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1096,7 +988,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Törlés..."
-#. CBTJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1106,7 +997,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. /x\5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1116,7 +1006,6 @@ msgctxt ""
msgid "Load Bitmap List"
msgstr "Bitképlista betöltése"
-#. ]CH1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1126,7 +1015,6 @@ msgctxt ""
msgid "-"
msgstr "."
-#. 3d^L
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1136,7 +1024,6 @@ msgctxt ""
msgid "Save Bitmap List"
msgstr "Bitképlista mentése"
-#. z{wT
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1146,7 +1033,6 @@ msgctxt ""
msgid "Embed"
msgstr "Beágyazás"
-#. 9_@%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1155,7 +1041,6 @@ msgctxt ""
msgid "Bitmap Patterns"
msgstr "Bitképminták"
-#. _g2`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1165,7 +1050,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. {hGV
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1175,7 +1059,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr "~Típus"
-#. odos
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1185,7 +1068,6 @@ msgctxt ""
msgid "Linear"
msgstr "Számtani sorozat"
-#. ,1nA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1195,7 +1077,6 @@ msgctxt ""
msgid "Axial"
msgstr "Tengelyirányú"
-#. ]n4T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1205,7 +1086,6 @@ msgctxt ""
msgid "Radial"
msgstr "Sugárirányú"
-#. PGr)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1215,7 +1095,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr "Ellipszoid"
-#. 2Zge
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1225,7 +1104,6 @@ msgctxt ""
msgid "Square"
msgstr "Négyzet"
-#. NDC,
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1235,7 +1113,6 @@ msgctxt ""
msgid "Rectangular"
msgstr "Négyszögletű"
-#. .)`T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1245,7 +1122,6 @@ msgctxt ""
msgid "Center ~X"
msgstr "Középpont ~X"
-#. JrEp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1255,7 +1131,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr "Középpont ~Y"
-#. \$He
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1265,7 +1140,6 @@ msgctxt ""
msgid "A~ngle"
msgstr "S~zög"
-#. uzh~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1275,7 +1149,6 @@ msgctxt ""
msgid " degrees"
msgstr " fok"
-#. :;fo
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1285,7 +1158,6 @@ msgctxt ""
msgid "~Border"
msgstr "Sz~egély"
-#. V%]P
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1295,7 +1167,6 @@ msgctxt ""
msgid "~From"
msgstr "M~iből"
-#. Q.m`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1305,7 +1176,6 @@ msgctxt ""
msgid "~To"
msgstr "Mi~be"
-#. FOW4
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1315,7 +1185,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. /#Hb
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1325,7 +1194,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Módosítás..."
-#. lfp?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1335,7 +1203,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Törlés..."
-#. SvG$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1345,7 +1212,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. ,3G7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1355,7 +1221,6 @@ msgctxt ""
msgid "Load Gradients List"
msgstr "Színátmenetlista betöltése"
-#. MPW6
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1365,7 +1230,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. SA6:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1375,7 +1239,6 @@ msgctxt ""
msgid "Save Gradients List"
msgstr "Színátmenetlista mentése"
-#. K?S@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1385,7 +1248,6 @@ msgctxt ""
msgid "Embed"
msgstr "Beágyazás"
-#. $8p?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1394,7 +1256,6 @@ msgctxt ""
msgid "Gradients"
msgstr "Színátmenetek"
-#. 5[[J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1404,7 +1265,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. FZaU
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1414,7 +1274,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Név"
-#. TT^+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1424,7 +1283,6 @@ msgctxt ""
msgid "C~olor"
msgstr "S~zín"
-#. 8`d!
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1434,7 +1292,6 @@ msgctxt ""
msgid "Color table"
msgstr "Színtáblázat"
-#. \W{j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1444,7 +1301,6 @@ msgctxt ""
msgid "RGB"
msgstr "RGB"
-#. G}#?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1454,7 +1310,6 @@ msgctxt ""
msgid "CMYK"
msgstr "CMYK"
-#. GE?.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1464,7 +1319,6 @@ msgctxt ""
msgid "~C"
msgstr "~C"
-#. jUr~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1474,7 +1328,6 @@ msgctxt ""
msgid "~M"
msgstr "~M"
-#. L^6j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1484,7 +1337,6 @@ msgctxt ""
msgid "~Y"
msgstr "~Y"
-#. h^y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1494,7 +1346,6 @@ msgctxt ""
msgid "~K"
msgstr "~K"
-#. f/(;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1504,7 +1355,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. b5}y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1514,7 +1364,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "S~zerkesztés..."
-#. woZ.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1524,7 +1373,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Törlés..."
-#. cvY+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1534,7 +1382,6 @@ msgctxt ""
msgid "~Modify"
msgstr "~Módosítás"
-#. 2YLY
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1544,7 +1391,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. m.ZS
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1554,7 +1400,6 @@ msgctxt ""
msgid "Load Color List"
msgstr "Színlista betöltése"
-#. w\/b
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1564,7 +1409,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 66ST
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1574,7 +1418,6 @@ msgctxt ""
msgid "Save Color List"
msgstr "Színlista mentése"
-#. JOkv
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1584,7 +1427,6 @@ msgctxt ""
msgid "Embed"
msgstr "Beágyazás"
-#. ~R10
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1593,7 +1435,6 @@ msgctxt ""
msgid "Colors"
msgstr "Színek"
-#. X(7%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1603,7 +1444,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. ZJUM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1613,7 +1453,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Árnyékolt"
-#. AEY7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1623,7 +1462,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Átlátszóság"
-#. Ea4k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1633,7 +1471,6 @@ msgctxt ""
msgid "Colors"
msgstr "Színek"
-#. /IA}
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1643,7 +1480,6 @@ msgctxt ""
msgid "Gradients"
msgstr "Színátmenetek"
-#. m_0J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1653,7 +1489,6 @@ msgctxt ""
msgid "Hatching"
msgstr "Vonalkázás"
-#. ).j=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1663,7 +1498,6 @@ msgctxt ""
msgid "Bitmaps"
msgstr "Bitképek"
-#. uUYp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1672,7 +1506,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. 5-,:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1681,7 +1514,6 @@ msgctxt ""
msgid "Hatching Style"
msgstr "Vonalkázásstílus"
-#. OTe)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1690,7 +1522,6 @@ msgctxt ""
msgid "Color Mode"
msgstr "Színmód"
-#. 8F/d
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1700,7 +1531,6 @@ msgctxt ""
msgid "Text animation effects"
msgstr "Szöveganimációs hatások"
-#. 9$j#
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1710,7 +1540,6 @@ msgctxt ""
msgid "E~ffect"
msgstr "~Hatás"
-#. I1@4
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1720,7 +1549,6 @@ msgctxt ""
msgid "No Effect"
msgstr "Nincs hatás"
-#. Q/bR
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1730,7 +1558,6 @@ msgctxt ""
msgid "Blink"
msgstr "Villogás"
-#. mOFp
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1740,7 +1567,6 @@ msgctxt ""
msgid "Scroll Through"
msgstr "Átúsztatás"
-#. 3Xr.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1750,7 +1576,6 @@ msgctxt ""
msgid "Scroll Back and Forth"
msgstr "Oda-vissza görgetés"
-#. ZBvW
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1760,7 +1585,6 @@ msgctxt ""
msgid "Scroll In"
msgstr "Beúszás"
-#. j}%!
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1770,7 +1594,6 @@ msgctxt ""
msgid "Direction"
msgstr "Irány"
-#. pKrx
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1780,7 +1603,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. $e:_
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1790,7 +1612,6 @@ msgctxt ""
msgid "To Top"
msgstr "Felülre"
-#. c.)+
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1800,7 +1621,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. (Z1c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1810,7 +1630,6 @@ msgctxt ""
msgid "To Left"
msgstr "Balra"
-#. K/;v
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1820,7 +1639,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. #3*%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1830,7 +1648,6 @@ msgctxt ""
msgid "To Right"
msgstr "Jobbra"
-#. MaZP
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1840,7 +1657,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. L/2}
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1850,7 +1666,6 @@ msgctxt ""
msgid "To Bottom"
msgstr "Alulra"
-#. Qf4O
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1860,7 +1675,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. Y1^m
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1870,7 +1684,6 @@ msgctxt ""
msgid "S~tart inside"
msgstr "~Indítás belül"
-#. rX=2
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1880,7 +1693,6 @@ msgctxt ""
msgid "Text visible when exiting"
msgstr "Kilépéskor látható a szöveg"
-#. l7}%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1890,7 +1702,6 @@ msgctxt ""
msgid "Animation cycles"
msgstr "Animációs körforgás"
-#. /=]y
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1900,7 +1711,6 @@ msgctxt ""
msgid "~Continuous"
msgstr "~Folyamatos"
-#. eKi%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1910,7 +1720,6 @@ msgctxt ""
msgid "Increment"
msgstr "Növelés"
-#. m$A[
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1920,7 +1729,6 @@ msgctxt ""
msgid "~Pixels"
msgstr "~Képpont"
-#. 4,Ns
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1930,7 +1738,6 @@ msgctxt ""
msgid " Pixel"
msgstr " képpont"
-#. %=`c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1940,7 +1747,6 @@ msgctxt ""
msgid "Delay"
msgstr "Késleltetés"
-#. m.K)
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1950,7 +1756,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. i#+n
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1960,7 +1765,6 @@ msgctxt ""
msgid " ms"
msgstr " ms"
-#. R8X,
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1969,7 +1773,6 @@ msgctxt ""
msgid "Animation"
msgstr "Animáció"
-#. 1bOU
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1979,7 +1782,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. en:.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1989,7 +1791,6 @@ msgctxt ""
msgid "Text Animation"
msgstr "Szöveg animálása"
-#. %v0k
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1998,7 +1799,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. 1APd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2008,7 +1808,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. ?Zl?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2018,7 +1817,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. }oR6
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2028,7 +1826,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. MQPK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2038,7 +1835,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. +Chl
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2048,7 +1844,6 @@ msgctxt ""
msgid "~Link graphics"
msgstr "~Hivatkozásként"
-#. \#XZ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2058,7 +1853,6 @@ msgctxt ""
msgid "The Gallery theme 'Bullets' is empty (no graphics)."
msgstr "A „Felsorolásjel” képtár üres (nincsenek benne képek)."
-#. $4M{
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2068,7 +1862,6 @@ msgctxt ""
msgid "Level"
msgstr "Szint"
-#. RoU!
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2078,7 +1871,6 @@ msgctxt ""
msgid "Format"
msgstr "Formátum"
-#. #,^G
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2088,7 +1880,6 @@ msgctxt ""
msgid "~Numbering"
msgstr "S~zámozás"
-#. DH6,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2098,7 +1889,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
-#. _*+A
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2108,7 +1898,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
-#. ON7Y
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2118,7 +1907,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
-#. Qw([
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2128,7 +1916,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
-#. `hUW
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2138,7 +1925,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
-#. eomF
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2148,7 +1934,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
-#. WMiE
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2158,7 +1943,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
-#. X{Ye
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2168,7 +1952,6 @@ msgctxt ""
msgid "Bullet"
msgstr "Felsorolás"
-#. E-|@
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2178,7 +1961,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Kép"
-#. hzrG
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2188,7 +1970,6 @@ msgctxt ""
msgid "Linked graphics"
msgstr "Csatolt képek"
-#. V7o1
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2198,7 +1979,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. rn]D
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2208,7 +1988,6 @@ msgctxt ""
msgid "Native Numbering"
msgstr "Natív számozás"
-#. -]Mp
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2218,7 +1997,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (bolgár)"
-#. mL.j
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2228,7 +2006,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (bolgár)"
-#. 3/2X
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2238,7 +2015,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (bolgár)"
-#. 5.T5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2248,7 +2024,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (bolgár)"
-#. )`w7
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2258,7 +2033,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (orosz)"
-#. JOTg
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2268,7 +2042,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (orosz)"
-#. Tj,h
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2278,7 +2051,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (orosz)"
-#. )i{D
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2288,7 +2060,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (orosz)"
-#. lhOs
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2298,7 +2069,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (szerb)"
-#. qUXC
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2308,7 +2078,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (szerb)"
-#. ?t4n
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2318,7 +2087,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (szerb)"
-#. uo6K
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2328,7 +2096,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (szerb)"
-#. Vm+Z
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2338,7 +2105,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr "Α, Β, Γ, ... (görög nagybetűk)"
-#. _k/t
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2348,7 +2114,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr "α, β, γ, ... (görög kisbetűk)"
-#. 4[Yd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2358,7 +2123,6 @@ msgctxt ""
msgid "Before"
msgstr "Előtte"
-#. g@IR
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2368,7 +2132,6 @@ msgctxt ""
msgid "After"
msgstr "Utána"
-#. lJ6F
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2378,7 +2141,6 @@ msgctxt ""
msgid "~Character Style"
msgstr "~Karakterstílus"
-#. QOYj
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2388,7 +2150,6 @@ msgctxt ""
msgid "Color"
msgstr "Szín"
-#. qb8X
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2398,7 +2159,6 @@ msgctxt ""
msgid "~Relative size"
msgstr "~Relatív méret"
-#. +kJ]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2408,7 +2168,6 @@ msgctxt ""
msgid "Show sublevels"
msgstr "Alszintek száma"
-#. r+h:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2418,7 +2177,6 @@ msgctxt ""
msgid "Start at"
msgstr "Kezdőérték"
-#. 8-=M
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2428,7 +2186,6 @@ msgctxt ""
msgid "~Alignment"
msgstr "~Igazítás"
-#. VWr;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2438,7 +2195,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. fDE$
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2448,7 +2204,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középre"
-#. 9qqd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2458,7 +2213,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobbra"
-#. :6,,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2468,7 +2222,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. .Sbe
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2478,7 +2231,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Kép"
-#. ol:5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2488,7 +2240,6 @@ msgctxt ""
msgid "From file..."
msgstr "Fájlból..."
-#. 5k%P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2498,7 +2249,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Képtár"
-#. .Z./
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2508,7 +2258,6 @@ msgctxt ""
msgid "Select..."
msgstr "Kiválasztás..."
-#. 4y@W
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2518,7 +2267,6 @@ msgctxt ""
msgid "Width"
msgstr "Szélesség"
-#. :A!o
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2528,7 +2276,6 @@ msgctxt ""
msgid "Height"
msgstr "Magasság"
-#. q!R}
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2538,7 +2285,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "Rögzített méretarány"
-#. h0e|
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2548,7 +2294,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. :8T2
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2558,7 +2303,6 @@ msgctxt ""
msgid "Top of baseline"
msgstr "Alapvonal tetejéhez"
-#. ^$%:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2568,7 +2312,6 @@ msgctxt ""
msgid "Center of baseline"
msgstr "Alapvonal közepéhez"
-#. M,3T
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2578,7 +2321,6 @@ msgctxt ""
msgid "Bottom of baseline"
msgstr "Alapvonal aljához"
-#. _ZGA
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2588,7 +2330,6 @@ msgctxt ""
msgid "Top of character"
msgstr "Karakter tetejéhez"
-#. o^XK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2598,7 +2339,6 @@ msgctxt ""
msgid "Center of character"
msgstr "Karakter közepéhez"
-#. IB](
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2608,7 +2348,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr "Karakter aljához"
-#. XP9L
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2618,7 +2357,6 @@ msgctxt ""
msgid "Top of line"
msgstr "Sor tetejéhez"
-#. (E:?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2628,7 +2366,6 @@ msgctxt ""
msgid "Center of line"
msgstr "Sor közepéhez"
-#. 53yX
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2638,7 +2375,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr "Sor aljához"
-#. =AXg
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2648,7 +2384,6 @@ msgctxt ""
msgid "All levels"
msgstr "Minden vázlatszintre"
-#. F{=P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2658,7 +2393,6 @@ msgctxt ""
msgid "~Consecutive numbering"
msgstr "~Folyamatos számozás"
-#. [6w]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2668,7 +2402,6 @@ msgctxt ""
msgid "There are no graphics in the 'Bullets' Gallery theme."
msgstr "Nincsenek képek a „Felsorolásjel” képtárban"
-#. xh=-
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2678,7 +2411,6 @@ msgctxt ""
msgid "Level"
msgstr "Szint"
-#. s`m~
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2688,7 +2420,6 @@ msgctxt ""
msgid "Position and spacing"
msgstr "Pozíció és térköz"
-#. jsIc
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2698,7 +2429,6 @@ msgctxt ""
msgid "Indent"
msgstr "Behúzás"
-#. L![.
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2708,7 +2438,6 @@ msgctxt ""
msgid "Relati~ve"
msgstr "~Viszonylagos"
-#. 9I/5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2718,7 +2447,6 @@ msgctxt ""
msgid "Width of numbering"
msgstr "A számozás szélessége"
-#. z.1r
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2728,7 +2456,6 @@ msgctxt ""
msgid "Minimum space numbering <-> text"
msgstr "Számozás és szöveg minimális távolsága"
-#. ubAm
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2738,7 +2465,6 @@ msgctxt ""
msgid "N~umbering alignment"
msgstr "S~zámozás igazítása"
-#. SGd5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2748,7 +2474,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. ]8wE
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2758,7 +2483,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középre"
-#. :mbi
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2768,7 +2492,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobbra"
-#. `H}q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2778,7 +2501,6 @@ msgctxt ""
msgid "Numbering followed by"
msgstr "Számozás után"
-#. H*vP
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2788,7 +2510,6 @@ msgctxt ""
msgid "Tab stop"
msgstr "Tabulátor"
-#. @t]i
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2798,7 +2519,6 @@ msgctxt ""
msgid "Space"
msgstr "Szóköz"
-#. #X\q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2808,7 +2528,6 @@ msgctxt ""
msgid "Nothing"
msgstr "Semmi"
-#. 7/:h
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2818,7 +2537,6 @@ msgctxt ""
msgid "at"
msgstr "itt"
-#. 5bSr
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2828,7 +2546,6 @@ msgctxt ""
msgid "Aligned at"
msgstr "Igazítva"
-#. q=6;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2838,7 +2555,6 @@ msgctxt ""
msgid "Indent at"
msgstr "Behúzás"
-#. d%#9
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2848,7 +2564,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapbeállítások"
-#. B@RJ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2857,7 +2572,6 @@ msgctxt ""
msgid "Link"
msgstr "Hivatkozás"
-#. 3p9J
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2867,7 +2581,6 @@ msgctxt ""
msgid "Before text"
msgstr "Szöveg előtt"
-#. :(BD
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2877,7 +2590,6 @@ msgctxt ""
msgid "After text"
msgstr "Szöveg után"
-#. -ps@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2887,7 +2599,6 @@ msgctxt ""
msgid "~First line"
msgstr "~Első sor"
-#. M_X8
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2897,7 +2608,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. ?cX^
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2907,7 +2617,6 @@ msgctxt ""
msgid "Indent"
msgstr "Behúzás"
-#. dU]0
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2917,7 +2626,6 @@ msgctxt ""
msgid "Ab~ove paragraph"
msgstr "Bekezdés ~felett"
-#. AV_o
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2927,7 +2635,6 @@ msgctxt ""
msgid "Below paragraph"
msgstr "Bekezdés alatt"
-#. Yqe@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2937,7 +2644,6 @@ msgctxt ""
msgid "Don't add space between paragraphs of the same style"
msgstr "Ne tegyen térközt azonos stílusú bekezdések közé"
-#. g:KA
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -2948,7 +2654,6 @@ msgctxt ""
msgid "Spacing"
msgstr "Térköz"
-#. -}wG
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2958,7 +2663,6 @@ msgctxt ""
msgid "Single"
msgstr "Egyszeres"
-#. 5Z0G
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2968,7 +2672,6 @@ msgctxt ""
msgid "1.5 lines"
msgstr "Másfeles"
-#. :wIT
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -2979,7 +2682,6 @@ msgctxt ""
msgid "Double"
msgstr "Dupla"
-#. m4Q1
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2989,7 +2691,6 @@ msgctxt ""
msgid "Proportional"
msgstr "Arányos"
-#. p$9A
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2999,7 +2700,6 @@ msgctxt ""
msgid "At least"
msgstr "Legalább"
-#. ~WXN
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3009,7 +2709,6 @@ msgctxt ""
msgid "Leading"
msgstr "Vezető"
-#. SKqc
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3019,7 +2718,6 @@ msgctxt ""
msgid "Fixed"
msgstr "Rögzített"
-#. 2YK;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3029,7 +2727,6 @@ msgctxt ""
msgid "of"
msgstr "értéke:"
-#. $47@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3039,7 +2736,6 @@ msgctxt ""
msgid "Line spacing"
msgstr "Sorköz"
-#. DF^-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3049,7 +2745,6 @@ msgctxt ""
msgid "A~ctivate"
msgstr "Be~kapcsolás"
-#. pPeY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3059,7 +2754,6 @@ msgctxt ""
msgid "Register-true"
msgstr "Soregyen"
-#. p\2w
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3068,7 +2762,6 @@ msgctxt ""
msgid "Indents and Spacing"
msgstr "Behúzás és térköz"
-#. +iVb
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3078,7 +2771,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. rn^?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3088,7 +2780,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Balra zárt"
-#. S+nO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3098,7 +2789,6 @@ msgctxt ""
msgid "Righ~t"
msgstr "~Jobbra zárt"
-#. \\qF
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3108,7 +2798,6 @@ msgctxt ""
msgid "~Center"
msgstr "~Középre igazított"
-#. ^eP~
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3118,7 +2807,6 @@ msgctxt ""
msgid "Justified"
msgstr "Sorkizárt"
-#. -%1v
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3128,7 +2816,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr "~Balra/fent"
-#. QM-q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3138,7 +2825,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr "~Jobbra/lent"
-#. e,mA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3148,7 +2834,6 @@ msgctxt ""
msgid "~Last line"
msgstr "~Utolsó sor"
-#. K+u#
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3158,7 +2843,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapbeállítások"
-#. ls1d
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3168,7 +2852,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. BkV=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3178,7 +2861,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középre"
-#. v4iU
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3188,7 +2870,6 @@ msgctxt ""
msgid "Justified"
msgstr "Sorkizárt"
-#. #g3s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3198,7 +2879,6 @@ msgctxt ""
msgid "~Expand single word"
msgstr "~Egyedüli szó széthúzása"
-#. S(\L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3208,7 +2888,6 @@ msgctxt ""
msgid "Snap to text grid (if active)"
msgstr "Szövegrácsra illesztés (ha aktív)"
-#. X(rr
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3218,7 +2897,6 @@ msgctxt ""
msgid "Text-to-text"
msgstr "Szöveg a szöveghez"
-#. jT)2
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3228,7 +2906,6 @@ msgctxt ""
msgid "~Alignment"
msgstr "~Igazítás"
-#. S+0s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3238,7 +2915,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. U#tn
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3248,7 +2924,6 @@ msgctxt ""
msgid "Base line"
msgstr "Alapvonalhoz"
-#. pHU+
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3258,7 +2933,6 @@ msgctxt ""
msgid "Top"
msgstr "Fel"
-#. pHHI
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3268,7 +2942,6 @@ msgctxt ""
msgid "Middle"
msgstr "Középre"
-#. i|[!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3278,7 +2951,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Le"
-#. T1vl
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3288,7 +2960,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. ;pI?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3298,7 +2969,6 @@ msgctxt ""
msgid "Text ~direction"
msgstr "Szöveg~irány"
-#. Sl0L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3307,7 +2977,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. O6\q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3317,7 +2986,6 @@ msgctxt ""
msgid "A~utomatically"
msgstr "A~utomatikusan"
-#. s4qf
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3327,7 +2995,6 @@ msgctxt ""
msgid "C~haracters at line end"
msgstr "Legalább ennyi ~karakter maradjon a sor végén."
-#. %kqA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3337,7 +3004,6 @@ msgctxt ""
msgid "Cha~racters at line begin"
msgstr "Legalább ennyi ka~rakter maradjon a sor elején."
-#. ;PO.
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3347,7 +3013,6 @@ msgctxt ""
msgid "~Maximum number of consecutive hyphens"
msgstr "~Legfeljebb ennyi, egymást követő sor végén legyen elválasztás."
-#. Omad
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3357,7 +3022,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Elválasztás"
-#. ]Sp@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3367,7 +3031,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. E1i\
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3377,7 +3040,6 @@ msgctxt ""
msgid "Breaks"
msgstr "Törések"
-#. rU:)
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3387,7 +3049,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. ^[8,
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3397,7 +3058,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Típus"
-#. +2m-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3407,7 +3067,6 @@ msgctxt ""
msgid "Page"
msgstr "Oldal"
-#. (v\9
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3417,7 +3076,6 @@ msgctxt ""
msgid "Column"
msgstr "Hasáb"
-#. 8C1!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3427,7 +3085,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. VMnE
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3437,7 +3094,6 @@ msgctxt ""
msgid "Before"
msgstr "Előtte"
-#. G;4q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3447,7 +3103,6 @@ msgctxt ""
msgid "After"
msgstr "Utána"
-#. Qx[/
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3457,7 +3112,6 @@ msgctxt ""
msgid "With Page St~yle"
msgstr "~Oldalstílussal"
-#. A||6
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3467,7 +3121,6 @@ msgctxt ""
msgid "Page ~number"
msgstr "~Oldalszám"
-#. 6B?@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3477,7 +3130,6 @@ msgctxt ""
msgid "~Do not split paragraph"
msgstr "Bekezdés egybe~n tartása"
-#. \/51
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3487,7 +3139,6 @@ msgctxt ""
msgid "~Keep with next paragraph"
msgstr "~Együtt a következővel"
-#. [q5c
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3497,7 +3148,6 @@ msgctxt ""
msgid "~Orphan control"
msgstr "Ár~vasorok kezelése"
-#. ;)R[
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3507,7 +3157,6 @@ msgctxt ""
msgid "Lines"
msgstr "sor"
-#. s_uO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3517,7 +3166,6 @@ msgctxt ""
msgid "~Widow control"
msgstr "~Fattyúsorok kezelése"
-#. =LpZ
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3527,7 +3175,6 @@ msgctxt ""
msgid "Lines"
msgstr "sor"
-#. n9mP
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3536,7 +3183,6 @@ msgctxt ""
msgid "Text Flow"
msgstr "Szövegbeosztás"
-#. (Z.s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3546,7 +3192,6 @@ msgctxt ""
msgid "Line change"
msgstr "Sorváltás"
-#. OaEY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3556,7 +3201,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to the beginning and end of lines"
msgstr "A tiltott karakterek listájának alkalmazása a sorok elejére és a végére"
-#. -ajB
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3566,7 +3210,6 @@ msgctxt ""
msgid "Allow hanging punctuation"
msgstr "Túllógó írásjelek engedélyezése"
-#. _OC;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3576,7 +3219,6 @@ msgctxt ""
msgid "Apply spacing between Asian, Latin and Complex text"
msgstr "Ázsiai, latin és komplex szöveg közti helykihagyás alkalmazása"
-#. Wkuv
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3585,7 +3227,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
-#. Z|=E
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3595,7 +3236,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ]/7=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3604,7 +3244,6 @@ msgctxt ""
msgid "Page Style"
msgstr "Oldalstílus"
-#. lJ(k
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3614,7 +3253,6 @@ msgctxt ""
msgid "Event"
msgstr "Esemény"
-#. i0E2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3624,7 +3262,6 @@ msgctxt ""
msgid "Assigned macro"
msgstr "Hozzárendelt makró"
-#. qfu2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3634,7 +3271,6 @@ msgctxt ""
msgid "~Existing macros\n"
msgstr "~Meglévő makrók\n"
-#. ts5_
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3644,7 +3280,6 @@ msgctxt ""
msgid "~Assign"
msgstr "~Hozzárendelés"
-#. Jft1
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3654,7 +3289,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. \1di
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3664,7 +3298,6 @@ msgctxt ""
msgid "Macros"
msgstr "Makrók"
-#. mt7o
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3673,7 +3306,6 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Makró hozzárendelése"
-#. $-R1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3683,7 +3315,6 @@ msgctxt ""
msgid "Replace"
msgstr "Csere"
-#. %iDN
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3693,7 +3324,6 @@ msgctxt ""
msgid "Exceptions"
msgstr "Kivételek"
-#. r$zB
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3703,7 +3333,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. ]?@*
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3713,7 +3342,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. h#j_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3723,7 +3351,6 @@ msgctxt ""
msgid "Localized Options"
msgstr "Nyelvfüggő beállítások"
-#. (O)t
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3733,7 +3360,6 @@ msgctxt ""
msgid "Word Completion"
msgstr "Szókiegészítés"
-#. K({T
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3743,7 +3369,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr "Intelligens címkék"
-#. d@N`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3753,7 +3378,6 @@ msgctxt ""
msgid "Replacements and exceptions for language:"
msgstr "Szinonimák és kivételek a következő nyelvhez:"
-#. `jKj
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3762,7 +3386,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "Automatikus javítás"
-#. mv.C
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3772,7 +3395,6 @@ msgctxt ""
msgid "Use replacement table"
msgstr "Cseretáblázat használata"
-#. 0X7D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3782,7 +3404,6 @@ msgctxt ""
msgid "Correct TWo INitial CApitals"
msgstr "KÉt KEzdő NAgybetű javítása"
-#. FMV4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3792,7 +3413,6 @@ msgctxt ""
msgid "Capitalize first letter of every sentence"
msgstr "Mondat első betűje nagybetű"
-#. |L6G
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3802,7 +3422,6 @@ msgctxt ""
msgid "Automatic *bold* and _underline_"
msgstr "Automatikus *félkövér* és _aláhúzott_"
-#. H[+g
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3812,7 +3431,6 @@ msgctxt ""
msgid "Ignore double spaces"
msgstr "A dupla szóközök figyelmen kívül hagyása"
-#. X,n4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3822,7 +3440,6 @@ msgctxt ""
msgid "URL Recognition"
msgstr "URL-felismerés"
-#. S+Mv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3832,7 +3449,6 @@ msgctxt ""
msgid "Replace dashes"
msgstr "Kötőjelek cseréje"
-#. B`19
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3842,7 +3458,6 @@ msgctxt ""
msgid "Correct accidental use of cAPS LOCK key"
msgstr "A cAPS LOCK billentyű véletlen használatának javítása"
-#. ukmo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3851,7 +3466,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. kXDp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3861,7 +3475,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "S~zerkesztés..."
-#. _iVG
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3871,7 +3484,6 @@ msgctxt ""
msgid "[M]"
msgstr "[M]"
-#. E\g,
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3881,7 +3493,6 @@ msgctxt ""
msgid "[T]"
msgstr "[T]"
-#. pT*_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3891,7 +3502,6 @@ msgctxt ""
msgid "[M]: Replace while modifying existing text"
msgstr "[M]: Csere gépelés közben"
-#. 0Qc8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3901,7 +3511,6 @@ msgctxt ""
msgid "[T]: AutoFormat/AutoCorrect while typing"
msgstr "[T]: Automatikus formázás / automatikus javítás gépelés közben"
-#. M.gd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3911,7 +3520,6 @@ msgctxt ""
msgid "Remove blank paragraphs"
msgstr "Üres bekezdések eltávolítása"
-#. `1g0
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3921,7 +3529,6 @@ msgctxt ""
msgid "Replace Custom Styles"
msgstr "Egyéni stílusok lecserélése"
-#. 3.Pp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3931,7 +3538,6 @@ msgctxt ""
msgid "Replace bullets with: "
msgstr "A felsorolásjelzők cseréje a következőre: "
-#. -j6z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3941,7 +3547,6 @@ msgctxt ""
msgid "Combine single line paragraphs if length greater than"
msgstr "Egysoros bekezdések összevonása, ha a sor hossza nagyobb mint"
-#. ag=D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3951,7 +3556,6 @@ msgctxt ""
msgid "Apply numbering - symbol: "
msgstr "Felsorolásjel: "
-#. G_2y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3961,7 +3565,6 @@ msgctxt ""
msgid "Apply border"
msgstr "Automatikus szegély létrehozása"
-#. 0]MR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3971,7 +3574,6 @@ msgctxt ""
msgid "Create table"
msgstr "Táblázat létrehozása"
-#. 8kir
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3981,7 +3583,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr "Stílusok alkalmazása"
-#. +[L8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3991,7 +3592,6 @@ msgctxt ""
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Szóközök és tabulátorok törlése a bekezdés elejéről és végéről"
-#. ]UYr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4001,7 +3601,6 @@ msgctxt ""
msgid "Delete spaces and tabs at end and start of line"
msgstr "A szóközök és tabulátorok törlése a sor elejéről és végéről"
-#. ^1|!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4011,7 +3610,6 @@ msgctxt ""
msgid "Minimum size"
msgstr "Legkisebb méret"
-#. 6\kd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4020,7 +3618,6 @@ msgctxt ""
msgid "Combine"
msgstr "Összevonás"
-#. Md6)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4030,7 +3627,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr "~Csere"
-#. v=7;
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4040,7 +3636,6 @@ msgctxt ""
msgid "~With:"
msgstr "~Helyettesítő szöveg:"
-#. j!Eh
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4050,7 +3645,6 @@ msgctxt ""
msgid "~Text only"
msgstr "Csak s~zöveg"
-#. ~H{[
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4060,7 +3654,6 @@ msgctxt ""
msgid "~New"
msgstr "Ú~j"
-#. FeJZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4070,7 +3663,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. 5=_`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4080,7 +3672,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~Csere"
-#. ECB7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4090,7 +3681,6 @@ msgctxt ""
msgid "Abbreviations (no subsequent capital)"
msgstr "Rövidítések (csak az első betű nagy)"
-#. qJB2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4100,7 +3690,6 @@ msgctxt ""
msgid "~New"
msgstr "Ú~j"
-#. )H[d
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4110,7 +3699,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. )n=I
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4120,7 +3708,6 @@ msgctxt ""
msgid "~AutoInclude"
msgstr "A~utomatikus beillesztés"
-#. qji9
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4130,7 +3717,6 @@ msgctxt ""
msgid "Words with TWo INitial CApitals"
msgstr "Szavak KÉt KEzdő NAgybetűvel"
-#. E{Gr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4140,7 +3726,6 @@ msgctxt ""
msgid "Ne~w"
msgstr "Ú~j"
-#. Jd!_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4150,7 +3735,6 @@ msgctxt ""
msgid "Dele~te"
msgstr "Tö~rlés"
-#. a7:W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4160,7 +3744,6 @@ msgctxt ""
msgid "A~utoInclude"
msgstr "Automatikus ~beillesztés"
-#. ^}`W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4170,7 +3753,6 @@ msgctxt ""
msgid "New abbreviations"
msgstr "Új rövidítések"
-#. RSVZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4180,7 +3762,6 @@ msgctxt ""
msgid "Delete abbreviations"
msgstr "Rövidítések törlése"
-#. auO@
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4190,7 +3771,6 @@ msgctxt ""
msgid "New words with two initial capitals"
msgstr "Új szavak két kezdő nagybetűvel"
-#. A.R2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4200,7 +3780,6 @@ msgctxt ""
msgid "Delete words with two initial capitals"
msgstr "Két nagybetűvel kezdődő szavak törlése"
-#. JFG?
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4210,7 +3789,6 @@ msgctxt ""
msgid "[M]"
msgstr "[M]"
-#. dc!2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4220,7 +3798,6 @@ msgctxt ""
msgid "[T]"
msgstr "[T]"
-#. C+Ug
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4230,7 +3807,6 @@ msgctxt ""
msgid "Add non breaking space before specific punctuation marks in french text"
msgstr "Nem törő szóköz hozzáadása egyes írásjelek elé francia szövegben."
-#. ]2VJ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4240,7 +3816,6 @@ msgctxt ""
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Sorszámnevek végződésének javítása (1st → 1^st)"
-#. -A%1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4250,7 +3825,6 @@ msgctxt ""
msgid "Single quotes"
msgstr "Szimpla idézőjelek"
-#. 2ie3
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4260,7 +3834,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr "~Csere"
-#. B74f
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4270,7 +3843,6 @@ msgctxt ""
msgid "~Start quote:"
msgstr "~Kezdő idézőjel:"
-#. p/_n
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4280,7 +3852,6 @@ msgctxt ""
msgid "~End quote:"
msgstr "~Záró idézőjel:"
-#. EX/O
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4290,7 +3861,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Alapértelmezett"
-#. [iUT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4300,7 +3870,6 @@ msgctxt ""
msgid "Double quotes"
msgstr "Dupla idézőjelek"
-#. )t3#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4310,7 +3879,6 @@ msgctxt ""
msgid "Repl~ace"
msgstr " ~Csere"
-#. DrFf
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4320,7 +3888,6 @@ msgctxt ""
msgid "Start q~uote:"
msgstr "Kez~dő idézőjel:"
-#. :3`Z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4330,7 +3897,6 @@ msgctxt ""
msgid "E~nd quote:"
msgstr "Záró ~idézőjel:"
-#. !7g6
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4340,7 +3906,6 @@ msgctxt ""
msgid "De~fault"
msgstr "Alapé~rtelmezett"
-#. GPLo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4350,7 +3915,6 @@ msgctxt ""
msgid "Start quote"
msgstr "Idézet kezdete"
-#. ).eR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4360,7 +3924,6 @@ msgctxt ""
msgid "End quote"
msgstr "Idézet vége"
-#. N@eH
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4370,7 +3933,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapbeállítások"
-#. ^)Z|
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4380,7 +3942,6 @@ msgctxt ""
msgid "Single quotes default"
msgstr "Egyszeres idézőjel"
-#. |kXi
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4390,7 +3951,6 @@ msgctxt ""
msgid "Double quotes default"
msgstr "Dupla idézőjel"
-#. 5X,b
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4400,7 +3960,6 @@ msgctxt ""
msgid "Start quote of single quotes"
msgstr "Kezdő egyszeres idézőjel"
-#. ]QB^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4410,7 +3969,6 @@ msgctxt ""
msgid "Start quote of double quotes"
msgstr "Kezdő dupla idézőjel"
-#. $HU7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4420,7 +3978,6 @@ msgctxt ""
msgid "End quote of single quotes"
msgstr "Záró egyszeres idézőjel"
-#. SjPl
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4430,7 +3987,6 @@ msgctxt ""
msgid "End quote of double quotes"
msgstr "Záró dupla idézőjel"
-#. LQ^p
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4439,7 +3995,6 @@ msgctxt ""
msgid "Localized Options"
msgstr "Nyelvfüggő beállítások"
-#. bb2+
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4449,7 +4004,6 @@ msgctxt ""
msgid "Enable word ~completion"
msgstr "~Szókiegészítés engedélyezése"
-#. ~kT\
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4459,7 +4013,6 @@ msgctxt ""
msgid "~Append space"
msgstr "Szóköz ~hozzáfűzése"
-#. 5Ilv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4469,7 +4022,6 @@ msgctxt ""
msgid "~Show as tip"
msgstr "~Megjelenítés tippként"
-#. )rBV
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4479,7 +4031,6 @@ msgctxt ""
msgid "C~ollect words"
msgstr "~Szógyűjtés"
-#. Ox(#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4489,7 +4040,6 @@ msgctxt ""
msgid "~When closing a document, remove the words collected from it from the list"
msgstr "A ~dokumentum bezárásakor törlődjenek az innen összegyűjtött szavak"
-#. k-1!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4499,7 +4049,6 @@ msgctxt ""
msgid "Acc~ept with"
msgstr "El~fogadás az alábbi billentyűvel"
-#. eogE
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4509,7 +4058,6 @@ msgctxt ""
msgid "Mi~n. word length"
msgstr "Mi~nimális szóhossz"
-#. %)vT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4519,7 +4067,6 @@ msgctxt ""
msgid "~Max. entries"
msgstr "~Lista elemeinek maximális száma"
-#. 7RkL
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4529,7 +4076,6 @@ msgctxt ""
msgid "~Delete Entry"
msgstr "~Bejegyzés törlése"
-#. zT|y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4538,7 +4084,6 @@ msgctxt ""
msgid "Word Completion"
msgstr "Szókiegészítés"
-#. OGA)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4548,7 +4093,6 @@ msgctxt ""
msgid "Label text with smart tags"
msgstr "Szöveg megjelölése intelligens címkékkel"
-#. O4k5
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4558,7 +4102,6 @@ msgctxt ""
msgid "Currently installed smart tags"
msgstr "Jelenleg telepített intelligens címkék"
-#. Czo^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4568,7 +4111,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Tulajdonságok..."
-#. ME8-
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4577,7 +4119,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr "Intelligens címkék"
-#. C%az
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4587,7 +4128,6 @@ msgctxt ""
msgid "Line properties"
msgstr "Vonal tulajdonságai"
-#. 2RU!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4597,7 +4137,6 @@ msgctxt ""
msgid "~Style"
msgstr "Stíl~us"
-#. @6!$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4607,7 +4146,6 @@ msgctxt ""
msgid "Colo~r"
msgstr "S~zín"
-#. \D?-
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4617,7 +4155,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. -@}2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4627,7 +4164,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "Á~tlátszóság"
-#. Hpp[
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4637,7 +4173,6 @@ msgctxt ""
msgid "Arrow styles"
msgstr "Nyílstílusok"
-#. 3OsL
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4647,7 +4182,6 @@ msgctxt ""
msgid "St~yle"
msgstr "S~tílus"
-#. O7$H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4657,7 +4191,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "S~zélesség"
-#. 6d+_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4667,7 +4200,6 @@ msgctxt ""
msgid "Ce~nter"
msgstr "Közé~pre"
-#. (r[L
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4677,7 +4209,6 @@ msgctxt ""
msgid "C~enter"
msgstr "~Középre"
-#. ~=o$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4687,7 +4218,6 @@ msgctxt ""
msgid "Synchroni~ze ends"
msgstr "Szélek sz~inkronizálása"
-#. KoFj
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4697,7 +4227,6 @@ msgctxt ""
msgid "Corner and cap styles"
msgstr ""
-#. \lyH
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4708,7 +4237,6 @@ msgctxt ""
msgid "~Corner style"
msgstr "Sarok stílusa"
-#. (bCn
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4718,7 +4246,6 @@ msgctxt ""
msgid "Rounded"
msgstr "Lekerekített"
-#. s4nS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4728,7 +4255,6 @@ msgctxt ""
msgid "- none -"
msgstr "- semmi -"
-#. A[nJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4738,7 +4264,6 @@ msgctxt ""
msgid "Mitered"
msgstr "45°-ban levágott"
-#. XHol
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4748,7 +4273,6 @@ msgctxt ""
msgid "Beveled"
msgstr "Rézsútos"
-#. `e16
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4758,7 +4282,6 @@ msgctxt ""
msgid "Ca~p style"
msgstr ""
-#. /vXe
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4768,7 +4291,6 @@ msgctxt ""
msgid "Flat"
msgstr "Lapos"
-#. \%w@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4778,7 +4300,6 @@ msgctxt ""
msgid "Round"
msgstr "Kerekítés"
-#. L}p.
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4789,7 +4310,6 @@ msgctxt ""
msgid "Square"
msgstr "Négyzet"
-#. q.CD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4799,7 +4319,6 @@ msgctxt ""
msgid "Icon"
msgstr "Ikon"
-#. @bEf
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4809,7 +4328,6 @@ msgctxt ""
msgid "No Symbol"
msgstr "Nincs szimbólum"
-#. [HWA
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4819,7 +4337,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. wNoJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4829,7 +4346,6 @@ msgctxt ""
msgid "From file..."
msgstr "Fájlból..."
-#. /_t{
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4839,7 +4355,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Képtár"
-#. Rrei
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4849,7 +4364,6 @@ msgctxt ""
msgid "Symbols"
msgstr "Szimbólumok"
-#. e=WC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4859,7 +4373,6 @@ msgctxt ""
msgid "Select..."
msgstr "Kiválasztás..."
-#. ,L[E
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4869,7 +4382,6 @@ msgctxt ""
msgid "Width"
msgstr "Szélesség"
-#. faep
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4879,7 +4391,6 @@ msgctxt ""
msgid "Height"
msgstr "Magasság"
-#. O*%]
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4889,7 +4400,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "Rögzített méretarány"
-#. Y[la
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4899,7 +4409,6 @@ msgctxt ""
msgid "Style"
msgstr "Stílus"
-#. lB[j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4909,7 +4418,6 @@ msgctxt ""
msgid "Start style"
msgstr "Kezdő stílus"
-#. d8%,
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4919,7 +4427,6 @@ msgctxt ""
msgid "End style"
msgstr "Végső stílus"
-#. kcar
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4929,7 +4436,6 @@ msgctxt ""
msgid "Start width"
msgstr "Kezdőszélesség"
-#. pM`y
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4939,7 +4445,6 @@ msgctxt ""
msgid "End width"
msgstr "Végszélesség"
-#. %an!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4949,7 +4454,6 @@ msgctxt ""
msgid "Start with center"
msgstr "Kezdés középen"
-#. V-Kg
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4959,7 +4463,6 @@ msgctxt ""
msgid "End with center"
msgstr "Befejezés középen"
-#. Y[a%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4968,7 +4471,6 @@ msgctxt ""
msgid "Lines"
msgstr "Vonalak"
-#. R?]H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4978,7 +4480,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. ;rab
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4988,7 +4489,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Típus"
-#. RU*2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4998,7 +4498,6 @@ msgctxt ""
msgid "Dot"
msgstr "Pont"
-#. )_!j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5008,7 +4507,6 @@ msgctxt ""
msgid "Dash"
msgstr "Szaggatott"
-#. 7O2m
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5018,7 +4516,6 @@ msgctxt ""
msgid "Dot"
msgstr "Pont"
-#. ^F}_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5028,7 +4525,6 @@ msgctxt ""
msgid "Dash"
msgstr "Szaggatott"
-#. @,:%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5038,7 +4534,6 @@ msgctxt ""
msgid "~Number"
msgstr "S~zám"
-#. 9wnD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5048,7 +4543,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Hosszúság"
-#. W%eJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5058,7 +4552,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Térköz"
-#. #-OS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5068,7 +4561,6 @@ msgctxt ""
msgid "~Fit to line width"
msgstr "So~rszélességhez igazítás"
-#. S^Zl
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5078,7 +4570,6 @@ msgctxt ""
msgid "Line style"
msgstr "Vonalstílus"
-#. 4ov8
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5088,7 +4579,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. }T1#
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5098,7 +4588,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Módosítás..."
-#. ?=2c
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5108,7 +4597,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Törlés..."
-#. BF%@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5118,7 +4606,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 4Cd.
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5128,7 +4615,6 @@ msgctxt ""
msgid "Load Line Styles"
msgstr "Vonalstílusok betöltése"
-#. igk%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5138,7 +4624,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 7.fE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5148,7 +4633,6 @@ msgctxt ""
msgid "Save Line Styles"
msgstr "Vonalstílusok mentése"
-#. n%Vq
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5158,7 +4642,6 @@ msgctxt ""
msgid "Start type"
msgstr "Kezdőtípus"
-#. p}ZC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5168,7 +4651,6 @@ msgctxt ""
msgid "End type"
msgstr "Végtípus"
-#. vcqy
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5178,7 +4660,6 @@ msgctxt ""
msgid "Start number"
msgstr "Kezdőszám"
-#. h3AC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5188,7 +4669,6 @@ msgctxt ""
msgid "End number"
msgstr "Végszám"
-#. QtEh
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5198,7 +4678,6 @@ msgctxt ""
msgid "Start length"
msgstr "Kezdőhossz"
-#. ?3ke
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5208,7 +4687,6 @@ msgctxt ""
msgid "End length"
msgstr "Véghossz"
-#. +}V3
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5217,7 +4695,6 @@ msgctxt ""
msgid "Define line styles"
msgstr "Vonalstílusok meghatározása"
-#. eF$x
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5227,7 +4704,6 @@ msgctxt ""
msgid "Organize arrow styles"
msgstr "Nyílstílusok átszervezése"
-#. dexG
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5237,7 +4713,6 @@ msgctxt ""
msgid "Add a selected object to create new arrow styles."
msgstr "Kiválasztott objektum hozzáadása új nyílstílus létrehozásához."
-#. pN,$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5247,7 +4722,6 @@ msgctxt ""
msgid "Arrow style"
msgstr "Nyíl stílusa"
-#. ~Vj/
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5257,7 +4731,6 @@ msgctxt ""
msgid "~Title"
msgstr "~Cím"
-#. ~-~j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5267,7 +4740,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Hozzáadás..."
-#. *5X^
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5277,7 +4749,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Módosítás..."
-#. gab$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5287,7 +4758,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Törlés..."
-#. =aen
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5297,7 +4767,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. JGf;
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5307,7 +4776,6 @@ msgctxt ""
msgid "Load Arrow Styles"
msgstr "Nyílstílusok betöltése"
-#. mdqE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5317,7 +4785,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. ,)vS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5327,7 +4794,6 @@ msgctxt ""
msgid "Save Arrow Styles"
msgstr "Nyílstílusok mentése"
-#. g*JP
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5336,7 +4802,6 @@ msgctxt ""
msgid "Arrowheads"
msgstr "Nyílhegyek"
-#. ciPm
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5346,7 +4811,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. i$sT
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5356,7 +4820,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Árnyékolt"
-#. #0Y4
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5366,7 +4829,6 @@ msgctxt ""
msgid "Line Styles"
msgstr "Vonalstílusok"
-#. +,@9
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5376,7 +4838,6 @@ msgctxt ""
msgid "Arrow Styles"
msgstr "Nyílstílusok"
-#. H-#b
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5385,7 +4846,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. /|U|
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5395,7 +4855,6 @@ msgctxt ""
msgid "~Category"
msgstr "~Kategória"
-#. !Z5N
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5405,7 +4864,6 @@ msgctxt ""
msgid "All"
msgstr "Összes"
-#. QQOp
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5415,7 +4873,6 @@ msgctxt ""
msgid "User-defined"
msgstr "Egyéni"
-#. :I\4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5425,7 +4882,6 @@ msgctxt ""
msgid "Number"
msgstr "Szám"
-#. ^cP:
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5435,7 +4891,6 @@ msgctxt ""
msgid "Percent"
msgstr "Százalék"
-#. Q*F8
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5445,7 +4900,6 @@ msgctxt ""
msgid "Currency"
msgstr "Pénznem"
-#. )s1O
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5455,7 +4909,6 @@ msgctxt ""
msgid "Date"
msgstr "Dátum"
-#. sG:@
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5465,7 +4918,6 @@ msgctxt ""
msgid "Time"
msgstr "Idő"
-#. fj6?
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5475,7 +4927,6 @@ msgctxt ""
msgid "Scientific"
msgstr "Tudományos"
-#. ^A8z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5485,7 +4936,6 @@ msgctxt ""
msgid "Fraction"
msgstr "Tört"
-#. (iMc
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5495,7 +4945,6 @@ msgctxt ""
msgid "Boolean Value"
msgstr "Logikai érték"
-#. cqPK
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5505,7 +4954,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. |4Oa
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5515,7 +4963,6 @@ msgctxt ""
msgid "~Format code"
msgstr "F~ormátumkód"
-#. H[8Z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5525,7 +4972,6 @@ msgctxt ""
msgid "F~ormat"
msgstr "F~ormátum"
-#. sq*T
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5535,7 +4981,6 @@ msgctxt ""
msgid "Automatically"
msgstr "Automatikusan"
-#. ,8.k
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5545,7 +4990,6 @@ msgctxt ""
msgid "~Decimal places"
msgstr "~Tizedesjegyek"
-#. !1fL
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5555,7 +4999,6 @@ msgctxt ""
msgid "Leading ~zeroes"
msgstr "Ve~zető nullák"
-#. QV;e
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5565,7 +5008,6 @@ msgctxt ""
msgid "~Negative numbers red"
msgstr "Neg~atív számok pirossal"
-#. {Ro/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5575,7 +5017,6 @@ msgctxt ""
msgid "~Thousands separator"
msgstr "~Ezreselválasztó"
-#. %3E4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5585,7 +5026,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. [O\)
#: numfmt.src
#, fuzzy
msgctxt ""
@@ -5596,7 +5036,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Nyelv"
-#. X@}M
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5606,7 +5045,6 @@ msgctxt ""
msgid "So~urce format"
msgstr "F~orrásformátum"
-#. qG\P
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5616,7 +5054,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. G[Q(
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5626,7 +5063,6 @@ msgctxt ""
msgid "Add"
msgstr "Hozzáadás"
-#. K,^/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5636,7 +5072,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. *BMt
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5646,7 +5081,6 @@ msgctxt ""
msgid "Remove"
msgstr "Eltávolítás"
-#. A/zQ
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5656,7 +5090,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. Q5D7
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5666,7 +5099,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr "Megjegyzés szerkesztése"
-#. bH#n
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5676,7 +5108,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. DUv#
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5685,7 +5116,6 @@ msgctxt ""
msgid "Number Format"
msgstr "Számformátum"
-#. EWij
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5695,7 +5125,6 @@ msgctxt ""
msgid "Borders"
msgstr "Szegélyek"
-#. ?^{_
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5705,7 +5134,6 @@ msgctxt ""
msgid "Background"
msgstr "Háttér"
-#. b4iR
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5714,7 +5142,6 @@ msgctxt ""
msgid "Border / Background"
msgstr "Szegély és háttér"
-#. NkV_
#: page.src
msgctxt ""
"page.src\n"
@@ -5724,7 +5151,6 @@ msgctxt ""
msgid "Paper format"
msgstr "Papírformátum"
-#. jQ+m
#: page.src
msgctxt ""
"page.src\n"
@@ -5734,7 +5160,6 @@ msgctxt ""
msgid "~Format"
msgstr "Fo~rmátum"
-#. *cE#
#: page.src
msgctxt ""
"page.src\n"
@@ -5744,7 +5169,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. 9a{M
#: page.src
msgctxt ""
"page.src\n"
@@ -5754,7 +5178,6 @@ msgctxt ""
msgid "~Height"
msgstr "~Magasság"
-#. .8Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -5764,7 +5187,6 @@ msgctxt ""
msgid "Orientation"
msgstr "Tájolás"
-#. +Q$L
#: page.src
msgctxt ""
"page.src\n"
@@ -5774,7 +5196,6 @@ msgctxt ""
msgid "~Portrait"
msgstr "Á~lló"
-#. \y3M
#: page.src
msgctxt ""
"page.src\n"
@@ -5784,7 +5205,6 @@ msgctxt ""
msgid "L~andscape"
msgstr "Fe~kvő"
-#. x|e8
#: page.src
msgctxt ""
"page.src\n"
@@ -5794,7 +5214,6 @@ msgctxt ""
msgid "~Text direction"
msgstr "Szö~vegirány"
-#. B,2B
#: page.src
msgctxt ""
"page.src\n"
@@ -5804,7 +5223,6 @@ msgctxt ""
msgid "Paper ~tray"
msgstr "~Papírtálca"
-#. -2`o
#: page.src
msgctxt ""
"page.src\n"
@@ -5814,7 +5232,6 @@ msgctxt ""
msgid "Margins"
msgstr "Margók"
-#. Y/qs
#: page.src
msgctxt ""
"page.src\n"
@@ -5824,7 +5241,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Balra"
-#. xn-)
#: page.src
msgctxt ""
"page.src\n"
@@ -5834,7 +5250,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Jobbra"
-#. dmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -5844,7 +5259,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Felül"
-#. TXd3
#: page.src
msgctxt ""
"page.src\n"
@@ -5854,7 +5268,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Alul"
-#. ;YeP
#: page.src
msgctxt ""
"page.src\n"
@@ -5864,7 +5277,6 @@ msgctxt ""
msgid "Layout settings"
msgstr "Elrendezés beállításai"
-#. \/\B
#: page.src
msgctxt ""
"page.src\n"
@@ -5874,7 +5286,6 @@ msgctxt ""
msgid "Page layout"
msgstr "Oldalbeállítás"
-#. OKAX
#: page.src
msgctxt ""
"page.src\n"
@@ -5884,7 +5295,6 @@ msgctxt ""
msgid "Right and left"
msgstr "Páros és páratlan"
-#. d$K5
#: page.src
msgctxt ""
"page.src\n"
@@ -5894,7 +5304,6 @@ msgctxt ""
msgid "Mirrored"
msgstr "Tükrözött"
-#. zkb9
#: page.src
msgctxt ""
"page.src\n"
@@ -5904,7 +5313,6 @@ msgctxt ""
msgid "Only right"
msgstr "Páratlan"
-#. ;*O#
#: page.src
msgctxt ""
"page.src\n"
@@ -5914,7 +5322,6 @@ msgctxt ""
msgid "Only left"
msgstr "Páros"
-#. S_Tj
#: page.src
msgctxt ""
"page.src\n"
@@ -5924,7 +5331,6 @@ msgctxt ""
msgid "For~mat"
msgstr "Formát~um"
-#. G%B}
#: page.src
msgctxt ""
"page.src\n"
@@ -5934,7 +5340,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
-#. *E(=
#: page.src
msgctxt ""
"page.src\n"
@@ -5944,7 +5349,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
-#. :qQZ
#: page.src
msgctxt ""
"page.src\n"
@@ -5954,7 +5358,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
-#. +kV=
#: page.src
msgctxt ""
"page.src\n"
@@ -5964,7 +5367,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
-#. T|%B
#: page.src
msgctxt ""
"page.src\n"
@@ -5974,7 +5376,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
-#. m\b/
#: page.src
msgctxt ""
"page.src\n"
@@ -5984,7 +5385,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. Z_dU
#: page.src
msgctxt ""
"page.src\n"
@@ -5994,7 +5394,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
-#. A[8%
#: page.src
msgctxt ""
"page.src\n"
@@ -6004,7 +5403,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
-#. [e-7
#: page.src
msgctxt ""
"page.src\n"
@@ -6014,7 +5412,6 @@ msgctxt ""
msgid "Native Numbering"
msgstr "Natív számozás"
-#. PpFS
#: page.src
msgctxt ""
"page.src\n"
@@ -6024,7 +5421,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (bolgár)"
-#. 7P:)
#: page.src
msgctxt ""
"page.src\n"
@@ -6034,7 +5430,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (bolgár)"
-#. Z1l@
#: page.src
msgctxt ""
"page.src\n"
@@ -6044,7 +5439,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (bolgár)"
-#. Ql$!
#: page.src
msgctxt ""
"page.src\n"
@@ -6054,7 +5448,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (bolgár)"
-#. *eo*
#: page.src
msgctxt ""
"page.src\n"
@@ -6064,7 +5457,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (orosz)"
-#. :C\_
#: page.src
msgctxt ""
"page.src\n"
@@ -6074,7 +5466,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (orosz)"
-#. [NVz
#: page.src
msgctxt ""
"page.src\n"
@@ -6084,7 +5475,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (orosz)"
-#. VPcI
#: page.src
msgctxt ""
"page.src\n"
@@ -6094,7 +5484,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (orosz)"
-#. ;K\[
#: page.src
msgctxt ""
"page.src\n"
@@ -6104,7 +5493,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (szerb)"
-#. 2Ii3
#: page.src
msgctxt ""
"page.src\n"
@@ -6114,7 +5502,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (szerb)"
-#. C/`.
#: page.src
msgctxt ""
"page.src\n"
@@ -6124,7 +5511,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (szerb)"
-#. no[X
#: page.src
msgctxt ""
"page.src\n"
@@ -6134,7 +5520,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (szerb)"
-#. #/VS
#: page.src
msgctxt ""
"page.src\n"
@@ -6144,7 +5529,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr "Α, Β, Γ, ... (görög nagybetűk)"
-#. GQ[7
#: page.src
msgctxt ""
"page.src\n"
@@ -6154,7 +5538,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr "α, β, γ, ... (görög kisbetűk)"
-#. +;j#
#: page.src
msgctxt ""
"page.src\n"
@@ -6164,7 +5547,6 @@ msgctxt ""
msgid "Table alignment"
msgstr "Táblázat igazítása"
-#. #0G_
#: page.src
msgctxt ""
"page.src\n"
@@ -6174,7 +5556,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "Ví~zszintes"
-#. $ki7
#: page.src
msgctxt ""
"page.src\n"
@@ -6184,7 +5565,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "~Függőleges"
-#. H#|a
#: page.src
msgctxt ""
"page.src\n"
@@ -6194,7 +5574,6 @@ msgctxt ""
msgid "~Fit object to paper format"
msgstr "~Objektum papírhoz igazítása"
-#. #)#b
#: page.src
msgctxt ""
"page.src\n"
@@ -6204,7 +5583,6 @@ msgctxt ""
msgid "Register-true"
msgstr "Soregyen"
-#. [5ro
#: page.src
msgctxt ""
"page.src\n"
@@ -6214,7 +5592,6 @@ msgctxt ""
msgid "Reference ~Style"
msgstr "R~eferenciastílus"
-#. j1Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -6224,7 +5601,6 @@ msgctxt ""
msgid "I~nner"
msgstr "B~első"
-#. M]|d
#: page.src
msgctxt ""
"page.src\n"
@@ -6234,7 +5610,6 @@ msgctxt ""
msgid "O~uter"
msgstr "Kü~lső"
-#. 8-Fc
#: page.src
msgctxt ""
"page.src\n"
@@ -6250,7 +5625,6 @@ msgstr ""
"\n"
"Biztos, hogy alkalmazza a beállításokat?"
-#. 0fkz
#: page.src
msgctxt ""
"page.src\n"
@@ -6260,7 +5634,6 @@ msgctxt ""
msgid "A6"
msgstr "A6"
-#. X`J2
#: page.src
msgctxt ""
"page.src\n"
@@ -6270,7 +5643,6 @@ msgctxt ""
msgid "A5"
msgstr "A5"
-#. [3Dd
#: page.src
msgctxt ""
"page.src\n"
@@ -6280,7 +5652,6 @@ msgctxt ""
msgid "A4"
msgstr "A4"
-#. 3NNO
#: page.src
msgctxt ""
"page.src\n"
@@ -6290,7 +5661,6 @@ msgctxt ""
msgid "A3"
msgstr "A3"
-#. r;+o
#: page.src
msgctxt ""
"page.src\n"
@@ -6300,7 +5670,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
-#. )^.Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6310,7 +5679,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
-#. d/2L
#: page.src
msgctxt ""
"page.src\n"
@@ -6320,7 +5688,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
-#. |G=H
#: page.src
msgctxt ""
"page.src\n"
@@ -6330,7 +5697,6 @@ msgctxt ""
msgid "Letter"
msgstr "Letter"
-#. \.[f
#: page.src
msgctxt ""
"page.src\n"
@@ -6340,7 +5706,6 @@ msgctxt ""
msgid "Legal"
msgstr "Legal"
-#. \(K)
#: page.src
msgctxt ""
"page.src\n"
@@ -6350,7 +5715,6 @@ msgctxt ""
msgid "Long Bond"
msgstr "Long Bond"
-#. X{,.
#: page.src
msgctxt ""
"page.src\n"
@@ -6360,7 +5724,6 @@ msgctxt ""
msgid "Tabloid"
msgstr "Tabloid"
-#. q.!A
#: page.src
msgctxt ""
"page.src\n"
@@ -6370,7 +5733,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
-#. $nO2
#: page.src
msgctxt ""
"page.src\n"
@@ -6380,7 +5742,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
-#. =4[)
#: page.src
msgctxt ""
"page.src\n"
@@ -6390,7 +5751,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
-#. XOb`
#: page.src
msgctxt ""
"page.src\n"
@@ -6400,7 +5760,6 @@ msgctxt ""
msgid "16 Kai"
msgstr "16 Kai"
-#. py5m
#: page.src
msgctxt ""
"page.src\n"
@@ -6410,7 +5769,6 @@ msgctxt ""
msgid "32 Kai"
msgstr "32 Kai"
-#. z:bV
#: page.src
msgctxt ""
"page.src\n"
@@ -6420,7 +5778,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr "Big 32 Kai"
-#. l**]
#: page.src
msgctxt ""
"page.src\n"
@@ -6430,7 +5787,6 @@ msgctxt ""
msgid "User"
msgstr "Felhasználói"
-#. .*!q
#: page.src
msgctxt ""
"page.src\n"
@@ -6440,7 +5796,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr "DL boríték"
-#. Vmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -6450,7 +5805,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr "C6 boríték"
-#. @*@R
#: page.src
msgctxt ""
"page.src\n"
@@ -6460,7 +5814,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr "C6/5 boríték"
-#. %vH`
#: page.src
msgctxt ""
"page.src\n"
@@ -6470,7 +5823,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr "C5 boríték"
-#. ij/h
#: page.src
msgctxt ""
"page.src\n"
@@ -6480,7 +5832,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr "C4 boríték"
-#. 5aab
#: page.src
msgctxt ""
"page.src\n"
@@ -6490,7 +5841,6 @@ msgctxt ""
msgid "#6 3/4 (Personal) Envelope"
msgstr "#6 3/4 (Personal) boríték"
-#. 1k)*
#: page.src
msgctxt ""
"page.src\n"
@@ -6500,7 +5850,6 @@ msgctxt ""
msgid "#8 (Monarch) Envelope"
msgstr "#8 (Monarch) boríték"
-#. Z}ug
#: page.src
msgctxt ""
"page.src\n"
@@ -6510,7 +5859,6 @@ msgctxt ""
msgid "#9 Envelope"
msgstr "#9 boríték"
-#. $WZ,
#: page.src
msgctxt ""
"page.src\n"
@@ -6520,7 +5868,6 @@ msgctxt ""
msgid "#10 Envelope"
msgstr "#10 boríték"
-#. V==k
#: page.src
msgctxt ""
"page.src\n"
@@ -6530,7 +5877,6 @@ msgctxt ""
msgid "#11 Envelope"
msgstr "#11 boríték"
-#. ?EpA
#: page.src
msgctxt ""
"page.src\n"
@@ -6540,7 +5886,6 @@ msgctxt ""
msgid "#12 Envelope"
msgstr "#12 boríték"
-#. Rb3s
#: page.src
msgctxt ""
"page.src\n"
@@ -6550,7 +5895,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr "Japán levelezőlap"
-#. Z}X4
#: page.src
msgctxt ""
"page.src\n"
@@ -6560,7 +5904,6 @@ msgctxt ""
msgid "A6"
msgstr "A6"
-#. .(D,
#: page.src
msgctxt ""
"page.src\n"
@@ -6570,7 +5913,6 @@ msgctxt ""
msgid "A5"
msgstr "A5"
-#. SsJl
#: page.src
msgctxt ""
"page.src\n"
@@ -6580,7 +5922,6 @@ msgctxt ""
msgid "A4"
msgstr "A4"
-#. ]uFl
#: page.src
msgctxt ""
"page.src\n"
@@ -6590,7 +5931,6 @@ msgctxt ""
msgid "A3"
msgstr "A3"
-#. V$N(
#: page.src
msgctxt ""
"page.src\n"
@@ -6600,7 +5940,6 @@ msgctxt ""
msgid "A2"
msgstr "A2"
-#. P06I
#: page.src
msgctxt ""
"page.src\n"
@@ -6610,7 +5949,6 @@ msgctxt ""
msgid "A1"
msgstr "A1"
-#. -k#Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6620,7 +5958,6 @@ msgctxt ""
msgid "A0"
msgstr "A0"
-#. eT3W
#: page.src
msgctxt ""
"page.src\n"
@@ -6630,7 +5967,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
-#. E4#h
#: page.src
msgctxt ""
"page.src\n"
@@ -6640,7 +5976,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
-#. BMq@
#: page.src
msgctxt ""
"page.src\n"
@@ -6650,7 +5985,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
-#. ;gT~
#: page.src
msgctxt ""
"page.src\n"
@@ -6660,7 +5994,6 @@ msgctxt ""
msgid "Letter"
msgstr "Letter"
-#. `sBE
#: page.src
msgctxt ""
"page.src\n"
@@ -6670,7 +6003,6 @@ msgctxt ""
msgid "Legal"
msgstr "Legal"
-#. -In)
#: page.src
msgctxt ""
"page.src\n"
@@ -6680,7 +6012,6 @@ msgctxt ""
msgid "Long Bond"
msgstr "Long Bond"
-#. IP*F
#: page.src
msgctxt ""
"page.src\n"
@@ -6690,7 +6021,6 @@ msgctxt ""
msgid "Tabloid"
msgstr "Tabloid"
-#. 2}2K
#: page.src
msgctxt ""
"page.src\n"
@@ -6700,7 +6030,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
-#. 9A5-
#: page.src
msgctxt ""
"page.src\n"
@@ -6710,7 +6039,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
-#. tb9*
#: page.src
msgctxt ""
"page.src\n"
@@ -6720,7 +6048,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
-#. bZe|
#: page.src
msgctxt ""
"page.src\n"
@@ -6730,7 +6057,6 @@ msgctxt ""
msgid "16 Kai"
msgstr "16 Kai"
-#. 2-.U
#: page.src
msgctxt ""
"page.src\n"
@@ -6740,7 +6066,6 @@ msgctxt ""
msgid "32 Kai"
msgstr "32 Kai"
-#. 2RO}
#: page.src
msgctxt ""
"page.src\n"
@@ -6750,7 +6075,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr "Big 32 Kai"
-#. =/Ol
#: page.src
msgctxt ""
"page.src\n"
@@ -6760,7 +6084,6 @@ msgctxt ""
msgid "User"
msgstr "Felhasználói"
-#. RPXm
#: page.src
msgctxt ""
"page.src\n"
@@ -6770,7 +6093,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr "DL boríték"
-#. 2Y8\
#: page.src
msgctxt ""
"page.src\n"
@@ -6780,7 +6102,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr "C6 boríték"
-#. 024q
#: page.src
msgctxt ""
"page.src\n"
@@ -6790,7 +6111,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr "C6/5 boríték"
-#. ?^U$
#: page.src
msgctxt ""
"page.src\n"
@@ -6800,7 +6120,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr "C5 boríték"
-#. $7,l
#: page.src
msgctxt ""
"page.src\n"
@@ -6810,7 +6129,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr "C4 boríték"
-#. A0o)
#: page.src
msgctxt ""
"page.src\n"
@@ -6820,7 +6138,6 @@ msgctxt ""
msgid "Dia Slide"
msgstr "Diakép"
-#. W++{
#: page.src
msgctxt ""
"page.src\n"
@@ -6830,7 +6147,6 @@ msgctxt ""
msgid "Screen 4:3"
msgstr "4:3-as képernyő"
-#. }77H
#: page.src
msgctxt ""
"page.src\n"
@@ -6840,7 +6156,6 @@ msgctxt ""
msgid "Screen 16:9"
msgstr "16:9-es képernyő"
-#. -A-/
#: page.src
#, fuzzy
msgctxt ""
@@ -6851,7 +6166,6 @@ msgctxt ""
msgid "Screen 16:10"
msgstr "16:9-es képernyő"
-#. ;mpl
#: page.src
#, fuzzy
msgctxt ""
@@ -6862,7 +6176,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr "Japán levelezőlap"
-#. v3v3
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6871,7 +6184,6 @@ msgctxt ""
msgid "Unlinked graphic"
msgstr "Dokumentumba ágyazott ábra"
-#. ,V~k
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6881,7 +6193,6 @@ msgctxt ""
msgid "A~s"
msgstr "~Típus"
-#. e!QI
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6891,7 +6202,6 @@ msgctxt ""
msgid "Color"
msgstr "Szín"
-#. H[3@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6901,7 +6211,6 @@ msgctxt ""
msgid "Graphic"
msgstr "Kép"
-#. n7T@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6911,7 +6220,6 @@ msgctxt ""
msgid "F~or"
msgstr "~Ehhez:"
-#. /X$p
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6921,7 +6229,6 @@ msgctxt ""
msgid "Cell"
msgstr "Cella"
-#. 7d`s
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6931,7 +6238,6 @@ msgctxt ""
msgid "Row"
msgstr "Sor"
-#. 1yIP
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6941,7 +6247,6 @@ msgctxt ""
msgid "Table"
msgstr "Táblázat"
-#. Jp7R
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6951,7 +6256,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "Bekezdés"
-#. W_af
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6961,7 +6265,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. e]|x
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6971,7 +6274,6 @@ msgctxt ""
msgid "Background color"
msgstr "Háttérszín"
-#. a+(q
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6981,7 +6283,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "Á~tlátszóság"
-#. dqI8
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6991,7 +6292,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. [-%/
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7001,7 +6301,6 @@ msgctxt ""
msgid "~Browse..."
msgstr "~Tallózás..."
-#. s+{F
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7011,7 +6310,6 @@ msgctxt ""
msgid "~Link"
msgstr "~Hivatkozás"
-#. 4p/T
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7021,7 +6319,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. hN!D
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7031,7 +6328,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Pozíció"
-#. vIpk
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7041,7 +6337,6 @@ msgctxt ""
msgid "Ar~ea"
msgstr "Te~rület"
-#. ,ln_
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7051,7 +6346,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~Mozaik"
-#. qp^.
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7061,7 +6355,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Átlátszóság"
-#. J[oD
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7071,7 +6364,6 @@ msgctxt ""
msgid "Pre~view"
msgstr "~Előnézet"
-#. m({C
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7081,7 +6373,6 @@ msgctxt ""
msgid "Find graphics"
msgstr "Kép keresése"
-#. d92{
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7090,7 +6381,6 @@ msgctxt ""
msgid "Background"
msgstr "Háttér"
-#. n^lK
#: border.src
msgctxt ""
"border.src\n"
@@ -7100,7 +6390,6 @@ msgctxt ""
msgid "Line arrangement"
msgstr "Szegély elrendezése"
-#. ]/%T
#: border.src
msgctxt ""
"border.src\n"
@@ -7110,7 +6399,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Alapértelmezett"
-#. ~#B*
#: border.src
msgctxt ""
"border.src\n"
@@ -7120,7 +6408,6 @@ msgctxt ""
msgid "~User-defined"
msgstr "~Egyéni"
-#. cJ_Y
#: border.src
msgctxt ""
"border.src\n"
@@ -7130,7 +6417,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. 08X/
#: border.src
msgctxt ""
"border.src\n"
@@ -7140,7 +6426,6 @@ msgctxt ""
msgid "St~yle"
msgstr "S~tílus"
-#. 25#7
#: border.src
msgctxt ""
"border.src\n"
@@ -7150,7 +6435,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. TpdV
#: border.src
msgctxt ""
"border.src\n"
@@ -7160,7 +6444,6 @@ msgctxt ""
msgid "~Color"
msgstr "~Szín"
-#. +@J2
#: border.src
msgctxt ""
"border.src\n"
@@ -7170,7 +6453,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Bal"
-#. :=*:
#: border.src
msgctxt ""
"border.src\n"
@@ -7180,7 +6462,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobb"
-#. !J6X
#: border.src
msgctxt ""
"border.src\n"
@@ -7190,7 +6471,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Fent"
-#. Ecpy
#: border.src
msgctxt ""
"border.src\n"
@@ -7200,7 +6480,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Lent"
-#. _;;X
#: border.src
msgctxt ""
"border.src\n"
@@ -7210,7 +6489,6 @@ msgctxt ""
msgid "Synchronize"
msgstr "Egyenlő"
-#. ($FG
#: border.src
msgctxt ""
"border.src\n"
@@ -7220,7 +6498,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr "Belső margók"
-#. b#%R
#: border.src
msgctxt ""
"border.src\n"
@@ -7230,7 +6507,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Pozíció"
-#. m7lu
#: border.src
msgctxt ""
"border.src\n"
@@ -7240,7 +6516,6 @@ msgctxt ""
msgid "Distan~ce"
msgstr "Tá~volság"
-#. Ysn3
#: border.src
msgctxt ""
"border.src\n"
@@ -7250,7 +6525,6 @@ msgctxt ""
msgid "C~olor"
msgstr "S~zín"
-#. X3X[
#: border.src
msgctxt ""
"border.src\n"
@@ -7260,7 +6534,6 @@ msgctxt ""
msgid "Shadow style"
msgstr "Árnyékolás stílusa"
-#. d/!4
#: border.src
msgctxt ""
"border.src\n"
@@ -7270,7 +6543,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. 2^:K
#: border.src
msgctxt ""
"border.src\n"
@@ -7280,7 +6552,6 @@ msgctxt ""
msgid "~Merge with next paragraph"
msgstr "~Egyesítés a következővel"
-#. =\k{
#: border.src
msgctxt ""
"border.src\n"
@@ -7290,7 +6561,6 @@ msgctxt ""
msgid "~Merge adjacent line styles"
msgstr "~Szomszédos vonalstílusok egyesítése"
-#. DHQ^
#: border.src
msgctxt ""
"border.src\n"
@@ -7299,7 +6569,6 @@ msgctxt ""
msgid "Borders"
msgstr "Szegélyek"
-#. DhrX
#: border.src
msgctxt ""
"border.src\n"
@@ -7308,7 +6577,6 @@ msgctxt ""
msgid "Set No Borders"
msgstr "Szegély nélkül"
-#. z[PB
#: border.src
msgctxt ""
"border.src\n"
@@ -7317,7 +6585,6 @@ msgctxt ""
msgid "Set Outer Border Only"
msgstr "Csak külső szegély"
-#. #bvo
#: border.src
msgctxt ""
"border.src\n"
@@ -7326,7 +6593,6 @@ msgctxt ""
msgid "Set Outer Border and Horizontal Lines"
msgstr "Külső szegély és vízszintes vonalak beállítása"
-#. d,4j
#: border.src
msgctxt ""
"border.src\n"
@@ -7335,7 +6601,6 @@ msgctxt ""
msgid "Set Outer Border and All Inner Lines"
msgstr "Külső szegély és az összes belső vonal beállítása"
-#. |I`P
#: border.src
msgctxt ""
"border.src\n"
@@ -7344,7 +6609,6 @@ msgctxt ""
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Külső szegély beállítása a belső vonalak módosítása nélkül"
-#. q5Ra
#: border.src
msgctxt ""
"border.src\n"
@@ -7353,7 +6617,6 @@ msgctxt ""
msgid "Set Diagonal Lines Only"
msgstr "Csak az átlós vonalak beállítása"
-#. @r`[
#: border.src
msgctxt ""
"border.src\n"
@@ -7362,7 +6625,6 @@ msgctxt ""
msgid "Set All Four Borders"
msgstr "Mind a négy szegély beállítása"
-#. J=C/
#: border.src
msgctxt ""
"border.src\n"
@@ -7371,7 +6633,6 @@ msgctxt ""
msgid "Set Left and Right Borders Only"
msgstr "Csak a jobb és bal szegély beállítása"
-#. 6WwJ
#: border.src
msgctxt ""
"border.src\n"
@@ -7380,7 +6641,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders Only"
msgstr "Csak a fenti és lenti szegély beállítása"
-#. *BB2
#: border.src
msgctxt ""
"border.src\n"
@@ -7389,7 +6649,6 @@ msgctxt ""
msgid "Set Left Border Only"
msgstr "Csak a bal oldali szegély beállítása"
-#. [qV2
#: border.src
msgctxt ""
"border.src\n"
@@ -7398,7 +6657,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Fenti és lenti szegély és az összes belső vonal beállítása"
-#. ~x/;
#: border.src
msgctxt ""
"border.src\n"
@@ -7407,7 +6665,6 @@ msgctxt ""
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Jobb és bal szegély és az összes belső vonal beállítása"
-#. J{ud
#: border.src
msgctxt ""
"border.src\n"
@@ -7416,7 +6673,6 @@ msgctxt ""
msgid "No Shadow"
msgstr "Nincs árnyékolás"
-#. PbcA
#: border.src
msgctxt ""
"border.src\n"
@@ -7425,7 +6681,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Right"
msgstr "Árnyék jobb alsó irányba"
-#. fiV;
#: border.src
msgctxt ""
"border.src\n"
@@ -7434,7 +6689,6 @@ msgctxt ""
msgid "Cast Shadow to Top Right"
msgstr "Árnyék jobb felső irányba"
-#. Q!Ng
#: border.src
msgctxt ""
"border.src\n"
@@ -7443,7 +6697,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Left"
msgstr "Árnyék bal alsó irányba"
-#. _n^j
#: border.src
msgctxt ""
"border.src\n"
@@ -7452,7 +6705,6 @@ msgctxt ""
msgid "Cast Shadow to Top Left"
msgstr "Árnyék bal felső irányba"
-#. n`vD
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7462,7 +6714,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. -~ZG
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7472,7 +6723,6 @@ msgctxt ""
msgid "Position ~X"
msgstr "~X pozíció"
-#. R@*.
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7482,7 +6732,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr "~Y pozíció"
-#. wfoH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7492,7 +6741,6 @@ msgctxt ""
msgid "Base point"
msgstr "Alappont"
-#. Es_c
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7502,7 +6750,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. :.As
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7512,7 +6759,6 @@ msgctxt ""
msgid "Base point"
msgstr "Alappont"
-#. Xt|8
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7522,7 +6768,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. q^/k
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7532,7 +6777,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "S~zélesség"
-#. j^`5
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7542,7 +6786,6 @@ msgctxt ""
msgid "H~eight"
msgstr "~Magasság"
-#. O2k/
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7552,7 +6795,6 @@ msgctxt ""
msgid "Base point"
msgstr "Alappont"
-#. |`{p
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7562,7 +6804,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. j{C(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7572,7 +6813,6 @@ msgctxt ""
msgid "Base point"
msgstr "Alappont"
-#. ^MPq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7582,7 +6822,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr "~Rögzített méretarány"
-#. XQKj
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7592,7 +6831,6 @@ msgctxt ""
msgid "Protect"
msgstr "Védelem"
-#. LDZh
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7602,7 +6840,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. Qr=j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7612,7 +6849,6 @@ msgctxt ""
msgid "~Size"
msgstr "~Méret"
-#. ,)fg
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7622,7 +6858,6 @@ msgctxt ""
msgid "Adapt"
msgstr "Hozzáigazítás"
-#. 18bt
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7632,7 +6867,6 @@ msgctxt ""
msgid "~Fit width to text"
msgstr "~Szélesség igazítása a szöveghez"
-#. _6pH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7642,7 +6876,6 @@ msgctxt ""
msgid "Fit ~height to text"
msgstr "~Magasság igazítása a szöveghez"
-#. NcZW
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7652,7 +6885,6 @@ msgctxt ""
msgid "Anchor"
msgstr "Horgony"
-#. p@Sq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7662,7 +6894,6 @@ msgctxt ""
msgid "~Anchor"
msgstr "~Horgony"
-#. gzF1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7672,7 +6903,6 @@ msgctxt ""
msgid "To paragraph"
msgstr "Bekezdéshez"
-#. hHJC
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7682,7 +6912,6 @@ msgctxt ""
msgid "As character"
msgstr "Karakterként"
-#. PSai
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7692,7 +6921,6 @@ msgctxt ""
msgid "To page"
msgstr "Oldalhoz"
-#. yIcZ
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7702,7 +6930,6 @@ msgctxt ""
msgid "To frame"
msgstr "Kerethez"
-#. Ue[1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7712,7 +6939,6 @@ msgctxt ""
msgid "P~osition"
msgstr "P~ozíció"
-#. !FM]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7722,7 +6948,6 @@ msgctxt ""
msgid "From top"
msgstr "Felülről"
-#. e{\b
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7732,7 +6957,6 @@ msgctxt ""
msgid "Above"
msgstr "Felett"
-#. b/n(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7742,7 +6966,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középre"
-#. ED^R
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7752,7 +6975,6 @@ msgctxt ""
msgid "Below"
msgstr "Alatt"
-#. (l^+
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7762,7 +6984,6 @@ msgctxt ""
msgid "Top of character"
msgstr "Karakter teteje"
-#. arW=
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7772,7 +6993,6 @@ msgctxt ""
msgid "Center of character"
msgstr "Karakter közepe"
-#. +T?`
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7782,7 +7002,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr "Karakter alja"
-#. ^e}}
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7792,7 +7011,6 @@ msgctxt ""
msgid "Top of line"
msgstr "Sor teteje"
-#. $8m,
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7802,7 +7020,6 @@ msgctxt ""
msgid "Center of line"
msgstr "Sor közepe"
-#. s2aP
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7812,7 +7029,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr "Sor alja"
-#. nS.J
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7821,7 +7037,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozíció és méret"
-#. )IQS
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7831,7 +7046,6 @@ msgctxt ""
msgid "Pivot point"
msgstr "Forgatási pont"
-#. +77j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7841,7 +7055,6 @@ msgctxt ""
msgid "Position ~X"
msgstr "~X pozíció"
-#. )mec
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7851,7 +7064,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr "~Y pozíció"
-#. u`\N
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7861,7 +7073,6 @@ msgctxt ""
msgid "Default settings"
msgstr "Alapbeállítások"
-#. YF-T
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7871,7 +7082,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. UME]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7881,7 +7091,6 @@ msgctxt ""
msgid "Rotation point"
msgstr "Forgatás középpontja"
-#. j#M[
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7891,7 +7100,6 @@ msgctxt ""
msgid "Rotation angle"
msgstr "Forgatási szög"
-#. jrEA
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7901,7 +7109,6 @@ msgctxt ""
msgid "~Angle"
msgstr "S~zög"
-#. O^KI
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7911,7 +7118,6 @@ msgctxt ""
msgid "Default settings"
msgstr "Alapbeállítások"
-#. /j7F
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7921,7 +7127,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. )zS$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7931,7 +7136,6 @@ msgctxt ""
msgid "Rotation Angle"
msgstr "Forgatási szög"
-#. 3k$u
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7940,7 +7144,6 @@ msgctxt ""
msgid "Angle"
msgstr "Szög"
-#. XXwz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7950,7 +7153,6 @@ msgctxt ""
msgid "Corner radius"
msgstr "Sarok sugara"
-#. 3dk$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7960,7 +7162,6 @@ msgctxt ""
msgid "~Radius"
msgstr "~Sugár"
-#. #1R@
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7970,7 +7171,6 @@ msgctxt ""
msgid "Slant"
msgstr "Dőlt"
-#. raS]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7980,7 +7180,6 @@ msgctxt ""
msgid "~Angle"
msgstr "S~zög"
-#. ZwNz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7990,7 +7189,6 @@ msgctxt ""
msgid " degrees"
msgstr " fok"
-#. (tq)
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7999,7 +7197,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "Dőlés és sarok sugara"
-#. @R?d
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8008,7 +7205,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozíció és méret"
-#. m+f:
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8018,7 +7214,6 @@ msgctxt ""
msgid "Rotation"
msgstr "Elforgatás"
-#. 9TS\
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8028,7 +7223,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "Dőlés és sarok sugara"
-#. (C)n
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8037,7 +7231,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozíció és méret"
-#. F4#l
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8047,7 +7240,6 @@ msgctxt ""
msgid "Crop"
msgstr "Levágás"
-#. 18dG
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8057,7 +7249,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Balra"
-#. mvqk
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8067,7 +7258,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Jobbra"
-#. oa]v
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8077,7 +7267,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Felül"
-#. CA$2
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8087,7 +7276,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Alul"
-#. Xl2o
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8097,7 +7285,6 @@ msgctxt ""
msgid "Keep image si~ze"
msgstr "Abszolút ~méret megtartása"
-#. L?Pb
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8107,7 +7294,6 @@ msgctxt ""
msgid "Keep ~scale"
msgstr "~Arányok megtartása"
-#. FQ3(
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8117,7 +7303,6 @@ msgctxt ""
msgid "Scale"
msgstr "Méretezés"
-#. T,g[
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8127,7 +7312,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. [Rjf
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8137,7 +7321,6 @@ msgctxt ""
msgid "H~eight"
msgstr "~Magasság"
-#. ruSg
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8147,7 +7330,6 @@ msgctxt ""
msgid "Image size"
msgstr "Kép mérete"
-#. A-[r
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8157,7 +7339,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. s72f
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8167,7 +7348,6 @@ msgctxt ""
msgid "H~eight"
msgstr "~Magasság"
-#. UX0u
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8178,7 +7358,6 @@ msgid "~Original Size"
msgstr "~Eredeti méret"
#. PPI is pixel per inch, %1 is a number
-#. *HN@
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8187,7 +7366,6 @@ msgctxt ""
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
-#. L~e:
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8197,7 +7375,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. T/=p
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8207,7 +7384,6 @@ msgctxt ""
msgid "Line ~distance"
msgstr "Vonal ~távolsága"
-#. HuP%
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8217,7 +7393,6 @@ msgctxt ""
msgid "Guide ~overhang"
msgstr "Segédvonalak ~túlnyúlása"
-#. 4@kv
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8227,7 +7402,6 @@ msgctxt ""
msgid "~Guide distance"
msgstr "~Segédvonalak távolsága"
-#. ^Y\3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8237,7 +7411,6 @@ msgctxt ""
msgid "~Left guide"
msgstr "~Bal oldali segédvonal"
-#. Z/d!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8247,7 +7420,6 @@ msgctxt ""
msgid "~Right guide"
msgstr "~Jobb oldali segédvonal"
-#. J%hw
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8257,7 +7429,6 @@ msgctxt ""
msgid "Measure ~below object"
msgstr "Mérték az ~objektum alatt"
-#. \?3I
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8267,7 +7438,6 @@ msgctxt ""
msgid "Decimal places"
msgstr "Tizedesjegyek"
-#. pO,3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8277,7 +7447,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. Mhm!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8287,7 +7456,6 @@ msgctxt ""
msgid "~Text position"
msgstr "~Szövegpozíció"
-#. 9M%e
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8297,7 +7465,6 @@ msgctxt ""
msgid "~AutoVertical"
msgstr "~Automatikus függőleges elhelyezés"
-#. U,m6
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8307,7 +7474,6 @@ msgctxt ""
msgid "A~utoHorizontal"
msgstr "A~utomatikus vízszintes elhelyezés"
-#. sASP
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8317,7 +7483,6 @@ msgctxt ""
msgid "~Parallel to line"
msgstr "~Vonallal párhuzamosan"
-#. $Di1
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8327,7 +7492,6 @@ msgctxt ""
msgid "Show ~meas. units"
msgstr "~Mértékegység"
-#. 6DJ8
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8337,7 +7501,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. HT!4
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8346,7 +7509,6 @@ msgctxt ""
msgid "Dimensioning"
msgstr "Méretvonal"
-#. ;b7$
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8356,7 +7518,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. Bf8G
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8366,7 +7527,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. FLTc
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8376,7 +7536,6 @@ msgctxt ""
msgid "H~eight"
msgstr "~Magasság"
-#. c??#
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8386,7 +7545,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr "~Rögzített méretarány"
-#. lJ{^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8396,7 +7554,6 @@ msgctxt ""
msgid "Anchor"
msgstr "Horgony"
-#. $s[M
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8406,7 +7563,6 @@ msgctxt ""
msgid "To ~page"
msgstr "~Oldalhoz"
-#. Ogur
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8416,7 +7572,6 @@ msgctxt ""
msgid "To paragrap~h"
msgstr "~Bekezdéshez"
-#. (6,q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8426,7 +7581,6 @@ msgctxt ""
msgid "To cha~racter"
msgstr "~Karakterhez"
-#. Z#V^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8436,7 +7590,6 @@ msgctxt ""
msgid "~As character"
msgstr "Ka~rakterként"
-#. kPsZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8446,7 +7599,6 @@ msgctxt ""
msgid "To ~frame"
msgstr "~Keretre"
-#. E!fZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8456,7 +7608,6 @@ msgctxt ""
msgid "Protect"
msgstr "Védelem"
-#. .4T7
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8466,7 +7617,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. N6}0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8476,7 +7626,6 @@ msgctxt ""
msgid "~Size"
msgstr "~Méret"
-#. )8~0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8486,7 +7635,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. F/Xo
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8496,7 +7644,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "Ví~zszintes"
-#. f.o[
#: swpossizetabpage.src
#, fuzzy
msgctxt ""
@@ -8507,7 +7654,6 @@ msgctxt ""
msgid "b~y"
msgstr "mé~rték"
-#. H-[L
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8517,7 +7663,6 @@ msgctxt ""
msgid "~to"
msgstr "~cél"
-#. YCRC
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8527,7 +7672,6 @@ msgctxt ""
msgid "~Mirror on even pages"
msgstr "~Páros oldalakon tükrözés"
-#. NI9r
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8537,7 +7681,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "~Függőleges"
-#. FA+q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8547,7 +7690,6 @@ msgctxt ""
msgid "by"
msgstr "mérték"
-#. Q60h
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8557,7 +7699,6 @@ msgctxt ""
msgid "t~o"
msgstr "cé~l"
-#. nTd)
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8567,7 +7708,6 @@ msgctxt ""
msgid "Follow text flow"
msgstr "Szövegbeosztás követése"
-#. j~Hw
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8576,7 +7716,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozíció és méret"
-#. \~Gz
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8586,7 +7725,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Vízszintes"
-#. ,KGs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8596,7 +7734,6 @@ msgctxt ""
msgid "~None"
msgstr "~Nincs"
-#. 0]qv
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8606,7 +7743,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Balra"
-#. n_6%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8616,7 +7752,6 @@ msgctxt ""
msgid "~Center"
msgstr "~Középre"
-#. sfIs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8626,7 +7761,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Térköz"
-#. EB2X
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8636,7 +7770,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Jobbra"
-#. _@wT
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8646,7 +7779,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Függőleges"
-#. jGF%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8656,7 +7788,6 @@ msgctxt ""
msgid "N~one"
msgstr "Nin~cs"
-#. 1/;R
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8666,7 +7797,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Fel"
-#. 4_W6
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8676,7 +7806,6 @@ msgctxt ""
msgid "C~enter"
msgstr "~Középre"
-#. aMx.
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8686,7 +7815,6 @@ msgctxt ""
msgid "S~pacing"
msgstr "Té~rköz"
-#. U-A9
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8696,7 +7824,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Le"
-#. 2Lu}
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8705,7 +7832,6 @@ msgctxt ""
msgid "Distribution"
msgstr "Eloszlás"
-#. 8@$\
#: align.src
msgctxt ""
"align.src\n"
@@ -8715,7 +7841,6 @@ msgctxt ""
msgid "Text alignment"
msgstr "Szövegigazítás"
-#. C+eC
#: align.src
msgctxt ""
"align.src\n"
@@ -8725,7 +7850,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "Ví~zszintes"
-#. XZp4
#: align.src
msgctxt ""
"align.src\n"
@@ -8735,7 +7859,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapbeállítások"
-#. c(al
#: align.src
msgctxt ""
"align.src\n"
@@ -8745,7 +7868,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. SqI!
#: align.src
msgctxt ""
"align.src\n"
@@ -8755,7 +7877,6 @@ msgctxt ""
msgid "Center"
msgstr "Középre"
-#. 0J*Q
#: align.src
msgctxt ""
"align.src\n"
@@ -8765,7 +7886,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobbra"
-#. v04T
#: align.src
msgctxt ""
"align.src\n"
@@ -8775,7 +7895,6 @@ msgctxt ""
msgid "Justified"
msgstr "Sorkizárt"
-#. ^gMh
#: align.src
msgctxt ""
"align.src\n"
@@ -8785,7 +7904,6 @@ msgctxt ""
msgid "Filled"
msgstr "Kitöltött"
-#. oh4s
#: align.src
msgctxt ""
"align.src\n"
@@ -8795,7 +7913,6 @@ msgctxt ""
msgid "Distributed"
msgstr "Elosztott"
-#. zgG^
#: align.src
msgctxt ""
"align.src\n"
@@ -8805,7 +7922,6 @@ msgctxt ""
msgid "I~ndent"
msgstr "Be~húzás"
-#. eOO.
#: align.src
msgctxt ""
"align.src\n"
@@ -8815,7 +7931,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "~Függőleges"
-#. Xag:
#: align.src
msgctxt ""
"align.src\n"
@@ -8825,7 +7940,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapbeállítások"
-#. ;#Aq
#: align.src
msgctxt ""
"align.src\n"
@@ -8835,7 +7949,6 @@ msgctxt ""
msgid "Top"
msgstr "Fel"
-#. i+n%
#: align.src
msgctxt ""
"align.src\n"
@@ -8845,7 +7958,6 @@ msgctxt ""
msgid "Middle"
msgstr "Középre"
-#. !]9-
#: align.src
msgctxt ""
"align.src\n"
@@ -8855,7 +7967,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Le"
-#. -01E
#: align.src
msgctxt ""
"align.src\n"
@@ -8865,7 +7976,6 @@ msgctxt ""
msgid "Justified"
msgstr "Sorkizárt"
-#. mTAR
#: align.src
msgctxt ""
"align.src\n"
@@ -8875,7 +7985,6 @@ msgctxt ""
msgid "Distributed"
msgstr "Elosztott"
-#. VUn^
#: align.src
msgctxt ""
"align.src\n"
@@ -8885,7 +7994,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Szöveg iránya"
-#. {9pT
#: align.src
msgctxt ""
"align.src\n"
@@ -8895,7 +8003,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "~Függőlegesen halmozott"
-#. Mj;\
#: align.src
msgctxt ""
"align.src\n"
@@ -8905,7 +8012,6 @@ msgctxt ""
msgid "De~grees"
msgstr "F~ok"
-#. -bmx
#: align.src
msgctxt ""
"align.src\n"
@@ -8915,7 +8021,6 @@ msgctxt ""
msgid "Re~ference edge"
msgstr "Ala~pél"
-#. G-fc
#: align.src
msgctxt ""
"align.src\n"
@@ -8925,7 +8030,6 @@ msgctxt ""
msgid "Asian layout ~mode"
msgstr "Ázsiai tördelés ~mód"
-#. Q$PC
#: align.src
msgctxt ""
"align.src\n"
@@ -8935,7 +8039,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. eiS^
#: align.src
msgctxt ""
"align.src\n"
@@ -8945,7 +8048,6 @@ msgctxt ""
msgid "~Wrap text automatically"
msgstr "~Automatikus szövegtördelés"
-#. ~58)
#: align.src
msgctxt ""
"align.src\n"
@@ -8955,7 +8057,6 @@ msgctxt ""
msgid "Hyphenation ~active"
msgstr "Elválasztás ~aktív"
-#. rJ[X
#: align.src
msgctxt ""
"align.src\n"
@@ -8965,7 +8066,6 @@ msgctxt ""
msgid "~Shrink to fit cell size"
msgstr "~Lekicsinyítve, hogy beférjen"
-#. jKGh
#: align.src
msgctxt ""
"align.src\n"
@@ -8975,7 +8075,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Szöveg~irány"
-#. $RvI
#: align.src
msgctxt ""
"align.src\n"
@@ -8985,7 +8084,6 @@ msgctxt ""
msgid "Text Extension From Lower Cell Border"
msgstr "Szöveg kiterjesztése az alsó cellakerettől"
-#. Bsa~
#: align.src
msgctxt ""
"align.src\n"
@@ -8995,7 +8093,6 @@ msgctxt ""
msgid "Text Extension From Upper Cell Border"
msgstr "Szöveg kiterjesztése a felső cellakerettől"
-#. ?pg9
#: align.src
msgctxt ""
"align.src\n"
@@ -9005,7 +8102,6 @@ msgctxt ""
msgid "Text Extension Inside Cell"
msgstr "Szöveg kiterjesztése a cellán belül"
-#. G63q
#: align.src
msgctxt ""
"align.src\n"
@@ -9014,7 +8110,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. 1XZu
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9023,7 +8118,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "Balról jobbra"
-#. @.,U
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9032,7 +8126,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "Jobbról balra"
-#. B3w1
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9041,7 +8134,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "Szülőobjektum beállításainak használata"
-#. y_lb
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9050,7 +8142,6 @@ msgctxt ""
msgid "Left-to-right (horizontal)"
msgstr "Balról jobbra (vízszintes)"
-#. f6OC
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9059,7 +8150,6 @@ msgctxt ""
msgid "Right-to-left (horizontal)"
msgstr "Jobbról balra (vízszintes)"
-#. 0Bn*
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9068,7 +8158,6 @@ msgctxt ""
msgid "Right-to-left (vertical)"
msgstr "Jobbról balra (függőleges)"
-#. s3_Q
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9077,7 +8166,6 @@ msgctxt ""
msgid "Left-to-right (vertical)"
msgstr "Balról jobbra (függőleges)"
-#. 0!5}
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9087,7 +8175,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. s:zK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9097,7 +8184,6 @@ msgctxt ""
msgid "Fit wi~dth to text"
msgstr "~Szélesség igazítása a szöveghez"
-#. ;m5h
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9107,7 +8193,6 @@ msgctxt ""
msgid "Fit h~eight to text"
msgstr "M~agasság igazítása a szöveghez"
-#. D.[+
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9117,7 +8202,6 @@ msgctxt ""
msgid "~Fit to frame"
msgstr "~Igazítás a kerethez"
-#. 1{_R
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9127,7 +8211,6 @@ msgctxt ""
msgid "~Adjust to contour"
msgstr "~Igazítás a körvonalhoz"
-#. yw5g
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9137,7 +8220,6 @@ msgctxt ""
msgid "~Word wrap text in shape"
msgstr "~Szöveg tördelése az alakzatba"
-#. J1[T
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9147,7 +8229,6 @@ msgctxt ""
msgid "~Resize shape to fit text"
msgstr "~Alakzat átméretezése, hogy kiférjen"
-#. GKRS
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9157,7 +8238,6 @@ msgctxt ""
msgid "Spacing to borders"
msgstr "Távolság a szegélyektől"
-#. /Vk7
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9167,7 +8247,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Balra"
-#. XPNI
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9177,7 +8256,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Jobbra"
-#. pQk#
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9187,7 +8265,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Felül"
-#. Bj$F
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9197,7 +8274,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Alul"
-#. 1*/l
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9207,7 +8283,6 @@ msgctxt ""
msgid "Text anchor"
msgstr "Szöveghorgonypont"
-#. j;7?
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9217,7 +8292,6 @@ msgctxt ""
msgid "Full ~width"
msgstr "Teljes ~szélesség"
-#. %oGK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9226,7 +8300,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. h^Y0
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9236,7 +8309,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Típus"
-#. ^*_l
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9246,7 +8318,6 @@ msgctxt ""
msgid "Line skew"
msgstr "Vonal ferdesége"
-#. p^,B
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9256,7 +8327,6 @@ msgctxt ""
msgid "Line ~1"
msgstr "~1. vonal"
-#. HmZG
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9266,7 +8336,6 @@ msgctxt ""
msgid "Line ~2"
msgstr "~2. vonal"
-#. _ImA
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9276,7 +8345,6 @@ msgctxt ""
msgid "Line ~3"
msgstr "~3. vonal"
-#. +?hF
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9286,7 +8354,6 @@ msgctxt ""
msgid "Line spacing"
msgstr "Sorköz"
-#. Qk%$
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9296,7 +8363,6 @@ msgctxt ""
msgid "~Begin horizontal"
msgstr "~Vízszintes kezdet"
-#. 9;sg
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9306,7 +8372,6 @@ msgctxt ""
msgid "End ~horizontal"
msgstr "Ví~zszintes vég"
-#. H?@d
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9316,7 +8381,6 @@ msgctxt ""
msgid "Begin ~vertical"
msgstr "~Függőleges kezdet"
-#. B8~L
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9326,7 +8390,6 @@ msgctxt ""
msgid "~End vertical"
msgstr "Fü~ggőleges vég"
-#. rg\6
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9336,7 +8399,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. G./+
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9346,7 +8408,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. EiaR
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9355,7 +8416,6 @@ msgctxt ""
msgid "Connector"
msgstr "Összekötő"
-#. Ib+e
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9365,7 +8425,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Térköz"
-#. K`^?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9375,7 +8434,6 @@ msgctxt ""
msgid "~Angle"
msgstr "S~zög"
-#. ~^@J
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9385,7 +8443,6 @@ msgctxt ""
msgid "Free"
msgstr "Szabad"
-#. ;$)X
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9395,7 +8452,6 @@ msgctxt ""
msgid "30 Degrees"
msgstr "30 fok"
-#. +mfh
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9405,7 +8461,6 @@ msgctxt ""
msgid "45 Degrees"
msgstr "45 fok"
-#. gaT3
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9415,7 +8470,6 @@ msgctxt ""
msgid "60 Degrees"
msgstr "60 fok"
-#. eHvk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9425,7 +8479,6 @@ msgctxt ""
msgid "90 Degrees"
msgstr "90 fok"
-#. W.Q7
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9435,7 +8488,6 @@ msgctxt ""
msgid "~Extension"
msgstr "~Kiterjesztés"
-#. Jc5Q
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9445,7 +8497,6 @@ msgctxt ""
msgid "Optimal"
msgstr "Optimális"
-#. BM[a
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9455,7 +8506,6 @@ msgctxt ""
msgid "From top"
msgstr "Felülről"
-#. L,ff
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9465,7 +8515,6 @@ msgctxt ""
msgid "From left"
msgstr "Balról"
-#. ;rcV
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9475,7 +8524,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Vízszintes"
-#. ^NyI
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9485,7 +8533,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Függőleges"
-#. 3ZTk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9495,7 +8542,6 @@ msgctxt ""
msgid "~By"
msgstr "á~ltal"
-#. y_yp
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9505,7 +8551,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Pozíció"
-#. Hz4o
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9515,7 +8560,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Hosszúság"
-#. `[\;
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9525,7 +8569,6 @@ msgctxt ""
msgid "~Optimal"
msgstr "~Optimális"
-#. =%x?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9535,7 +8578,6 @@ msgctxt ""
msgid "Straight Line"
msgstr "Egyenes vonal"
-#. kW,`
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9545,7 +8587,6 @@ msgctxt ""
msgid "Angled Line"
msgstr "Töröttvonal"
-#. %V_/
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9555,7 +8596,6 @@ msgctxt ""
msgid "Angled Connector Line"
msgstr "Összekötő töröttvonal"
-#. V,^$
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9565,7 +8605,6 @@ msgctxt ""
msgid "Double-angled line"
msgstr "Kétszeresen törött vonal"
-#. Bc\h
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9575,7 +8614,6 @@ msgctxt ""
msgid "Top;Middle;Bottom"
msgstr "Teteje;Közepe;Alja"
-#. xt/V
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9585,7 +8623,6 @@ msgctxt ""
msgid "Left;Middle;Right"
msgstr "Balra;Középre;Jobbra"
-#. #;mU
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9594,7 +8631,6 @@ msgctxt ""
msgid "Callouts"
msgstr "Ábrafeliratok"
-#. Y|g\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9603,7 +8639,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozíció és méret"
-#. VrQo
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9613,7 +8648,6 @@ msgctxt ""
msgid "Callout"
msgstr "Ábrafelirat"
-#. Wia\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9622,7 +8656,6 @@ msgctxt ""
msgid "Callouts"
msgstr "Ábrafeliratok"
-#. ;}xQ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9632,7 +8665,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. h~0G
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9642,7 +8674,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. ^+n6
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9652,7 +8683,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Balra zárt"
-#. 1h{,
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9662,7 +8692,6 @@ msgctxt ""
msgid "Righ~t"
msgstr "~Jobbra zárt"
-#. J.@7
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9672,7 +8701,6 @@ msgctxt ""
msgid "C~entered"
msgstr "~Középre igazított"
-#. fA1r
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9682,7 +8710,6 @@ msgctxt ""
msgid "Deci~mal"
msgstr "Tize~desjelhez igazított"
-#. MFNj
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9692,7 +8719,6 @@ msgctxt ""
msgid "~Character"
msgstr "Ka~rakter"
-#. 0KSL
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9702,7 +8728,6 @@ msgctxt ""
msgid "Fill character"
msgstr "Kitöltő karakter"
-#. Hn3e
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9712,7 +8737,6 @@ msgctxt ""
msgid "N~one"
msgstr "Nin~cs"
-#. LLSZ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9722,7 +8746,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. E]XT
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9732,7 +8755,6 @@ msgctxt ""
msgid "~New"
msgstr "Ú~j"
-#. v5s\
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9742,7 +8764,6 @@ msgctxt ""
msgid "Delete ~All"
msgstr "Mindent ~töröl"
-#. ls9o
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9752,7 +8773,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Törlés"
-#. ~Q-s
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9762,7 +8782,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr "~Balra/fent"
-#. c~t_
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9772,7 +8791,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr "~Jobbra/lent"
-#. w-%8
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9782,7 +8800,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. 94_f
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
diff --git a/source/hu/cui/uiconfig/ui.po b/source/hu/cui/uiconfig/ui.po
index 0fdf2072d02..2ebf7e87f19 100644
--- a/source/hu/cui/uiconfig/ui.po
+++ b/source/hu/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"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. fzF8
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Insert OLE Object"
msgstr "OLE-objektum beszúrása"
-#. ^M4J
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -36,7 +34,6 @@ msgctxt ""
msgid "Create new"
msgstr "Új létre~hozása"
-#. bOEw
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -47,7 +44,6 @@ msgctxt ""
msgid "Create from file"
msgstr "~Létrehozás fájlból"
-#. \KD3
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -57,7 +53,6 @@ msgctxt ""
msgid "Object type"
msgstr "Objektum típusa"
-#. phV%
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -68,7 +63,6 @@ msgctxt ""
msgid "Search ..."
msgstr "Keresés..."
-#. jAF*
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -79,7 +73,6 @@ msgctxt ""
msgid "Link to file"
msgstr "~Csatolás fájlhoz"
-#. w:,;
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -89,7 +82,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. HX-2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -99,7 +91,6 @@ msgctxt ""
msgid "Superscript"
msgstr "Felső index"
-#. 9rL|
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -109,7 +100,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normál"
-#. 3IJk
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -119,7 +109,6 @@ msgctxt ""
msgid "Subscript"
msgstr "Alsó index"
-#. pp6o
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -130,7 +119,6 @@ msgctxt ""
msgid "Raise/lower by"
msgstr "~Emelés/süllyesztés"
-#. 45,!
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -140,7 +128,6 @@ msgctxt ""
msgid "Relative font size"
msgstr "Relatív betűméret"
-#. 5Vhf
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -151,7 +138,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. H~EV
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -162,7 +148,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. _c{-
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -172,7 +157,6 @@ msgctxt ""
msgid "0 degrees"
msgstr "0 fok"
-#. bp*2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "90 degrees"
msgstr "90 fok"
-#. =%Q*
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -192,7 +175,6 @@ msgctxt ""
msgid "270 degrees"
msgstr "270 fok"
-#. CKMx
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -202,7 +184,6 @@ msgctxt ""
msgid "Fit to line"
msgstr "Igazítás a sorhoz"
-#. W.Y0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -213,7 +194,6 @@ msgctxt ""
msgid "Scale width"
msgstr "S~zélesség változtatása"
-#. 20.0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -224,7 +204,6 @@ msgctxt ""
msgid "Rotation / Scaling"
msgstr "Forgatás és méretezés"
-#. j5E0
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -234,7 +213,6 @@ msgctxt ""
msgid "Rotation"
msgstr "Elforgatás"
-#. 1|Si
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -244,7 +222,6 @@ msgctxt ""
msgid "by"
msgstr "mérték"
-#. @lw^
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -255,7 +232,6 @@ msgctxt ""
msgid "Pair kerning"
msgstr "~Betűpár alávágása"
-#. 8hG)
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -265,7 +241,6 @@ msgctxt ""
msgid "Spacing"
msgstr "Térköz"
-#. mRP9
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -276,7 +251,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. x2;W
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -287,7 +261,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. YKj+
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -297,7 +270,6 @@ msgctxt ""
msgid "Expanded"
msgstr "Ritkított"
-#. GJ83
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -307,7 +279,6 @@ msgctxt ""
msgid "Condensed"
msgstr "Sűrített"
-#. T{W/
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -318,7 +289,6 @@ msgctxt ""
msgid "Write in double lines"
msgstr "~Duplasoros írásmód"
-#. Fdn%
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -328,7 +298,6 @@ msgctxt ""
msgid "Double-lined"
msgstr "Duplasoros"
-#. IO4p
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -339,7 +308,6 @@ msgctxt ""
msgid "Initial character"
msgstr "~Kezdőbetű"
-#. |fLC
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -350,7 +318,6 @@ msgctxt ""
msgid "Final character"
msgstr "~Záró karakter"
-#. QAfs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -360,7 +327,6 @@ msgctxt ""
msgid "Enclosing character"
msgstr "Körbezáró karakter"
-#. wYR*
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -371,7 +337,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. ;Y8`
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -382,7 +347,6 @@ msgctxt ""
msgid "(None)"
msgstr "(Nincs)"
-#. =eLM
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -392,7 +356,6 @@ msgctxt ""
msgid "("
msgstr ""
-#. T4x(
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -402,7 +365,6 @@ msgctxt ""
msgid "["
msgstr ""
-#. ZMJ^
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -412,7 +374,6 @@ msgctxt ""
msgid "<"
msgstr ""
-#. .)fW
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -422,7 +383,6 @@ msgctxt ""
msgid "{"
msgstr ""
-#. 8{1%
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -433,7 +393,6 @@ msgctxt ""
msgid "Other Characters..."
msgstr "Egyéb karakterek..."
-#. IRms
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -444,7 +403,6 @@ msgctxt ""
msgid "(None)"
msgstr "(Nincs)"
-#. chCs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -454,7 +412,6 @@ msgctxt ""
msgid ")"
msgstr ""
-#. EPeh
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -464,7 +421,6 @@ msgctxt ""
msgid "]"
msgstr ""
-#. Fy=F
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -474,7 +430,6 @@ msgctxt ""
msgid ">"
msgstr ""
-#. i(WD
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -484,7 +439,6 @@ msgctxt ""
msgid "}"
msgstr ""
-#. @{Yt
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -495,7 +449,6 @@ msgctxt ""
msgid "Other Characters..."
msgstr "Egyéb karakterek..."
-#. 0LTV
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -505,7 +458,6 @@ msgctxt ""
msgid "%MACROLANG Macros"
msgstr "%MACROLANG-makrók"
-#. 3NqI
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -515,7 +467,6 @@ msgctxt ""
msgid "Macros"
msgstr "Makrók"
-#. Lo_D
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -525,7 +476,6 @@ msgctxt ""
msgid "Zoom & View Layout"
msgstr "Nagyítás és képernyőn elrendezés"
-#. Q!;e
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -535,7 +485,6 @@ msgctxt ""
msgid "Optimal"
msgstr "Optimális"
-#. 9q=w
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -546,7 +495,6 @@ msgctxt ""
msgid "Fit width and height"
msgstr "~Szélesség és magasság igazítása"
-#. ]~JW
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -557,7 +505,6 @@ msgctxt ""
msgid "Fit width"
msgstr "Betűszélesség"
-#. _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 "Változó"
-#. s\dE
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -587,7 +532,6 @@ msgctxt ""
msgid "Zoom factor"
msgstr "Nagyítás mértéke"
-#. fMR4
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -598,7 +542,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. k$e(
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -609,7 +552,6 @@ msgctxt ""
msgid "Single page"
msgstr "~Egyetlen oldal"
-#. )rgt
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -619,7 +561,6 @@ msgctxt ""
msgid "Columns"
msgstr "Hasábok"
-#. @~{`
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -630,7 +571,6 @@ msgctxt ""
msgid "Book mode"
msgstr "~Könyv mód"
-#. l30c
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -640,7 +580,6 @@ msgctxt ""
msgid "View layout"
msgstr "Képernyőn elrendezés"
-#. ]e:q
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -650,7 +589,6 @@ msgctxt ""
msgid "Macro Selector"
msgstr "Makróválasztó"
-#. hM|8
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -660,7 +598,6 @@ msgctxt ""
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "Válassza ki azt a programkönyvtárat, amely a kívánt makrót tartalmazza. Ezek után válassza ki a makrót a „Makró neve” listából."
-#. ^VMl
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -670,7 +607,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 "Eszköztárhoz történő parancshozzáadáshoz válasszon ki egy kategóriát, majd a parancsot. A parancsokat húzza át Testreszabás párbeszédablak Eszköztárak lapjának Parancsok listájába."
-#. l-*E
#: macroselectordialog.ui
#, fuzzy
msgctxt ""
@@ -681,7 +617,6 @@ msgctxt ""
msgid "Library"
msgstr "~Programkönyvtár"
-#. Xd;?
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -691,7 +626,6 @@ msgctxt ""
msgid "Category"
msgstr "Kategória"
-#. (.AE
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -701,7 +635,6 @@ msgctxt ""
msgid "Macro name"
msgstr "Makró neve"
-#. hft9
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -711,7 +644,6 @@ msgctxt ""
msgid "Commands"
msgstr "Parancsok"
-#. P\TL
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -721,7 +653,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. ONGJ
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -731,7 +662,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr "Szókincstár"
-#. ijR5
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -741,7 +671,6 @@ msgctxt ""
msgid "Replace"
msgstr "Csere"
-#. 8$!3
#: thesaurus.ui
#, fuzzy
msgctxt ""
@@ -752,7 +681,6 @@ msgctxt ""
msgid "Current word"
msgstr "~Aktuális szó"
-#. #AXW
#: thesaurus.ui
#, fuzzy
msgctxt ""
@@ -763,7 +691,6 @@ msgctxt ""
msgid "Alternatives"
msgstr "~Szinonimák"
-#. Q+)g
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -773,7 +700,6 @@ msgctxt ""
msgid "Replace with"
msgstr "Csere erre"
-#. q#i6
#: thesaurus.ui
#, fuzzy
msgctxt ""
@@ -784,7 +710,6 @@ msgctxt ""
msgid "label"
msgstr "Címke"
-#. `7#G
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -794,7 +719,6 @@ msgctxt ""
msgid "Font color"
msgstr "Betűszín"
-#. 5W_D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -804,7 +728,6 @@ msgctxt ""
msgid "Effects"
msgstr "Hatások"
-#. iE1D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -814,7 +737,6 @@ msgctxt ""
msgid "Relief"
msgstr "Kiemelés"
-#. dKiS
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -825,7 +747,6 @@ msgctxt ""
msgid "Overlining"
msgstr "~Felülvonás"
-#. nB`/
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -835,7 +756,6 @@ msgctxt ""
msgid "Strikethrough"
msgstr "Áthúzott"
-#. VjM$
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -846,7 +766,6 @@ msgctxt ""
msgid "Underlining"
msgstr "~Aláhúzás"
-#. 6O?$
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -857,7 +776,6 @@ msgctxt ""
msgid "Overline color"
msgstr "F~elülvonás színe"
-#. aUBk
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -868,7 +786,6 @@ msgctxt ""
msgid "Underline Color"
msgstr "A~láhúzás színe"
-#. ;H;`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -878,7 +795,6 @@ msgctxt ""
msgid "Outline"
msgstr "Vázlat"
-#. dhPb
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -888,7 +804,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Árnyékolt"
-#. X29q
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -898,7 +813,6 @@ msgctxt ""
msgid "Blinking"
msgstr "Villogás"
-#. Kwf+
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -908,7 +822,6 @@ msgctxt ""
msgid "Hidden"
msgstr "Rejtett"
-#. ~\DY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -918,7 +831,6 @@ msgctxt ""
msgid "Individual words"
msgstr "Különálló szavak"
-#. Go^Z
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -929,7 +841,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. v:D]
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -939,7 +850,6 @@ msgctxt ""
msgid "Emphasis mark"
msgstr "Hangsúlyjel"
-#. Mo4/
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -950,7 +860,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. 0@E?
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -961,7 +870,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. +fQ_
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -972,7 +880,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(nincs)"
-#. )1Tc
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -982,7 +889,6 @@ msgctxt ""
msgid "Capitals"
msgstr "Nagybetűs"
-#. bPMC
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -992,7 +898,6 @@ msgctxt ""
msgid "Lowercase"
msgstr "Kisbetű"
-#. #KbY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1002,7 +907,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. 45Au
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1012,7 +916,6 @@ msgctxt ""
msgid "Small capitals"
msgstr "Kiskapitális"
-#. Fk%]
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1023,7 +926,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(nincs)"
-#. k/N[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1033,7 +935,6 @@ msgctxt ""
msgid "Embossed"
msgstr "Kiemelt"
-#. U}V)
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1043,7 +944,6 @@ msgctxt ""
msgid "Engraved"
msgstr "Bevésett"
-#. c.(\
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1054,7 +954,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(nincs)"
-#. M+l@
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1064,7 +963,6 @@ msgctxt ""
msgid "Dot"
msgstr "Pont"
-#. +Q/}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1074,7 +972,6 @@ msgctxt ""
msgid "Circle"
msgstr "Kör alakú összecsukódás"
-#. {3?|
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1084,7 +981,6 @@ msgctxt ""
msgid "Disc"
msgstr "Lemez"
-#. wbE-
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1094,7 +990,6 @@ msgctxt ""
msgid "Accent"
msgstr "Ékezet"
-#. l)a}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1104,7 +999,6 @@ msgctxt ""
msgid "Above text"
msgstr "Szöveg felett"
-#. G%TQ
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1114,7 +1008,6 @@ msgctxt ""
msgid "Below text"
msgstr "Szöveg alatt"
-#. @8.a
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1125,7 +1018,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(nincs)"
-#. hbpz
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1136,7 +1028,6 @@ msgctxt ""
msgid "Single"
msgstr "Egyszeres"
-#. VDcX
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1147,7 +1038,6 @@ msgctxt ""
msgid "Double"
msgstr "Dupla"
-#. T/+;
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1158,7 +1048,6 @@ msgctxt ""
msgid "Bold"
msgstr "Félkövér"
-#. x8;w
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1168,7 +1057,6 @@ msgctxt ""
msgid "With /"
msgstr "/ jellel"
-#. ?.Os
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1178,7 +1066,6 @@ msgctxt ""
msgid "With X"
msgstr "X-szel"
-#. z5Hc
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1189,7 +1076,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(nincs)"
-#. 5Wt,
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1200,7 +1086,6 @@ msgctxt ""
msgid "Single"
msgstr "Egyszeres"
-#. N1$+
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1211,7 +1096,6 @@ msgctxt ""
msgid "Double"
msgstr "Dupla"
-#. ,XR1
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1222,7 +1106,6 @@ msgctxt ""
msgid "Bold"
msgstr "Félkövér"
-#. LM@`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1232,7 +1115,6 @@ msgctxt ""
msgid "Dotted"
msgstr "Pontozott"
-#. o.wf
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1242,7 +1124,6 @@ msgctxt ""
msgid "Dotted (Bold)"
msgstr "Pontozott (vastag)"
-#. pR1M
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1252,7 +1133,6 @@ msgctxt ""
msgid "Dash"
msgstr "Szaggatott"
-#. i:6S
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1262,7 +1142,6 @@ msgctxt ""
msgid "Dash (Bold)"
msgstr "Szaggatott (vastag)"
-#. ]l,[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1272,7 +1151,6 @@ msgctxt ""
msgid "Long Dash"
msgstr "Hosszú szaggatott"
-#. bGo_
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1282,7 +1160,6 @@ msgctxt ""
msgid "Long Dash (Bold)"
msgstr "Hosszú szaggatott (vastag)"
-#. 4uf2
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1292,7 +1169,6 @@ msgctxt ""
msgid "Dot Dash"
msgstr "Pont-vonás"
-#. JN,A
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1302,7 +1178,6 @@ msgctxt ""
msgid "Dot Dash (Bold)"
msgstr "Pont-vonás (vastag)"
-#. [$g.
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1312,7 +1187,6 @@ msgctxt ""
msgid "Dot Dot Dash"
msgstr "Pont-pont-vonás"
-#. cccV
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1322,7 +1196,6 @@ msgctxt ""
msgid "Dot Dot Dash (Bold)"
msgstr "Pont-pont-vonás (vastag)"
-#. FPu3
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1332,7 +1205,6 @@ msgctxt ""
msgid "Wave"
msgstr "Hullámzás"
-#. h8:*
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1342,7 +1214,6 @@ msgctxt ""
msgid "Wave (Bold)"
msgstr "Hullámos (vastag)"
-#. ME7o
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1352,7 +1223,6 @@ msgctxt ""
msgid "Double Wave"
msgstr "Dupla hullámos"
-#. @.{F
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1362,7 +1232,6 @@ msgctxt ""
msgid "Insert Row"
msgstr "Sor beszúrása"
-#. se3Q
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1373,7 +1242,6 @@ msgctxt ""
msgid "_Number"
msgstr "Szám"
-#. I_7r
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1383,7 +1251,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. +H}G
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1394,7 +1261,6 @@ msgctxt ""
msgid "_Before"
msgstr "Előtte"
-#. maCG
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1405,7 +1271,6 @@ msgctxt ""
msgid "A_fter"
msgstr "Utána"
-#. Z97Q
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1416,7 +1281,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. K5U8
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1426,7 +1290,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Elválasztás"
-#. byra
#: hyphenate.ui
#, fuzzy
msgctxt ""
@@ -1437,7 +1300,6 @@ msgctxt ""
msgid "Hyphenate All"
msgstr "~Elválasztás mindenhol"
-#. QJ{Y
#: hyphenate.ui
#, fuzzy
msgctxt ""
@@ -1448,7 +1310,6 @@ msgctxt ""
msgid "Word"
msgstr "Szavak száma"
-#. PnrN
#: hyphenate.ui
#, fuzzy
msgctxt ""
@@ -1459,7 +1320,6 @@ msgctxt ""
msgid "Hyphenate"
msgstr "E~lválasztás"
-#. :p?D
#: hyphenate.ui
#, fuzzy
msgctxt ""
@@ -1470,7 +1330,6 @@ msgctxt ""
msgid "Skip"
msgstr "~Kihagyás"
-#. zGJ.
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1481,7 +1340,6 @@ msgctxt ""
msgid "Family "
msgstr "Család"
-#. @^8,
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1492,7 +1350,6 @@ msgctxt ""
msgid "Style"
msgstr "Stílus"
-#. cjw{
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1503,7 +1360,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. fz$6
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1514,7 +1370,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. _6aN
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1525,7 +1380,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. bkLe
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1536,7 +1390,6 @@ msgctxt ""
msgid "Family "
msgstr "Család"
-#. `Hcq
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1547,7 +1400,6 @@ msgctxt ""
msgid "Style"
msgstr "Stílus"
-#. tDAb
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1558,7 +1410,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. cQ#i
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1569,7 +1420,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. eI/w
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1579,7 +1429,6 @@ msgctxt ""
msgid "Western text font"
msgstr "Nyugati szövegbetű"
-#. f?%c
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1590,7 +1439,6 @@ msgctxt ""
msgid "Family "
msgstr "Család"
-#. ![e0
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1601,7 +1449,6 @@ msgctxt ""
msgid "Style"
msgstr "Stílus"
-#. [96A
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1612,7 +1459,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. `AqW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1623,7 +1469,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. A%/9
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1633,7 +1478,6 @@ msgctxt ""
msgid "Asian text font"
msgstr "Ázsiai szövegbetű"
-#. nP!Z
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1644,7 +1488,6 @@ msgctxt ""
msgid "Family "
msgstr "Család"
-#. 9[0`
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1655,7 +1498,6 @@ msgctxt ""
msgid "Style"
msgstr "Stílus"
-#. efyW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1666,7 +1508,6 @@ msgctxt ""
msgid "Size"
msgstr "Méret"
-#. q[V0
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1677,7 +1518,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. DoEn
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1687,7 +1527,6 @@ msgctxt ""
msgid "CTL font"
msgstr "CTL-betűkészlet"
-#. MZZM
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1698,7 +1537,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. M2ds
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1708,7 +1546,6 @@ msgctxt ""
msgid "Floating Frame Properties"
msgstr "Úszó keret tulajdonságai"
-#. x_rI
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1718,7 +1555,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. 9cbs
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1728,7 +1564,6 @@ msgctxt ""
msgid "Contents"
msgstr "Tartalom"
-#. 1,k{
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1739,7 +1574,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Tallózás..."
-#. Fdl9
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1750,7 +1584,6 @@ msgctxt ""
msgid "On"
msgstr "Be"
-#. aMs|
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1761,7 +1594,6 @@ msgctxt ""
msgid "Off"
msgstr "Ki"
-#. P,tS
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1772,7 +1604,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. Va^(
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1782,7 +1613,6 @@ msgctxt ""
msgid "Scroll bar"
msgstr "Görgetősáv"
-#. Zd7=
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1793,7 +1623,6 @@ msgctxt ""
msgid "On"
msgstr "Be"
-#. 6;Lm
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1804,7 +1633,6 @@ msgctxt ""
msgid "Off"
msgstr "Ki"
-#. TiIq
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1814,7 +1642,6 @@ msgctxt ""
msgid "Border"
msgstr "Szegély"
-#. Neq]
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1824,7 +1651,6 @@ msgctxt ""
msgid "Width"
msgstr "Szélesség"
-#. QVdm
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1834,7 +1660,6 @@ msgctxt ""
msgid "Height"
msgstr "Magasság"
-#. ^+2e
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1845,7 +1670,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. r7lA
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1856,7 +1680,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. eJ[8
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1866,7 +1689,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr "Belső margók"
-#. 3;XK
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1876,7 +1698,6 @@ msgctxt ""
msgid "Insert Plug-in"
msgstr "Bővítőmodul beszúrása"
-#. ]O7?
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1887,7 +1708,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Tallózás..."
-#. !+?B
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1898,7 +1718,6 @@ msgctxt ""
msgid "File/URL"
msgstr "Fájl / URL"
-#. ^)sT
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1909,7 +1728,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. e^,=
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1919,7 +1737,6 @@ msgctxt ""
msgid "Special Characters"
msgstr "Különleges karakterek"
-#. (EUz
#: specialcharacters.ui
#, fuzzy
msgctxt ""
@@ -1930,7 +1747,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. UkPh
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1940,7 +1756,6 @@ msgctxt ""
msgid "Subset"
msgstr "Részhalmaz"
-#. ?@d/
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1950,7 +1765,6 @@ msgctxt ""
msgid "U+0020(32)"
msgstr ""
-#. b4V[
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
diff --git a/source/hu/dbaccess/source/core/resource.po b/source/hu/dbaccess/source/core/resource.po
index cd7e1008452..81ba1629840 100644
--- a/source/hu/dbaccess/source/core/resource.po
+++ b/source/hu/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-09 09:41+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Kísérlet a következő tábla megnyitására: $name$."
-#. tr!y
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "No connection could be established."
msgstr "Nem sikerült létrehozni a kapcsolatot."
-#. 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$: a tábla már létezik, de ki van szűrve, ezért nem látható."
-#. 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 "Nincs írási joga a konfigurációs adatra, amelyen az objektum alapul."
-#. 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 "A külső adatforráshoz való csatlakozás nem sikerült. Ismeretlen hiba történt. Az illesztőprogram valószínűleg hibás."
-#. 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 "A külső adatforráshoz való csatlakozás nem sikerült. Nem található SDBC-illesztőprogram a megadott URL-hez."
-#. %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 "A külső adatforráshoz való csatlakozás nem sikerült. Nem sikerült betölteni az SDBC-illesztőprogramkezelőt."
-#. C0.?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Form"
msgstr "Űrlap"
-#. 8u\$
#: strings.src
msgctxt ""
"strings.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Report"
msgstr "Jelentés"
-#. 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 "Az adatforrás nem lett mentve. Használja az XStorable interfészt az adatforrás mentéséhez."
-#. B3.M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -118,7 +107,6 @@ msgstr ""
"A megadott parancs nem egy SELECT.\n"
"Csak lekérdezések engedélyezettek."
-#. gkPZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -127,7 +115,6 @@ msgctxt ""
msgid "No values were modified."
msgstr "Nem változott egy érték sem."
-#. 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 "Az értékeket nem sikerült beszúrni. A ResultSet nem támogatja az XRowUpdate interfészt."
-#. =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 "Az értékeket nem sikerült beszúrni. A ResultSet nem támogatja az XResultSetUpdate interfészt."
-#. 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 "Az értékeket nem sikerült módosítani egy hiányzó feltétel miatt."
-#. dJMS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "The adding of columns is not supported."
msgstr "Oszlopok hozzáadása nem támogatott."
-#. `dr(
#: strings.src
msgctxt ""
"strings.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "The dropping of columns is not supported."
msgstr "Oszlopok törlése nem támogatott."
-#. !\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 "A WHERE feltételt nem sikerült létrehozni az elsődleges kulcshoz."
-#. DmYo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -190,7 +171,6 @@ msgctxt ""
msgid "The column does not support the property '%value'."
msgstr "Az oszlop nem támogatja a(z) „%value” tulajdonságot."
-#. hROM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -199,7 +179,6 @@ msgctxt ""
msgid "The column is not searchable!"
msgstr "Az oszlop nem kereshető!"
-#. 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 "Az oszlopok értéke nem Sequence<sal_Int8> típusú."
-#. dmJ^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -217,7 +195,6 @@ msgctxt ""
msgid "The column is not valid."
msgstr "Az oszlop nem érvényes."
-#. GKQn
#: strings.src
msgctxt ""
"strings.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "The column '%name' must be visible as a column."
msgstr "A(z) „%name” oszlop látható kell legyen oszlopként."
-#. ChFg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -235,7 +211,6 @@ msgctxt ""
msgid "The interface XQueriesSupplier is not available."
msgstr "A XQueriesSupplier interfész nem érhető el."
-#. `Vl,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -244,7 +219,6 @@ msgctxt ""
msgid "The driver does not support this function."
msgstr "Az illesztőprogram nem támogatja ezt a funkciót."
-#. b9mq
#: strings.src
msgctxt ""
"strings.src\n"
@@ -253,7 +227,6 @@ msgctxt ""
msgid "An 'absolute(0)' call is not allowed."
msgstr "Az „absolute(0)” hívás nem megengedett."
-#. #7.J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -262,7 +235,6 @@ msgctxt ""
msgid "Relative positioning is not allowed in this state."
msgstr "Relatív pozicionálás nem megengedett ebben az állapotban."
-#. 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 "A sort nem lehet frissíteni, ha a ResultSet az utolsó sor utánra van pozicionálva."
-#. 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 "Nem lehet új sort beilleszteni, ha a ResultSet nincs előbb a beszúrandó sorra helyezve."
-#. w:c%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -289,7 +259,6 @@ msgctxt ""
msgid "A row cannot be modified in this state"
msgstr "A sor nem módosítható ebben az állapotban."
-#. 2.*I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -298,7 +267,6 @@ msgctxt ""
msgid "A row cannot be deleted in this state."
msgstr "A sor nem törölhető ebben az állapotban."
-#. E(eo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -307,7 +275,6 @@ msgctxt ""
msgid "The driver does not support table renaming."
msgstr "Az illesztőprogram nem támogatja a tábla átnevezését."
-#. s7Q2
#: strings.src
msgctxt ""
"strings.src\n"
@@ -316,7 +283,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions."
msgstr "Az illesztőprogram nem támogatja az oszlop leírásának módosítását."
-#. #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 "Az illesztőprogram nem támogatja az oszlop leírásának módosítását a név megváltoztatása által."
-#. 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 "Az illesztőprogram nem támogatja az oszlop leírásának módosítását az index megváltoztatása által."
-#. dSi`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -343,7 +307,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr "A következő fájl nem létezik: „$file$”"
-#. fMB5
#: strings.src
msgctxt ""
"strings.src\n"
@@ -352,7 +315,6 @@ msgctxt ""
msgid "There exists no table named \"$table$\"."
msgstr "Nem létezik „$table$” nevű tábla."
-#. x6hr
#: strings.src
msgctxt ""
"strings.src\n"
@@ -361,7 +323,6 @@ msgctxt ""
msgid "There exists no query named \"$table$\"."
msgstr "Nem létezik „$table$” nevű lekérdezés."
-#. 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 "Vannak olyan táblák az adatbázisban, amelyek neve ütközik létező lekérdezések nevével. A lekérdezések és táblák teljes értékű használata érdekében válasszon egyedi neveket."
-#. +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 "Az SQL-parancs nem ír le egy eredményhalmazt."
-#. 1um:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -403,7 +361,6 @@ msgctxt ""
msgid "The name must not be empty."
msgstr "A név nem lehet üres."
-#. aW[i
#: strings.src
msgctxt ""
"strings.src\n"
@@ -412,7 +369,6 @@ msgctxt ""
msgid "The container cannot contain NULL objects."
msgstr "A konténer nem tartalmazhat NULL objektumokat."
-#. aG.\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -421,7 +377,6 @@ msgctxt ""
msgid "There already is an object with the given name."
msgstr "Az adott nevű objektum már létezik."
-#. WVfc
#: strings.src
msgctxt ""
"strings.src\n"
@@ -430,7 +385,6 @@ msgctxt ""
msgid "This object cannot be part of this container."
msgstr "Ez az objektum nem lehet része ennek a konténernek."
-#. $n`c
#: strings.src
msgctxt ""
"strings.src\n"
@@ -439,7 +393,6 @@ msgctxt ""
msgid "The object already is, with a different name, part of the container."
msgstr "Az objektum egy másik néven már része a konténernek."
-#. L^Ws
#: strings.src
msgctxt ""
"strings.src\n"
@@ -448,7 +401,6 @@ msgctxt ""
msgid "Unable to find the document '$name$'."
msgstr "Nem található a dokumentum: „$name$”."
-#. UTT6
#: strings.src
msgctxt ""
"strings.src\n"
@@ -461,7 +413,6 @@ msgstr ""
"A dokumentum nem menthető a következő helyre: $location$.\n"
"$message$"
-#. WcZo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -474,7 +425,6 @@ msgstr ""
"Hiba a(z) „$name$” adatforrás elérésénél:\n"
"$error$"
-#. c/c)
#: strings.src
msgctxt ""
"strings.src\n"
@@ -483,7 +433,6 @@ msgctxt ""
msgid "There exists no folder named \"$folder$\"."
msgstr "Nem létezik „$folder$” nevű mappa."
-#. p6+_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -492,7 +441,6 @@ msgctxt ""
msgid "Cannot delete the before-first or after-last row."
msgstr "Nem lehet törölni az első sor előtt vagy az utolsó sor után."
-#. 3S;+
#: strings.src
msgctxt ""
"strings.src\n"
@@ -501,7 +449,6 @@ msgctxt ""
msgid "Cannot delete the insert-row."
msgstr "Nem lehet törölni a beszúrt sort."
-#. ncD}
#: strings.src
msgctxt ""
"strings.src\n"
@@ -510,7 +457,6 @@ msgctxt ""
msgid "Result set is read only."
msgstr "Ez eredményhalmaz csak olvasható."
-#. {d*:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -519,7 +465,6 @@ msgctxt ""
msgid "DELETE privilege not available."
msgstr "Nem érhető el a DELETE jogosultság."
-#. AaXP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -528,7 +473,6 @@ msgctxt ""
msgid "Current row is already deleted."
msgstr "Az aktuális sor már törölve van."
-#. T}{9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -537,7 +481,6 @@ msgctxt ""
msgid "Current row could not be updated."
msgstr "Nem sikerült frissíteni az aktuális sort."
-#. p--J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -546,7 +489,6 @@ msgctxt ""
msgid "INSERT privilege not available."
msgstr "Nem érhető el az INSERT jogosultság."
-#. IbfB
#: strings.src
msgctxt ""
"strings.src\n"
@@ -555,7 +497,6 @@ msgctxt ""
msgid "Internal error: no statement object provided by the database driver."
msgstr "Belső hiba: adatbázis-illesztőprogram nem biztosít statement objektumot."
-#. YpbE
#: strings.src
msgctxt ""
"strings.src\n"
@@ -564,7 +505,6 @@ msgctxt ""
msgid "Expression1"
msgstr "Kifejezés1"
-#. ~6oS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -573,7 +513,6 @@ msgctxt ""
msgid "No SQL command was provided."
msgstr "Nincs megadva SQL-parancs."
-#. ,*fj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -582,7 +521,6 @@ msgctxt ""
msgid "Invalid column index."
msgstr "Érvénytelen oszlopindex."
-#. */,\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -591,7 +529,6 @@ msgctxt ""
msgid "Invalid cursor state."
msgstr "Érvénytelen mutatóállapot."
-#. xfeZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -600,7 +537,6 @@ msgctxt ""
msgid "The cursor points to before the first or after the last row."
msgstr "A mutató az első sor elé vagy az utolsó sor után mutat."
-#. /|WO
#: strings.src
msgctxt ""
"strings.src\n"
@@ -609,7 +545,6 @@ msgctxt ""
msgid "The rows before the first and after the last row don't have a bookmark."
msgstr "Az első sor előtti és az utolsó sor utáni soroknak nincs könyvjelzőjük."
-#. nl.%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -618,7 +553,6 @@ msgctxt ""
msgid "The current row is deleted, and thus doesn't have a bookmark."
msgstr "Az aktuális sor törölve lett, ezért nincs könyvjelzője."
-#. st[S
#: strings.src
msgctxt ""
"strings.src\n"
@@ -627,7 +561,6 @@ msgctxt ""
msgid "Embedding of database documents is not supported."
msgstr "Az adatbázis-dokumentumok beágyazása nem támogatott."
-#. D257
#: strings.src
msgctxt ""
"strings.src\n"
@@ -636,7 +569,6 @@ msgctxt ""
msgid "A connection for the following URL was requested \"$name$\"."
msgstr "A következő URL-hez való kapcsolódáshoz érkezett kérés: „$name$”."
-#. UZxP
#: strings.src
msgctxt ""
"strings.src\n"
diff --git a/source/hu/dbaccess/source/ext/macromigration.po b/source/hu/dbaccess/source/ext/macromigration.po
index c3eb0094722..ceff7168706 100644
--- a/source/hu/dbaccess/source/ext/macromigration.po
+++ b/source/hu/dbaccess/source/ext/macromigration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:42+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "Előkészítés"
-#. ;GCY
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Backup Document"
msgstr "Dokumentum biztonsági mentése"
-#. wO:K
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Migrate"
msgstr "Áttelepítés"
-#. x3s]
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Summary"
msgstr "Összegzés"
-#. O8E~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Database Document Macro Migration"
msgstr "Adatbázis-dokumentum makróinak áttelepítése"
-#. URJi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Welcome to the Database Macro Migration Wizard"
msgstr "Üdvözli az Adatbázismakró-áttelepítő tündér"
-#. rNob
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -98,7 +91,6 @@ msgstr ""
"\n"
"Az áttelepítés elindítása előtt minden űrlapot, jelentést, lekérdezést és táblázatot be kell zárni. Ehhez kattintson a „Tovább” gombra."
-#. [*kI
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -108,7 +100,6 @@ msgctxt ""
msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
msgstr "Nem lehetett minden objektumot bezárni. Zárja be azokat kézzel, és indítsa újra a tündért."
-#. ys;s
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -118,7 +109,6 @@ msgctxt ""
msgid "Backup your Document"
msgstr "Dokumentum biztonsági mentése"
-#. l.o/
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -128,7 +118,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 "Annak érdekében, hogy visszatérhessen az áttelepítés előtti állapotra, a rendszer az Ön által megadott helyre biztonsági mentést készít az adatbázis-dokumentumról. A tündér által végrehajtott változtatások az eredeti dokumentumot érintik, a dokumentum biztonsági mentése érintetlen marad."
-#. /T7e
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -138,7 +127,6 @@ msgctxt ""
msgid "Save To:"
msgstr "Mentés helye:"
-#. k[Sg
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -148,7 +136,6 @@ msgctxt ""
msgid "Browse ..."
msgstr "Tallózás..."
-#. sT2J
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -158,7 +145,6 @@ msgctxt ""
msgid "Press 'Next' to save a copy of your document, and to begin the migration."
msgstr "A dokumentum biztonsági mentéséhez és az áttelepítés elindításához kattintson a „Tovább” gombra."
-#. BCGi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -168,7 +154,6 @@ msgctxt ""
msgid "Migration Progress"
msgstr "Áttelepítés folyamata"
-#. g[FI
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -178,7 +163,6 @@ msgctxt ""
msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
msgstr "Az adatbázis-dokumentum $forms$ űrlapot és $reports$ jelentést tartalmaz, amelyek jelenleg feldolgozás alatt állnak:"
-#. Tp]j
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -188,7 +172,6 @@ msgctxt ""
msgid "Current object:"
msgstr "Jelenlegi objektum:"
-#. P5HM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -198,7 +181,6 @@ msgctxt ""
msgid "Current progress:"
msgstr "Aktuális feldolgozottság:"
-#. zf(u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -208,7 +190,6 @@ msgctxt ""
msgid "Overall progress:"
msgstr "Teljes feldolgozottság:"
-#. =+\*
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -218,7 +199,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr "$current$ / $overall$ dokumentum"
-#. OWE0
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -228,7 +208,6 @@ msgctxt ""
msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
msgstr "A program minden űrlapot és jelentést sikeresen feldolgozott. A részletes összegzés megtekintéséhez kattintson a „Tovább” gombra."
-#. IGos
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -238,7 +217,6 @@ msgctxt ""
msgid "Summary"
msgstr "Összegzés"
-#. f%B9
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -248,7 +226,6 @@ msgctxt ""
msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
msgstr "Az áttelepítés sikeres volt. A dokumentumon végrehajtott műveletek listája alább található."
-#. UOYO
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -259,7 +236,6 @@ msgid "The migration was not successful. Examine the migration log below for det
msgstr "Az áttelepítés nem volt sikeres. A részleteket az áttelepítési naplóban találja alább."
#. This refers to a form document inside a database document.
-#. ,!c1
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -269,7 +245,6 @@ msgid "Form '$name$'"
msgstr "„$name$” űrlap"
#. This refers to a report document inside a database document.
-#. _dZ#
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -278,7 +253,6 @@ msgctxt ""
msgid "Report '$name$'"
msgstr "„$name$” jelentés"
-#. adV]
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -287,7 +261,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr "$current$ / $overall$ dokumentum"
-#. dS]Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -296,7 +269,6 @@ msgctxt ""
msgid "Database Document"
msgstr "Adatbázis-dokumentum"
-#. x,#Z
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -305,7 +277,6 @@ msgctxt ""
msgid "saved copy to $location$"
msgstr "másolat mentve ide: $location$"
-#. ONwp
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -314,7 +285,6 @@ msgctxt ""
msgid "migrated $type$ library '$old$' to '$new$'"
msgstr "$type$ könyvtár áttelepítve innen: $old$ ide: $new$"
-#. (x0u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -323,7 +293,6 @@ msgctxt ""
msgid "$type$ library '$library$'"
msgstr "$type$ könyvtár „$library$”"
-#. ro*Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -332,7 +301,6 @@ msgctxt ""
msgid "migrating libraries ..."
msgstr "könyvtárak áttelepítése ..."
-#. MH9T
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -341,7 +309,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic"
msgstr "%PRODUCTNAME Basic"
-#. L95~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -350,7 +317,6 @@ msgctxt ""
msgid "JavaScript"
msgstr "JavaScript"
-#. K_(k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -359,7 +325,6 @@ msgctxt ""
msgid "BeanShell"
msgstr "BeanShell"
-#. z5Zc
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -368,7 +333,6 @@ msgctxt ""
msgid "Java"
msgstr "Java"
-#. g~Jm
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -377,7 +341,6 @@ msgctxt ""
msgid "Python"
msgstr "Python"
-#. JK8L
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -386,7 +349,6 @@ msgctxt ""
msgid "dialog"
msgstr "párbeszédablak"
-#. {huM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "Error(s)"
msgstr "Hibák"
-#. lP[k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "Warnings"
msgstr "Figyelmeztetések"
-#. RJnt
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -413,7 +373,6 @@ msgctxt ""
msgid "caught exception:"
msgstr "elkapott kivétel:"
-#. JmHf
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -422,7 +381,6 @@ msgctxt ""
msgid "You need to choose a backup location other than the document location itself."
msgstr "A dokumentum jelenlegi helyétől eltérő helyet kell választania a biztonsági mentéshez."
-#. `o=?
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -431,7 +389,6 @@ msgctxt ""
msgid "Invalid number of initialization arguments. Expected 1."
msgstr "Érvénytelen számú inicializációs argumentum. 1-nek kellett volna lennie."
-#. Q7eK
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -440,7 +397,6 @@ msgctxt ""
msgid "No database document found in the initialization arguments."
msgstr "Nincs adatbázis-dokumentum az inicializációs argumentumok között."
-#. SZ+3
#: macromigration.src
msgctxt ""
"macromigration.src\n"
diff --git a/source/hu/dbaccess/source/sdbtools/resource.po b/source/hu/dbaccess/source/sdbtools/resource.po
index 93c35693abe..db37062025c 100644
--- a/source/hu/dbaccess/source/sdbtools/resource.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Nem adhatja ugyanazt a nevet a táblának és a lekérdezésnek. Használjon olyan nevet, amely még nem szerepel lekérdezés vagy tábla neveként."
-#. gyh%
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Table"
msgstr "Tábla"
-#. /LI:
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Query"
msgstr "Lekérdezés"
-#. 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 "A megadott kapcsolat nem érvényes lekérdezés- és/vagy táblaszállító."
-#. mGK#
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The given object is no table object."
msgstr "A megadott objektum nem táblaobjektum."
-#. 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 "Érvénytelen összetételtípus – az értéknek a com.sun.star.sdb.tools.CompositionType-ból kell származnia."
-#. _8X^
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
diff --git a/source/hu/dbaccess/source/ui/app.po b/source/hu/dbaccess/source/ui/app.po
index 11e565eb7c9..3594ac0675b 100644
--- a/source/hu/dbaccess/source/ui/app.po
+++ b/source/hu/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-10-08 11:48+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Űrlap létrehozása a tervezőnézetben..."
-#. 5}mf
#: app.src
msgctxt ""
"app.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Use Wizard to Create Form..."
msgstr "Tündér használata űrlap létrehozásához..."
-#. ^I:2
#: app.src
msgctxt ""
"app.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Use Wizard to Create Report..."
msgstr "Tündér használata jelentés létrehozásához..."
-#. 5%!)
#: app.src
msgctxt ""
"app.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Create Report in Design View..."
msgstr "Jelentés létrehozása a tervezőnézetben..."
-#. QMc.
#: app.src
msgctxt ""
"app.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Create Query in Design View..."
msgstr "Lekérdezés létrehozása a tervezőnézetben..."
-#. wQLG
#: app.src
msgctxt ""
"app.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Create Query in SQL View..."
msgstr "Lekérdezés létrehozása az SQL-nézetben..."
-#. 0j=5
#: app.src
msgctxt ""
"app.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Use Wizard to Create Query..."
msgstr "Tündér használata lekérdezés létrehozásához..."
-#. c+m^
#: app.src
msgctxt ""
"app.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Create Table in Design View..."
msgstr "Tábla létrehozása a tervezőnézetben..."
-#. 8_x!
#: app.src
msgctxt ""
"app.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Use Wizard to Create Table..."
msgstr "Tündér használata tábla létrehozására..."
-#. U-|Y
#: app.src
msgctxt ""
"app.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Create View..."
msgstr "Nézet létrehozása..."
-#. 52Z[
#: app.src
msgctxt ""
"app.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Forms"
msgstr "Űrlapok"
-#. il@k
#: app.src
msgctxt ""
"app.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Reports"
msgstr "Jelentések"
-#. gSSQ
#: app.src
msgctxt ""
"app.src\n"
@@ -133,7 +120,6 @@ msgctxt ""
msgid "Form..."
msgstr "Űrlap..."
-#. #,}Q
#: app.src
msgctxt ""
"app.src\n"
@@ -143,7 +129,6 @@ msgctxt ""
msgid "Report..."
msgstr "Jelentés..."
-#. ]kPd
#: app.src
msgctxt ""
"app.src\n"
@@ -153,7 +138,6 @@ msgctxt ""
msgid "View (Simple)..."
msgstr "Nézet (egyszerű)..."
-#. =nyK
#: app.src
msgctxt ""
"app.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "Paste Special..."
msgstr "Irányított beillesztés..."
-#. qc.B
#: app.src
msgctxt ""
"app.src\n"
@@ -173,7 +156,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. TJf$
#: app.src
msgctxt ""
"app.src\n"
@@ -183,7 +165,6 @@ msgctxt ""
msgid "Rename"
msgstr "Átnevezés"
-#. M[`t
#: app.src
msgctxt ""
"app.src\n"
@@ -193,7 +174,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. Dxkr
#: app.src
msgctxt ""
"app.src\n"
@@ -203,7 +183,6 @@ msgctxt ""
msgid "Edit in SQL View..."
msgstr "Szerkesztés SQL-nézetben..."
-#. O)+e
#: app.src
msgctxt ""
"app.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Open"
msgstr "Megnyitás"
-#. p;88
#: app.src
msgctxt ""
"app.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Create as View"
msgstr "Létrehozás nézetként"
-#. Ci\=
#: app.src
msgctxt ""
"app.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "Form Wizard..."
msgstr "Űrlaptündér..."
-#. 5qX\
#: app.src
msgctxt ""
"app.src\n"
@@ -243,7 +219,6 @@ msgctxt ""
msgid "Report..."
msgstr "Jelentés..."
-#. iu:i
#: app.src
msgctxt ""
"app.src\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr "Jelentéstündér..."
-#. 0Q3,
#: app.src
msgctxt ""
"app.src\n"
@@ -263,7 +237,6 @@ msgctxt ""
msgid "Select All"
msgstr "Mindent kijelöl"
-#. #W3E
#: app.src
msgctxt ""
"app.src\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Tulajdonságok..."
-#. l*B:
#: app.src
msgctxt ""
"app.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Connection Type..."
msgstr "Kapcsolat típusa..."
-#. 1Avo
#: app.src
msgctxt ""
"app.src\n"
@@ -293,7 +264,6 @@ msgctxt ""
msgid "Advanced Settings..."
msgstr "Haladó beállítások..."
-#. i3v)
#: app.src
msgctxt ""
"app.src\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "~Database"
msgstr "~Adatbázis"
-#. /bmi
#: app.src
msgctxt ""
"app.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "Do you want to delete the data source '%1'?"
msgstr "Szeretné törölni az adatforrást: „%1”?"
-#. #e4D
#: app.src
msgctxt ""
"app.src\n"
@@ -321,7 +289,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base"
msgstr " - %PRODUCTNAME Base"
-#. Y@N!
#: app.src
msgctxt ""
"app.src\n"
@@ -330,7 +297,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a report."
msgstr "Ez a tündér végigvezet a jelentés létrehozásához szükséges lépéseken."
-#. R:%2
#: app.src
msgctxt ""
"app.src\n"
@@ -339,7 +305,6 @@ msgctxt ""
msgid "Create a form by specifying the record source, controls, and control properties."
msgstr "Űrlap létrehozása a rekordforrás, a vezérlőelemek és a vezérlőelemek tulajdonságainak megadásával."
-#. /eW?
#: app.src
msgctxt ""
"app.src\n"
@@ -348,7 +313,6 @@ msgctxt ""
msgid "Create a report by specifying the record source, controls, and control properties."
msgstr "A rekord forrására, vezérlőkre és vezérlő tulajdonságokra specifikus jelentés készítése."
-#. /#er
#: app.src
msgctxt ""
"app.src\n"
@@ -357,7 +321,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a form."
msgstr "Ez a tündér végigvezet az űrlap létrehozásához szükséges lépéseken."
-#. #+2[
#: app.src
msgctxt ""
"app.src\n"
@@ -366,7 +329,6 @@ msgctxt ""
msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
msgstr "Lekérdezés létrehozása a szűrők, bemeneti táblák, mezőnevek, valamint a rendezési és csoportosítási szempontok megadásával."
-#. `P.h
#: app.src
msgctxt ""
"app.src\n"
@@ -375,7 +337,6 @@ msgctxt ""
msgid "Create a query entering an SQL statement directly."
msgstr "Lekérdezés létrehozása az SQL-utasítás közvetlen beírásával."
-#. x`M;
#: app.src
msgctxt ""
"app.src\n"
@@ -384,7 +345,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a query."
msgstr "Ez a tündér végigvezet a lekérdezés létrehozásához szükséges lépéseken."
-#. muUk
#: app.src
msgctxt ""
"app.src\n"
@@ -393,7 +353,6 @@ msgctxt ""
msgid "Create a table by specifying the field names and properties, as well as the data types."
msgstr "Tábla létrehozása a mezőnevek és tulajdonságok, valamint az adattípusok megadásával."
-#. ,A)/
#: app.src
msgctxt ""
"app.src\n"
@@ -402,7 +361,6 @@ msgctxt ""
msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
msgstr "Válasszon egyet az üzleti és személyes mintatáblák közül, amelyet testreszabhat a tábla létrehozásához."
-#. 1}hB
#: app.src
msgctxt ""
"app.src\n"
@@ -411,7 +369,6 @@ msgctxt ""
msgid "Create a view by specifying the tables and field names you would like to have visible."
msgstr "Nézet létrehozása a látni kívánt táblák és mezőnevek megadásával."
-#. uecI
#: app.src
msgctxt ""
"app.src\n"
@@ -420,7 +377,6 @@ msgctxt ""
msgid "Opens the view wizard"
msgstr "A nézettündér megnyitása"
-#. 8!I9
#: app.src
msgctxt ""
"app.src\n"
@@ -429,7 +385,6 @@ msgctxt ""
msgid "Database"
msgstr "Adatbázis"
-#. +oK?
#: app.src
msgctxt ""
"app.src\n"
@@ -438,7 +393,6 @@ msgctxt ""
msgid "Tasks"
msgstr "Feladatok"
-#. ]#8r
#: app.src
msgctxt ""
"app.src\n"
@@ -447,7 +401,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. QP~x
#: app.src
msgctxt ""
"app.src\n"
@@ -456,7 +409,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. 4Q8\
#: app.src
msgctxt ""
"app.src\n"
@@ -465,7 +417,6 @@ msgctxt ""
msgid "Disable Preview"
msgstr "Előnézet tiltása"
-#. IV?f
#: app.src
msgctxt ""
"app.src\n"
@@ -478,7 +429,6 @@ msgstr ""
"Az adatbázis megváltozott.\n"
"Szeretné menteni a változásokat?"
-#. E6t=
#: app.src
msgctxt ""
"app.src\n"
@@ -495,7 +445,6 @@ msgstr ""
"\n"
"Szeretné most bezárni az összes dokumentumot?"
-#. -xWK
#: app.src
msgctxt ""
"app.src\n"
@@ -505,7 +454,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. r.2f
#: app.src
msgctxt ""
"app.src\n"
@@ -515,7 +463,6 @@ msgctxt ""
msgid "Document Information"
msgstr "Dokumentum adatai"
-#. 8rn:
#: app.src
msgctxt ""
"app.src\n"
@@ -525,7 +472,6 @@ msgctxt ""
msgid "Document"
msgstr "Dokumentum"
-#. \5_4
#: app.src
msgctxt ""
"app.src\n"
@@ -534,7 +480,6 @@ msgctxt ""
msgid "Form"
msgstr "Űrlap"
-#. Bc1t
#: app.src
msgctxt ""
"app.src\n"
@@ -543,7 +488,6 @@ msgctxt ""
msgid "Report"
msgstr "Jelentés"
-#. .j2e
#: app.src
msgctxt ""
"app.src\n"
@@ -552,7 +496,6 @@ msgctxt ""
msgid "F~orm name"
msgstr "~Űrlap neve"
-#. ,lje
#: app.src
msgctxt ""
"app.src\n"
@@ -561,7 +504,6 @@ msgctxt ""
msgid "~Report name"
msgstr "~Jelentés neve"
-#. g:.c
#: app.src
msgctxt ""
"app.src\n"
@@ -570,7 +512,6 @@ msgctxt ""
msgid "F~older name"
msgstr "M~appa neve"
-#. LM}N
#: app.src
msgctxt ""
"app.src\n"
@@ -579,7 +520,6 @@ msgctxt ""
msgid "The document contains forms or reports with embedded macros."
msgstr "A dokumentum beágyazott makrókkal rendelkező űrlapokat vagy jelentéseket tartalmaz."
-#. *a0E
#: app.src
msgctxt ""
"app.src\n"
@@ -598,7 +538,6 @@ msgstr ""
"\n"
"Ne feledje, hogy addig nem tud makrókat beágyazni az adatbázis-dokumentumba, amíg ezt az áttelepítést nem végezte el. "
-#. IG;w
#: app.src
msgctxt ""
"app.src\n"
@@ -607,7 +546,6 @@ msgctxt ""
msgid "Embedded database"
msgstr "Beágyazott adatbázis"
-#. 9PgD
#: app.src
msgctxt ""
"app.src\n"
@@ -616,7 +554,6 @@ msgctxt ""
msgid "You cannot select different categories."
msgstr "Nem választhat különböző kategóriákat."
-#. !1~2
#: app.src
msgctxt ""
"app.src\n"
diff --git a/source/hu/dbaccess/source/ui/browser.po b/source/hu/dbaccess/source/ui/browser.po
index 93b1db6ee91..9034ac70061 100644
--- a/source/hu/dbaccess/source/ui/browser.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "~Oszlopformátum..."
-#. S*3^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Copy Column D~escription"
msgstr "~Oszlopleírás másolása"
-#. OrWW
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Table Format..."
msgstr "Táblaformátum..."
-#. _*Kp
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Row Height..."
msgstr "Sormagasság..."
-#. tU(+
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Undo: Data Input"
msgstr "Visszavonás: Adatbevitel"
-#. -/O(
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Save current record"
msgstr "Aktuális rekord mentése"
-#. P*@v
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "Query #"
msgstr "# lekérdezés"
-#. 0*?p
#: sbagrid.src
#, fuzzy
msgctxt ""
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Table #"
msgstr "# tábla"
-#. }ltF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "View #"
msgstr "# nézet"
-#. G~7/
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "The name \"#\" already exists."
msgstr "A következő név már létezik: „#”."
-#. 9=7^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "No matching column names were found."
msgstr "Nem található megfelelő oszlopnév."
-#. bg|4
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "An error occurred. Do you want to continue copying?"
msgstr "Hiba történt. Folytatja a másolást?"
-#. jJ/o
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "Data source table view"
msgstr "Adatforrás táblanézete"
-#. ^TTF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "Shows the selected table or query."
msgstr "A kijelölt táblák vagy lekérdezések megjelenítése"
-#. Y2P,
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -159,7 +144,6 @@ msgstr ""
"A jelenlegi rekord megváltozott.\n"
"Szeretné menteni?"
-#. kn*1
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Do you want to delete the selected data?"
msgstr "Biztosan törli a kijelölt adatokat?"
-#. =Rsz
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "(filtered)"
msgstr "(szűrt)"
-#. rB\v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr "Hiba a rendezési feltételek beállításában"
-#. Pp/v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr "Hiba a szűrési feltételek beállításában"
-#. rQ1R
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "Connection lost"
msgstr "A kapcsolat megszakadt"
-#. H6bx
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Queries"
msgstr "Lekérdezések"
-#. MA(8
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "Tables"
msgstr "Táblák"
-#. =r`]
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Edit ~Database File..."
msgstr "~Adatbázisfájl szerkesztése..."
-#. REP(
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Registered databases ..."
msgstr "Regisztrált adatbázisok..."
-#. HoF`
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "Disco~nnect"
msgstr "Kapcsolat bo~ntása"
-#. )aE+
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr "Törlés jóváhagyása"
-#. T!@5
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Do you want to delete the table '%1'?"
msgstr "Biztosan törli a következő táblát: „%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 "A lekérdezés már létezik. Szeretné törölni?"
-#. 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 "Az adatbázis-kapcsolat megszakadt. Újra szeretne csatlakozni?"
-#. huTN
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "Warnings encountered"
msgstr "Kapott figyelmeztetések"
-#. 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 "A táblák letöltése alatt figyelmeztetéseket küldött az adatbázis-kapcsolat."
-#. ,R(F
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "Connecting to \"$name$\" ..."
msgstr "Kapcsolódás a következőhöz: „$name$” ..."
-#. VeAp
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -321,7 +288,6 @@ msgctxt ""
msgid "Loading query $name$ ..."
msgstr "$name$ lekérdezés betöltése..."
-#. %?6?
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -330,7 +296,6 @@ msgctxt ""
msgid "Loading table $name$ ..."
msgstr "$name$ tábla betöltése..."
-#. J,jS
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -339,7 +304,6 @@ msgctxt ""
msgid "No table format could be found."
msgstr "Semmilyen táblaformátum nem található."
-#. 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 "Nem hozható létre kapcsolat a következő adatforrással: „$name$”."
-#. 3J7q
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
diff --git a/source/hu/dbaccess/source/ui/control.po b/source/hu/dbaccess/source/ui/control.po
index 93597830365..5e5484e56d4 100644
--- a/source/hu/dbaccess/source/ui/control.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Tábla neve"
-#. NWcr
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert data"
msgstr "Adat beszúrása"
-#. #X=!
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Delete data"
msgstr "Adatok törlése"
-#. Eu.9
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Modify data"
msgstr "Adatok módosítása"
-#. 4KTe
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Alter structure"
msgstr "Struktúra módosítása"
-#. 0L=`
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Read data"
msgstr "Adatok olvasása"
-#. IwWY
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Modify references"
msgstr "Hivatkozások módosítása"
-#. %!#X
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Drop structure"
msgstr "Struktúra törlése"
-#. ^[If
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -97,7 +88,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "Rendezés növekvő sorrendben"
-#. rER,
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -107,7 +97,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr "Rendezés csökkenő sorrendben"
-#. P!#:
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "Cannot connect to the SDBC driver manager (#servicename#)."
msgstr "Nem sikerült csatlakozni az SDBC illesztőprogram-kezelőjéhez (#servicename#)."
-#. !+g!
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -125,7 +113,6 @@ msgctxt ""
msgid "A driver is not registered for the URL #connurl#."
msgstr "A következő URL-hez nincs regisztrálva illesztőprogram: #connurl#."
-#. qbiS
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "No connection could be established for the URL #connurl#."
msgstr "Nem sikerült kapcsolódni ezzel az URL-lel: #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 "Ellenőrizze a beállításokat (például felhasználónév, jelszó)."
-#. Y5.=
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -152,7 +137,6 @@ msgctxt ""
msgid "Successfully connected, but information about database tables is not available."
msgstr "Sikerült csatlakozni, de nincs elérhető információ az adatbázis-táblákról."
-#. GZ_O
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -161,7 +145,6 @@ msgctxt ""
msgid "All tables"
msgstr "Minden tábla"
-#. :hM%
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -170,7 +153,6 @@ msgctxt ""
msgid "All views"
msgstr "Minden nézet"
-#. bYB*
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "All tables and views"
msgstr "Minden tábla és nézet"
-#. W[Ho
#: undosqledit.src
msgctxt ""
"undosqledit.src\n"
diff --git a/source/hu/dbaccess/source/ui/dlg.po b/source/hu/dbaccess/source/ui/dlg.po
index ad3ad035481..54d81515686 100644
--- a/source/hu/dbaccess/source/ui/dlg.po
+++ b/source/hu/dbaccess/source/ui/dlg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-18 17:42+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "Új könyvtár létrehozása"
-#. |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 "Egy szinttel feljebb"
-#. ^CAh
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "Fájl~név:"
-#. j)yZ
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Save"
msgstr "Mentés"
-#. dLcd
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Path:"
msgstr "Ú~tvonal:"
-#. lEAb
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Save"
msgstr "Mentés"
-#. fSV0
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Folder"
msgstr "Mappa"
-#. c4eo
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "The file already exists. Overwrite?"
msgstr "A fájl már létezik. Felülírja?"
-#. .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 "A következő adatforráshoz való csatlakozáshoz jelszó szükséges: „$name$”."
-#. RD7L
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -140,7 +128,6 @@ msgstr ""
"\n"
"Létrehozza?"
-#. m0z/
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -149,7 +136,6 @@ msgctxt ""
msgid "The directory $name$ could not be created."
msgstr "A következő könyvtárat nem lehet létrehozni:"
-#. ?SeD
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -159,7 +145,6 @@ msgctxt ""
msgid "Please enter the ~password for the user 'DOMAIN'."
msgstr "~Adja meg a „DOMAIN” felhasználó jelszavát."
-#. b~o^
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "Convert Database"
msgstr "Adatbázis átalakítása"
-#. :ieU
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Tables and table filter"
msgstr "Táblák és táblaszűrő"
-#. 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 "Jelölje meg azokat a táblákat, amelyeket láthatóvá kíván tenni az alkalmazások számára."
-#. \!,2
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -197,7 +179,6 @@ msgctxt ""
msgid "Tables Filter"
msgstr "Táblaszűrő"
-#. ;m0#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -207,7 +188,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr "Adatbázistündér"
-#. RNn.
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -217,7 +197,6 @@ msgctxt ""
msgid "Select database"
msgstr "Adatbázis választása"
-#. PC[R
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -227,7 +206,6 @@ msgctxt ""
msgid "Set up dBASE connection"
msgstr "dBASE kapcsolat beállítása"
-#. =#2V
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -237,7 +215,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr "Szövegfájlhoz kapcsolat beállítása"
-#. C:B\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -247,7 +224,6 @@ msgctxt ""
msgid "Set up Microsoft Access connection"
msgstr "Microsoft Access-kapcsolat beállítása"
-#. 8]3W
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -257,7 +233,6 @@ msgctxt ""
msgid "Set up LDAP connection"
msgstr "LDAP-kapcsolat beállítása"
-#. ton+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -267,7 +242,6 @@ msgctxt ""
msgid "Set up ADO connection"
msgstr "ADO-kapcsolat beállítása"
-#. l:9b
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -277,7 +251,6 @@ msgctxt ""
msgid "Set up JDBC connection"
msgstr "JDBC-kapcsolat beállítása"
-#. 4SO_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -287,7 +260,6 @@ msgctxt ""
msgid "Set up Oracle database connection"
msgstr "Oracle adatbázis-kapcsolat beállítása"
-#. Z9!@
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -297,7 +269,6 @@ msgctxt ""
msgid "Set up MySQL connection"
msgstr "MySQL-kapcsolat beállítása"
-#. /EEM
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -307,7 +278,6 @@ msgctxt ""
msgid "Set up ODBC connection"
msgstr "ODBC-kapcsolat beállítása"
-#. ^H)z
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -317,7 +287,6 @@ msgctxt ""
msgid "Set up Spreadsheet connection"
msgstr "Munkafüzethez kapcsolat beállítása"
-#. I(,a
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -327,7 +296,6 @@ msgctxt ""
msgid "Set up user authentication"
msgstr "Felhasználói azonosítás beállítása"
-#. 4)zw
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -337,7 +305,6 @@ msgctxt ""
msgid "Set up MySQL server data"
msgstr "MySQL-kiszolgálóadatok beállítása"
-#. lQF(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -347,7 +314,6 @@ msgctxt ""
msgid "Save and proceed"
msgstr "Mentés és végrehajtás"
-#. RFmE
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -356,7 +322,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr "Adatbázistündér"
-#. .5,A
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "New Database"
msgstr "Új adatbázis"
-#. 13CT
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Set up a connection to a MySQL database"
msgstr "Kapcsolat beállítása egy MySQL-adatbázishoz"
-#. HRD[
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -389,7 +352,6 @@ msgstr ""
"MySQL-adatbázishoz ODBC vagy JDBC segítségével kapcsolódhat.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. [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 "Hogyan kíván kapcsolódni a MySQL-adatbázishoz?"
-#. K6aj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -409,7 +370,6 @@ msgctxt ""
msgid "Connect using ODBC (Open Database Connectivity)"
msgstr "Kapcsolódás ODBC (Open Database Connectivity) használatával"
-#. %NHc
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -419,7 +379,6 @@ msgctxt ""
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "Kapcsolódás JDBC (Java Database Connectivity) használatával"
-#. ,#aB
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -429,7 +388,6 @@ msgctxt ""
msgid "Connect directly"
msgstr "Közvetlen kapcsolat"
-#. MflO
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -439,7 +397,6 @@ msgctxt ""
msgid "Set up the user authentication"
msgstr "A felhasználói azonosítás beállítása"
-#. b~Fi
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -449,7 +406,6 @@ msgctxt ""
msgid "Some databases require you to enter a user name."
msgstr "Néhány adatbázis esetén kötelező a felhasználói név megadása."
-#. CvQU
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -459,7 +415,6 @@ msgctxt ""
msgid "~User name"
msgstr "~Felhasználói név"
-#. wx1d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -469,7 +424,6 @@ msgctxt ""
msgid "Password re~quired"
msgstr "~Kötelező a jelszó megadása"
-#. =y9*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -479,7 +433,6 @@ msgctxt ""
msgid "~Test Connection"
msgstr "~Kapcsolat ellenőrzése"
-#. _WJF
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -489,7 +442,6 @@ msgctxt ""
msgid "Decide how to proceed after saving the database"
msgstr "Határozza meg, mi történjen az adatbázis mentése után"
-#. $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 "Kívánja, hogy a tündér regisztrálja az adatbázist a %PRODUCTNAME számára?"
-#. 5BE]
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -509,7 +460,6 @@ msgctxt ""
msgid "~Yes, register the database for me"
msgstr "~Igen, regisztrálom az adatbázist"
-#. .nMS
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -519,7 +469,6 @@ msgctxt ""
msgid "N~o, do not register the database"
msgstr "~Nem, az adatbázis-regisztráció kihagyása"
-#. ?(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 "Az adatbázis mentése után mit kíván tenni?"
-#. ?P6L
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -539,7 +487,6 @@ msgctxt ""
msgid "Open the database for editing"
msgstr "Adatbázis megnyitása szerkesztésre"
-#. ni)v
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -549,7 +496,6 @@ msgctxt ""
msgid "Create tables using the table wizard"
msgstr "Táblák létrehozása a táblatündér segítségével"
-#. UJ/7
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -559,7 +505,6 @@ msgctxt ""
msgid "Click 'Finish' to save the database."
msgstr "Kattintson a Befejezés gombra az adatbázis mentéséhez."
-#. [%Ae
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -569,7 +514,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database using JDBC"
msgstr "Kapcsolat beállítása egy MySQL-adatbázishoz JDBC segítségével"
-#. dL?|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -583,7 +527,6 @@ msgstr ""
"Adja meg a MySQL-adatbázishoz JDBC-illesztőprogrammal történő kapcsolódáshoz szükséges beállításokat. Fontos, hogy a JDBC-illesztőprogram osztálya telepítve és a %PRODUCTNAME-ba regisztrálva legyen.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. Oq2=
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -593,7 +536,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class:"
msgstr "MySQL JDBC-~illesztőprogram osztálya:"
-#. 4O*+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -603,7 +545,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr "Alapértelmezett: 3306"
-#. b|Hj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -613,7 +554,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database"
msgstr "Kapcsolat beállítása egy MySQL-adatbázishoz"
-#. 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 "Írja be a szükséges információkat a MySQL-adatbázishoz történő csatlakozáshoz."
-#. 8Lf+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -633,7 +572,6 @@ msgctxt ""
msgid "Set up a connection to dBASE files"
msgstr "Kapcsolat beállítása dBASE-fájlokhoz"
-#. *K-H
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -643,7 +581,6 @@ msgctxt ""
msgid "Select the folder where the dBASE files are stored."
msgstr "Válassza ki a dBASE-fájlok mappáját."
-#. ZP#(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -653,7 +590,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr "Szövegfájlhoz kapcsolat beállítása"
-#. 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 "Válassza ki a strukturált szövegfájlok (CSV-fájlok) mappáját. A %PRODUCTNAME Base ezeket a fájlokat csak olvasható módban nyitja meg."
-#. (G{Q
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -673,7 +608,6 @@ msgctxt ""
msgid "Path to text files"
msgstr "A szövegfájlok elérési útvonala"
-#. f(p8
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -683,7 +617,6 @@ msgctxt ""
msgid "Set up a connection to a Microsoft Access database"
msgstr "Kapcsolat beállítása egy Microsoft Access-adatbázishoz"
-#. 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 "Válassza ki az elérni kívánt Microsoft Access-fájlt."
-#. =EPv
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -703,7 +635,6 @@ msgctxt ""
msgid "Set up a connection to an LDAP directory"
msgstr "Kapcsolat beállítása egy LDAP-címtárhoz"
-#. =iWu
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -717,7 +648,6 @@ msgstr ""
"Adja meg az LDAP-címtárhoz történő kapcsolódáshoz szükséges beállításokat.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. \,ib
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -727,7 +657,6 @@ msgctxt ""
msgid "Default: 389"
msgstr "Alapértelmezett: 389"
-#. `5LH
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -737,7 +666,6 @@ msgctxt ""
msgid "Use ~secure connection (SSL)"
msgstr "Biztonságos ~kapcsolat használata (SSL)"
-#. AqsX
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -747,7 +675,6 @@ msgctxt ""
msgid "Set up a connection to an ADO database"
msgstr "Kapcsolat beállítása egy ADO-adatbázishoz"
-#. rC+d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -763,7 +690,6 @@ msgstr ""
"Kattintson a „Tallózás...” gombra a szolgáltatófüggő beállítások elvégzéséhez.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. dXJ_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -773,7 +699,6 @@ msgctxt ""
msgid "Set up a connection to an ODBC database"
msgstr "Kapcsolat beállítása egy ODBC-adatbázishoz"
-#. J6(6
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -789,7 +714,6 @@ msgstr ""
"Kattintson a „Tallózás...” gombra a már %PRODUCTNAME-ban regisztrált ODBC-adatbázis kiválasztásához.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. `jQA
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -799,7 +723,6 @@ msgctxt ""
msgid "Set up a connection to a JDBC database"
msgstr "Kapcsolat beállítása egy JDBC-adatbázishoz"
-#. sv51
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -813,7 +736,6 @@ msgstr ""
"Adja meg a JDBC-adatbázishoz történő kapcsolódáshoz szükséges beállításokat.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. ~Z0B
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -823,7 +745,6 @@ msgctxt ""
msgid "Set up a connection to an Oracle database"
msgstr "Kapcsolat beállítása egy Oracle-adatbázishoz"
-#. bQ#G
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -833,7 +754,6 @@ msgctxt ""
msgid "Default: 1521"
msgstr "Alapértelmezett: 1521"
-#. uMc*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -843,7 +763,6 @@ msgctxt ""
msgid "Oracle JDBC ~driver class"
msgstr "Oracle JDBC-~illesztőprogram osztálya"
-#. gRsG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -857,7 +776,6 @@ msgstr ""
"Adja meg az Oracle-adatbázishoz történő kapcsolódáshoz szükséges beállításokat. Fontos, hogy a JDBC-illesztőprogram osztálya telepítve és a %PRODUCTNAME-ba regisztrálva legyen.\n"
"Lépjen kapcsolatba a rendszergazdával, ha bizonytalan a következő beállításokban."
-#. ?lvf
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -867,7 +785,6 @@ msgctxt ""
msgid "Set up a connection to spreadsheets"
msgstr "Kapcsolat beállítása munkafüzetekhez"
-#. Lg{}
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -881,7 +798,6 @@ msgstr ""
"Kattintson a „Tallózás...” gombra a %PRODUCTNAME-munkafüzet vagy Microsoft Excel-munkafüzetet kiválasztásához.\n"
"A %PRODUCTNAME Base ezt a fájlt csak olvasható módban nyitja meg."
-#. (oKh
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -891,7 +807,6 @@ msgctxt ""
msgid "~Location and file name"
msgstr "~Hely és fájlnév"
-#. ;#lG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -901,7 +816,6 @@ msgctxt ""
msgid "~Password required"
msgstr "J~elszó szükséges"
-#. _^lO
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -911,7 +825,6 @@ msgctxt ""
msgid "~Database name"
msgstr "~Adatbázis neve"
-#. ;U^I
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -921,7 +834,6 @@ msgctxt ""
msgid "Se~rver / Port"
msgstr "Ki~szolgáló / Port"
-#. 4Z}n
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -931,7 +843,6 @@ msgctxt ""
msgid "~Server"
msgstr "~Kiszolgáló"
-#. w|ti
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -941,7 +852,6 @@ msgctxt ""
msgid "~Port"
msgstr "~Port"
-#. $ae)
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -951,7 +861,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr "Alapértelmezett: 3306"
-#. e38~
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -961,7 +870,6 @@ msgctxt ""
msgid "So~cket"
msgstr "Szoftv~ercsatorna"
-#. S`c+
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -971,7 +879,6 @@ msgctxt ""
msgid "Named p~ipe"
msgstr "Né~vvel rendelkező cső"
-#. :-A#
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -981,7 +888,6 @@ msgctxt ""
msgid "Browse"
msgstr "Tallózás"
-#. 6x\s
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -991,7 +897,6 @@ msgctxt ""
msgid "Database name"
msgstr "Adatbázis neve"
-#. HgJa
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1001,7 +906,6 @@ msgctxt ""
msgid "Server"
msgstr "Kiszolgáló"
-#. p6EL
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1011,7 +915,6 @@ msgctxt ""
msgid "Base ~DN"
msgstr "~Alap DN"
-#. A%st
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1021,7 +924,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~Port száma"
-#. gm+d
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1031,7 +933,6 @@ msgctxt ""
msgid "Data conversion"
msgstr "Adatátalakítás"
-#. ~bs:
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1041,7 +942,6 @@ msgctxt ""
msgid "~Character set"
msgstr "~Karakterkészlet"
-#. `H!z
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1051,7 +951,6 @@ msgctxt ""
msgid "Specify the type of files you want to access"
msgstr "Adja meg az elérendő fájlok típusát"
-#. xRp+
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1061,7 +960,6 @@ msgctxt ""
msgid "Plain text files (*.txt)"
msgstr "Egyszerű szövegfájlok (*.txt)"
-#. CWPo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1071,7 +969,6 @@ msgctxt ""
msgid "'Comma separated value' files (*.csv)"
msgstr "Strukturált szövegfájlok (*.csv)"
-#. 1C2B
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1081,7 +978,6 @@ msgctxt ""
msgid "Custom:"
msgstr "Beállítás:"
-#. 1STv
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1091,7 +987,6 @@ msgctxt ""
msgid "Custom: *.abc"
msgstr "Egyedi: *.abc"
-#. \?;M
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1101,7 +996,6 @@ msgctxt ""
msgid "Row Format"
msgstr "Sorformátum"
-#. [9b?
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1111,7 +1005,6 @@ msgctxt ""
msgid "Field separator"
msgstr "Mezőelválasztó"
-#. +,P3
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1121,7 +1014,6 @@ msgctxt ""
msgid "Text separator"
msgstr "Szövegelválasztó"
-#. ^yUz
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1131,7 +1023,6 @@ msgctxt ""
msgid "Decimal separator"
msgstr "Tizedesjel"
-#. XGXf
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1140,7 +1031,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr "Ezreselválasztó"
-#. 1oA.
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1149,7 +1039,6 @@ msgctxt ""
msgid "~Text contains headers"
msgstr "A ~szöveg fejléceket tartalmaz"
-#. J~Fh
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1159,7 +1048,6 @@ msgid "{None}"
msgstr "{nincs}"
#. 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"
@@ -1168,7 +1056,6 @@ msgctxt ""
msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
msgstr ";\t59\t,\t44\t:\t58\t{tabulátor}\t9\t{szóköz}\t32"
-#. 3m#(
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1177,7 +1064,6 @@ msgctxt ""
msgid "#1 must be set."
msgstr "Be kell állítani: #1"
-#. +We1
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1186,7 +1072,6 @@ msgctxt ""
msgid "#1 and #2 must be different."
msgstr "#1 és #2 nem egyezhet meg."
-#. {1mo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1195,7 +1080,6 @@ msgctxt ""
msgid "Wildcards such as ?,* are not allowed in #1."
msgstr "A helyettesítő karakterek például ?,* nem használhatóak a következőben: #1."
-#. jeZ\
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1205,7 +1089,6 @@ msgctxt ""
msgid "JDBC d~river class"
msgstr "~JDBC-illesztőprogram osztálya"
-#. LceU
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1215,7 +1098,6 @@ msgctxt ""
msgid "Test class"
msgstr "Osztály tesztelése"
-#. sA+g
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1225,7 +1107,6 @@ msgctxt ""
msgid "Socket"
msgstr "Szoftvercsatorna"
-#. YDRn
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1235,7 +1116,6 @@ msgctxt ""
msgid "Tables"
msgstr "Táblák"
-#. T9F\
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1245,7 +1125,6 @@ msgctxt ""
msgid "Queries"
msgstr "Lekérdezések"
-#. ;GDK
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1255,7 +1134,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. }OFr
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1265,7 +1143,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. :@gb
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1275,7 +1152,6 @@ msgctxt ""
msgid "Add Tables"
msgstr "Táblák hozzáadása"
-#. MQVE
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1285,7 +1161,6 @@ msgctxt ""
msgid "Add Table or Query"
msgstr "Tábla vagy lekérdezés hozzáadása"
-#. ;2;l
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1295,7 +1170,6 @@ msgctxt ""
msgid "User selection"
msgstr "Felhasználó kiválasztása"
-#. 7F_B
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1305,7 +1179,6 @@ msgctxt ""
msgid "Us~er:"
msgstr "~Felhasználó:"
-#. bvaS
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1315,7 +1188,6 @@ msgctxt ""
msgid "~Add User..."
msgstr "~Felhasználó hozzáadása..."
-#. 0p(6
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1325,7 +1197,6 @@ msgctxt ""
msgid "Change ~Password..."
msgstr "~Jelszócsere..."
-#. ET(d
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1335,7 +1206,6 @@ msgctxt ""
msgid "~Delete User..."
msgstr "Felhasználó ~törlése..."
-#. .fB!
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1345,7 +1215,6 @@ msgctxt ""
msgid "Access rights for selected user"
msgstr "A kijelölt felhasználó hozzáférési jogai"
-#. -JJP
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1354,7 +1223,6 @@ msgctxt ""
msgid "Do you really want to delete the user?"
msgstr "Biztosan törölni akarja a felhasználót?"
-#. UN`:
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1363,7 +1231,6 @@ msgctxt ""
msgid "The database does not support user administration."
msgstr "Az adatbázis nem támogatja a felhasználókezelést."
-#. pamf
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1373,7 +1240,6 @@ msgctxt ""
msgid "User \"$name$: $\""
msgstr "Felhasználó: „$name$: $”"
-#. fD9T
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1383,7 +1249,6 @@ msgctxt ""
msgid "Old p~assword"
msgstr "Régi j~elszó"
-#. SinN
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1393,7 +1258,6 @@ msgctxt ""
msgid "~Password"
msgstr "~Jelszó"
-#. Qj;-
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1403,7 +1267,6 @@ msgctxt ""
msgid "~Confirm password"
msgstr "~Jelszó megerősítése"
-#. irnY
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1412,7 +1275,6 @@ msgctxt ""
msgid "Change Password"
msgstr "Jelszó módosítása"
-#. ]7nT
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1421,7 +1283,6 @@ msgctxt ""
msgid "The passwords do not match. Please enter the password again."
msgstr "A jelszavak nem egyeznek. Írja be újra a jelszót."
-#. @`Wp
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1431,7 +1292,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. 5BSd
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1441,7 +1301,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~Gépnév"
-#. O?pb
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1451,7 +1310,6 @@ msgctxt ""
msgid "User authentication"
msgstr "Felhasználók hitelesítése"
-#. 8n{0
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1461,7 +1319,6 @@ msgctxt ""
msgid "~User name"
msgstr "~Felhasználónév"
-#. d)K?
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1471,7 +1328,6 @@ msgctxt ""
msgid "Password required"
msgstr "Jelszó szükséges"
-#. w6dh
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1481,7 +1337,6 @@ msgctxt ""
msgid "JDBC properties"
msgstr "JDBC-tulajdonságok"
-#. d=^3
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1491,7 +1346,6 @@ msgctxt ""
msgid "~JDBC driver class"
msgstr "~JDBC-illesztőprogram osztálya"
-#. oO(K
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1501,7 +1355,6 @@ msgctxt ""
msgid "Test Class"
msgstr "Osztály tesztelése"
-#. @#%8
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1511,7 +1364,6 @@ msgctxt ""
msgid "Test Connection"
msgstr "Kapcsolat ellenőrzése"
-#. Vc?;
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1520,7 +1372,6 @@ msgctxt ""
msgid "Connection Test"
msgstr "Kapcsolat ellenőrzése"
-#. IL]+
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1529,7 +1380,6 @@ msgctxt ""
msgid "The connection was established successfully."
msgstr "A kapcsolat létrejött."
-#. \tud
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1538,7 +1388,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr "A kapcsolatot nem sikerült létrehozni."
-#. Az|t
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1547,7 +1396,6 @@ msgctxt ""
msgid "The JDBC driver was loaded successfully."
msgstr "A JDBC-illesztőprogram sikeresen betöltve."
-#. iPjC
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1556,7 +1404,6 @@ msgctxt ""
msgid "The JDBC driver could not be loaded."
msgstr "A JDBC-illesztőprogram nem tölthető be."
-#. /-LM
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1565,7 +1412,6 @@ msgctxt ""
msgid "MS Access file"
msgstr "Microsoft Access-fájl"
-#. ZbpT
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1574,7 +1420,6 @@ msgctxt ""
msgid "MS Access 2007 file"
msgstr "MS Access 2007-fájl"
-#. D36C
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1584,7 +1429,6 @@ msgctxt ""
msgid "New Index"
msgstr "Új index"
-#. 8l#U
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1594,7 +1438,6 @@ msgctxt ""
msgid "Delete Current Index"
msgstr "Aktuális index törlése"
-#. 9MlT
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1604,7 +1447,6 @@ msgctxt ""
msgid "Rename Current Index"
msgstr "Aktuális index átnevezése"
-#. R6,[
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1614,7 +1456,6 @@ msgctxt ""
msgid "Save Current Index"
msgstr "Aktuális index mentése"
-#. iUa]
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1624,7 +1465,6 @@ msgctxt ""
msgid "Reset Current Index"
msgstr "Aktuális index alaphelyzetbe állítása"
-#. 7RS/
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1634,7 +1474,6 @@ msgctxt ""
msgid "Index details"
msgstr "Index beállításai"
-#. w$KI
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1644,7 +1483,6 @@ msgctxt ""
msgid "Index identifier:"
msgstr "Indexazonosító:"
-#. ZQl)
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1654,7 +1492,6 @@ msgctxt ""
msgid "~Unique"
msgstr "~Egyedi"
-#. /.[`
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1664,7 +1501,6 @@ msgctxt ""
msgid "Fields"
msgstr "Mezők"
-#. rvRK
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1674,7 +1510,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Bezárás"
-#. SSe{
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1683,7 +1518,6 @@ msgctxt ""
msgid "Indexes"
msgstr "Indexek"
-#. @J((
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1692,7 +1526,6 @@ msgctxt ""
msgid "Sort order"
msgstr "Rendezési sorrend"
-#. +20R
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1701,7 +1534,6 @@ msgctxt ""
msgid "Index field"
msgstr "Indexmező"
-#. 2[30
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1710,7 +1542,6 @@ msgctxt ""
msgid "Ascending"
msgstr "Növekvő"
-#. ;o^d
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1719,7 +1550,6 @@ msgctxt ""
msgid "Descending"
msgstr "Csökkenő"
-#. 3*]#
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1728,7 +1558,6 @@ msgctxt ""
msgid "Do you really want to delete the index '$name$'?"
msgstr "Biztosan törölni akarja a következő indexet: „$name$”?"
-#. yAOm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1737,7 +1566,6 @@ msgctxt ""
msgid "index"
msgstr "index"
-#. ^shB
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1746,7 +1574,6 @@ msgctxt ""
msgid "The index must contain at least one field."
msgstr "Az indexnek legalább egy mezőt kell tartalmaznia."
-#. rLRc
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1755,7 +1582,6 @@ msgctxt ""
msgid "Save Index"
msgstr "Index mentése"
-#. SgJ^
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1764,7 +1590,6 @@ msgctxt ""
msgid "Do you want to save the changes made to the current index?"
msgstr "Kívánja menteni az aktuális index változásait?"
-#. WPnm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1773,7 +1598,6 @@ msgctxt ""
msgid "Exit Index Design"
msgstr "Kilépés az indextervezőből"
-#. T/54
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1782,7 +1606,6 @@ msgctxt ""
msgid "There is already another index named \"$name$\"."
msgstr "„$name$” nevű index már létezik."
-#. 4,G}
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1791,7 +1614,6 @@ msgctxt ""
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "Az indexdefinícióban egy mező csak egyszer szerepelhet, azonban a következő mezőt kétszer vette fel: „$name$”."
-#. YvCP
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1801,7 +1623,6 @@ msgctxt ""
msgid "Tables involved"
msgstr "Érintett táblák"
-#. !kk6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1811,7 +1632,6 @@ msgctxt ""
msgid "Fields involved"
msgstr "Érintett mezők"
-#. $5V0
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1821,7 +1641,6 @@ msgctxt ""
msgid "Update options"
msgstr "Beállítások frissítése"
-#. hWIU
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1831,7 +1650,6 @@ msgctxt ""
msgid "~No action"
msgstr "~Nincs teendő"
-#. 1%#_
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1841,7 +1659,6 @@ msgctxt ""
msgid "~Update cascade"
msgstr "Kaszkád ~frissítése"
-#. FA!m
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1851,7 +1668,6 @@ msgctxt ""
msgid "~Set null"
msgstr "~Null érték használata"
-#. TL$:
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1861,7 +1677,6 @@ msgctxt ""
msgid "Set ~default"
msgstr "~Alapérték használata"
-#. P/w[
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1871,7 +1686,6 @@ msgctxt ""
msgid "Delete options"
msgstr "Beállítások törlése"
-#. VVn6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1881,7 +1695,6 @@ msgctxt ""
msgid "~No action"
msgstr "~Nincs teendő"
-#. CRXV
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1891,7 +1704,6 @@ msgctxt ""
msgid "Delete ~cascade"
msgstr "~Kaszkád törlése"
-#. k,W^
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1901,7 +1713,6 @@ msgctxt ""
msgid "~Set null"
msgstr "~Null érték használata"
-#. $ewE
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1911,7 +1722,6 @@ msgctxt ""
msgid "Set ~default"
msgstr "~Alapérték használata"
-#. C+##
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1920,7 +1730,6 @@ msgctxt ""
msgid "Relations"
msgstr "Relációk"
-#. WM_x
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1930,7 +1739,6 @@ msgctxt ""
msgid "Choose a data source:"
msgstr "Válasszon adatforrást:"
-#. %K`o
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1940,7 +1748,6 @@ msgctxt ""
msgid "Organize..."
msgstr "Szervező..."
-#. LmJ3
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1950,7 +1757,6 @@ msgctxt ""
msgid "Create..."
msgstr "Létrehozás..."
-#. g59A
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1960,7 +1766,6 @@ msgctxt ""
msgid "Local Databases"
msgstr "Helyi adatbázisok"
-#. EOo,
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1970,7 +1775,6 @@ msgctxt ""
msgid "Choose a database"
msgstr "Adatbázis kiválasztása"
-#. |,ZV
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1979,7 +1783,6 @@ msgctxt ""
msgid "Data Source"
msgstr "Adatforrás"
-#. /kst
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1989,7 +1792,6 @@ msgctxt ""
msgid "~Parameters"
msgstr "~Paraméterek"
-#. pRnb
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1999,7 +1801,6 @@ msgctxt ""
msgid "~Value"
msgstr "É~rték"
-#. NA%L
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2009,7 +1810,6 @@ msgctxt ""
msgid "~Next"
msgstr "~Következő"
-#. qDEP
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2019,7 +1819,6 @@ msgctxt ""
msgid "The entry could not be converted to a valid value for the \"$name$\"column"
msgstr "Az elem nem alakítható át a(z) „$name” mező érvényes értékévé"
-#. B}3N
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2028,7 +1827,6 @@ msgctxt ""
msgid "Parameter Input"
msgstr "Paraméter bemenete"
-#. ;zAN
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2038,7 +1836,6 @@ msgctxt ""
msgid "~Height"
msgstr "~Magasság"
-#. -y\s
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2048,7 +1845,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. %^F0
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2057,7 +1853,6 @@ msgctxt ""
msgid "Row Height"
msgstr "Sormagasság"
-#. ?GHK
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2067,7 +1862,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Szélesség"
-#. VE;(
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2077,7 +1871,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automatikus"
-#. U3F2
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2086,7 +1879,6 @@ msgctxt ""
msgid "Column Width"
msgstr "Oszlopszélesség"
-#. %@Zj
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2096,7 +1888,6 @@ msgctxt ""
msgid "User Settings"
msgstr "Felhasználó beállításai"
-#. [n;|
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2105,7 +1896,6 @@ msgctxt ""
msgid "User administration"
msgstr "Felhasználókezelés"
-#. ,IC5
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2115,7 +1905,6 @@ msgctxt ""
msgid "AND"
msgstr "ÉS"
-#. A8/!
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2125,7 +1914,6 @@ msgctxt ""
msgid "OR"
msgstr "VAGY"
-#. nm[J
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2135,7 +1923,6 @@ msgctxt ""
msgid "AND"
msgstr "ÉS"
-#. Rd28
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2145,7 +1932,6 @@ msgctxt ""
msgid "OR"
msgstr "VAGY"
-#. (k^l
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2155,7 +1941,6 @@ msgctxt ""
msgid "Field name"
msgstr "Mezőnév"
-#. yu4j
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2165,7 +1950,6 @@ msgctxt ""
msgid "Condition"
msgstr "Feltétel"
-#. hI8?
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2175,7 +1959,6 @@ msgctxt ""
msgid "Value"
msgstr "Érték"
-#. WE?/
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2185,7 +1968,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. +,T)
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2195,7 +1977,6 @@ msgctxt ""
msgid "Criteria"
msgstr "Feltételek"
-#. =p+m
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2205,7 +1986,6 @@ msgctxt ""
msgid "- none -"
msgstr "- semmi -"
-#. FQ8-
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2215,7 +1995,6 @@ msgctxt ""
msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
msgstr "=;<>;<;<=;>;>=;olyan, mint;nem olyan, mint;üres;nem üres"
-#. wMcy
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2224,7 +2003,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr "Általános szűrő"
-#. ~R+m
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2234,7 +2012,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. B{1#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2244,7 +2021,6 @@ msgctxt ""
msgid "Use SQL92 naming constraints"
msgstr "SQL92 elnevezési megszorítások használata"
-#. j77S
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2254,7 +2030,6 @@ msgctxt ""
msgid "Append the table alias name on SELECT statements"
msgstr "Tábla-álnév hozzáfűzése a SELECT utasításokhoz"
-#. %-b#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2264,7 +2039,6 @@ msgctxt ""
msgid "Use keyword AS before table alias names"
msgstr "Az AS kulcsszó használata táblaálnevek előtt"
-#. g*$x
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2274,7 +2048,6 @@ msgctxt ""
msgid "Use Outer Join syntax '{OJ }'"
msgstr "Használjon Outer Join szintaktikát „{OJ }”"
-#. 6AM.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2284,7 +2057,6 @@ msgctxt ""
msgid "Ignore the privileges from the database driver"
msgstr "Az adatbázis-illesztőprogramból származó jogosultságok figyelmen kívül hagyása"
-#. 3u}1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2294,7 +2066,6 @@ msgctxt ""
msgid "Replace named parameters with '?'"
msgstr "Névvel rendelkező paraméterek helyettesítése „?” jellel"
-#. 5d?c
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2304,7 +2075,6 @@ msgctxt ""
msgid "Display version columns (when available)"
msgstr "Verzióoszlopok megjelenítése (ha lehetséges)"
-#. {~yG
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2314,7 +2084,6 @@ msgctxt ""
msgid "Use catalog name in SELECT statements"
msgstr "Katalógusnév használata a SELECT utasításokban"
-#. aF\2
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2324,7 +2093,6 @@ msgctxt ""
msgid "Use schema name in SELECT statements"
msgstr "Sémanév használata a SELECT utasításokban"
-#. hQP1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2334,7 +2102,6 @@ msgctxt ""
msgid "Create index with ASC or DESC statement"
msgstr "Index létrehozása ASC vagy DESC utasítással"
-#. }Li9
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2344,7 +2111,6 @@ msgctxt ""
msgid "End text lines with CR+LF"
msgstr "Szöveges sorok lezárása CR+LF karakterekkel"
-#. \h1o
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2354,7 +2120,6 @@ msgctxt ""
msgid "Ignore currency field information"
msgstr "Pénznemmező-információ figyelmen kívül hagyása"
-#. xb9,
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2364,7 +2129,6 @@ msgctxt ""
msgid "Form data input checks for required fields"
msgstr "Űrlap-adatbeviteli ellenőrzések a kötelező mezők számára"
-#. ^L^J
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2374,7 +2138,6 @@ msgctxt ""
msgid "Use ODBC conformant date/time literals"
msgstr "ODBC-nek megfelelő dátum-/időkifejezések használata"
-#. rH;A
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2384,7 +2147,6 @@ msgctxt ""
msgid "Supports primary keys"
msgstr "Támogatja az elsődleges kulcsokat"
-#. el(|
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2394,7 +2156,6 @@ msgctxt ""
msgid "Respect the result set type from the database driver"
msgstr "Az adatbázis-illesztőprogramtól visszakapott eredményhalmaz típusának figyelembe vétele"
-#. RaMX
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2404,7 +2165,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. j(P5
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2414,7 +2174,6 @@ msgctxt ""
msgid "SQL"
msgstr "SQL"
-#. E[lr
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2424,7 +2183,6 @@ msgctxt ""
msgid "Mixed"
msgstr "Vegyes"
-#. ;-|W
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2434,7 +2192,6 @@ msgctxt ""
msgid "MS Access"
msgstr "MS Access"
-#. V%%y
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2444,7 +2201,6 @@ msgctxt ""
msgid "Comparison of Boolean values"
msgstr "Logikai értékek összehasonlítása"
-#. .4_P
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2454,7 +2210,6 @@ msgctxt ""
msgid "Rows to scan column types"
msgstr "Oszloptípusok sorainak száma"
-#. Hgyf
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2464,7 +2219,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. V.?p
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2474,7 +2228,6 @@ msgctxt ""
msgid "Re~trieve generated values"
msgstr "Lé~trehozott értékek visszaállítása"
-#. ?q57
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2484,7 +2237,6 @@ msgctxt ""
msgid "~Auto-increment statement"
msgstr "~Automatikusan növelő utasítás"
-#. jUJD
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2494,7 +2246,6 @@ msgctxt ""
msgid "~Query of generated values"
msgstr "Lé~trehozott értékek lekérdezése"
-#. L`U^
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2504,7 +2255,6 @@ msgctxt ""
msgid "Generated Values"
msgstr "Generált értékek"
-#. _B5}
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2514,7 +2264,6 @@ msgctxt ""
msgid "Special Settings"
msgstr "Speciális beállítások"
-#. 2D^.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2523,7 +2272,6 @@ msgctxt ""
msgid "Advanced Settings"
msgstr "Haladó beállítások"
-#. ^ujX
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2533,7 +2281,6 @@ msgctxt ""
msgid "Details"
msgstr "Részletek"
-#. U.*d
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2543,7 +2290,6 @@ msgctxt ""
msgid "Error ~list:"
msgstr "Hiba~lista:"
-#. ]9\m
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2553,7 +2299,6 @@ msgctxt ""
msgid "~Description:"
msgstr "~Leírás:"
-#. {C_X
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2563,7 +2308,6 @@ msgctxt ""
msgid "SQL Status"
msgstr "SQL állapota"
-#. 28;^
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2573,7 +2317,6 @@ msgctxt ""
msgid "Error code"
msgstr "Hibakód"
-#. sZn`
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2582,7 +2325,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
-#. u$#$
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2591,7 +2333,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 "Ezen hiba gyakori oka az adatbázis helytelen karakterkészlet-beállítása az Ön által használt nyelvhez. Ellenőrizze a beállításokat a Szerkesztés - Adatbázis - Tulajdonságok ablakban."
-#. mh$.
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2600,7 +2341,6 @@ msgctxt ""
msgid "Error"
msgstr "Hiba"
-#. k-g!
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2609,7 +2349,6 @@ msgctxt ""
msgid "Warning"
msgstr "Figyelmeztetés"
-#. =`Tc
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2618,7 +2357,6 @@ msgctxt ""
msgid "Information"
msgstr "Információ"
-#. x=e|
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2627,7 +2365,6 @@ msgctxt ""
msgid "Details"
msgstr "Részletek"
-#. KI/V
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2636,7 +2373,6 @@ msgctxt ""
msgid "Path to the dBASE files"
msgstr "A dBASE-fájlok elérési útvonala"
-#. 1C(o
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2645,7 +2381,6 @@ msgctxt ""
msgid "Path to the text files"
msgstr "A szövegfájlok elérési útvonala"
-#. )_e!
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2654,7 +2389,6 @@ msgctxt ""
msgid "Path to the spreadsheet document"
msgstr "A munkafüzet-dokumentumok elérési útvonala"
-#. 5UGP
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2663,7 +2397,6 @@ msgctxt ""
msgid "Name of the ODBC data source on your system"
msgstr "Az ODBC-adatforrás neve a rendszeren"
-#. 4Gf-
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2672,7 +2405,6 @@ msgctxt ""
msgid "Name of the MySQL database"
msgstr "A MySQL-adatbázis neve"
-#. QdI$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2681,7 +2413,6 @@ msgctxt ""
msgid "Name of the Oracle database"
msgstr "Az Oracle-adatbázis neve"
-#. b%J#
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2690,7 +2421,6 @@ msgctxt ""
msgid "Microsoft Access database file"
msgstr "Microsoft Access-adatbázisfájl"
-#. vdjy
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2699,7 +2429,6 @@ msgctxt ""
msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
msgstr "További beállításra már nincs szükség. A kapcsolat működésének ellenőrzéséhez kattintson a „%test” gombra."
-#. C^HW
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2708,7 +2437,6 @@ msgctxt ""
msgid "Datasource URL"
msgstr "Adatforrás URL-címe"
-#. Lbcq
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2717,7 +2445,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~Gépnév"
-#. SrR0
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2726,7 +2453,6 @@ msgctxt ""
msgid "~Mozilla profile name"
msgstr "~Mozilla-profil neve"
-#. Rd0$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2735,7 +2461,6 @@ msgctxt ""
msgid "~Thunderbird profile name"
msgstr "~Thunderbird-profil neve"
-#. P#xG
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2745,7 +2470,6 @@ msgctxt ""
msgid "~Table"
msgstr "~Tábla"
-#. qTrl
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2755,7 +2479,6 @@ msgctxt ""
msgid "Assignment"
msgstr "Hozzárendelés"
-#. _=:Y
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2765,7 +2488,6 @@ msgctxt ""
msgid "T~able indexes"
msgstr "Tá~blaindexek"
-#. ,HVL
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2775,7 +2497,6 @@ msgctxt ""
msgid "~Free indexes"
msgstr "~Szabad indexek"
-#. =VnW
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2784,7 +2505,6 @@ msgctxt ""
msgid "Indexes"
msgstr "Indexek"
-#. lwB5
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2794,7 +2514,6 @@ msgctxt ""
msgid "SQL command"
msgstr "SQL-parancs"
-#. R@PQ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2804,7 +2523,6 @@ msgctxt ""
msgid "Command to execute"
msgstr "Végrehajtandó parancs"
-#. #bq3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2814,7 +2532,6 @@ msgctxt ""
msgid "Show output of \"select\" statements"
msgstr ""
-#. QoyE
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2824,7 +2541,6 @@ msgctxt ""
msgid "Execute"
msgstr "Végrehajtás"
-#. Hqn@
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2834,7 +2550,6 @@ msgctxt ""
msgid "Previous commands"
msgstr "Előző parancsok"
-#. SP#3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2844,7 +2559,6 @@ msgctxt ""
msgid "Status"
msgstr "Állapot"
-#. H(_C
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2854,7 +2568,6 @@ msgctxt ""
msgid "Output"
msgstr "Kimenet"
-#. opUu
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2864,7 +2577,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. 2b!X
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2873,7 +2585,6 @@ msgctxt ""
msgid "Execute SQL Statement"
msgstr "SQL-parancs végrehajtása"
-#. .qQZ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2882,7 +2593,6 @@ msgctxt ""
msgid "Command successfully executed."
msgstr "A művelet sikeresen befejeződött."
-#. ^@na
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2891,7 +2601,6 @@ msgctxt ""
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "Az adatbázis-kapcsolat elveszett. Ez a párbeszédablak be fog zárulni."
-#. Vu5}
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2901,7 +2610,6 @@ msgctxt ""
msgid "ascending"
msgstr "növekvő"
-#. 7KG$
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2911,7 +2619,6 @@ msgctxt ""
msgid "descending"
msgstr "csökkenő"
-#. ;|C!
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2921,7 +2628,6 @@ msgctxt ""
msgid "ascending"
msgstr "növekvő"
-#. !9O5
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2931,7 +2637,6 @@ msgctxt ""
msgid "descending"
msgstr "csökkenő"
-#. .xG#
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2941,7 +2646,6 @@ msgctxt ""
msgid "ascending"
msgstr "növekvő"
-#. J@T?
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2951,7 +2655,6 @@ msgctxt ""
msgid "descending"
msgstr "csökkenő"
-#. Ci!@
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2961,7 +2664,6 @@ msgctxt ""
msgid "Field name"
msgstr "Mezőnév"
-#. /sG1
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2971,7 +2673,6 @@ msgctxt ""
msgid "and then"
msgstr "azután"
-#. I3/[
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2981,7 +2682,6 @@ msgctxt ""
msgid "and then"
msgstr "azután"
-#. Cy)e
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2991,7 +2691,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. Sd%+
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3001,7 +2700,6 @@ msgctxt ""
msgid "Order"
msgstr "Sorrend"
-#. Qyn7
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3011,7 +2709,6 @@ msgctxt ""
msgid "Sort order"
msgstr "Rendezési sorrend"
-#. pN.P
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3021,7 +2718,6 @@ msgctxt ""
msgid "<none>"
msgstr "<semmi>"
-#. 2Cd\
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3030,7 +2726,6 @@ msgctxt ""
msgid "Sort Order"
msgstr "Rendezési sorrend"
-#. 3k+d
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3040,7 +2735,6 @@ msgctxt ""
msgid "Bac~k"
msgstr "~Vissza"
-#. b?cs
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3050,7 +2744,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. 2OM{
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3060,7 +2753,6 @@ msgctxt ""
msgid "Format"
msgstr "Formátum"
-#. 2pg9
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3070,7 +2762,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. Ph37
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3080,7 +2771,6 @@ msgctxt ""
msgid "Table Format"
msgstr "Táblaformátum"
-#. rxJX
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3089,7 +2779,6 @@ msgctxt ""
msgid "Field Format"
msgstr "Mező formátuma"
-#. c@0H
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3099,7 +2788,6 @@ msgctxt ""
msgid "Use catalog for file-based databases"
msgstr "Katalógus használata a fájlalapú adatbázisokhoz"
-#. ^ZGR
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3109,7 +2797,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "Kapcsolat beállításai"
-#. ejW]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3119,7 +2806,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~Gépnév"
-#. DX0)
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3129,7 +2815,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~Port száma"
-#. E=m_
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3139,7 +2824,6 @@ msgctxt ""
msgid "Advanced Properties"
msgstr "Speciális tulajdonságok"
-#. XEmD
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3149,7 +2833,6 @@ msgctxt ""
msgid "Additional Settings"
msgstr "További beállítások"
-#. L=D~
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3159,7 +2842,6 @@ msgctxt ""
msgid "Connection settings"
msgstr "Kapcsolat beállításai"
-#. ]q!n
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3168,7 +2850,6 @@ msgctxt ""
msgid "Database properties"
msgstr "Adatbázis tulajdonságai"
-#. pRGW
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3177,7 +2858,6 @@ msgctxt ""
msgid "Database properties"
msgstr "Adatbázis tulajdonságai"
-#. =Pu^
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3187,7 +2867,6 @@ msgctxt ""
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr "Üdvözli a %PRODUCTNAME Adatbázistündér"
-#. })5x
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3197,7 +2876,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 "Az Adatbázistündér használatával létrehozhat egy új adatbázist, megnyithat egy létező adatbázisfájlt, vagy kapcsolódhat egy kiszolgálón tárolt adatbázishoz."
-#. /f4U
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3207,7 +2885,6 @@ msgctxt ""
msgid "What do you want to do?"
msgstr "Mit kíván tenni?"
-#. ^h6]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3217,7 +2894,6 @@ msgctxt ""
msgid "Create a n~ew database"
msgstr "Új ~adatbázis létrehozása"
-#. ,hb*
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3227,7 +2903,6 @@ msgctxt ""
msgid "Open an existing database ~file"
msgstr "~Létező adatbázisfájl megnyitása"
-#. `Xr@
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3237,7 +2912,6 @@ msgctxt ""
msgid "Recently used"
msgstr "Legutóbb használt"
-#. R-kZ
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3247,7 +2921,6 @@ msgctxt ""
msgid "Connect to an e~xisting database"
msgstr "~Kapcsolódás létező adatbázishoz"
-#. 9=#0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3257,7 +2930,6 @@ msgctxt ""
msgid "Select the type of database to which you want to establish a connection."
msgstr "Válassza ki az adatbázis típusát, amelyhez kapcsolódni kíván."
-#. N@Z\
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3267,7 +2939,6 @@ msgctxt ""
msgid "Database ~type "
msgstr "Adatbázis ~típusa "
-#. 0:5]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3277,7 +2948,6 @@ msgctxt ""
msgid "Database"
msgstr "Adatbázis"
-#. kO@$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3293,7 +2963,6 @@ msgstr ""
"\n"
"Minden új beállítás felülírja a már meglévőt."
-#. e~n0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3303,7 +2972,6 @@ msgctxt ""
msgid "MySQL"
msgstr "MySQL"
-#. *it,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3313,7 +2981,6 @@ msgctxt ""
msgid "Data Source Properties: #"
msgstr "Adatforrás tulajdonságai: #"
-#. w0gU
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3323,7 +2990,6 @@ msgctxt ""
msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
msgstr "A következő programkönyvtár nem tölthető be, vagy hibás: #lib#. A kijelölt ODBC-adatforrás nem érhető el."
-#. f^dK
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3337,7 +3003,6 @@ msgstr ""
"Ez az adatforrás nem érhető el ezen a platformon.\n"
"A beállításokat megváltoztathatja, de valószínűleg nem tud majd kapcsolódni az adatbázishoz."
-#. C*#+
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3346,7 +3011,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. 0NKa
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3356,7 +3020,6 @@ msgctxt ""
msgid "Optional settings"
msgstr "Választható beállítások"
-#. 3aG,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3366,7 +3029,6 @@ msgctxt ""
msgid "Display deleted records as well"
msgstr "Törölt rekordok is megjelennek"
-#. 5ERl
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3376,7 +3038,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 "Megjegyzés: Amikor a törölt, azaz inaktív rekordok megjelenítése be van kapcsolva, akkor az adatforrásból nem lehet rekordokat törölni."
-#. b$A0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3386,7 +3047,6 @@ msgctxt ""
msgid "Indexes..."
msgstr "Indexek..."
-#. #o]#
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3396,7 +3056,6 @@ msgctxt ""
msgid "Optional Settings"
msgstr "Választható beállítások"
-#. F{_:
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3406,7 +3065,6 @@ msgctxt ""
msgid "ODBC ~options"
msgstr "ODBC-~beállítások"
-#. %()v
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3416,7 +3074,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class"
msgstr "MySQL JDBC-~illesztőprogram osztálya"
-#. ~|U$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3426,7 +3083,6 @@ msgctxt ""
msgid "Test class"
msgstr "Osztály tesztelése"
-#. hahS
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3436,7 +3092,6 @@ msgctxt ""
msgid "User authentication"
msgstr "Felhasználók hitelesítése"
-#. Pbb,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3446,7 +3101,6 @@ msgctxt ""
msgid "~User name"
msgstr "~Felhasználói név"
-#. ~Txm
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3456,7 +3110,6 @@ msgctxt ""
msgid "Password required"
msgstr "Jelszó szükséges"
-#. (Av;
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3466,7 +3119,6 @@ msgctxt ""
msgid "Oracle JDBC d~river class"
msgstr "Oracle JDBC-~illesztőprogram osztálya"
-#. !fXk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3476,7 +3128,6 @@ msgctxt ""
msgid "Test class"
msgstr "Osztály tesztelése"
-#. g!\o
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3486,7 +3137,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "Kapcsolat beállításai"
-#. =r!-
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3496,7 +3146,6 @@ msgctxt ""
msgid "~Base DN"
msgstr "~Alap DN"
-#. B\Ag
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3506,7 +3155,6 @@ msgctxt ""
msgid "Use secure connection (SSL)"
msgstr "Biztonságos kapcsolat használata (SSL)"
-#. WpTf
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3516,7 +3164,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~Port száma"
-#. GQcj
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3526,7 +3173,6 @@ msgctxt ""
msgid "Maximum number of ~records"
msgstr "~Rekordok maximális száma"
-#. =`Pn
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3536,7 +3182,6 @@ msgctxt ""
msgid "~Hostname"
msgstr "~Gépnév"
-#. 5!kk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3546,7 +3191,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~Port száma"
-#. /w7`
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3556,7 +3200,6 @@ msgctxt ""
msgid "~Driver settings"
msgstr "~Illesztőprogram beállításai"
-#. ;`uA
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3565,7 +3208,6 @@ msgctxt ""
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
msgstr "Válassza a „Kapcsolódás létező adatbázishoz” lehetőséget, ha inkább egy létező adatbázishoz szeretne kapcsolódni."
-#. v)e%
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3575,7 +3217,6 @@ msgctxt ""
msgid "Please enter a name for the object to be created:"
msgstr "Adjon nevet az új objektumnak:"
-#. c3eC
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3585,7 +3226,6 @@ msgctxt ""
msgid "~Catalog"
msgstr "~Katalógus"
-#. Z0U.
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3595,7 +3235,6 @@ msgctxt ""
msgid "~Schema"
msgstr "~Séma"
-#. `D?l
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3605,7 +3244,6 @@ msgctxt ""
msgid "~Table Name"
msgstr "~Tábla neve"
-#. e[Yw
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3615,7 +3253,6 @@ msgctxt ""
msgid "~Name of table view"
msgstr "Tá~blanézet neve"
-#. ape!
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3625,7 +3262,6 @@ msgctxt ""
msgid "~Query name"
msgstr "~Lekérdezés neve"
-#. j1j;
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3635,7 +3271,6 @@ msgctxt ""
msgid "Rename to"
msgstr "Átnevezés"
-#. 7+Kr
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3645,7 +3280,6 @@ msgctxt ""
msgid "Insert as"
msgstr "Beszúrás másként"
-#. sloO
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3654,7 +3288,6 @@ msgctxt ""
msgid "Save As"
msgstr "Mentés másként"
-#. n]DW
#: textconnectionsettings.src
msgctxt ""
"textconnectionsettings.src\n"
diff --git a/source/hu/dbaccess/source/ui/inc.po b/source/hu/dbaccess/source/ui/inc.po
index e9cd2917553..8c2872c0c94 100644
--- a/source/hu/dbaccess/source/ui/inc.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Frissítés"
-#. .g*Q
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "New ~View Design"
msgstr "Új ~nézetterv"
-#. Z39f
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "New ~Table Design"
msgstr "Új ~táblaterv"
-#. xZ!m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Query AutoPilot..."
msgstr "Lekérdezéstündér..."
-#. gmw^
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "New ~Query (Design View)"
msgstr "Új ~lekérdezés (Terv nézet)"
-#. XmK)
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "~Edit Query"
msgstr "~Lekérdezés szerkesztése"
-#. {Vbo
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "New Query (~SQL View)"
msgstr "Új lekérdezés (~SQL nézet)"
-#. hUMy
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Edit..."
msgstr "Szerkesztés..."
-#. KH%8
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Column ~Width..."
msgstr "~Oszlopszélesség..."
-#. B3ba
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr "Jelentéstündér..."
-#. #v:m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
diff --git a/source/hu/dbaccess/source/ui/misc.po b/source/hu/dbaccess/source/ui/misc.po
index 02a12261deb..29482fccb5a 100644
--- a/source/hu/dbaccess/source/ui/misc.po
+++ b/source/hu/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-09 09:43+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Oszlopok érvényesítése"
-#. OCCW
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Type formatting"
msgstr "Típusformázás"
-#. 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 "A következő mezők már elsődleges kulcsnak vannak beállítva:\n"
-#. ?DZP
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Assign columns"
msgstr "Oszlopok hozzárendelése"
-#. {.7a
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "~Help"
msgstr "~Súgó"
-#. ?{e|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "~Cancel"
msgstr "~Mégse"
-#. EJ$?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "< ~Back"
msgstr "< ~Vissza"
-#. XLgB
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -91,7 +83,6 @@ msgctxt ""
msgid "~Next>"
msgstr "~Tovább >"
-#. !Ss)
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "C~reate"
msgstr "~Létrehozás"
-#. 5}TZ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Copy RTF Table"
msgstr "RTF-táblázat másolása"
-#. Nhe\
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Existing columns"
msgstr "Létező oszlopok"
-#. E#D^
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Column information"
msgstr "Oszlopinformáció"
-#. ,9{H
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "Automatic type recognition"
msgstr "Automatikus típusfelismerés"
-#. `NE6
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Lines (ma~x)"
msgstr "Sorok (ma~x)"
-#. $+=1
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Primary Key"
msgstr "Elsődleges kulcs"
-#. AX+?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Source table: \n"
msgstr "Forrástábla: \n"
-#. hf?!
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "Destination table: \n"
msgstr "Céltábla: \n"
-#. {O8B
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -190,7 +172,6 @@ msgctxt ""
msgid "~All"
msgstr "~Mindegyik"
-#. ZWa*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -200,7 +181,6 @@ msgctxt ""
msgid "Non~e"
msgstr "~Egyik sem"
-#. gcfF
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -210,7 +190,6 @@ msgctxt ""
msgid "Ta~ble name"
msgstr "Tábla ~neve"
-#. !JEQ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -220,7 +199,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. QOk;
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -230,7 +208,6 @@ msgctxt ""
msgid "De~finition and data"
msgstr "~Szerkezet és adatok"
-#. 6zkh
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "Def~inition"
msgstr "Sz~erkezet"
-#. VRP*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "A~s table view"
msgstr "Táblané~zetként"
-#. M?|_
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "Append ~data"
msgstr "Adatok ~hozzáfűzése"
-#. -au[
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -270,7 +244,6 @@ msgctxt ""
msgid "Use first ~line as column names"
msgstr "Első sor használata ~oszlopnévként"
-#. 09rg
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Crea~te primary key"
msgstr "~Elsődleges kulcs létrehozása"
-#. =79|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -290,7 +262,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. *`p=
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Copy table"
msgstr "Tábla másolása"
-#. )^(0
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "Copy table"
msgstr "Tábla másolása"
-#. +^3G
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "This table name is not valid in the current database."
msgstr "A jelenlegi adatbázisban ez a táblanév érvénytelen."
-#. 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 "Az első lapon válassza az „Adatok hozzáfűzése” lehetőséget, ha egy meglévő táblához akarja hozzáfűzni az adatokat."
-#. u#s2
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -335,7 +302,6 @@ msgctxt ""
msgid "Please change the table name. It is too long."
msgstr "A táblanév túl hosszú. Válasszon más táblanevet."
-#. Q1z5
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "System"
msgstr "Rendszer"
-#. UEPj
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -354,7 +319,6 @@ msgctxt ""
msgid "Error during creation"
msgstr "Hiba a létrehozás közben"
-#. 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 "Váratlan hiba történt. A műveletet nem lehetett végrehajtani."
-#. ?a9N
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "The document \"$file$\" could not be opened."
msgstr "A(z) „$file$” dokumentum nem nyitható meg."
-#. 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 "A táblát nem lehet menteni, mivel az adatbázis-kapcsolat ezt nem támogatja."
-#. /vzc
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "~All"
msgstr "~Minden szintre"
-#. ;!wA
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Undo:"
msgstr "Visszavonás:"
-#. @QFQ
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Redo:"
msgstr "Újra:"
-#. 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 "Nincs a(z) „#1” oszlopnak megfelelő oszloptípus."
-#. 71C1
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr "A következő fájl nem létezik: „$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 "Az adatforráshoz való kapcsolódás közben problémák adódtak. A „$buttontext$” gombra kattintva megtekintheti ezeket a figyelmeztetéseket."
-#. Bori
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -448,7 +403,6 @@ msgstr ""
"A név már létezik: „$#$”.\n"
"Adjon meg egy másik nevet."
-#. X@3n
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
diff --git a/source/hu/dbaccess/source/ui/querydesign.po b/source/hu/dbaccess/source/ui/querydesign.po
index da5ecbfc567..853fe4dee18 100644
--- a/source/hu/dbaccess/source/ui/querydesign.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Beállítások"
-#. =9+%
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Típus"
-#. \iJy
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Inner join"
msgstr "Belső összekapcsolás"
-#. dVrr
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Left join"
msgstr "Bal oldali összekapcsolás"
-#. SsFj
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Right join"
msgstr "Jobb oldali összekapcsolás"
-#. 5HYb
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Full (outer) join"
msgstr "Teljes (külső) összekapcsolás"
-#. v7q7
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Cross join"
msgstr "Kereszt-összekapcsolás"
-#. k**g
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Natural"
msgstr "Természetes"
-#. 46q*
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Tables involved"
msgstr "Érintett táblák"
-#. GK=\
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Fields involved"
msgstr "Érintett mezők"
-#. $;xp
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Join Properties"
msgstr "Összekapcsolás tulajdonságai"
-#. _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 "Vegye tekintetbe, hogy nem mindegyik adatbázis támogatja ezt az összekapcsolási típust."
-#. [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 "Csak azokat a rekordokat tartalmazza, amelyeknél mindkét tábla kapcsolódó mezőinek tartalma megegyezik."
-#. 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 "A(z) „%1” tábla összes rekordját tartalmazza, de a(z) „%2” táblából csak azokat, amelyekben a kapcsolódó mezők értékei egyeznek."
-#. 4zbd
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "„%1” és „%2” összes rekordját tartalmazza."
-#. 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 "„%1” és „%2” összes rekordjának Descartes-szorzatát tartalmazza."
-#. 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 "„%1” és „%2” azonos nevű oszloppárjaiból csak egy oszlopot tartalmaz."
-#. 0-qf
#: query.src
msgctxt ""
"query.src\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "Add Table Window"
msgstr "Táblaablak hozzáadása"
-#. uig%
#: query.src
msgctxt ""
"query.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Move table window"
msgstr "Táblaablak mozgatása"
-#. 8WpA
#: query.src
msgctxt ""
"query.src\n"
@@ -205,7 +185,6 @@ msgctxt ""
msgid "Insert Join"
msgstr "Összekapcsolás beszúrása"
-#. sG6M
#: query.src
msgctxt ""
"query.src\n"
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Delete Join"
msgstr "Összekapcsolás törlése"
-#. L+^W
#: query.src
msgctxt ""
"query.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Resize table window"
msgstr "Táblaablak átméretezése"
-#. D^BY
#: query.src
msgctxt ""
"query.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "Delete Column"
msgstr "Oszlop törlése"
-#. AW%^
#: query.src
msgctxt ""
"query.src\n"
@@ -241,7 +217,6 @@ msgctxt ""
msgid "Move column"
msgstr "Oszlop áthelyezése"
-#. nOk3
#: query.src
msgctxt ""
"query.src\n"
@@ -250,7 +225,6 @@ msgctxt ""
msgid "Add Column"
msgstr "Oszlop hozzáadása"
-#. )UDE
#: query.src
msgctxt ""
"query.src\n"
@@ -259,7 +233,6 @@ msgctxt ""
msgid "Invalid expression, table '$name$' does not exist."
msgstr "Érvénytelen kifejezés: nem létezik „$name$” nevű tábla."
-#. .W\\
#: query.src
msgctxt ""
"query.src\n"
@@ -268,7 +241,6 @@ msgctxt ""
msgid "Invalid expression, field name '$name$' does not exist."
msgstr "Hibás kifejezés: nem létezik „$name$” nevű mező"
-#. 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 "A lekérdezés #num# táblát érint, az alkalmazott adatbázis azonban utasításonként csak #maxnum# táblát képes kezelni."
-#. 3I|w
#: query.src
msgctxt ""
"query.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Delete Table Window"
msgstr "Táblaablak törlése"
-#. wI.O
#: query.src
msgctxt ""
"query.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "Edit Column Description"
msgstr "Oszlop leírásának szerkesztése"
-#. krXD
#: query.src
msgctxt ""
"query.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "Adjust column width"
msgstr "Oszlopszélesség beállítása"
-#. /HIh
#: query.src
msgctxt ""
"query.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "(not sorted);ascending;descending"
msgstr "(nincs rendezve);növekvő;csökkenő"
-#. W|zJ
#: query.src
msgctxt ""
"query.src\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "(no function);Group"
msgstr "(nincs függvény);Csoport"
-#. bG9n
#: query.src
msgctxt ""
"query.src\n"
@@ -331,7 +297,6 @@ msgctxt ""
msgid "(no table)"
msgstr "(nincs tábla)"
-#. )!;O
#: query.src
msgctxt ""
"query.src\n"
@@ -340,7 +305,6 @@ msgctxt ""
msgid "The database only supports sorting for visible fields."
msgstr "Az adatbázis csak a látható mezők rendezését teszi lehetővé."
-#. Fh8`
#: query.src
msgctxt ""
"query.src\n"
@@ -350,7 +314,6 @@ msgctxt ""
msgid "Functions"
msgstr "Függvények"
-#. 7*N!
#: query.src
msgctxt ""
"query.src\n"
@@ -360,7 +323,6 @@ msgctxt ""
msgid "Table Name"
msgstr "Tábla neve"
-#. 4toX
#: query.src
msgctxt ""
"query.src\n"
@@ -370,7 +332,6 @@ msgctxt ""
msgid "Alias"
msgstr "Álnév"
-#. )b[Y
#: query.src
msgctxt ""
"query.src\n"
@@ -380,7 +341,6 @@ msgctxt ""
msgid "Distinct Values"
msgstr "Különböző értékek"
-#. :]VY
#: query.src
msgctxt ""
"query.src\n"
@@ -389,7 +349,6 @@ msgctxt ""
msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
msgstr "Mező;Alias;Tábla;Rendezés;Látható;Függvény;Feltétel;Vagy;Vagy"
-#. ukK~
#: query.src
msgctxt ""
"query.src\n"
@@ -398,7 +357,6 @@ msgctxt ""
msgid "There are too many columns."
msgstr "Túl sok oszlop"
-#. XKI9
#: query.src
msgctxt ""
"query.src\n"
@@ -407,7 +365,6 @@ msgctxt ""
msgid "A condition cannot be applied to field [*]"
msgstr "A [*] mezőbe nem vihető be feltétel."
-#. 3f`+
#: query.src
msgctxt ""
"query.src\n"
@@ -416,7 +373,6 @@ msgctxt ""
msgid "The SQL statement created is too long."
msgstr "A létrehozott SQL-utasítás túl hosszú."
-#. 4({}
#: query.src
msgctxt ""
"query.src\n"
@@ -425,7 +381,6 @@ msgctxt ""
msgid "Query is too complex"
msgstr "Túl összetett lekérdezés"
-#. qiv2
#: query.src
msgctxt ""
"query.src\n"
@@ -434,7 +389,6 @@ msgctxt ""
msgid "Nothing has been selected."
msgstr "Nem választott ki semmit."
-#. =0zi
#: query.src
msgctxt ""
"query.src\n"
@@ -443,7 +397,6 @@ msgctxt ""
msgid "Too many search criteria"
msgstr "Túl sok keresési feltétel"
-#. r~B!
#: query.src
msgctxt ""
"query.src\n"
@@ -452,7 +405,6 @@ msgctxt ""
msgid "SQL syntax error"
msgstr "Hiba az SQL-szintaktikában"
-#. iOY@
#: query.src
msgctxt ""
"query.src\n"
@@ -461,7 +413,6 @@ msgctxt ""
msgid "[*] cannot be used as a sort criterion."
msgstr "[*] nem használható rendezési feltételként."
-#. ;2~e
#: query.src
msgctxt ""
"query.src\n"
@@ -470,7 +421,6 @@ msgctxt ""
msgid "There are too many tables."
msgstr "Túl sok tábla"
-#. `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 "Az utasítás nem kerül alkalmazásra, ha a lekérdezés az adatbázis saját SQL-nyelvjárását használja."
-#. /)~O
#: query.src
msgctxt ""
"query.src\n"
@@ -488,7 +437,6 @@ msgctxt ""
msgid "Field name not found or not unique"
msgstr "Hiányzó vagy nem egyedi mezőnév"
-#. Es13
#: query.src
msgctxt ""
"query.src\n"
@@ -497,7 +445,6 @@ msgctxt ""
msgid "Join could not be processed"
msgstr "Az összekapcsolás nem sikerült."
-#. F{b/
#: query.src
msgctxt ""
"query.src\n"
@@ -506,7 +453,6 @@ msgctxt ""
msgid "Syntax error in SQL statement"
msgstr "Szintaktikai hiba az SQL-utasításban"
-#. #D4O
#: query.src
msgctxt ""
"query.src\n"
@@ -515,7 +461,6 @@ msgctxt ""
msgid "This database does not support table views."
msgstr "Ez az adatbázis nem támogat táblanézeteket."
-#. 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 "Ez az adatbázis nem támogatja a meglévő táblanézetek módosítását."
-#. Xae+
#: query.src
msgctxt ""
"query.src\n"
@@ -533,7 +477,6 @@ msgctxt ""
msgid "Do you want to create a query instead?"
msgstr "Kíván inkább lekérdezést létrehozni?"
-#. xN(!
#: query.src
msgctxt ""
"query.src\n"
@@ -542,7 +485,6 @@ msgctxt ""
msgid "No query could be created."
msgstr "Nem hozható létre lekérdezés."
-#. Dg/-
#: query.src
msgctxt ""
"query.src\n"
@@ -551,7 +493,6 @@ msgctxt ""
msgid "No query could be created because no fields were selected."
msgstr "Nem hozható létre lekérdezés, mert nincs kijelölt mező."
-#. @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 "A vonatkozó adatforrást kitörölték, ezért a hozzá tartozó adatokat nem lehet lementeni."
-#. 8C.r
#: query.src
msgctxt ""
"query.src\n"
@@ -569,7 +509,6 @@ msgctxt ""
msgid "The column '$name$' is unknown."
msgstr "Ismeretlen oszlop: „$name$”"
-#. 5SB6
#: query.src
msgctxt ""
"query.src\n"
@@ -578,7 +517,6 @@ msgctxt ""
msgid "Columns can only be compared using '='."
msgstr "Az oszlopokat csak az „=” jellel lehet összehasonlítani."
-#. q-oU
#: query.src
msgctxt ""
"query.src\n"
@@ -587,7 +525,6 @@ msgctxt ""
msgid "You must use a column name before 'LIKE'."
msgstr "A „LIKE” paraméter előtt meg kell adnia egy oszlopnevet."
-#. 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 "Az oszlop nem található. Vegye figyelembe, hogy az adatbázis megkülönbözteti a kis- és nagybetűket."
-#. 5v?A
#: query.src
msgctxt ""
"query.src\n"
@@ -605,7 +541,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Query Design"
msgstr " - %PRODUCTNAME Base: Lekérdezéstervező"
-#. %0im
#: query.src
msgctxt ""
"query.src\n"
@@ -615,7 +550,6 @@ msgid " - %PRODUCTNAME Base: View Design"
msgstr " - %PRODUCTNAME Base: Nézettervező"
#. 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 ""
"Menti a változásokat?"
#. 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 "A(z) $object$ objektum olyan SQL-parancson alapul, amelyet nem lehet értelmezni."
#. 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 "A(z) $object$ SQL-nézetben lesz megnyitva."
-#. HAdD
#: query.src
msgctxt ""
"query.src\n"
@@ -658,7 +589,6 @@ msgctxt ""
msgid "The table view"
msgstr "A táblanézet"
-#. Nl{E
#: query.src
msgctxt ""
"query.src\n"
@@ -668,7 +598,6 @@ msgctxt ""
msgid "The query"
msgstr "A lekérdezés"
-#. f\zj
#: query.src
msgctxt ""
"query.src\n"
@@ -678,7 +607,6 @@ msgctxt ""
msgid "The SQL statement"
msgstr "Az SQL-utasítás"
-#. 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 "A lekérdezés nem hoz létre eredményhalmazt, és így nem lehet egy másik lekérdezés része."
-#. SIJ`
#: query.src
msgctxt ""
"query.src\n"
diff --git a/source/hu/dbaccess/source/ui/relationdesign.po b/source/hu/dbaccess/source/ui/relationdesign.po
index f272a4f7440..0371459a448 100644
--- a/source/hu/dbaccess/source/ui/relationdesign.po
+++ b/source/hu/dbaccess/source/ui/relationdesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:44+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "Ez a reláció már létezik. Át akarja szerkeszteni, vagy létrehoz egy újat?"
-#. o];n
#: relation.src
msgctxt ""
"relation.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Edit..."
msgstr "Szerkesztés..."
-#. 1c[-
#: relation.src
msgctxt ""
"relation.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Create..."
msgstr "Létrehozás..."
-#. AoH_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME Base: Relációtervező"
-#. )MM4
#: relation.src
msgctxt ""
"relation.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The database does not support relations."
msgstr "Az adatbázis nem támogat relációkat."
-#. NYJF
#: relation.src
msgctxt ""
"relation.src\n"
@@ -73,7 +67,6 @@ msgstr ""
"A relációelrendezés megváltozott.\n"
"Kívánja menteni a változásokat?"
-#. #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 "E tábla törlésével az összes kapcsolódó reláció is törlődni fog. Folytatja?"
-#. {1NJ
#: relation.src
msgctxt ""
"relation.src\n"
diff --git a/source/hu/dbaccess/source/ui/tabledesign.po b/source/hu/dbaccess/source/ui/tabledesign.po
index b376fb16c2f..557b38a19a2 100644
--- a/source/hu/dbaccess/source/ui/tabledesign.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Ismeretlen;Szöveg;Szám;Dátum/Idő;Dátum;Idő;Igen/Nem;Pénznem;Memo;Számláló;Kép;Szöveg (fix);Decimális;Bináris (fix);Bináris;NagyEgész;Duplapontos;Lebegőpontos;Valós;Egész;Kis egész;Apró egész;SQL Null;Objektum;Különálló;Struktúra;Mező;BLOB;CLOB;REF;EGYÉB;Bit (fix)"
-#. |sU@
#: table.src
msgctxt ""
"table.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr "Elsődleges kulcs hozzáadása/eltávolítása"
-#. UI--
#: table.src
msgctxt ""
"table.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. X9{a
#: table.src
msgctxt ""
"table.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. ..-$
#: table.src
msgctxt ""
"table.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Ascending"
msgstr "Növekvő"
-#. :+)e
#: table.src
msgctxt ""
"table.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Descending"
msgstr "Csökkenő"
-#. 5(BM
#: table.src
msgctxt ""
"table.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "<none>"
msgstr "<semmi>"
-#. =2Fw
#: table.src
msgctxt ""
"table.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Field name"
msgstr "Mezőnév"
-#. b!J7
#: table.src
msgctxt ""
"table.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Field Name"
msgstr "Mezőnév"
-#. Ke6E
#: table.src
msgctxt ""
"table.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Field ~type"
msgstr "Mező~típus"
-#. 3=e_
#: table.src
msgctxt ""
"table.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Field Type"
msgstr "Mezőtípus"
-#. H%CY
#: table.src
msgctxt ""
"table.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Field length"
msgstr "Mezőhossz"
-#. M[,x
#: table.src
msgctxt ""
"table.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. {oh-
#: table.src
msgctxt ""
"table.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Column Description"
msgstr "Oszlopleírás"
-#. #FSY
#: table.src
msgctxt ""
"table.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Input required"
msgstr "Bevitel kötelező"
-#. A[jT
#: table.src
msgctxt ""
"table.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "~AutoValue"
msgstr "~Automatikus értékadás"
-#. ,izf
#: table.src
msgctxt ""
"table.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Field Properties"
msgstr "Mező tulajdonságai"
-#. Wp+k
#: table.src
msgctxt ""
"table.src\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. X?RF
#: table.src
msgctxt ""
"table.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Description:"
msgstr "Leírás:"
-#. v]`~
#: table.src
msgctxt ""
"table.src\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Table properties"
msgstr "Tábla tulajdonságai"
-#. hCr$
#: table.src
msgctxt ""
"table.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "The text you entered is not a list element. "
msgstr "A beírt szöveg nem szerepel a listában. "
-#. Z~\!
#: table.src
msgctxt ""
"table.src\n"
@@ -214,7 +192,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "Sorok beszúrása"
-#. buHQ
#: table.src
msgctxt ""
"table.src\n"
@@ -224,7 +201,6 @@ msgctxt ""
msgid "Primary Key"
msgstr "Elsődleges kulcs"
-#. :tSG
#: table.src
msgctxt ""
"table.src\n"
@@ -233,7 +209,6 @@ msgctxt ""
msgid "Modify cell"
msgstr "Cella módosítása"
-#. `87G
#: table.src
msgctxt ""
"table.src\n"
@@ -242,7 +217,6 @@ msgctxt ""
msgid "Delete row"
msgstr "Sor törlése"
-#. 6PCw
#: table.src
msgctxt ""
"table.src\n"
@@ -251,7 +225,6 @@ msgctxt ""
msgid "Modify field type"
msgstr "Mező típusának módosítása"
-#. of6E
#: table.src
msgctxt ""
"table.src\n"
@@ -260,7 +233,6 @@ msgctxt ""
msgid "Insert row"
msgstr "Sor beszúrása"
-#. gP#0
#: table.src
msgctxt ""
"table.src\n"
@@ -269,7 +241,6 @@ msgctxt ""
msgid "Insert new row"
msgstr "Új sor beszúrása"
-#. O90e
#: table.src
msgctxt ""
"table.src\n"
@@ -278,7 +249,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr "Elsődleges kulcs hozzáadása/eltávolítása"
-#. h)Dv
#: table.src
msgctxt ""
"table.src\n"
@@ -287,7 +257,6 @@ msgctxt ""
msgid "~Default value"
msgstr "~Alapértelmezett érték"
-#. AHx$
#: table.src
msgctxt ""
"table.src\n"
@@ -296,7 +265,6 @@ msgctxt ""
msgid "~Entry required"
msgstr "~Kötelező adat"
-#. IM1C
#: table.src
msgctxt ""
"table.src\n"
@@ -305,7 +273,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Hosszúság"
-#. UMNU
#: table.src
msgctxt ""
"table.src\n"
@@ -314,7 +281,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Típus"
-#. +E.l
#: table.src
msgctxt ""
"table.src\n"
@@ -323,7 +289,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Hosszúság"
-#. 6)Qn
#: table.src
msgctxt ""
"table.src\n"
@@ -332,7 +297,6 @@ msgctxt ""
msgid "Decimal ~places"
msgstr "Tizedes~jegyek"
-#. 3W;J
#: table.src
msgctxt ""
"table.src\n"
@@ -341,7 +305,6 @@ msgctxt ""
msgid "Format example"
msgstr "Formátumminta"
-#. pENt
#: table.src
msgctxt ""
"table.src\n"
@@ -354,7 +317,6 @@ msgstr ""
"Adja meg az alapértelmezett értéket. Az újonnan beszúrt rekordokban ez az érték fog szerepelni.\n"
"Ha nem kíván alapértelmezett értéket megadni, válassza az üres szöveget."
-#. ;^|H
#: table.src
msgctxt ""
"table.src\n"
@@ -369,7 +331,6 @@ msgstr ""
"\n"
"Az újonnan beszúrt rekordokban a mező ezt az értéket fogja tartalmazni, így formátumának meg kell felelnie az alább megadott formátumnak."
-#. 3}PH
#: table.src
msgctxt ""
"table.src\n"
@@ -378,7 +339,6 @@ msgctxt ""
msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
msgstr "A mező nem tartalmazhat NULL értéket (a felhasználó köteles ezt a mezőt kitölteni)."
-#. 7mL^
#: table.src
msgctxt ""
"table.src\n"
@@ -387,7 +347,6 @@ msgctxt ""
msgid "Enter the maximum text length permitted."
msgstr "Adja meg a szöveg maximális hosszát."
-#. 7#=!
#: table.src
msgctxt ""
"table.src\n"
@@ -396,7 +355,6 @@ msgctxt ""
msgid "Enter the number format."
msgstr "Adja meg a szám formátumát."
-#. b1p*
#: table.src
msgctxt ""
"table.src\n"
@@ -413,7 +371,6 @@ msgstr ""
"(számot tartalmazó mezőknél a számjegyeket, bináris mezőknél az adatblokk hosszát).\n"
"Ha az adatbázis-kezelő nem képes a megadott hosszúságú adat kezelésére, a beírt adat automatikusan korrigálódik."
-#. -^69
#: table.src
msgctxt ""
"table.src\n"
@@ -422,7 +379,6 @@ msgctxt ""
msgid "Specify the number of decimal places permitted in this field."
msgstr "Adja meg a tizedesjegyek számát ebben a mezőben."
-#. C%%|
#: table.src
msgctxt ""
"table.src\n"
@@ -431,7 +387,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 "Itt megtekintheti a megadott formátum szerint megjelenített példaadatokat. (A jobb oldali gomb segítségével megváltoztathatja a formátumot.)"
-#. Hqk$
#: table.src
msgctxt ""
"table.src\n"
@@ -440,7 +395,6 @@ msgctxt ""
msgid "This is where you determine the output format of the data."
msgstr "Itt adhatja meg az adatok kimeneti formátumát."
-#. [?XS
#: table.src
msgctxt ""
"table.src\n"
@@ -455,7 +409,6 @@ msgstr ""
"\n"
"Az ilyen típusú mezőkbe nem vihető be adat, mert azok előző bejegyzéseik alapján növekvő számlálóból kapják értékeiket."
-#. .I\i
#: table.src
msgctxt ""
"table.src\n"
@@ -464,7 +417,6 @@ msgctxt ""
msgid "~..."
msgstr "~..."
-#. (WO0
#: table.src
msgctxt ""
"table.src\n"
@@ -473,7 +425,6 @@ msgctxt ""
msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
msgstr "A táblát nem lehet menteni, mert több oszlop is ezzel a névvel rendelkezik: „$column$”"
-#. BE=K
#: table.src
msgctxt ""
"table.src\n"
@@ -482,7 +433,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 "A következő oszlop az elsődleges kulcs része. Ha ezt az oszlopot törli, az elsődleges kulcs is elvész. Biztosan törli az oszlopot?"
-#. H0za
#: table.src
msgctxt ""
"table.src\n"
@@ -491,7 +441,6 @@ msgctxt ""
msgid "Primary Key Affected"
msgstr "Érintett elsődleges kulcs"
-#. ^k*0
#: table.src
msgctxt ""
"table.src\n"
@@ -500,7 +449,6 @@ msgctxt ""
msgid "Column"
msgstr "Oszlop"
-#. o1m@
#: table.src
msgctxt ""
"table.src\n"
@@ -509,7 +457,6 @@ msgctxt ""
msgid "Continue anyway?"
msgstr "Mindenképp folytatja?"
-#. :}Ea
#: table.src
msgctxt ""
"table.src\n"
@@ -518,7 +465,6 @@ msgctxt ""
msgid "Warning!"
msgstr "Figyelem!"
-#. 3U@W
#: table.src
msgctxt ""
"table.src\n"
@@ -531,7 +477,6 @@ msgstr ""
"A tábla megváltozott.\n"
"Menti a módosításokat?"
-#. LHZG
#: table.src
msgctxt ""
"table.src\n"
@@ -544,7 +489,6 @@ msgstr ""
"Megszakadt a kapcsolat az adatbázissal! A táblaszerkezet csak korlátozott funkcionalitást kínál kapcsolat nélkül.\n"
"Újrakapcsolódik?"
-#. IXlV
#: table.src
msgctxt ""
"table.src\n"
@@ -553,7 +497,6 @@ msgctxt ""
msgid "The table could not be saved due to problems connecting to the database."
msgstr "A táblát nem lehet menteni adatbázis-csatlakozási hiba miatt."
-#. g4@I
#: table.src
msgctxt ""
"table.src\n"
@@ -562,7 +505,6 @@ msgctxt ""
msgid "The table filter could not be adjusted because the data source has been deleted."
msgstr "Az adatforrás törlése miatt a táblaszűrő nem módosítható."
-#. w5qJ
#: table.src
msgctxt ""
"table.src\n"
@@ -575,7 +517,6 @@ msgstr ""
"Az indexek szerkesztése előtt el kell mentenie a táblát.\n"
"Kívánja most menteni a változtatásokat?"
-#. IT/l
#: table.src
msgctxt ""
"table.src\n"
@@ -584,7 +525,6 @@ msgctxt ""
msgid "No primary key"
msgstr "Nincs elsődleges kulcs"
-#. gnM:
#: table.src
msgctxt ""
"table.src\n"
@@ -601,7 +541,6 @@ msgstr ""
"\n"
"Kíván létrehozni egy elsődleges kulcsot?"
-#. ds(e
#: table.src
msgctxt ""
"table.src\n"
@@ -610,7 +549,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Table Design"
msgstr " - %PRODUCTNAME Base: Táblatervező"
-#. j\[$
#: table.src
msgctxt ""
"table.src\n"
@@ -619,7 +557,6 @@ msgctxt ""
msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
msgstr "A következő oszlopot nem lehetett megváltoztatni: „$column$”. Kívánja törölni az oszlopot, és újat beszúrni helyette?"
-#. 3pC`
#: table.src
msgctxt ""
"table.src\n"
@@ -628,7 +565,6 @@ msgctxt ""
msgid "Error while saving the table design"
msgstr "Hiba a táblaterv mentése közben"
-#. s$A0
#: table.src
msgctxt ""
"table.src\n"
@@ -637,7 +573,6 @@ msgctxt ""
msgid "The column $column$ could not be deleted."
msgstr "A(z) $column$ oszlop nem törölhető."
-#. b+/B
#: table.src
msgctxt ""
"table.src\n"
@@ -646,7 +581,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 "Éppen megpróbálta a tábla összes oszlopát törölni. Minden táblának legalább egy oszlopot kell tartalmaznia. Szeretné a teljes táblát törölni az adatbázisból? Ha nem, a tábla változatlanul marad."
-#. mb.U
#: table.src
msgctxt ""
"table.src\n"
@@ -655,7 +589,6 @@ msgctxt ""
msgid "A~uto-increment statement"
msgstr "A~utomatikusan növelő utasítás"
-#. ZA{U
#: table.src
msgctxt ""
"table.src\n"
@@ -670,7 +603,6 @@ msgstr ""
"\n"
"Ez az utasítás közvetlenül az adatbázisba kerül a tábla létrehozásakor."
-#. -CSJ
#: table.src
msgctxt ""
"table.src\n"
@@ -683,7 +615,6 @@ msgstr ""
"Nem sikerült kideríteni az adatbázis típusát.\n"
"Ehhez az adatforráshoz nem áll rendelkezésre táblatervező mód."
-#. da%i
#: table.src
msgctxt ""
"table.src\n"
@@ -692,7 +623,6 @@ msgctxt ""
msgid "change field name"
msgstr "mező nevének megváltoztatása"
-#. V6k6
#: table.src
msgctxt ""
"table.src\n"
@@ -701,7 +631,6 @@ msgctxt ""
msgid "change field type"
msgstr "mező típusának megváltoztatása"
-#. \=gd
#: table.src
msgctxt ""
"table.src\n"
@@ -710,7 +639,6 @@ msgctxt ""
msgid "change field description"
msgstr "mező leírásának megváltoztatása"
-#. AAJ]
#: table.src
msgctxt ""
"table.src\n"
diff --git a/source/hu/dbaccess/source/ui/uno.po b/source/hu/dbaccess/source/ui/uno.po
index ebb0bc53038..31413cfa7ff 100644
--- a/source/hu/dbaccess/source/ui/uno.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "A céladatbázis nem támogatja a nézeteket."
-#. _=Y9
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "The destination database does not support primary keys."
msgstr "A céladatbázis nem támogatja az elsődleges kulcsokat."
-#. 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 "nem található adat-hozzáférési leíró, vagy egy adat-hozzáférési leíró sem képes az összes szükséges információ szolgáltatására"
-#. zV0M
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Only tables and queries are supported at the moment."
msgstr "Jelenleg csak a táblák és lekérdezések támogatottak."
-#. ~}tx
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The copy source's result set must support bookmarks."
msgstr "A másolás forrása eredményhalmazának támogatnia kell a könyvjelzőket."
-#. UCzS
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr "Nem támogatott forrás-oszloptípus ($type$) a(z) $pos$ oszlophelyen."
-#. We~`
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Illegal number of initialization parameters."
msgstr "Nem megfelelő számú inicializálási paraméter."
-#. mBwh
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "An error occurred during initialization."
msgstr "Hiba történt inicializálás közben."
-#. HAbb
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr "Nem támogatott beállítás a másolásánál megadott forrásleíróban: $name$."
-#. 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 "Lekérdezés másolásához a kapcsolatnak biztosítania kell tudnia a lekérdezéseket."
-#. poOe
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "The given interaction handler is invalid."
msgstr "A megadott interakciókezelő érvénytelen."
-#. D3WL
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "~Remember password until end of session"
msgstr "~Jelszó megjegyzése a munkamenet végéig"
-#. ?:go
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
diff --git a/source/hu/desktop/source/app.po b/source/hu/desktop/source/app.po
index 8161d5fa36b..ff5490c17c8 100644
--- a/source/hu/desktop/source/app.po
+++ b/source/hu/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: 2012-01-12 21:45+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Kívánja helyreállítani a(z) „$1” fájlt?"
-#. ;NJ+
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "File Recovery"
msgstr "Fájl helyreállítása"
-#. NS+@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -51,7 +48,6 @@ msgstr ""
"és talán helyreállíthatók a program\n"
"újbóli indításakor."
-#. G(.k
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -60,7 +56,6 @@ msgctxt ""
msgid "The application cannot be started. "
msgstr "Az alkalmazást nem sikerült elindítani. "
-#. `a$P
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -69,7 +64,6 @@ msgctxt ""
msgid "The configuration directory \"$1\" could not be found."
msgstr "Nem található a(z) „$1” konfigurációs könyvtár."
-#. D5B@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -78,7 +72,6 @@ msgctxt ""
msgid "The installation path is invalid."
msgstr "Érvénytelen telepítési útvonal."
-#. 3KSX
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -87,7 +80,6 @@ msgctxt ""
msgid "The installation path is not available."
msgstr "Nem elérhető telepítési útvonal."
-#. [Rc8
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -96,7 +88,6 @@ msgctxt ""
msgid "An internal error occurred."
msgstr "Belső hiba történt."
-#. Lp6S
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "The configuration file \"$1\" is corrupt."
msgstr "A következő konfigurációs fájl tartalma hibás: „$1”."
-#. FI:n
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "The configuration file \"$1\" was not found."
msgstr "A következő konfigurációs fájl nem található: „$1”."
-#. rEGY
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "The configuration file \"$1\" does not support the current version."
msgstr "A következő konfigurációs fájl nem illik a program jelenlegi verziójához: „$1”."
-#. 8}+c
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "The user interface language cannot be determined."
msgstr "A felhasználói felület nyelve nem állapítható meg."
-#. 8M4/
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "The configuration service is not available."
msgstr "A beállítási szolgáltatás nem érhető el."
-#. 7@8E
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr "Indítsa el a CD-n vagy a telepítőcsomagokat tartalmazó mappában található telepítésjavító alkalmazást."
-#. ;Qn6
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "The startup settings for accessing the central configuration are incomplete. "
msgstr "A központi konfiguráció eléréséhez szükséges indítási beállítások nem teljesek. "
-#. rd?U
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "A connection to the central configuration could not be established. "
msgstr "Nem sikerült kapcsolatot teremteni a központi konfigurációval. "
-#. N;}*
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "You cannot access the central configuration because of missing access rights. "
msgstr "A központi konfiguráció elérése azért nem sikerült, mert Ön nem rendelkezik a megfelelő jogosultságokkal. "
-#. mb`J
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "A general error occurred while accessing your central configuration. "
msgstr "Általános hiba keletkezett a központi konfiguráció elérésekor. "
-#. gXwr
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. "
msgstr "Hiányzó jogosultságok miatt nem lehet a személyes beállításokat a központi konfigurációban tárolni. "
-#. :j,M
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -210,7 +190,6 @@ msgstr ""
"\n"
"Vegye fel a kapcsolatot a rendszergazdával."
-#. Hq*q
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "The following internal error has occurred: "
msgstr "Belső hiba keletkezett: "
-#. ]saI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -236,7 +214,6 @@ msgstr ""
"\n"
"Biztosan folytatja?"
-#. 5c(@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. g1Dd
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -254,7 +230,6 @@ msgctxt ""
msgid "Help Message..."
msgstr "Súgóüzenet..."
-#. _hMD
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "Printing is disabled. No documents can be printed."
msgstr "A nyomtatás tiltva van. Nem nyomtathatók dokumentumok."
-#. l%BI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -272,7 +246,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. @L?:
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -281,7 +254,6 @@ msgctxt ""
msgid "The path manager is not available.\n"
msgstr "Az útvonalkezelő nem érhető el.\n"
-#. X:/Z
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -294,7 +266,6 @@ msgstr ""
"A %PRODUCTNAME felhasználói telepítése nem fejezhető be, mert nincs a lemezen elég szabad terület. Szabadítson fel lemezterületet a következő helyen, és indítsa újra a %PRODUCTNAME programot:\n"
"\n"
-#. r2c(
#: desktop.src
msgctxt ""
"desktop.src\n"
diff --git a/source/hu/desktop/source/deployment/gui.po b/source/hu/desktop/source/deployment/gui.po
index 4f6026ca8e9..01c9fe33d25 100644
--- a/source/hu/desktop/source/deployment/gui.po
+++ b/source/hu/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:46+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "Kiterjesztések hozzáadása"
-#. qUw1
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eltávolítás"
-#. /yLf
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "~Enable"
msgstr "~Engedélyezés"
-#. nB=b
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Disable"
msgstr "~Tiltás"
-#. UpY+
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Update..."
msgstr "~Frissítés..."
-#. 6pLh
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "~Options..."
msgstr "~Beállítások..."
-#. F3Kz
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr "%EXTENSION_NAME hozzáadása"
-#. H)hJ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Removing %EXTENSION_NAME"
msgstr "%EXTENSION_NAME eltávolítása"
-#. -w-g
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Enabling %EXTENSION_NAME"
msgstr "%EXTENSION_NAME engedélyezése"
-#. m^rx
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Disabling %EXTENSION_NAME"
msgstr "%EXTENSION_NAME letiltása"
-#. sH1[
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Accept license for %EXTENSION_NAME"
msgstr "%EXTENSION_NAME licencének elfogadása"
-#. UeQm
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "~For all users"
msgstr "~Minden felhasználó számára"
-#. F49M
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "~Only for me"
msgstr "~Csak nekem"
-#. #_~A
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Error: The status of this extension is unknown"
msgstr "Hiba: A kiterjesztés állapota ismeretlen"
-#. :D9%
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. TuR@
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Quit"
msgstr "Kilépés"
-#. `^)5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -174,7 +157,6 @@ msgstr ""
"\n"
"A megosztott kiterjesztések frissítése rendszergazdai jogosultságokat igényel. Forduljon a rendszergazdájához a következő megosztott kiterjesztések frissítéséhez:"
-#. JF-Z
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -183,7 +165,6 @@ msgctxt ""
msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
msgstr "A kiterjesztést nem lehet engedélyezni, mert a következő rendszerfüggőségek nincsenek kielégítve:"
-#. DEjZ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -192,7 +173,6 @@ msgctxt ""
msgid "This extension is disabled because you haven't accepted the license yet.\n"
msgstr "Ez a kiterjesztés le van tiltva, mert még nem fogadta el a licencét.\n"
-#. dig5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -201,7 +181,6 @@ msgctxt ""
msgid "Show license"
msgstr "Licenc megjelenítése"
-#. ZWP3
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -211,7 +190,6 @@ msgctxt ""
msgid "Please follow these steps to proceed with the installation of the extension:"
msgstr "A kiterjesztés telepítésének folytatásához kövesse az alábbi lépéseket:"
-#. ?TEs
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -221,7 +199,6 @@ msgctxt ""
msgid "1."
msgstr "1."
-#. `^|e
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -231,7 +208,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 "Olvassa végig a licencszerződést. A teljes szöveg megtekintéséhez használja a görgetősávot vagy a párbeszédablak „Lapozás” gombját."
-#. 5-GY
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -241,7 +217,6 @@ msgctxt ""
msgid "2."
msgstr "2."
-#. Q2.T
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -251,7 +226,6 @@ msgctxt ""
msgid "Accept the License Agreement for the extension by pressing the \\'Accept\\' button."
msgstr "Fogadja el a kiterjesztés licencszerződését az „Elfogadás” gomb megnyomásával."
-#. pW8s
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -261,7 +235,6 @@ msgctxt ""
msgid "~Scroll Down"
msgstr "~Lapozás"
-#. )$3l
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -271,7 +244,6 @@ msgctxt ""
msgid "Accept"
msgstr "Elfogadás"
-#. h7-`
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -281,7 +253,6 @@ msgctxt ""
msgid "Decline"
msgstr "Elutasítás"
-#. ?Bqn
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -290,7 +261,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr "A kiterjesztés szoftverlicenc-szerződése"
-#. T!U?
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -300,7 +270,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. D\Lp
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -309,7 +278,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr "A kiterjesztés szoftverlicenc-szerződése"
-#. r:LX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -324,7 +292,6 @@ msgstr ""
"A telepítés folytatásához kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. .AYw
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -339,7 +306,6 @@ msgstr ""
"Kattintson az „OK” gombra a kiterjesztés eltávolításához.\n"
"Kattintson a „Mégse” gombra a kiterjesztés megtartásához."
-#. D_!C
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -354,7 +320,6 @@ msgstr ""
"A kiterjesztés eltávolításához kattintson az OK gombra.\n"
"A kiterjesztés eltávolításának leállításához kattintson a Mégse gombra."
-#. BUHX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -369,7 +334,6 @@ msgstr ""
"Az kiterjesztés engedélyezéséhez kattintson az OK gombra.\n"
"A kiterjesztés engedélyezésének leállításához kattintson a Mégse gombra."
-#. ,`QG
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -384,7 +348,6 @@ msgstr ""
"A kiterjesztés letiltásához kattintson az OK gombra.\n"
"A kiterjesztés letiltásának leállításához kattintson a Mégse gombra."
-#. %hVk
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -393,7 +356,6 @@ msgctxt ""
msgid "The extension \\'%Name\\' does not work on this computer."
msgstr "A(z) „%Name” kiterjesztés nem működik ezen a számítógépen."
-#. `a+p
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -403,7 +365,6 @@ msgctxt ""
msgid "Checking..."
msgstr "Ellenőrzés..."
-#. hka,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -413,7 +374,6 @@ msgctxt ""
msgid "~Available extension updates"
msgstr "~Elérhető kiterjesztésfrissítések"
-#. vUpW
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -423,7 +383,6 @@ msgctxt ""
msgid "~Show all updates"
msgstr "~Minden frissítés megjelenítése"
-#. _4Io
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -433,7 +392,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. [wV,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -443,7 +401,6 @@ msgctxt ""
msgid "Publisher:"
msgstr "Kiadó:"
-#. 6iXl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -453,7 +410,6 @@ msgctxt ""
msgid "What is new:"
msgstr "Újdonságok:"
-#. KrCa
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -463,7 +419,6 @@ msgctxt ""
msgid "Release Notes"
msgstr "Kibocsátási jegyzetek "
-#. _e-8
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -473,7 +428,6 @@ msgctxt ""
msgid "~Install"
msgstr "~Telepítés"
-#. EFhl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -483,7 +437,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. qn?R
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -493,7 +446,6 @@ msgctxt ""
msgid "Error"
msgstr "Hiba"
-#. OU;g
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -503,7 +455,6 @@ msgctxt ""
msgid "No new updates are available."
msgstr "Nincsenek új frissítések."
-#. EKIX
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -513,7 +464,6 @@ msgctxt ""
msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
msgstr "Nincsenek telepíthető frissítések. A figyelmen kívül hagyott vagy letiltott frissítések megjelenítéséhez jelölje be a „Minden frissítés megjelenítése” négyzetet."
-#. Qw.N
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -523,7 +473,6 @@ msgctxt ""
msgid "An error occurred:"
msgstr "Hiba történt:"
-#. )des
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -533,7 +482,6 @@ msgctxt ""
msgid "Unknown error."
msgstr "Ismeretlen hiba."
-#. ,G^c
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -543,7 +491,6 @@ msgctxt ""
msgid "No more details are available for this update."
msgstr "Ehhez a frissítéshez nincs részletes leírás."
-#. Bxze
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -553,7 +500,6 @@ msgctxt ""
msgid "The extension cannot be updated because:"
msgstr "A kiterjesztést nem lehet frissíteni, mert:"
-#. bi+m
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -563,7 +509,6 @@ msgctxt ""
msgid "Required %PRODUCTNAME version doesn't match:"
msgstr "A szükséges %PRODUCTNAME-verzió nem egyezik:"
-#. HBWQ
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -573,7 +518,6 @@ msgctxt ""
msgid "You have %PRODUCTNAME %VERSION"
msgstr "Önnek %PRODUCTNAME %VERSION van"
-#. 0NEU
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -583,7 +527,6 @@ msgctxt ""
msgid "browser based update"
msgstr "böngészőalapú frissítés"
-#. I_7{
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -593,7 +536,6 @@ msgctxt ""
msgid "Version"
msgstr "Verzió"
-#. uR^i
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -603,7 +545,6 @@ msgctxt ""
msgid "Ignore this Update"
msgstr "Frissítés kihagyása"
-#. -GBE
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -613,7 +554,6 @@ msgctxt ""
msgid "Ignore all Updates"
msgstr "Minden frissítés kihagyása"
-#. PR1b
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -623,7 +563,6 @@ msgctxt ""
msgid "Enable Updates"
msgstr "Frissítések engedélyezése"
-#. 7Lu#
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -633,7 +572,6 @@ msgctxt ""
msgid "This update will be ignored.\n"
msgstr "Ez a frissítés ki lesz hagyva.\n"
-#. vPxV
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -642,7 +580,6 @@ msgctxt ""
msgid "Extension Update"
msgstr "Kiterjesztésfrissítés"
-#. O;8G
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -657,7 +594,6 @@ msgstr ""
"A kiterjesztések frissítéséhez kattintson az OK gombra.\n"
"A kiterjesztések frissítésnek leállításához kattintson a Mégse gombra."
-#. v0Pp
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -671,7 +607,6 @@ msgstr ""
"A kiterjesztést nem lehet telepíteni, mert a következő\n"
"rendszerfüggőségek nincsenek kielégítve:"
-#. gH@N
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -680,7 +615,6 @@ msgctxt ""
msgid "System dependencies check"
msgstr "Rendszerfüggőségek ellenőrzése"
-#. S/I0
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -690,7 +624,6 @@ msgctxt ""
msgid "Downloading extensions..."
msgstr "Kiterjesztések letöltése..."
-#. N(AN
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -700,7 +633,6 @@ msgctxt ""
msgid "Result"
msgstr "Eredmény"
-#. mNYs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -710,7 +642,6 @@ msgctxt ""
msgid "OK"
msgstr "OK"
-#. (iRd
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -720,7 +651,6 @@ msgctxt ""
msgid "Cancel Update"
msgstr "Frissítés leállítása"
-#. ac=/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -730,7 +660,6 @@ msgctxt ""
msgid "Installing extensions..."
msgstr "Kiterjesztések telepítése..."
-#. EtdK
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -740,7 +669,6 @@ msgctxt ""
msgid "Installation finished"
msgstr "Telepítési kész"
-#. Y.qI
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -750,7 +678,6 @@ msgctxt ""
msgid "No errors."
msgstr "Nincs hiba."
-#. DsXR
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -760,7 +687,6 @@ msgctxt ""
msgid "Error while downloading extension %NAME. "
msgstr "Hiba a(z) %NAME kiterjesztés letöltése közben. "
-#. s.gj
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -770,7 +696,6 @@ msgctxt ""
msgid "The error message is: "
msgstr "A hibaüzenet: "
-#. [\]=
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -780,7 +705,6 @@ msgctxt ""
msgid "Error while installing extension %NAME. "
msgstr "Hiba a(z) %NAME kiterjesztés telepítése közben. "
-#. .{M/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -790,7 +714,6 @@ msgctxt ""
msgid "The license agreement for extension %NAME was refused. "
msgstr "Visszautasította a(z) %NAME kiterjesztés licencszerződését. "
-#. SNOs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -800,7 +723,6 @@ msgctxt ""
msgid "The extension will not be installed."
msgstr "A kiterjesztés nem lesz telepítve."
-#. e$)a
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -809,7 +731,6 @@ msgctxt ""
msgid "Download and Installation"
msgstr "Letöltés és telepítés"
-#. HBhD
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -826,7 +747,6 @@ msgstr ""
"A telepített kiterjesztés lecseréléséhez kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. r9;l
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -843,7 +763,6 @@ msgstr ""
"A telepített kiterjesztés lecseréléséhez kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. :)M6
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -860,7 +779,6 @@ msgstr ""
"A telepített kiterjesztés lecseréléséhez kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. 5+YJ
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -877,7 +795,6 @@ msgstr ""
"A telepített kiterjesztés lecseréléséhez kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. hr,;
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -894,7 +811,6 @@ msgstr ""
"A telepített kiterjesztés lecseréléséhez kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. BQ2$
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -911,7 +827,6 @@ msgstr ""
"A telepített kiterjesztés lecseréléséhez kattintson az OK gombra.\n"
"A telepítés leállításához kattintson a Mégse gombra."
-#. Q#=\
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -921,7 +836,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 "A %PRODUCTNAME új verzióra frissült. Néhány telepített %PRODUCTNAME-kiterjesztés nem kompatibilis ezzel a verzióval, és frissíteni kell használat előtt."
-#. `PVo
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -931,7 +845,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr "%EXTENSION_NAME hozzáadása"
-#. 3rgH
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -941,7 +854,6 @@ msgctxt ""
msgid "Check for ~Updates..."
msgstr "F~rissítések keresése..."
-#. }LZ[
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -951,7 +863,6 @@ msgctxt ""
msgid "Disable all"
msgstr "Összes letiltása"
-#. p:Gn
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -960,7 +871,6 @@ msgctxt ""
msgid "Extension Update Required"
msgstr "Kiterjesztésfrissítés szükséges"
-#. *iQV
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
diff --git a/source/hu/desktop/source/deployment/manager.po b/source/hu/desktop/source/deployment/manager.po
index 3e351d95d4c..c76797b78ed 100644
--- a/source/hu/desktop/source/deployment/manager.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Másolás: "
-#. L/\_
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Error while adding: "
msgstr "Hiba történt a hozzáadás közben: "
-#. kAc8
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Error while removing: "
msgstr "Hiba történt az eltávolítás közben: "
-#. -+ai
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Extension has already been added: "
msgstr "A kiterjesztés már hozzá van adva: "
-#. UZM;
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "There is no such extension deployed: "
msgstr "Nincs ilyen telepített kiterjesztés: "
-#. W\gZ
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
diff --git a/source/hu/desktop/source/deployment/misc.po b/source/hu/desktop/source/deployment/misc.po
index 427b3f3d6dc..008b9caa615 100644
--- a/source/hu/desktop/source/deployment/misc.po
+++ b/source/hu/desktop/source/deployment/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-18 17:51+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "Ismeretlen"
-#. 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 "A kiterjesztés minimális referenciaverzió-követelménye OpenOffice.org %VERSION"
-#. 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 "A kiterjesztés nem támogat magasabb referenciaverziókat, mint az Openoffice.org %VERSION"
-#. qt\U
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
diff --git a/source/hu/desktop/source/deployment/registry.po b/source/hu/desktop/source/deployment/registry.po
index 7f8589a4d06..94a79238a24 100644
--- a/source/hu/desktop/source/deployment/registry.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Engedélyezés: "
-#. G/D(
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Disabling: "
msgstr "Letiltás: "
-#. %Y)g
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Cannot detect media-type: "
msgstr "A média típusa nem ismerhető fel: "
-#. VeLI
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "This media-type is not supported: "
msgstr "Ez a médiatípus nem támogatott: "
-#. AMk0
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "An error occurred while enabling: "
msgstr "Hiba történt az engedélyezés közben: "
-#. bDCE
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
diff --git a/source/hu/desktop/source/deployment/registry/component.po b/source/hu/desktop/source/deployment/registry/component.po
index dbd5a66847a..92a03113488 100644
--- a/source/hu/desktop/source/deployment/registry/component.po
+++ b/source/hu/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-09 10:32+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 dinamikus programkönyvtár komponens"
-#. 3QYD
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "UNO Java Component"
msgstr "UNO Java-komponens"
-#. 2xq{
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "UNO Python Component"
msgstr "UNO Python-komponens"
-#. ;TgS
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "UNO Components"
msgstr "UNO-komponensek"
-#. 8KR6
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "UNO RDB Type Library"
msgstr "UNO RDB-típuskönyvtár"
-#. rD`-
#: dp_component.src
msgctxt ""
"dp_component.src\n"
diff --git a/source/hu/desktop/source/deployment/registry/configuration.po b/source/hu/desktop/source/deployment/registry/configuration.po
index 50c43f30ee2..6ffe3c20743 100644
--- a/source/hu/desktop/source/deployment/registry/configuration.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Konfigurációs séma"
-#. A5Gt
#: dp_configuration.src
msgctxt ""
"dp_configuration.src\n"
diff --git a/source/hu/desktop/source/deployment/registry/help.po b/source/hu/desktop/source/deployment/registry/help.po
index 686dc675500..adbb660830c 100644
--- a/source/hu/desktop/source/deployment/registry/help.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Súgó"
-#. .hUu
#: dp_help.src
msgctxt ""
"dp_help.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "The extension cannot be installed because:\n"
msgstr "A kiterjesztést nem lehet telepíteni, mert:\n"
-#. 4P[r
#: dp_help.src
msgctxt ""
"dp_help.src\n"
diff --git a/source/hu/desktop/source/deployment/registry/package.po b/source/hu/desktop/source/deployment/registry/package.po
index 7f9a2957193..1a0d5ceb3a1 100644
--- a/source/hu/desktop/source/deployment/registry/package.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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/hu/desktop/source/deployment/registry/script.po b/source/hu/desktop/source/deployment/registry/script.po
index 9a20084aec0..1e666fa6895 100644
--- a/source/hu/desktop/source/deployment/registry/script.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 Basic-programkönyvtár"
-#. IAA3
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Dialog Library"
msgstr "Párbeszédpanel-könyvtár"
-#. C(Vl
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "The library name could not be determined."
msgstr "A programkönyvtár neve nem megállapítható."
-#. G**:
#: dp_script.src
msgctxt ""
"dp_script.src\n"
diff --git a/source/hu/desktop/source/deployment/registry/sfwk.po b/source/hu/desktop/source/deployment/registry/sfwk.po
index 150d29796c5..2fdf9b6e32a 100644
--- a/source/hu/desktop/source/deployment/registry/sfwk.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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/hu/desktop/source/deployment/unopkg.po b/source/hu/desktop/source/deployment/unopkg.po
index 582103d6615..5f8f3f5c9df 100644
--- a/source/hu/desktop/source/deployment/unopkg.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "A(z) $NAME kiterjesztés szoftverlicenc-szerződése:"
-#. 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 "Olvassa el a fent megjelenített licencszerződést. Fogadja el a licencszerződést úgy, hogy a konzolba beírja az „igen” szót, majd megnyomja az Enter billentyűt. Ha azt írja be, hogy „nem”, akkor a kiterjesztés telepítése megszakad."
-#. 805f
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[Írja be: „igen” vagy „nem”]:"
-#. 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 "Helytelen válasz. Írja be: „igen” vagy „nem”:"
-#. %T)~
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "YES"
msgstr "IGEN"
-#. XAaL
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Y"
msgstr "I"
-#. [qZ4
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "NO"
msgstr "NEM"
-#. !,ds
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "N"
msgstr "N"
-#. |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 "Az unopkg nem indítható el. A zárolási fájl azt jelzi, hogy már fut. Ha ez nem igaz, akkor törölje a zárolási fájlt a következő helyen:"
-#. WrUl
#: unopkg.src
msgctxt ""
"unopkg.src\n"
diff --git a/source/hu/desktop/uiconfig/ui.po b/source/hu/desktop/uiconfig/ui.po
index 6c8dbfa912d..3863ef6613e 100644
--- a/source/hu/desktop/uiconfig/ui.po
+++ b/source/hu/desktop/uiconfig/ui.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-11-17 19:02+0200\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-29 21:25+0000\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -14,96 +14,85 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1354224312.0\n"
-#. :oeY
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"ExtensionManagerDialog\n"
"title\n"
"string.text"
msgid "Extension Manager"
-msgstr "Kiterjesztéskezelő"
+msgstr ""
-#. )+V:
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"add\n"
"label\n"
"string.text"
msgid "Add..."
-msgstr "Hozzáadás..."
+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 "~Frissítések keresése..."
+msgstr ""
-#. ;U^(
-#: ExtensionManager.ui
-#, fuzzy
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"shared\n"
"label\n"
"string.text"
msgid "Shared"
-msgstr "~Közös"
+msgstr ""
-#. .O_p
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"user\n"
"label\n"
"string.text"
msgid "User"
-msgstr "Felhasználói"
+msgstr ""
-#. o[/Q
-#: ExtensionManager.ui
-#, fuzzy
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"bundled\n"
"label\n"
"string.text"
msgid "Installation"
-msgstr "~Alaptelepítés része"
+msgstr ""
-#. OkPj
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Type of Extension"
-msgstr "Kiterjesztés típusa"
+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 "%EXTENSION_NAME hozzáadása"
+msgstr ""
-#. s9*(
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"getextensions\n"
"label\n"
"string.text"
msgid "Get more extensions online..."
-msgstr "További kiterjesztések letöltése..."
+msgstr ""
diff --git a/source/hu/dictionaries/af_ZA.po b/source/hu/dictionaries/af_ZA.po
index 6fbf76dc044..2e389b0c85c 100644
--- a/source/hu/dictionaries/af_ZA.po
+++ b/source/hu/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-23 00:01+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. M*jg
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/an_ES.po b/source/hu/dictionaries/an_ES.po
index 12e59caac50..adc63692b1b 100644
--- a/source/hu/dictionaries/an_ES.po
+++ b/source/hu/dictionaries/an_ES.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-18 17:54+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. gb;t
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ar.po b/source/hu/dictionaries/ar.po
index ac5f2617a80..fe549083466 100644
--- a/source/hu/dictionaries/ar.po
+++ b/source/hu/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-23 00:01+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ys!9
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/be_BY.po b/source/hu/dictionaries/be_BY.po
index 7e5b3c128b0..4eb4185e5b5 100644
--- a/source/hu/dictionaries/be_BY.po
+++ b/source/hu/dictionaries/be_BY.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:51+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. [4y]
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/bg_BG.po b/source/hu/dictionaries/bg_BG.po
index f93e05b6f2a..775fcff3e1a 100644
--- a/source/hu/dictionaries/bg_BG.po
+++ b/source/hu/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-23 00:01+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dq%%
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/bn_BD.po b/source/hu/dictionaries/bn_BD.po
index f4a8201203f..62faf8b1d98 100644
--- a/source/hu/dictionaries/bn_BD.po
+++ b/source/hu/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-23 00:12+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. bojQ
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/br_FR.po b/source/hu/dictionaries/br_FR.po
index 3cd5451bcb8..91fd5301579 100644
--- a/source/hu/dictionaries/br_FR.po
+++ b/source/hu/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-23 00:02+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 9Xa=
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ca.po b/source/hu/dictionaries/ca.po
index c9dc2c803a0..00c80f365fb 100644
--- a/source/hu/dictionaries/ca.po
+++ b/source/hu/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-23 00:03+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =.lo
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/cs_CZ.po b/source/hu/dictionaries/cs_CZ.po
index b84658768b9..431e3afe728 100644
--- a/source/hu/dictionaries/cs_CZ.po
+++ b/source/hu/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-23 00:03+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Blot
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/da_DK.po b/source/hu/dictionaries/da_DK.po
index 2ad75df822e..a9d437ea92a 100644
--- a/source/hu/dictionaries/da_DK.po
+++ b/source/hu/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-23 00:03+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \}Cs
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/de.po b/source/hu/dictionaries/de.po
index f2927321983..8af9bf4f969 100644
--- a/source/hu/dictionaries/de.po
+++ b/source/hu/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: 2012-06-30 11:45+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8oqA
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/el_GR.po b/source/hu/dictionaries/el_GR.po
index 61ecd514fcb..ce822dcd6c4 100644
--- a/source/hu/dictionaries/el_GR.po
+++ b/source/hu/dictionaries/el_GR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:52+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Onq%
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/en.po b/source/hu/dictionaries/en.po
index 059b6f7957a..473e9b575e1 100644
--- a/source/hu/dictionaries/en.po
+++ b/source/hu/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-12-18 17:53+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. XeP\
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/en/dialog.po b/source/hu/dictionaries/en/dialog.po
index 86a9f07bc8f..d25e0ce5fc8 100644
--- a/source/hu/dictionaries/en/dialog.po
+++ b/source/hu/dictionaries/en/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-02-22 18:14+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 9e.W
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Grammar checking"
msgstr "Nyelvhelyesség"
-#. Q@$;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Check more grammar errors."
msgstr "További nyelvhelyességi hibák ellenőrzése "
-#. HoPw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr "Lehetséges hibák"
-#. 3rmv
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Check missing capitalization of sentences."
msgstr "Hiányzó mondatkezdő nagybetű ellenőrzése"
-#. Z3Ni
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Capitalization"
msgstr "Nagybetű"
-#. 9l$4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Check repeated words."
msgstr "Szóismétlések ellenőrzése"
-#. M[VX
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Szóismétlések"
-#. O#JY
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Check missing or extra parentheses and quotation marks."
msgstr "Hiányzó vagy felesleges zárójelek és idézőjelek ellenőrzése"
-#. 0[^A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Parentheses"
msgstr "Zárójelek"
-#. PpHs
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Punctuation"
msgstr "Központozás"
-#. ]@g;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Check single spaces between words."
msgstr "Szavak között egy szóköz ellenőrzése"
-#. sq8g
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Word spacing"
msgstr "Szóközök"
-#. #L*f
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Force unspaced em dash instead of spaced en dash."
msgstr "Szóközök nélküli kvirt használata szóközökkel körülvett félkvirt (nagykötőjel) helyett"
-#. /0jw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Em dash"
msgstr "Kvirt"
-#. ]mQU
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Force spaced en dash instead of unspaced em dash."
msgstr "Szóközökkel körülvett félkvirt (nagykötőjel) használata szóközök nélküli kvirt helyett"
-#. (`[R
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "En dash"
msgstr "Félkvirt"
-#. H5p]
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Check double quotation marks: \"x\" → “x”"
msgstr "Idézőjelek cseréje: \"x\" → “x”"
-#. ?I09
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr "Idézőjelek"
-#. 1c-\
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Check true multiplication sign: 5x5 → 5×5"
msgstr "Valódi szorzásjel: 5x5 → 5×5"
-#. iHJD
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Multiplication sign"
msgstr "Szorzásjel"
-#. ck+~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Check single spaces between sentences."
msgstr "A mondatok között egy szóköz legyen."
-#. 096i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Sentence spacing"
msgstr "Mondatok közötti szóköz"
-#. 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 "A mondatok között ne legyen kettőnél több szóköz."
-#. HW6K
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "More spaces"
msgstr "Több szóköz"
-#. _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 "Valódi mínuszjel használata kötőjel helyett"
-#. 6wpz
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Minus sign"
msgstr "Mínuszjel"
-#. [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 "Az egyenes idézőjelek helyett nyodai idézőjelek használata"
-#. WGfe
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr "Aposztróf"
-#. #i/A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Change three dots with ellipsis."
msgstr "Három pont cseréje a megfelelő nyomdai jelre."
-#. x8=~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr "Három pont"
-#. BXZ|
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Others"
msgstr "Egyebek"
-#. i7h_
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -303,7 +271,6 @@ msgctxt ""
msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
msgstr "Mértékegységek átváltása (°F, mph, ft, in, lb, gal és miles)."
-#. D=QB
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -312,7 +279,6 @@ msgctxt ""
msgid "Convert to metric (°C, km/h, m, kg, l)"
msgstr "Metrikus mértékegységre váltás (°C, km/h, m, kg, l)"
-#. 65`Q
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -321,7 +287,6 @@ msgctxt ""
msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
msgstr "Szokványos (1000000 → 1,000,000) vagy ISO (1000000 → 1 000 000)."
-#. ZQ.i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -330,7 +295,6 @@ msgctxt ""
msgid "Thousand separation of large numbers"
msgstr "Nagy számok ezres tagolása"
-#. %]x4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -339,7 +303,6 @@ msgctxt ""
msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
msgstr "Mértékegységek átváltása (°C; km/h; cm, m, km; kg; l)."
-#. h%;X
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
diff --git a/source/hu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/hu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index 548acb086c0..63ace7e2e59 100644
--- a/source/hu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Szótárak"
-#. _5nX
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/hu/dictionaries/es.po b/source/hu/dictionaries/es.po
index a7f786f6c35..7c045f0af0a 100644
--- a/source/hu/dictionaries/es.po
+++ b/source/hu/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"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. }r*O
#: description.xml
#, fuzzy
msgctxt ""
diff --git a/source/hu/dictionaries/et_EE.po b/source/hu/dictionaries/et_EE.po
index 6f420fe9131..e8c39eae40e 100644
--- a/source/hu/dictionaries/et_EE.po
+++ b/source/hu/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-23 00:04+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. N8[E
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/fr_FR.po b/source/hu/dictionaries/fr_FR.po
index b4c3daef8ca..c5a9d2311c9 100644
--- a/source/hu/dictionaries/fr_FR.po
+++ b/source/hu/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-23 00:04+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8=ws
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/gd_GB.po b/source/hu/dictionaries/gd_GB.po
index 0fb46074120..8cb50e64b51 100644
--- a/source/hu/dictionaries/gd_GB.po
+++ b/source/hu/dictionaries/gd_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:53+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 5C,5
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/gl.po b/source/hu/dictionaries/gl.po
index a49e3dd3a75..cd7395c4129 100644
--- a/source/hu/dictionaries/gl.po
+++ b/source/hu/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: 2012-11-15 14:41+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -16,7 +16,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1352990460.0\n"
-#. Um]a
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/gu_IN.po b/source/hu/dictionaries/gu_IN.po
index b71458d58bd..76775aa139e 100644
--- a/source/hu/dictionaries/gu_IN.po
+++ b/source/hu/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-23 00:05+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oa/$
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/he_IL.po b/source/hu/dictionaries/he_IL.po
index d08dae8f86b..f0ded0f1f60 100644
--- a/source/hu/dictionaries/he_IL.po
+++ b/source/hu/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-23 00:11+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 0$d\
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/hi_IN.po b/source/hu/dictionaries/hi_IN.po
index d5839ab3c10..ab1a9b0f50d 100644
--- a/source/hu/dictionaries/hi_IN.po
+++ b/source/hu/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-23 00:05+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ?Zn,
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/hr_HR.po b/source/hu/dictionaries/hr_HR.po
index 414943e2fcd..bb939022cf2 100644
--- a/source/hu/dictionaries/hr_HR.po
+++ b/source/hu/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-23 00:05+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. HRhW
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/hu_HU.po b/source/hu/dictionaries/hu_HU.po
index 657ec427012..803e40e9e77 100644
--- a/source/hu/dictionaries/hu_HU.po
+++ b/source/hu/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-12-18 17:53+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dBOo
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/hu_HU/dialog.po b/source/hu/dictionaries/hu_HU/dialog.po
index cfe1c58d991..1d7ca5cc97b 100644
--- a/source/hu/dictionaries/hu_HU/dialog.po
+++ b/source/hu/dictionaries/hu_HU/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-01-05 20:41+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (yO7
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Spelling"
msgstr "Helyesírás-ellenőrzés"
-#. tD_{
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Capitalization"
msgstr "Nagybetűsítés"
-#. 9QT2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Parentheses"
msgstr "Zárójelek"
-#. WnVo
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Word parts of compounds"
msgstr "Egybe- és különírási javaslatok"
-#. +*+#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Comma usage"
msgstr "Vesszőhasználatra vonatkozó javaslatok"
-#. PErZ
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Proofreading"
msgstr "Helyesírás-ellenőrzés"
-#. T.I:
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Style checking"
msgstr "Stílusellenőrzés"
-#. sU-l
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Underline typo-like compound words"
msgstr "Egyszerű nem szótári összetett szavak"
-#. I/P9
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Underline all generated compound words"
msgstr "Minden nem szótári összetett szó"
-#. 6+J\
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr "Lehetséges hibák"
-#. 53F}
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Consistency of money amounts"
msgstr "Számok és átírásuk"
-#. X~\N
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Szóismétlés"
-#. #NB5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Szóismétlés"
-#. .b*#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Duplication within clauses"
msgstr "Szóismétlés tagmondaton belül"
-#. 3z2o
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Duplication within sentences"
msgstr "Szóismétlés mondaton belül"
-#. =^q+
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Allow previous checkings with affixes"
msgstr "Szóismétlés eltérő toldalékok esetén is"
-#. `xRF
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Thousand separation of numbers"
msgstr "Számok ezres tagolása"
-#. kZht
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Typography"
msgstr "Tipográfia"
-#. YD{P
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr "Idézőjelek"
-#. 7x;$
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr "Aposztróf"
-#. !.--
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "En dash"
msgstr "Nagykötőjel és gondolatjel"
-#. J;9p
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr "Három pont"
-#. sEY|
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Ligature suggestion"
msgstr "Ligatúra javaslata"
-#. VEY2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "Underline ligatures"
msgstr "Ligatúra tiltása"
-#. V%oS
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Fractions"
msgstr "Törtek"
-#. .WP!
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Thin space"
msgstr "Keskeny szóköz"
-#. ^7+^
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "Double spaces"
msgstr "Dupla szóköz"
-#. Au8_
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "More spaces"
msgstr "Sok szóköz"
-#. $g\3
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Indices"
msgstr "Indexek"
-#. Rhh5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Minus"
msgstr "Mínuszjel"
-#. (bpf
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Measurements"
msgstr "Mértékegységek"
-#. 8dyI
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
diff --git a/source/hu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/hu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index aeef051cdb5..4bfa35335f7 100644
--- a/source/hu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Szótárak"
-#. (=QA
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/hu/dictionaries/it_IT.po b/source/hu/dictionaries/it_IT.po
index 0dc7287f54e..39d9e793301 100644
--- a/source/hu/dictionaries/it_IT.po
+++ b/source/hu/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-23 00:06+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 3)CA
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ku_TR.po b/source/hu/dictionaries/ku_TR.po
index af9d6ef539b..9df1a06b462 100644
--- a/source/hu/dictionaries/ku_TR.po
+++ b/source/hu/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-23 00:06+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. S-Qn
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/lt_LT.po b/source/hu/dictionaries/lt_LT.po
index 3c03094c34b..7bd1873e157 100644
--- a/source/hu/dictionaries/lt_LT.po
+++ b/source/hu/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-23 00:06+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. tL*^
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/lv_LV.po b/source/hu/dictionaries/lv_LV.po
index fbeff5fd3c7..26ca975aac8 100644
--- a/source/hu/dictionaries/lv_LV.po
+++ b/source/hu/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-23 00:06+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. _J-[
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ne_NP.po b/source/hu/dictionaries/ne_NP.po
index 6469f0a7736..55a5578ffe4 100644
--- a/source/hu/dictionaries/ne_NP.po
+++ b/source/hu/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-23 00:06+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. x+],
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/nl_NL.po b/source/hu/dictionaries/nl_NL.po
index 0bd8f375cd7..1b0e7863f1d 100644
--- a/source/hu/dictionaries/nl_NL.po
+++ b/source/hu/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-23 00:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =]Af
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/no.po b/source/hu/dictionaries/no.po
index 02c28d81ebe..670603e48ff 100644
--- a/source/hu/dictionaries/no.po
+++ b/source/hu/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-23 00:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ifIT
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/oc_FR.po b/source/hu/dictionaries/oc_FR.po
index 88f9809d5c6..c759855a00c 100644
--- a/source/hu/dictionaries/oc_FR.po
+++ b/source/hu/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-23 00:08+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. H,N3
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/pl_PL.po b/source/hu/dictionaries/pl_PL.po
index 7d8949581e0..899a069f6a4 100644
--- a/source/hu/dictionaries/pl_PL.po
+++ b/source/hu/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-23 00:08+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. f%I^
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/pt_BR.po b/source/hu/dictionaries/pt_BR.po
index 54d1817c057..1ac34110195 100644
--- a/source/hu/dictionaries/pt_BR.po
+++ b/source/hu/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-23 00:08+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,11 +15,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"
-msgstr "Brazíliai portugál helyesírási szótár (1990-es változat) és elválasztási szabályok"
+msgid "Spelling, hyphenation and grammar checking tools for Brazilian Portuguese"
+msgstr ""
diff --git a/source/hu/dictionaries/pt_BR/dialog.po b/source/hu/dictionaries/pt_BR/dialog.po
new file mode 100644
index 00000000000..33917680d34
--- /dev/null
+++ b/source/hu/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: hu\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/hu/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/hu/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
new file mode 100644
index 00000000000..02d07aee686
--- /dev/null
+++ b/source/hu/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: hu\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/hu/dictionaries/pt_PT.po b/source/hu/dictionaries/pt_PT.po
index 3e570cdaedd..0b1678fee0a 100644
--- a/source/hu/dictionaries/pt_PT.po
+++ b/source/hu/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-23 00:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. mWcf
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ro.po b/source/hu/dictionaries/ro.po
index 5cc2c255fe2..e9c0dca081a 100644
--- a/source/hu/dictionaries/ro.po
+++ b/source/hu/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-23 00:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8Eaa
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ru_RU.po b/source/hu/dictionaries/ru_RU.po
index 3a317bedc5e..cd6ea6e222f 100644
--- a/source/hu/dictionaries/ru_RU.po
+++ b/source/hu/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: 2012-01-05 20:28+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. XCYX
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/ru_RU/dialog.po b/source/hu/dictionaries/ru_RU/dialog.po
index 2cafc3176ab..a9ed8a6d1ba 100644
--- a/source/hu/dictionaries/ru_RU/dialog.po
+++ b/source/hu/dictionaries/ru_RU/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-01-14 15:53+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. cG^a
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Abbreviation"
msgstr "Rövidítés"
-#. y{T{
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Grammar"
msgstr "Nyelvhelyesség"
-#. 7CWi
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Compound words with hyphen"
msgstr "Kötőjelet tartalmazó összetett szavak"
-#. [nFL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Comma usage"
msgstr "Vesszőhasználatra vonatkozó javaslatok"
-#. .ahk
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "General error"
msgstr "Általános hiba"
-#. 2ZRv
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Multiword expressions"
msgstr "Többszavas kifejezések"
-#. 0gNL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Together/separately"
msgstr "Egybeírás/különírás"
-#. Jm1Q
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Proofreading"
msgstr "Helyesírás-ellenőrzés"
-#. u^sY
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Space mistake"
msgstr "Szóközhiba"
-#. *e_$
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Typographica"
msgstr "Tipográfia"
-#. 0^;9
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Szóismétlés"
-#. {_8V
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Others"
msgstr "Egyebek"
-#. )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 "Számok ezres tagolása"
-#. 1D6y
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
diff --git a/source/hu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/hu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index 0dd651ad606..0ef30b6781b 100644
--- a/source/hu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Szótárak"
-#. \hWw
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/hu/dictionaries/si_LK.po b/source/hu/dictionaries/si_LK.po
index c1a801dc0e1..e89c4b90b84 100644
--- a/source/hu/dictionaries/si_LK.po
+++ b/source/hu/dictionaries/si_LK.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:54+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. %WZE
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/sk_SK.po b/source/hu/dictionaries/sk_SK.po
index b5078a0c346..8d51f2a28a9 100644
--- a/source/hu/dictionaries/sk_SK.po
+++ b/source/hu/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-23 00:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. IJ[6
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/sl_SI.po b/source/hu/dictionaries/sl_SI.po
index ec02e4e13c1..2e25fbd91b0 100644
--- a/source/hu/dictionaries/sl_SI.po
+++ b/source/hu/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-23 00:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c7;T
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/sr.po b/source/hu/dictionaries/sr.po
index 97c61ee4c37..8b1e5490320 100644
--- a/source/hu/dictionaries/sr.po
+++ b/source/hu/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-23 00:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. !)vU
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/sv_SE.po b/source/hu/dictionaries/sv_SE.po
index 96723a8ca71..595fcf31795 100644
--- a/source/hu/dictionaries/sv_SE.po
+++ b/source/hu/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-23 00:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Mcgn
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/sw_TZ.po b/source/hu/dictionaries/sw_TZ.po
index 60c791b8169..8afa13837ba 100644
--- a/source/hu/dictionaries/sw_TZ.po
+++ b/source/hu/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-23 00:10+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c6!@
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/te_IN.po b/source/hu/dictionaries/te_IN.po
index bb347547c83..ad3b865e038 100644
--- a/source/hu/dictionaries/te_IN.po
+++ b/source/hu/dictionaries/te_IN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-12-18 17:54+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. USC3
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/th_TH.po b/source/hu/dictionaries/th_TH.po
index c31ffaa9859..6bdc5a3f120 100644
--- a/source/hu/dictionaries/th_TH.po
+++ b/source/hu/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-23 00:10+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oK5)
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/uk_UA.po b/source/hu/dictionaries/uk_UA.po
index e268b5dab50..38ba1a362f7 100644
--- a/source/hu/dictionaries/uk_UA.po
+++ b/source/hu/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-23 00:10+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. mB1I
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/vi.po b/source/hu/dictionaries/vi.po
index efb97958cb4..3974443f3c8 100644
--- a/source/hu/dictionaries/vi.po
+++ b/source/hu/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-23 00:10+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. F(qG
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/dictionaries/zu_ZA.po b/source/hu/dictionaries/zu_ZA.po
index 11e4802847d..f7788f2af95 100644
--- a/source/hu/dictionaries/zu_ZA.po
+++ b/source/hu/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-23 00:00+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;UVp
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/hu/editeng/source/accessibility.po b/source/hu/editeng/source/accessibility.po
index 99393ab611b..a32e744c381 100644
--- a/source/hu/editeng/source/accessibility.po
+++ b/source/hu/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-03-25 09:51+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Képes felsorolásjel a bekezdésben"
-#. 8|X!
#: accessibility.src
msgctxt ""
"accessibility.src\n"
diff --git a/source/hu/editeng/source/editeng.po b/source/hu/editeng/source/editeng.po
index 09d745dd623..447c696b5d7 100644
--- a/source/hu/editeng/source/editeng.po
+++ b/source/hu/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-12 22:43+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Törlés"
-#. I3}j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Move"
msgstr "Áthelyezés"
-#. I?T;
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. eGK$
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Replace"
msgstr "Csere"
-#. 4/p.
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr "Jellemzők alkalmazása"
-#. uWM0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Reset attributes"
msgstr "Jellemzők visszaállítása"
-#. :oTC
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Indent"
msgstr "Behúzás"
-#. B%=0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr "Stílusok alkalmazása"
-#. H~}+
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "~Change Case"
msgstr "~Kisbetű – nagybetű"
-#. x`g8
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -106,7 +96,6 @@ msgctxt ""
msgid "~Spellcheck..."
msgstr "~Helyesírás-ellenőrzés..."
-#. k]@@
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. bR{%
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -126,7 +114,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Hozzáadás"
-#. W}8j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -136,7 +123,6 @@ msgctxt ""
msgid "Ignore All"
msgstr "Mindent mellőz"
-#. Z}FQ
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "Automatikus javítás"
-#. 6huV
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -155,7 +140,6 @@ msgctxt ""
msgid "Word is %x"
msgstr "A szó %x"
-#. NpM!
#: editeng.src
msgctxt ""
"editeng.src\n"
diff --git a/source/hu/editeng/source/items.po b/source/hu/editeng/source/items.po
index c1faccf3116..439f9996c46 100644
--- a/source/hu/editeng/source/items.po
+++ b/source/hu/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: 2012-01-12 21:46+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Papírtálca"
-#. `IKX
#: page.src
msgctxt ""
"page.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "[From printer settings]"
msgstr "[Nyomtatóbeállítások alapján]"
-#. MppO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "Igaz"
-#. W*j@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "Hamis"
-#. a`*i
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "No break"
msgstr "Nincs töréspont"
-#. peH?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Break before new column"
msgstr "Törés új hasáb előtt"
-#. w_,F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Break after new column"
msgstr "Törés új hasáb után"
-#. 7Pc(
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Break before and after new column"
msgstr "Törés új hasáb előtt és után"
-#. -_lp
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Break before new page"
msgstr "Törés új oldal előtt"
-#. u/3c
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Break after new page"
msgstr "Törés új oldal után"
-#. `{Y?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Break before and after new page"
msgstr "Törés új oldal előtt és után"
-#. ~ObJ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "No Shadow"
msgstr "Nincs árnyékolás"
-#. RgUU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Shadow top left"
msgstr "Árnyék bal oldalt felül"
-#. H0}V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Shadow top right"
msgstr "Árnyék jobb oldalt felül"
-#. 1mbn
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Shadow bottom left"
msgstr "Bal alsó árnyék"
-#. ipm;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Shadow bottom right"
msgstr "Jobb alsó árnyék"
-#. f5u9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Color "
msgstr "Szín "
-#. Gz2%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Black"
msgstr "Fekete"
-#. %BRR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Blue"
msgstr "Kék"
-#. ?3E,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Green"
msgstr "Zöld"
-#. F:Qc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Cyan"
msgstr "Ciánkék"
-#. xbPR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Red"
msgstr "Vörös"
-#. X*L,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Magenta"
msgstr "Bíbor"
-#. 4E^B
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "Brown"
msgstr "Barna"
-#. T+Tb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Gray"
msgstr "Szürke"
-#. [e-U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Light Gray"
msgstr "Világosszürke"
-#. =tA|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "Light Blue"
msgstr "Világoskék"
-#. EO_G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "Light Green"
msgstr "Világoszöld"
-#. M:z@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Light Cyan"
msgstr "Világos ciánkék"
-#. K8J,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Light Red"
msgstr "Világospiros"
-#. 4U[n
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Light Magenta"
msgstr "Halvány bíborvörös"
-#. @ebO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -303,7 +271,6 @@ msgctxt ""
msgid "Yellow"
msgstr "Sárga"
-#. aboy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -312,7 +279,6 @@ msgctxt ""
msgid "White"
msgstr "Fehér"
-#. Ko*D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -321,7 +287,6 @@ msgctxt ""
msgid "Not Italic"
msgstr "Nem dőlt"
-#. o{,0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -330,7 +295,6 @@ msgctxt ""
msgid "Oblique italic"
msgstr "Dőlt"
-#. 3ju/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -339,7 +303,6 @@ msgctxt ""
msgid "Italic"
msgstr "Dőlt"
-#. !5hY
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -348,7 +311,6 @@ msgctxt ""
msgid "thin"
msgstr "vékony"
-#. odl:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -357,7 +319,6 @@ msgctxt ""
msgid "ultra thin"
msgstr "nagyon vékony"
-#. HAPs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -366,7 +327,6 @@ msgctxt ""
msgid "light"
msgstr "világos"
-#. li?X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -375,7 +335,6 @@ msgctxt ""
msgid "semi light"
msgstr "közepesen világos"
-#. );gy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -384,7 +343,6 @@ msgctxt ""
msgid "normal"
msgstr "normál"
-#. cK$~
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -393,7 +351,6 @@ msgctxt ""
msgid "medium"
msgstr "közepes"
-#. lHA+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -402,7 +359,6 @@ msgctxt ""
msgid "semi bold"
msgstr "közepesen vastag"
-#. 35-f
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -411,7 +367,6 @@ msgctxt ""
msgid "bold"
msgstr "vastag"
-#. Q@mS
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -420,7 +375,6 @@ msgctxt ""
msgid "ultra bold"
msgstr "nagyon vastag"
-#. EdRE
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -429,7 +383,6 @@ msgctxt ""
msgid "black"
msgstr "fekete"
-#. szk;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -438,7 +391,6 @@ msgctxt ""
msgid "No underline"
msgstr "Nincs aláhúzás"
-#. N$`=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -447,7 +399,6 @@ msgctxt ""
msgid "Single underline"
msgstr "Egyszeres aláhúzás"
-#. e=TH
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -456,7 +407,6 @@ msgctxt ""
msgid "Double underline"
msgstr "Kettős aláhúzás"
-#. 9F#d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -465,7 +415,6 @@ msgctxt ""
msgid "Dotted underline"
msgstr "Pontozott aláhúzás"
-#. uglo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -474,7 +423,6 @@ msgctxt ""
msgid "Underline"
msgstr "Aláhúzás"
-#. ^o2G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -483,7 +431,6 @@ msgctxt ""
msgid "Underline (dashes)"
msgstr "Aláhúzás (vonalak)"
-#. LtkP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -492,7 +439,6 @@ msgctxt ""
msgid "Underline (long dashes)"
msgstr "Aláhúzás (hosszú vonalak)"
-#. c|Oo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -501,7 +447,6 @@ msgctxt ""
msgid "Underline (dot dash)"
msgstr "Aláhúzás (pont vonal)"
-#. q:--
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -510,7 +455,6 @@ msgctxt ""
msgid "Underline (dot dot dash)"
msgstr "Aláhúzás (pont pont vonal)"
-#. [5A\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -519,7 +463,6 @@ msgctxt ""
msgid "Underline (small wave)"
msgstr "Aláhúzás (kis hullám)"
-#. JfbI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -528,7 +471,6 @@ msgctxt ""
msgid "Underline (Wave)"
msgstr "Aláhúzás (hullámvonal)"
-#. HFTP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -537,7 +479,6 @@ msgctxt ""
msgid "Underline (Double wave)"
msgstr "Aláhúzás (kettős hullám)"
-#. jY!%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -546,7 +487,6 @@ msgctxt ""
msgid "Underlined (Bold)"
msgstr "Aláhúzás (vastag)"
-#. mG2U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -555,7 +495,6 @@ msgctxt ""
msgid "Dotted underline (Bold)"
msgstr "Pontozott aláhúzás (vastag)"
-#. ,fcU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -564,7 +503,6 @@ msgctxt ""
msgid "Underline (Dash bold)"
msgstr "Aláhúzás (vastag vonalak)"
-#. p^I/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -573,7 +511,6 @@ msgctxt ""
msgid "Underline (long dash, bold)"
msgstr "Aláhúzás (hosszú szaggatott, vastag)"
-#. K:|d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -582,7 +519,6 @@ msgctxt ""
msgid "Underline (dot dash, bold)"
msgstr "Aláhúzás (vastag pont vonal)"
-#. X}gG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -591,7 +527,6 @@ msgctxt ""
msgid "Underline (dot dot dash, bold)"
msgstr "Aláhúzás (vastag pont pont vonal)"
-#. RX8\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -600,7 +535,6 @@ msgctxt ""
msgid "Underline (wave, bold)"
msgstr "Aláhúzás (vastag hullám)"
-#. FTF7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -609,7 +543,6 @@ msgctxt ""
msgid "No overline"
msgstr "Nincs felülvonás"
-#. lf:R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -618,7 +551,6 @@ msgctxt ""
msgid "Single overline"
msgstr "Egyszeres felülvonás"
-#. Y}-d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -627,7 +559,6 @@ msgctxt ""
msgid "Double overline"
msgstr "Dupla felülvonás"
-#. 1`6|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -636,7 +567,6 @@ msgctxt ""
msgid "Dotted overline"
msgstr "Pontozott felülvonás"
-#. ^k=5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -645,7 +575,6 @@ msgctxt ""
msgid "Overline"
msgstr "Felülvonás"
-#. l3!R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -654,7 +583,6 @@ msgctxt ""
msgid "Overline (dashes)"
msgstr "Felülvonás (szaggatott)"
-#. rj?D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -663,7 +591,6 @@ msgctxt ""
msgid "Overline (long dashes)"
msgstr "Felülvonás (hosszú szaggatott)"
-#. AXoK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -672,7 +599,6 @@ msgctxt ""
msgid "Overline (dot dash)"
msgstr "Felülvonás (pont-vonás)"
-#. qnHq
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -681,7 +607,6 @@ msgctxt ""
msgid "Overline (dot dot dash)"
msgstr "Felülvonás (pont-pont-vonás)"
-#. F*p|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -690,7 +615,6 @@ msgctxt ""
msgid "Overline (small wave)"
msgstr "Felülvonás (kis hullám)"
-#. 4iNC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -699,7 +623,6 @@ msgctxt ""
msgid "Overline (Wave)"
msgstr "Felülvonás (hullám)"
-#. c_R/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -708,7 +631,6 @@ msgctxt ""
msgid "Overline (Double wave)"
msgstr "Aláhúzás (kettős hullám)"
-#. q1=d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -717,7 +639,6 @@ msgctxt ""
msgid "Overlined (Bold)"
msgstr "Felülvonás (vastag)"
-#. N*cM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -726,7 +647,6 @@ msgctxt ""
msgid "Dotted overline (Bold)"
msgstr "Pontozott felülvonás (vastag)"
-#. (]`L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -735,7 +655,6 @@ msgctxt ""
msgid "Overline (Dash bold)"
msgstr "Felülvonás (vastag szaggatott)"
-#. FUNs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -744,7 +663,6 @@ msgctxt ""
msgid "Overline (long dash, bold)"
msgstr "Felülvonás (hosszú szaggatott, vastag)"
-#. ?GOU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -753,7 +671,6 @@ msgctxt ""
msgid "Overline (dot dash, bold)"
msgstr "Felülvonás (vastag pont-vonás)"
-#. 9Al%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -762,7 +679,6 @@ msgctxt ""
msgid "Overline (dot dot dash, bold)"
msgstr "Felülvonás (vastag pont-pont-vonás)"
-#. |.\k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -771,7 +687,6 @@ msgctxt ""
msgid "Overline (wave, bold)"
msgstr "Felülvonás (vastag hullám)"
-#. @w7S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -780,7 +695,6 @@ msgctxt ""
msgid "No strikethrough"
msgstr "Nincs áthúzás"
-#. o?fU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -789,7 +703,6 @@ msgctxt ""
msgid "Single strikethrough"
msgstr "Egyszeres áthúzás"
-#. =QVc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -798,7 +711,6 @@ msgctxt ""
msgid "Double strikethrough"
msgstr "Kétszeres áthúzás"
-#. CAd5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -807,7 +719,6 @@ msgctxt ""
msgid "Bold strikethrough"
msgstr "Vastag áthúzás"
-#. zN]L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -816,7 +727,6 @@ msgctxt ""
msgid "Strike through with slash"
msgstr "Áthúzás „/”-jelekkel"
-#. *\\Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -825,7 +735,6 @@ msgctxt ""
msgid "Strike through with Xes"
msgstr "Áthúzás X-ekkel"
-#. m3z=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -834,7 +743,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. %t+X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -843,7 +751,6 @@ msgctxt ""
msgid "Caps"
msgstr "Nagybetűk"
-#. obX:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -852,7 +759,6 @@ msgctxt ""
msgid "Lowercase"
msgstr "Kisbetűk"
-#. 6z+n
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -861,7 +767,6 @@ msgctxt ""
msgid "Title"
msgstr "Nagy kezdőbetűk"
-#. L@(9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -870,7 +775,6 @@ msgctxt ""
msgid "Small caps"
msgstr "Kiskapitális"
-#. ?]?J
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -879,7 +783,6 @@ msgctxt ""
msgid "Normal position"
msgstr "Normál pozíció"
-#. \G84
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -888,7 +791,6 @@ msgctxt ""
msgid "Superscript "
msgstr "Felső index "
-#. qZ|8
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -897,7 +799,6 @@ msgctxt ""
msgid "Subscript "
msgstr "Alsó index "
-#. P~==
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -906,7 +807,6 @@ msgctxt ""
msgid "automatic"
msgstr "automatikus"
-#. hf\G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -915,7 +815,6 @@ msgctxt ""
msgid "Align left"
msgstr "Balra igazítás"
-#. **?b
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -924,7 +823,6 @@ msgctxt ""
msgid "Align right"
msgstr "Jobbra igazítás"
-#. iEy0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -933,7 +831,6 @@ msgctxt ""
msgid "Justify"
msgstr "Sorkizárás"
-#. .*zC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -942,7 +839,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középre igazítás"
-#. H\^F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -951,7 +847,6 @@ msgctxt ""
msgid "Justify"
msgstr "Sorkizárás"
-#. abYQ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -960,7 +855,6 @@ msgctxt ""
msgid "Decimal Symbol:"
msgstr "Tizedesjel:"
-#. _?Pd
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -969,7 +863,6 @@ msgctxt ""
msgid "Fill character:"
msgstr "Kitöltőkarakter:"
-#. DdJk
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -978,7 +871,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. m`AD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -987,7 +879,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobbra"
-#. BF!U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -996,7 +887,6 @@ msgctxt ""
msgid "Decimal"
msgstr "Decimális"
-#. Sw@L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1005,7 +895,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középre"
-#. !ag-
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1014,7 +903,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapbeállítások"
-#. FCe]
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1023,7 +911,6 @@ msgctxt ""
msgid "Single, solid"
msgstr "Egyszeres, folytonos"
-#. kc`~
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1032,7 +919,6 @@ msgctxt ""
msgid "Single, dotted"
msgstr "Egyszeres, pontozott"
-#. ?|Lh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1041,7 +927,6 @@ msgctxt ""
msgid "Single, dashed"
msgstr "Egyszeres, szaggatott"
-#. G/WV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1050,7 +935,6 @@ msgctxt ""
msgid "Double"
msgstr "Kétszeres"
-#. eyJ5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1059,7 +943,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: small"
msgstr "Kétszeres, belül: vékony, kívül: vastag, térköz: kicsi"
-#. WXz9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1068,7 +951,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: medium"
msgstr "Kétszeres, belül: vékony, kívül: vastag, térköz: közepes"
-#. CGqI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1077,7 +959,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: large"
msgstr "Kétszeres, belül: vékony, kívül: vastag, térköz: nagy"
-#. 6f!m
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1086,7 +967,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: small"
msgstr "Kétszeres, belül: vastag, kívül: vékony, térköz: kicsi"
-#. R7_s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1095,7 +975,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: medium"
msgstr "Kétszeres, belül: vastag, kívül: vékony, térköz: közepes"
-#. b8Mc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1104,7 +983,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: large"
msgstr "Kétszeres, belül: vastag, kívül: vékony, térköz: nagy"
-#. mTj=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1113,7 +991,6 @@ msgctxt ""
msgid "3D embossed"
msgstr "Dombormű"
-#. +uB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1122,7 +999,6 @@ msgctxt ""
msgid "3D engraved"
msgstr "Bevésés"
-#. @9bK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1131,7 +1007,6 @@ msgctxt ""
msgid "Inset"
msgstr "Bemélyített"
-#. xK@k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1140,7 +1015,6 @@ msgctxt ""
msgid "Outset"
msgstr "Kidomborodó"
-#. `ZBO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1149,7 +1023,6 @@ msgctxt ""
msgid "mm"
msgstr " mm"
-#. EcCb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1158,7 +1031,6 @@ msgctxt ""
msgid "cm"
msgstr " cm"
-#. _j4`
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1167,7 +1039,6 @@ msgctxt ""
msgid "inch"
msgstr " \""
-#. VdV@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1176,7 +1047,6 @@ msgctxt ""
msgid "pt"
msgstr " pt"
-#. +ad@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1185,7 +1055,6 @@ msgctxt ""
msgid "twip"
msgstr " twip"
-#. L2/C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1194,7 +1063,6 @@ msgctxt ""
msgid "pixel"
msgstr " képpont"
-#. L,,X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1203,7 +1071,6 @@ msgctxt ""
msgid "Shadowed"
msgstr "Árnyékolt"
-#. 3H|c
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1212,7 +1079,6 @@ msgctxt ""
msgid "Not Shadowed"
msgstr "Nincs árnyékolva"
-#. Kux+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1221,7 +1087,6 @@ msgctxt ""
msgid "Blinking"
msgstr "Villogás"
-#. j`^^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1230,7 +1095,6 @@ msgctxt ""
msgid "Not Blinking"
msgstr "Nincs villogás"
-#. ![q=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1239,7 +1103,6 @@ msgctxt ""
msgid "Pair Kerning"
msgstr "Betűpár alávágása"
-#. TIB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1248,7 +1111,6 @@ msgctxt ""
msgid "No pair kerning"
msgstr "Párok alávágása nélkül"
-#. mgJt
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1257,7 +1119,6 @@ msgctxt ""
msgid "Individual words"
msgstr "Különálló szavak"
-#. cYB4
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1266,7 +1127,6 @@ msgctxt ""
msgid "Not Words Only"
msgstr "Nem csak szavak"
-#. F/+g
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1275,7 +1135,6 @@ msgctxt ""
msgid "Outline"
msgstr "Körvonalas"
-#. =AiM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1284,7 +1143,6 @@ msgctxt ""
msgid "No Outline"
msgstr "Nem körvonalas"
-#. Sns]
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1293,7 +1151,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. %k)M
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1302,7 +1159,6 @@ msgctxt ""
msgid "Don't print"
msgstr "Ne nyomtassa"
-#. 2(i2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1311,7 +1167,6 @@ msgctxt ""
msgid "Opaque"
msgstr "Átlátszatlan"
-#. h\3[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1320,7 +1175,6 @@ msgctxt ""
msgid "Not Opaque"
msgstr "Átlátszó"
-#. n[YX
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1329,7 +1183,6 @@ msgctxt ""
msgid "Keep with next paragraph"
msgstr "Együtt a következővel"
-#. E+PN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1338,7 +1191,6 @@ msgctxt ""
msgid "Don't Keep Paragraphs Together"
msgstr "Ne tartsa egyben a bekezdéseket"
-#. L^La
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1347,7 +1199,6 @@ msgctxt ""
msgid "Split paragraph"
msgstr "Bekezdés felosztása"
-#. =ft_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1356,7 +1207,6 @@ msgctxt ""
msgid "Don't split paragraph"
msgstr "Ne ossza fel a bekezdést"
-#. HUJg
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1365,7 +1215,6 @@ msgctxt ""
msgid "Contents protected"
msgstr "Védett tartalom"
-#. S9WM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1374,7 +1223,6 @@ msgctxt ""
msgid "Contents not protected"
msgstr "Változtatható tartalom"
-#. WZ:q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1383,7 +1231,6 @@ msgctxt ""
msgid "Size protected"
msgstr "Védett méret"
-#. H5Z3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1392,7 +1239,6 @@ msgctxt ""
msgid "Size not protected"
msgstr "Változtatható méret"
-#. ^?hm
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1401,7 +1247,6 @@ msgctxt ""
msgid "Position protected"
msgstr "A hely védett"
-#. [D=9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1410,7 +1255,6 @@ msgctxt ""
msgid "Position not protected"
msgstr "A hely nem védett"
-#. 1V=y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1419,7 +1263,6 @@ msgctxt ""
msgid "Transparent"
msgstr "Átlátszó"
-#. el]e
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1428,7 +1271,6 @@ msgctxt ""
msgid "Not Transparent"
msgstr "Nem átlátszó"
-#. 8-~R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1437,7 +1279,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Elválasztás"
-#. :n)[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1446,7 +1287,6 @@ msgctxt ""
msgid "No hyphenation"
msgstr "Nincs elválasztás"
-#. l7o|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1455,7 +1295,6 @@ msgctxt ""
msgid "Page End"
msgstr "Oldal vége"
-#. Ig0C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1464,7 +1303,6 @@ msgctxt ""
msgid "No Page End"
msgstr "Nincs oldalvég"
-#. V-)G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1473,7 +1311,6 @@ msgctxt ""
msgid "Width: "
msgstr "Szélesség: "
-#. H3%V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1482,7 +1319,6 @@ msgctxt ""
msgid "Height: "
msgstr "Magasság: "
-#. IFQW
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1491,7 +1327,6 @@ msgctxt ""
msgid "Indent left "
msgstr "Behúzás balról "
-#. wPF\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1500,7 +1335,6 @@ msgctxt ""
msgid "First Line "
msgstr "Első sor "
-#. }=:d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1509,7 +1343,6 @@ msgctxt ""
msgid "Indent right "
msgstr "Behúzás jobbról "
-#. ]t)3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1518,7 +1351,6 @@ msgctxt ""
msgid "Shadow: "
msgstr "Árnyék: "
-#. )owa
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1527,7 +1359,6 @@ msgctxt ""
msgid "Borders "
msgstr "Szegélyek "
-#. 0/=_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1536,7 +1367,6 @@ msgctxt ""
msgid "No border"
msgstr "Nincs szegély"
-#. 5Jwo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1545,7 +1375,6 @@ msgctxt ""
msgid "top "
msgstr "fent "
-#. /e]Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1554,7 +1383,6 @@ msgctxt ""
msgid "bottom "
msgstr "alul "
-#. ;(mv
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1563,7 +1391,6 @@ msgctxt ""
msgid "left "
msgstr "bal "
-#. ,lN3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1572,7 +1399,6 @@ msgctxt ""
msgid "right "
msgstr "jobb "
-#. JYEV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1581,7 +1407,6 @@ msgctxt ""
msgid "Spacing "
msgstr "Térköz "
-#. tGk.
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1590,7 +1415,6 @@ msgctxt ""
msgid "From top "
msgstr "Felülről "
-#. ]4[1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1600,7 +1424,6 @@ msgid "From bottom "
msgstr "Alulról "
#. pb: %1 == will be replaced by the number of lines
-#. ^}/r
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1609,7 +1432,6 @@ msgctxt ""
msgid "%1 Lines"
msgstr "%1 soros"
-#. QB%S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1618,7 +1440,6 @@ msgctxt ""
msgid "Widow control"
msgstr "Fattyúsorok kezelése"
-#. ;.?^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1627,7 +1448,6 @@ msgctxt ""
msgid "Orphan control"
msgstr "Árvasorok kezelése"
-#. -_VD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1636,7 +1456,6 @@ msgctxt ""
msgid "Characters at end of line"
msgstr "sor végi karakter"
-#. SB9k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1645,7 +1464,6 @@ msgctxt ""
msgid "Characters at beginning of line"
msgstr "sor eleji karakter"
-#. w8tr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1654,7 +1472,6 @@ msgctxt ""
msgid "Hyphens"
msgstr "elválasztójel"
-#. *rD3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1663,7 +1480,6 @@ msgctxt ""
msgid "Page Style: "
msgstr "Oldalstílus: "
-#. O/gB
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1672,7 +1488,6 @@ msgctxt ""
msgid "Kerning "
msgstr "Alávágás "
-#. 5J^q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1681,7 +1496,6 @@ msgctxt ""
msgid "locked "
msgstr "ritkított "
-#. ELkw
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1690,7 +1504,6 @@ msgctxt ""
msgid "Condensed "
msgstr "Sűrített "
-#. 6FdL
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1699,7 +1512,6 @@ msgctxt ""
msgid "Graphic"
msgstr "Kép"
-#. Is0j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1708,7 +1520,6 @@ msgctxt ""
msgid "none"
msgstr "nincs"
-#. x]rG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1717,7 +1528,6 @@ msgctxt ""
msgid "Dots "
msgstr "Pontok "
-#. |@}S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1726,7 +1536,6 @@ msgctxt ""
msgid "Circle "
msgstr "Kör "
-#. _Z:L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1735,7 +1544,6 @@ msgctxt ""
msgid "Filled circle "
msgstr "Tele kör "
-#. ^s+%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1744,7 +1552,6 @@ msgctxt ""
msgid "Accent "
msgstr "Ékezet "
-#. /fjz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1753,7 +1560,6 @@ msgctxt ""
msgid "Above"
msgstr "Felett"
-#. 7v=/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1762,7 +1568,6 @@ msgctxt ""
msgid "Below"
msgstr "Alatt"
-#. ,81g
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1771,7 +1576,6 @@ msgctxt ""
msgid "Double-lined off"
msgstr "Duplasoros ki"
-#. i/uh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1780,7 +1584,6 @@ msgctxt ""
msgid "Double-lined"
msgstr "Duplasoros"
-#. @8IO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1789,7 +1592,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr "Nincs automatikus karaktertávolság"
-#. [keR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1798,7 +1600,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr "Nincs automatikus karaktertávolság"
-#. Vwk5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1807,7 +1608,6 @@ msgctxt ""
msgid "No hanging punctuation at line end"
msgstr "Nincsenek túllógó írásjelek a sor végén"
-#. l[0A
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1816,7 +1616,6 @@ msgctxt ""
msgid "Hanging punctuation at line end"
msgstr "Túllógó írásjelek a sor végén"
-#. :lQ)
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1825,7 +1624,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to beginning and end of lines"
msgstr "A tiltott karakterek listájának alkalmazása a sorok elejére és a végére"
-#. RI,4
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1834,7 +1632,6 @@ msgctxt ""
msgid "Don't apply list of forbidden characters to beginning and end of lines"
msgstr "Nem alkalmazza a tiltott karakterek listáját a sorok elejére és a végére"
-#. ?|XU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1843,7 +1640,6 @@ msgctxt ""
msgid "No rotated characters"
msgstr "Nincsenek elforgatott karakterek"
-#. 4tJ;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1852,7 +1648,6 @@ msgctxt ""
msgid "Character rotated by $(ARG1)°"
msgstr "Karakter elforgatva $(ARG1) fokkal."
-#. 8EOh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1861,7 +1656,6 @@ msgctxt ""
msgid "Fit to line"
msgstr "Igazítás a sorhoz"
-#. Dzb7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1870,7 +1664,6 @@ msgctxt ""
msgid "Characters scaled $(ARG1)%"
msgstr "Karakterek méretezése: $(ARG1)%"
-#. AbZe
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1879,7 +1672,6 @@ msgctxt ""
msgid "No scaled characters"
msgstr "Nincs átméretezett betű"
-#. 5cf5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1888,7 +1680,6 @@ msgctxt ""
msgid "No relief"
msgstr "Nincs kiemelés"
-#. 02\+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1897,7 +1688,6 @@ msgctxt ""
msgid "Relief"
msgstr "Kiemelés"
-#. /MSK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1906,7 +1696,6 @@ msgctxt ""
msgid "Engraved"
msgstr "Bevésett"
-#. s-*X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1915,7 +1704,6 @@ msgctxt ""
msgid "Automatic text alignment"
msgstr "Automatikus szövegigazítás"
-#. B1S1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1924,7 +1712,6 @@ msgctxt ""
msgid "Text aligned to base line"
msgstr "Alapvonalhoz igazított szöveg"
-#. )7Zr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1933,7 +1720,6 @@ msgctxt ""
msgid "Text aligned top"
msgstr "Felülre igazított szöveg"
-#. _J)X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1942,7 +1728,6 @@ msgctxt ""
msgid "Text aligned middle"
msgstr "Középre igazított szöveg"
-#. x^OA
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1951,7 +1736,6 @@ msgctxt ""
msgid "Text aligned bottom"
msgstr "Alulra igazított szöveg"
-#. 7,nz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1960,7 +1744,6 @@ msgctxt ""
msgid "Text direction left-to-right (horizontal)"
msgstr "Szövegirány balról jobbra (vízszintes)"
-#. 5)6s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1969,7 +1752,6 @@ msgctxt ""
msgid "Text direction right-to-left (horizontal)"
msgstr "Szövegirány jobbról balra (vízszintes)"
-#. kof^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1978,7 +1760,6 @@ msgctxt ""
msgid "Text direction right-to-left (vertical)"
msgstr "Szövegirány jobbról balra (függőleges)"
-#. ?T`o
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1987,7 +1768,6 @@ msgctxt ""
msgid "Text direction left-to-right (vertical)"
msgstr "Szövegirány balról jobbra (függőleges)"
-#. JXGc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1996,7 +1776,6 @@ msgctxt ""
msgid "Use superordinate object text direction setting"
msgstr "Szülőobjektum szövegirány-beállításának használata"
-#. fM`2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2005,7 +1784,6 @@ msgctxt ""
msgid "Paragraph snaps to text grid (if active)"
msgstr "A bekezdés a szövegrácsra illeszkedik (ha aktív)"
-#. #A/P
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2014,7 +1792,6 @@ msgctxt ""
msgid "Paragraph does not snap to text grid"
msgstr "A bekezdés nem illeszkedik a szövegrácsra"
-#. UKdN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2023,7 +1800,6 @@ msgctxt ""
msgid "Not hidden"
msgstr "Nem rejtett"
-#. YeN,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2032,7 +1808,6 @@ msgctxt ""
msgid "Hidden"
msgstr "Rejtett"
-#. G^l9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2041,7 +1816,6 @@ msgctxt ""
msgid "Horizontal alignment default"
msgstr "Vízszintes igazítás alapértéke"
-#. l`jc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2050,7 +1824,6 @@ msgctxt ""
msgid "Align left"
msgstr "Balra igazítás"
-#. R}h[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2059,7 +1832,6 @@ msgctxt ""
msgid "Centered horizontally"
msgstr "Vízszintesen középre igazított"
-#. .{Z*
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2068,7 +1840,6 @@ msgctxt ""
msgid "Align right"
msgstr "Jobbra igazítás"
-#. 8RRN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2077,7 +1848,6 @@ msgctxt ""
msgid "Justify"
msgstr "Sorkizárás"
-#. $V)3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2086,7 +1856,6 @@ msgctxt ""
msgid "Repeat alignment"
msgstr "Igazítás ismétlése"
-#. k;]C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2095,7 +1864,6 @@ msgctxt ""
msgid "Vertical alignment default"
msgstr "Függőleges igazítás alapértéke"
-#. gsee
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2104,7 +1872,6 @@ msgctxt ""
msgid "Align to top"
msgstr "Felülre igazítás"
-#. j)er
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2113,7 +1880,6 @@ msgctxt ""
msgid "Centered vertically"
msgstr "Függőlegesen középre igazított"
-#. !nb,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2122,7 +1888,6 @@ msgctxt ""
msgid "Align to bottom"
msgstr "Alulra igazítás"
-#. r}Pq
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2131,7 +1896,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. i89j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
diff --git a/source/hu/editeng/source/misc.po b/source/hu/editeng/source/misc.po
index c39d2595ed2..9e59d7f2ba3 100644
--- a/source/hu/editeng/source/misc.po
+++ b/source/hu/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-03-25 09:51+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Kívánja folytatni az ellenőrzést a dokumentum elejétől?"
-#. (XiS
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Continue checking at end of document?"
msgstr "Kívánja folytatni az ellenőrzést a dokumentum végétől?"
-#. Dg\]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -46,7 +43,6 @@ msgstr ""
"A kiválasztott nyelvhez nincs elérhető szókincstár.\n"
"Kérem, ellenőrizze a telepítést, és telepítse a megfelelő nyelvű szótárt.\n"
-#. F]n]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -59,7 +55,6 @@ msgstr ""
"Ismeretlen hiba miatt\n"
"a szót nem lehet hozzáadni a szótárhoz."
-#. q)8|
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -68,7 +63,6 @@ msgctxt ""
msgid "The dictionary is already full."
msgstr "A szótár már tele van."
-#. 4a]{
#: lingu.src
msgctxt ""
"lingu.src\n"
diff --git a/source/hu/editeng/source/outliner.po b/source/hu/editeng/source/outliner.po
index 9ff68b9d656..5220acc0a30 100644
--- a/source/hu/editeng/source/outliner.po
+++ b/source/hu/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-03-25 09:51+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Áthelyezés"
-#. Wp7d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Indent"
msgstr "Behúzás"
-#. 1S}L
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Show subpoints"
msgstr "Alpontok megjelenítése"
-#. 9_,d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Collapse"
msgstr "Összecsukás"
-#. {RTY
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr "Jellemzők alkalmazása"
-#. \`,S
#: outliner.src
msgctxt ""
"outliner.src\n"
diff --git a/source/hu/extensions/source/abpilot.po b/source/hu/extensions/source/abpilot.po
index e0ac5df3fdc..1719d2fe266 100644
--- a/source/hu/extensions/source/abpilot.po
+++ b/source/hu/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: 2012-01-12 21:45+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Címjegyzék típusa"
-#. 8JN?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "Kapcsolat beállításai"
-#. yQ$-
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Table selection"
msgstr "Táblakijelölés"
-#. ?#w,
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr "Mező hozzárendelése"
-#. 3KqL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Data Source Title"
msgstr "Adatforrás címe"
-#. ?|S3
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Address Book Data Source Wizard"
msgstr "Címjegyzék adatforrása tündér"
-#. mg}~
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -90,7 +83,6 @@ msgstr ""
"\n"
"Ez a tündér segít létrehozni az adatforrást."
-#. IP/A
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -100,7 +92,6 @@ msgctxt ""
msgid "Please select the type of your external address book:"
msgstr "Válassza ki a külső címjegyzék típusát:"
-#. [#-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 "Thunderbird/Icedove"
-#. L|c=
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -160,7 +146,6 @@ msgctxt ""
msgid "KDE address book"
msgstr "KDE-címjegyzék"
-#. V7Xp
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -170,7 +155,6 @@ msgctxt ""
msgid "Mac OS X address book"
msgstr "Mac OS X-címjegyzék"
-#. YD2R
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -180,7 +164,6 @@ msgctxt ""
msgid "LDAP address data"
msgstr "LDAP-címtár"
-#. /ZAL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -190,7 +173,6 @@ msgctxt ""
msgid "Outlook address book"
msgstr "Outlook-címjegyzék"
-#. vA$Z
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -200,7 +182,6 @@ msgctxt ""
msgid "Windows system address book"
msgstr "Windows-rendszercímjegyzék"
-#. Zg(X
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -210,7 +191,6 @@ msgctxt ""
msgid "Other external data source"
msgstr "Egyéb külső adatforrás"
-#. WWX%
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -226,7 +206,6 @@ msgstr ""
"\n"
"A szükséges adatok beviteléhez kattintson a következő gombra."
-#. N(1@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -236,7 +215,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. !_df
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -250,7 +228,6 @@ msgstr ""
"Nem lehet az adatforráshoz kapcsolódni.\n"
"Ellenőrizze a beállításokat, vagy válasszon másik adatforrást az előző lapon."
-#. 3Vhd
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -264,7 +241,6 @@ msgstr ""
"A választott külső adatforrás több címjegyzéket tartalmaz.\n"
"Válassza ki közülük azt, amellyel dolgozni kíván."
-#. oTnN
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -284,7 +260,6 @@ msgstr ""
"\n"
"Kattintson az alábbi gombra a mezők megadásához."
-#. YNt9
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -294,7 +269,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr "Mező hozzárendelése"
-#. e@G8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -310,7 +284,6 @@ msgstr ""
"\n"
"Írjon be egy tetszőleges nevet, ezen a néven fogja a %PRODUCTNAME nyilvántartani az adatforrást."
-#. WJF6
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -320,7 +293,6 @@ msgctxt ""
msgid "Location"
msgstr "Hely"
-#. a.A8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -330,7 +302,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Tallózás..."
-#. kmv1
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -340,7 +311,6 @@ msgctxt ""
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "A címjegyzék elérhetővé tétele a %PRODUCTNAME összes modulja számára."
-#. y47[
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -350,7 +320,6 @@ msgctxt ""
msgid "Address book name"
msgstr "Címjegyzék neve"
-#. 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 "Egy másik adatforrás már használja ezt a nevet. Az adatforrások nevének egyedinek kell lennie. Válaszon egy másik - nem használt - nevet."
-#. SDu;
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -369,7 +337,6 @@ msgctxt ""
msgid "Please select a type of address book."
msgstr "Válassza ki a címjegyzék típusát."
-#. B=Hq
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -382,7 +349,6 @@ msgstr ""
"Az adatforrás egyetlen táblát sem tartalmaz.\n"
"Ennek ellenére kívánja ezt az adatforrást alkalmazni?"
-#. I07?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -395,7 +361,6 @@ msgstr ""
"Úgy tűnik, hogy nincs beállított GroupWise-fiók az Evolutionben.\n"
"Ennek ellenére beállítja címadatforrásként?"
-#. JX@8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -404,7 +369,6 @@ msgctxt ""
msgid "Addresses"
msgstr "Címek"
-#. angg
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -413,7 +377,6 @@ msgctxt ""
msgid "Create Address Data Source"
msgstr "Címadatforrás létrehozása"
-#. ?E#@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -422,7 +385,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr "A kapcsolatot nem sikerült létrehozni."
-#. 0q1K
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -431,7 +393,6 @@ msgctxt ""
msgid "Please check the settings made for the data source."
msgstr "Ellenőrizze az adatforrás beállításait."
-#. GOTt
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -440,7 +401,6 @@ msgctxt ""
msgid "Address Data - Field Assignment"
msgstr "Címadatok - mező-hozzárendelés"
-#. 3r2n
#: abspilot.src
msgctxt ""
"abspilot.src\n"
diff --git a/source/hu/extensions/source/bibliography.po b/source/hu/extensions/source/bibliography.po
index cdb8f98ca9e..ed735aeced4 100644
--- a/source/hu/extensions/source/bibliography.po
+++ b/source/hu/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-03-25 09:46+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Oszlopnevek"
-#. ItOt
#: datman.src
msgctxt ""
"datman.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "<none>"
msgstr "<semmi>"
-#. 4hv1
#: datman.src
msgctxt ""
"datman.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Column Layout for Table %1"
msgstr "%1 tábla oszlopainak elrendezése"
-#. lzUI
#: datman.src
msgctxt ""
"datman.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Entry"
msgstr "Bejegyzés"
-#. K=~*
#: datman.src
msgctxt ""
"datman.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Choose Data Source"
msgstr "Adatforrás választása"
-#. H25O
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Table"
msgstr "Táblázat"
-#. mlEM
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Search Key"
msgstr "Keresési kulcs"
-#. $WWh
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Automatikus szűrő"
-#. /bA7
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr "Általános szűrő"
-#. ^rxA
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Remove Filter"
msgstr "Szűrő eltávolítása"
-#. I7e}
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Column Arrangement"
msgstr "Oszlop rendezése"
-#. pr!1
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Data Source"
msgstr "Adatforrás"
-#. Kp#/
#: bib.src
msgctxt ""
"bib.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Field selection:"
msgstr "Mező kijelölése:"
-#. !{]?
#: bib.src
msgctxt ""
"bib.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Table;Query;Sql;Sql [Native]"
msgstr "Tábla;Lekérdezés;SQL;SQL [Natív]"
-#. Npkk
#: bib.src
msgctxt ""
"bib.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Bibliography Database"
msgstr "Irodalomjegyzék-adatbázis"
-#. 3iZl
#: bib.src
msgctxt ""
"bib.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Do you want to edit the column arrangement?"
msgstr "Kívánja módosítani az oszlopok elrendezését?"
-#. _;+#
#: sections.src
msgctxt ""
"sections.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "The following column names could not be assigned:\n"
msgstr "A következő oszlopneveket nem sikerült hozzárendelni:\n"
-#. ;*(N
#: sections.src
msgctxt ""
"sections.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Article"
msgstr "Cikk"
-#. 1fmq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "Book"
msgstr "Könyv"
-#. cD62
#: sections.src
msgctxt ""
"sections.src\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Brochures"
msgstr "Brosúrák"
-#. [.Aq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "Konferencia-jegyzőkönyv"
-#. p*hM
#: sections.src
msgctxt ""
"sections.src\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "Book excerpt"
msgstr "Könyvkivonat"
-#. JdB*
#: sections.src
msgctxt ""
"sections.src\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "Book excerpt with title"
msgstr "Könyvkivonat címmel"
-#. 8y.1
#: sections.src
msgctxt ""
"sections.src\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "Konferencia-jegyzőkönyv"
-#. JH,h
#: sections.src
msgctxt ""
"sections.src\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Journal"
msgstr "Napló"
-#. Tl@B
#: sections.src
msgctxt ""
"sections.src\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Techn. documentation"
msgstr "Műszaki dokumentáció"
-#. =rwC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Thesis"
msgstr "Szakdolgozat"
-#. }C\Z
#: sections.src
msgctxt ""
"sections.src\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Egyebek"
-#. 8zYB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Dissertation"
msgstr "Értekezés"
-#. wb((
#: sections.src
msgctxt ""
"sections.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "Konferencia-jegyzőkönyv"
-#. 0G{o
#: sections.src
msgctxt ""
"sections.src\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "Research report"
msgstr "Kutatási jelentés"
-#. t03R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "Unpublished"
msgstr "Kiadatlan"
-#. bKkA
#: sections.src
msgctxt ""
"sections.src\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "e-mail"
msgstr "e-mail"
-#. {\=i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "WWW document"
msgstr "WWW-dokumentum"
-#. lK:k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "User-defined1"
msgstr "Egyéni 1"
-#. ,fWi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "User-defined2"
msgstr "Egyéni 2"
-#. -3Q0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "User-defined3"
msgstr "Egyéni 3"
-#. dUYp
#: sections.src
msgctxt ""
"sections.src\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "User-defined4"
msgstr "Egyéni 4"
-#. eDcN
#: sections.src
msgctxt ""
"sections.src\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "User-defined5"
msgstr "Egyéni 5"
-#. ;|`$
#: sections.src
msgctxt ""
"sections.src\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. k4y+
#: sections.src
msgctxt ""
"sections.src\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "Insert Section..."
msgstr "Szakasz beszúrása..."
-#. e(F]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -428,7 +386,6 @@ msgctxt ""
msgid "Delete Section..."
msgstr "Szakasz törlése..."
-#. v$!9
#: sections.src
msgctxt ""
"sections.src\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "Modify Name..."
msgstr "Név módosítása..."
-#. Vtq4
#: sections.src
msgctxt ""
"sections.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "~Short name"
msgstr "Hi~vatkozás azonosítója"
-#. I3)Y
#: sections.src
msgctxt ""
"sections.src\n"
@@ -456,7 +411,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Típus"
-#. Y#d(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -465,7 +419,6 @@ msgctxt ""
msgid "~Year"
msgstr "É~v"
-#. DjB2
#: sections.src
msgctxt ""
"sections.src\n"
@@ -474,7 +427,6 @@ msgctxt ""
msgid "Author(s)"
msgstr "Szerzők"
-#. PHsi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -483,7 +435,6 @@ msgctxt ""
msgid "Tit~le"
msgstr "~Mű címe"
-#. *,8A
#: sections.src
msgctxt ""
"sections.src\n"
@@ -492,7 +443,6 @@ msgctxt ""
msgid "~Publisher"
msgstr "~Kiadó"
-#. Z__r
#: sections.src
msgctxt ""
"sections.src\n"
@@ -501,7 +451,6 @@ msgctxt ""
msgid "A~ddress"
msgstr "~Cím"
-#. ;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 "~Fejezet"
-#. TmGf
#: sections.src
msgctxt ""
"sections.src\n"
@@ -528,7 +475,6 @@ msgctxt ""
msgid "Pa~ge(s)"
msgstr "~Oldalak száma"
-#. bPZS
#: sections.src
msgctxt ""
"sections.src\n"
@@ -537,7 +483,6 @@ msgctxt ""
msgid "Editor"
msgstr "Szerkesztő"
-#. dPQC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -546,7 +491,6 @@ msgctxt ""
msgid "Ed~ition"
msgstr "K~iadás"
-#. DF`,
#: sections.src
msgctxt ""
"sections.src\n"
@@ -555,7 +499,6 @@ msgctxt ""
msgid "~Book title"
msgstr "~Könyv címe"
-#. 7,dY
#: sections.src
msgctxt ""
"sections.src\n"
@@ -564,7 +507,6 @@ msgctxt ""
msgid "Volume"
msgstr "Kötet"
-#. @b{R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -573,7 +515,6 @@ msgctxt ""
msgid "Publication t~ype"
msgstr "~Kiadványtípus"
-#. X8VI
#: sections.src
msgctxt ""
"sections.src\n"
@@ -582,7 +523,6 @@ msgctxt ""
msgid "Organi~zation"
msgstr "S~zervezet"
-#. *?bv
#: sections.src
msgctxt ""
"sections.src\n"
@@ -591,7 +531,6 @@ msgctxt ""
msgid "Instit~ution"
msgstr "~Intézmény"
-#. 7UuL
#: sections.src
msgctxt ""
"sections.src\n"
@@ -600,7 +539,6 @@ msgctxt ""
msgid "University"
msgstr "Egyetem"
-#. [A!K
#: sections.src
msgctxt ""
"sections.src\n"
@@ -609,7 +547,6 @@ msgctxt ""
msgid "Type of re~port"
msgstr "Jelentés típ~usa"
-#. Y9}k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -618,7 +555,6 @@ msgctxt ""
msgid "~Month"
msgstr "~Hónap"
-#. [1\(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -627,7 +563,6 @@ msgctxt ""
msgid "~Journal"
msgstr "F~olyóirat címe"
-#. sr\i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -636,7 +571,6 @@ msgctxt ""
msgid "Numb~er"
msgstr "~Szám"
-#. r;~e
#: sections.src
msgctxt ""
"sections.src\n"
@@ -645,7 +579,6 @@ msgctxt ""
msgid "Se~ries"
msgstr "So~rozat"
-#. L|jB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -654,7 +587,6 @@ msgctxt ""
msgid "Ann~otation"
msgstr "~Magyarázó jegyzet"
-#. ]bo0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -663,7 +595,6 @@ msgctxt ""
msgid "~Note"
msgstr "~Jegyzet"
-#. 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 "Egyéni mező ~1"
-#. XKC]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -690,7 +619,6 @@ msgctxt ""
msgid "User-defined field ~2"
msgstr "Egyéni mező ~2"
-#. _Eg/
#: sections.src
msgctxt ""
"sections.src\n"
@@ -699,7 +627,6 @@ msgctxt ""
msgid "User-defined field ~3"
msgstr "Egyéni mező ~3"
-#. #c=)
#: sections.src
msgctxt ""
"sections.src\n"
@@ -708,7 +635,6 @@ msgctxt ""
msgid "User-defined field ~4"
msgstr "Egyéni mező ~4"
-#. 7%j|
#: sections.src
msgctxt ""
"sections.src\n"
diff --git a/source/hu/extensions/source/dbpilots.po b/source/hu/extensions/source/dbpilots.po
index 6a46f3f8fab..6926d6e1306 100644
--- a/source/hu/extensions/source/dbpilots.po
+++ b/source/hu/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-09 11:14+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Táblaelem"
-#. :_jY
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Existing fields"
msgstr "Létező mezők"
-#. #:,M
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Selected fields"
msgstr "Kijelölt mezők"
-#. 1o.W
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Field Selection"
msgstr "Mező kijelölése"
-#. YRh3
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid " (Date)"
msgstr " (Dátum)"
-#. f6a;
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid " (Time)"
msgstr " (Idő)"
-#. ssgQ
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "Data"
msgstr "Adat"
-#. (Gpo
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -104,7 +96,6 @@ msgstr ""
"\n"
"Az oldalon végzett beállítások az oldal elhagyása után azonnal életbe lépnek."
-#. NusL
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -114,7 +105,6 @@ msgctxt ""
msgid "~Data source:"
msgstr "~Adatforrás:"
-#. 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 "~Tábla / Lekérdezés:"
-#. Or?S
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -143,7 +131,6 @@ msgctxt ""
msgid "Data"
msgstr "Adat"
-#. 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 "Kívánja az értéket adatbázismezőbe menteni?"
-#. 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 "~Igen, a következő adatbázismezőbe kívánom menteni:"
-#. 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 "~Nem, csak az űrlapba kívánom menteni az értéket."
-#. `:,h
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "Database Field"
msgstr "Adatbázismező"
-#. %E`E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -192,7 +175,6 @@ msgctxt ""
msgid "Form"
msgstr "Űrlap"
-#. f7bX
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -202,7 +184,6 @@ msgctxt ""
msgid "Data source"
msgstr "Adatforrás"
-#. W+#i
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -212,7 +193,6 @@ msgctxt ""
msgid "Content type"
msgstr "Tartalomtípus"
-#. gz2*
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -222,7 +202,6 @@ msgctxt ""
msgid "Content"
msgstr "Tartalom"
-#. +`K`
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -231,7 +210,6 @@ msgctxt ""
msgid "Table"
msgstr "Tábla"
-#. ku*E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -240,7 +218,6 @@ msgctxt ""
msgid "Query"
msgstr "Lekérdezés"
-#. YUJ,
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -249,7 +226,6 @@ msgctxt ""
msgid "SQL command"
msgstr "SQL-parancs"
-#. P$*+
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -259,7 +235,6 @@ msgctxt ""
msgid "Control"
msgstr "Vezérlőelem"
-#. BU8b
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -277,7 +252,6 @@ msgstr ""
"\n"
"Válassza ki azt a táblát, amelynek adatai a lista tartalmának alapjául szolgáljanak:"
-#. l`Pq
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -286,7 +260,6 @@ msgctxt ""
msgid "Table Selection"
msgstr "Táblakijelölés"
-#. sd!v
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -296,7 +269,6 @@ msgctxt ""
msgid "Existing fields"
msgstr "Létező mezők"
-#. 8nq/
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -306,7 +278,6 @@ msgctxt ""
msgid "Display field"
msgstr "Mező megjelenítése"
-#. 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 "A kijelölt mező tartalma a kombinált listában jelenik meg."
-#. 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 "A kijelölt mező tartalma a listapanelben jelenik meg, ha a hivatkozott mezők megegyeznek."
-#. KvoZ
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -335,7 +304,6 @@ msgctxt ""
msgid "Field Selection"
msgstr "Mező kijelölése"
-#. ,`\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 "Itt választhatja ki azokat azokat a mezőket, amelyek tartalmát meg kívánja jeleníteni."
-#. jBo1
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -355,7 +322,6 @@ msgctxt ""
msgid "Field from the ~Value Table"
msgstr "Mező az Érték~táblából"
-#. ?dLF
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "Field from the ~List Table"
msgstr "Mező a ~Listatáblából"
-#. Lu=F
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -374,7 +339,6 @@ msgctxt ""
msgid "Field Link"
msgstr "Mezőhivatkozás"
-#. ,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 "A kombinált lista tartalmát adatbázisba mentheti, vagy megjelenítheti."
-#. *d$D
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -392,7 +355,6 @@ msgctxt ""
msgid "Group Element Wizard"
msgstr "Csoportelem tündér"
-#. ^P)8
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -401,7 +363,6 @@ msgctxt ""
msgid "Table Element Wizard"
msgstr "Táblaelem tündér"
-#. HVB\
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -410,7 +371,6 @@ msgctxt ""
msgid "List Box Wizard"
msgstr "Lista tündér"
-#. Sf5W
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -419,7 +379,6 @@ msgctxt ""
msgid "Combo Box Wizard"
msgstr "Kombinált lista tündér"
-#. 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 "Nem hozható létre táblakapcsolat az adatforráshoz."
-#. yhZH
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -438,7 +396,6 @@ msgctxt ""
msgid "Which ~names do you want to give the option fields?"
msgstr "Mik legyenek a rádiógombok ~nevei?"
-#. |m2@
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -448,7 +405,6 @@ msgctxt ""
msgid "~Option fields"
msgstr "~Rádiógombok"
-#. RM_V
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -457,7 +413,6 @@ msgctxt ""
msgid "Data"
msgstr "Adat"
-#. q]+)
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -467,7 +422,6 @@ msgctxt ""
msgid "Should one option field be selected as a default?"
msgstr "Legyen alapértelmezésben kijelölt rádiógomb?"
-#. ^\h?
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -477,7 +431,6 @@ msgctxt ""
msgid "~Yes, the following:"
msgstr "~Igen, a következő:"
-#. 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 "Nem, ne legyen alapértelmezett gomb."
-#. w!)y
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -496,7 +448,6 @@ msgctxt ""
msgid "Default Field Selection"
msgstr "Alapértelmezett mező kiválasztása"
-#. 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 "Amennyiben egy rádiógombot kijelöl, a rádiógomb-csoport egy meghatározott értéket vesz fel."
-#. S.}}
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -516,7 +466,6 @@ msgctxt ""
msgid "Which ~value do you want to assign to each option?"
msgstr "Milyen é~rtékeket szeretne hozzárendelni az egyes lehetőségekhez?"
-#. 36TA
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -526,7 +475,6 @@ msgctxt ""
msgid "~Option fields"
msgstr "~Rádiógombok"
-#. n)Xv
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "Field Values"
msgstr "Mezőértékek"
-#. 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 "Milyen ~felirattal látja el a rádiógomb-csoportot?"
-#. Ks;\
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "These were all details needed to create the option group."
msgstr "Mindössze ennyire volt szükség a rádiógomb-csoport létrehozásához."
-#. %B*Q
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -564,7 +509,6 @@ msgctxt ""
msgid "Create Option Group"
msgstr "Rádiógomb-csoport létrehozása"
-#. 8fp0
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
diff --git a/source/hu/extensions/source/propctrlr.po b/source/hu/extensions/source/propctrlr.po
index a2f012b66ee..b0a3e1e5e72 100644
--- a/source/hu/extensions/source/propctrlr.po
+++ b/source/hu/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-03-25 09:57+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Írja be az új adattípus nevét:"
-#. eMQ`
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "New Data Type"
msgstr "Új adattípus"
-#. gtRM
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -47,7 +44,6 @@ msgstr ""
"Szeretné törölni a(z) „#type” adattípust a modellből?\n"
"Ne feledje, hogy ez minden vezérlőelemre hatással lesz, amely ehhez az adattípushoz kötött."
-#. rhqo
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -56,7 +52,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. a$g)
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Option Button"
msgstr "Rádiógomb"
-#. ;nYX
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Check Box"
msgstr "Jelölőnégyzet"
-#. tPb3
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Label Field"
msgstr "Címkemező"
-#. a]FH
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Group Box"
msgstr "Csoportpanel"
-#. bcKT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "Text Box"
msgstr "Szövegdoboz"
-#. K2K~
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr "Formázott mező"
-#. BP7h
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "List Box"
msgstr "Listapanel"
-#. +#b|
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "Combo Box"
msgstr "Kombinált lista"
-#. +C`#
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "Image Button"
msgstr "Képgomb"
-#. O)BT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "Hidden Control"
msgstr "Rejtett vezérlőelem"
-#. jRM[
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -155,7 +140,6 @@ msgctxt ""
msgid "Control (unknown type)"
msgstr "Vezérlőelem (ismeretlen típus)"
-#. ),$Q
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -164,7 +148,6 @@ msgctxt ""
msgid "Image Control"
msgstr "Kép-vezérlőelem"
-#. eo0;
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -173,7 +156,6 @@ msgctxt ""
msgid "File Selection"
msgstr "Fájlválasztás"
-#. ~|#\
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "Date Field"
msgstr "Dátummező"
-#. `qPz
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -191,7 +172,6 @@ msgctxt ""
msgid "Time Field"
msgstr "Időmező"
-#. -lTu
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -200,7 +180,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr "Számmező"
-#. \py,
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -209,7 +188,6 @@ msgctxt ""
msgid "Currency Field"
msgstr "Pénzmező"
-#. FWrU
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -218,7 +196,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr "Maszkolt mező"
-#. J|/E
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -227,7 +204,6 @@ msgctxt ""
msgid "Table Control "
msgstr "Táblázat "
-#. p$6p
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -237,7 +213,6 @@ msgctxt ""
msgid "Controls"
msgstr "Vezérlőelemek"
-#. a?R:
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -247,7 +222,6 @@ msgctxt ""
msgid "Move Up"
msgstr "Mozgatás felfelé"
-#. `.-3
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -257,7 +231,6 @@ msgctxt ""
msgid "Move Down"
msgstr "Mozgatás lefelé"
-#. NGJK
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Automatic Sort"
msgstr "Automatikus rendezés"
-#. Y)jO
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "Tab Order"
msgstr "Bejárási sorrend"
-#. 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 "A főűrlap aktuális rekordjaira vonatkozó részletes adatok alűrlapokkal jeleníthetők meg. Ehhez meg kell adnia, hogy az alűrlap mely oszlopai egyeznek a főűrlap oszlopaival."
-#. njzO
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "Link fields"
msgstr "Mezők hivatkozása"
-#. `%6Y
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "Suggest"
msgstr "Javaslat"
-#. l?+o
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "Sub Form"
msgstr "Alűrlap"
-#. xdX1
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -323,7 +290,6 @@ msgid "Master Form"
msgstr "Főűrlap"
#. # 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 "A(z) „#” oszlopai nem lekérhetők."
-#. -4:3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -341,7 +306,6 @@ msgctxt ""
msgid "Edit mask"
msgstr "Beviteli maszk"
-#. _[Y%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -350,7 +314,6 @@ msgctxt ""
msgid "Literal mask"
msgstr "Kifejezésmaszk"
-#. C_~0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -359,7 +322,6 @@ msgctxt ""
msgid "Read-only"
msgstr "Csak olvasásra"
-#. wp|I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -368,7 +330,6 @@ msgctxt ""
msgid "Enabled"
msgstr "Engedélyezve"
-#. ,ML=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -377,7 +338,6 @@ msgctxt ""
msgid "Visible"
msgstr "Látható"
-#. C{q5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -386,7 +346,6 @@ msgctxt ""
msgid "AutoFill"
msgstr "Automatikus kitöltés"
-#. \#!;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -395,7 +354,6 @@ msgctxt ""
msgid "Line count"
msgstr "Sorok száma"
-#. :w)d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -404,7 +362,6 @@ msgctxt ""
msgid "Max. text length"
msgstr "Maximális szöveghossz"
-#. S?#_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -413,7 +370,6 @@ msgctxt ""
msgid "Spin Button"
msgstr "Léptetőgomb"
-#. c9H)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -422,7 +378,6 @@ msgctxt ""
msgid "Strict format"
msgstr "Kötött formátum"
-#. S?Nz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -431,7 +386,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr "Ezreselválasztó"
-#. uUsL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -440,7 +394,6 @@ msgctxt ""
msgid "Printable"
msgstr "Nyomtatható"
-#. 9svO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -449,7 +402,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. =B]w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -458,7 +410,6 @@ msgctxt ""
msgid "Frame"
msgstr "Keret"
-#. \;fA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -467,7 +418,6 @@ msgctxt ""
msgid "Help text"
msgstr "Súgó szövege"
-#. @[oe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -476,7 +426,6 @@ msgctxt ""
msgid "Help URL"
msgstr "Súgó-URL"
-#. 5;yD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -485,7 +434,6 @@ msgctxt ""
msgid "Additional information"
msgstr "További információk"
-#. 8V1v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -494,7 +442,6 @@ msgctxt ""
msgid "Password character"
msgstr "Jelszókarakter"
-#. {JkO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -503,7 +450,6 @@ msgctxt ""
msgid "Tristate"
msgstr "Háromállapotú"
-#. XPsV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -512,7 +458,6 @@ msgctxt ""
msgid "Empty string is NULL"
msgstr "Üres szöveg = NULL"
-#. gKIe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -521,7 +466,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr "Tizedes pontosság"
-#. vDV_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -530,7 +474,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Kép"
-#. Y6h_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -539,7 +482,6 @@ msgctxt ""
msgid "Default selection"
msgstr "Alapértelmezett kijelölés"
-#. {+kZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -548,7 +490,6 @@ msgctxt ""
msgid "Default button"
msgstr "Alapértelmezett gomb"
-#. e9*B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -557,7 +498,6 @@ msgctxt ""
msgid "Label Field"
msgstr "Címkemező"
-#. h`vU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -566,7 +506,6 @@ msgctxt ""
msgid "Label"
msgstr "Címke"
-#. )3wp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -575,7 +514,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. YPNU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -584,7 +522,6 @@ msgctxt ""
msgid "Vert. Alignment"
msgstr "Függ. igazítás"
-#. n9SR
#: formres.src
msgctxt ""
"formres.src\n"
@@ -594,7 +531,6 @@ msgctxt ""
msgid "Top"
msgstr "Fent"
-#. L!Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -604,7 +540,6 @@ msgctxt ""
msgid "Middle"
msgstr "Középen"
-#. r\~P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -614,7 +549,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Lent"
-#. :K/s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -623,7 +557,6 @@ msgctxt ""
msgid "Graphics alignment"
msgstr "Kép igazítása"
-#. S[^Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -632,7 +565,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. Aor5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -641,7 +573,6 @@ msgctxt ""
msgid "Background color"
msgstr "Háttérszín"
-#. r8Bv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -650,7 +581,6 @@ msgctxt ""
msgid "Border"
msgstr "Szegély"
-#. H05x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -659,7 +589,6 @@ msgctxt ""
msgid "Icon size"
msgstr "Ikonméret"
-#. lJf2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -669,7 +598,6 @@ msgctxt ""
msgid "Small"
msgstr "Kicsi"
-#. v.\*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -679,7 +607,6 @@ msgctxt ""
msgid "Large"
msgstr "Nagy"
-#. k@aG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -688,7 +615,6 @@ msgctxt ""
msgid "Positioning"
msgstr "Elhelyezés"
-#. r@H`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -697,7 +623,6 @@ msgctxt ""
msgid "Navigation"
msgstr "Navigáció"
-#. 6D{T
#: formres.src
msgctxt ""
"formres.src\n"
@@ -706,7 +631,6 @@ msgctxt ""
msgid "Acting on a record"
msgstr "Művelet egy rekordon"
-#. h{oJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -715,7 +639,6 @@ msgctxt ""
msgid "Filtering / Sorting"
msgstr "Szűrés / Rendezés"
-#. 0of2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -724,7 +647,6 @@ msgctxt ""
msgid "Horizontal scroll bar"
msgstr "Vízszintes görgetősáv"
-#. !-Kj
#: formres.src
msgctxt ""
"formres.src\n"
@@ -733,7 +655,6 @@ msgctxt ""
msgid "Vertical scroll bar"
msgstr "Függőleges görgetősáv"
-#. .G=Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -742,7 +663,6 @@ msgctxt ""
msgid "Word break"
msgstr "Szótörés"
-#. M@V3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -751,7 +671,6 @@ msgctxt ""
msgid "Multiline input"
msgstr "Többsoros bevitel"
-#. uerX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -760,7 +679,6 @@ msgctxt ""
msgid "Multiselection"
msgstr "Többszörös kijelölés"
-#. N0W=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -769,7 +687,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. *t]/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -778,7 +695,6 @@ msgctxt ""
msgid "Group name"
msgstr "Csoport neve"
-#. ?8N/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -787,7 +703,6 @@ msgctxt ""
msgid "Tab order"
msgstr "Bejárási sorrend"
-#. =xa@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -796,7 +711,6 @@ msgctxt ""
msgid "Mouse wheel scroll"
msgstr "Egérgörgő görgetése"
-#. i^O.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -805,7 +719,6 @@ msgctxt ""
msgid "Filter"
msgstr "Szűrő"
-#. M^@9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -814,7 +727,6 @@ msgctxt ""
msgid "Sort"
msgstr "Rendezés"
-#. AXX0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -823,7 +735,6 @@ msgctxt ""
msgid "Record marker"
msgstr "Rekordjelölő"
-#. r-jp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -832,7 +743,6 @@ msgctxt ""
msgid "Filter proposal"
msgstr "Javasolt szűrő"
-#. #|_O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -841,7 +751,6 @@ msgctxt ""
msgid "Navigation bar"
msgstr "Navigációs eszköztár"
-#. I*I9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -850,7 +759,6 @@ msgctxt ""
msgid "Cycle"
msgstr "Körforgás"
-#. jek%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -859,7 +767,6 @@ msgctxt ""
msgid "Tabstop"
msgstr "Tabulátorpozíció"
-#. ULD~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -868,7 +775,6 @@ msgctxt ""
msgid "Data field"
msgstr "Adatmező"
-#. _{S8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -877,7 +783,6 @@ msgctxt ""
msgid "Dropdown"
msgstr "Legördülő"
-#. #|^\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -886,7 +791,6 @@ msgctxt ""
msgid "Bound field"
msgstr "Kapcsolt mező"
-#. 0z+)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -895,7 +799,6 @@ msgctxt ""
msgid "List content"
msgstr "Lista tartalma"
-#. ~b3V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -904,7 +807,6 @@ msgctxt ""
msgid "Type of list contents"
msgstr "Lista tartalmának típusa"
-#. 0T[g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -913,7 +815,6 @@ msgctxt ""
msgid "Content"
msgstr "Tartalom"
-#. A/Os
#: formres.src
msgctxt ""
"formres.src\n"
@@ -922,7 +823,6 @@ msgctxt ""
msgid "Content type"
msgstr "Tartalomtípus"
-#. WE*;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -931,7 +831,6 @@ msgctxt ""
msgid "Allow additions"
msgstr "Hozzáadás engedélyezése"
-#. F@XG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -940,7 +839,6 @@ msgctxt ""
msgid "Allow deletions"
msgstr "Törlés engedélyezése"
-#. -S87
#: formres.src
msgctxt ""
"formres.src\n"
@@ -949,7 +847,6 @@ msgctxt ""
msgid "Allow modifications"
msgstr "Módosítás engedélyezése"
-#. 4W?_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -958,7 +855,6 @@ msgctxt ""
msgid "Add data only"
msgstr "Csak adatok hozzáadása engedélyezett"
-#. X=]v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -967,7 +863,6 @@ msgctxt ""
msgid "Data source"
msgstr "Adatforrás"
-#. moG/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -976,7 +871,6 @@ msgctxt ""
msgid "Link master fields"
msgstr "Elsődleges mezők csatolása"
-#. q@tb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -985,7 +879,6 @@ msgctxt ""
msgid "Link slave fields"
msgstr "Alárendelt mezők csatolása"
-#. ODr[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -994,7 +887,6 @@ msgctxt ""
msgid "Value min."
msgstr "Legkisebb érték"
-#. bp2?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1003,7 +895,6 @@ msgctxt ""
msgid "Value max."
msgstr "Legnagyobb érték"
-#. [eew
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1012,7 +903,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr "Érték növelése/csökkentése"
-#. ]e}P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1021,7 +911,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr "Pénznem szimbóluma"
-#. Jl%q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1030,7 +919,6 @@ msgctxt ""
msgid "Date min."
msgstr "Legkorábbi dátum"
-#. iuNO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1039,7 +927,6 @@ msgctxt ""
msgid "Date max."
msgstr "Legkésőbbi dátum"
-#. dJPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1048,7 +935,6 @@ msgctxt ""
msgid "Date format"
msgstr "Dátumformátum"
-#. 33T]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1057,7 +943,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. z|8+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1066,7 +951,6 @@ msgctxt ""
msgid "Time min."
msgstr "Min. idő"
-#. K=!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1075,7 +959,6 @@ msgctxt ""
msgid "Time max."
msgstr "Max. idő"
-#. S!5/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1084,7 +967,6 @@ msgctxt ""
msgid "Time format"
msgstr "Időformátum"
-#. 3pJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1093,7 +975,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr "Előtagjel"
-#. 4sJ}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1102,7 +983,6 @@ msgctxt ""
msgid "Value"
msgstr "Érték"
-#. 9Rdn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1111,7 +991,6 @@ msgctxt ""
msgid "Formatting"
msgstr "Formázás"
-#. ?$EN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1120,7 +999,6 @@ msgctxt ""
msgid "Class ID"
msgstr "Osztályazonosító"
-#. qAX(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1129,7 +1007,6 @@ msgctxt ""
msgid "Height"
msgstr "Magasság"
-#. 7:#s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1138,7 +1015,6 @@ msgctxt ""
msgid "Width"
msgstr "Szélesség"
-#. n:B.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1147,7 +1023,6 @@ msgctxt ""
msgid "List index"
msgstr "Listaindex"
-#. $AcG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1156,7 +1031,6 @@ msgctxt ""
msgid "Row height"
msgstr "Sormagasság"
-#. ?Pek
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1165,7 +1039,6 @@ msgctxt ""
msgid "Fill color"
msgstr "Kitöltőszín"
-#. ]dkd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1174,7 +1047,6 @@ msgctxt ""
msgid "Line color"
msgstr "Sor színe"
-#. 7*Rh
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1183,7 +1055,6 @@ msgctxt ""
msgid "Reference value (on)"
msgstr "Referenciaérték (be)"
-#. ndxJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1192,7 +1063,6 @@ msgctxt ""
msgid "Reference value (off)"
msgstr "Referenciaérték (ki)"
-#. !d/7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1201,7 +1071,6 @@ msgctxt ""
msgid "List entries"
msgstr "Listabejegyzések"
-#. X#ie
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1210,7 +1079,6 @@ msgctxt ""
msgid "Action"
msgstr "Művelet"
-#. 5*J.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1219,7 +1087,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. $,h2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1228,7 +1095,6 @@ msgctxt ""
msgid "Type of submission"
msgstr "Elküldés típusa"
-#. )C4Q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1237,7 +1103,6 @@ msgctxt ""
msgid "Default status"
msgstr "Alapértelmezett állapot"
-#. [Y5P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1246,7 +1111,6 @@ msgctxt ""
msgid "Submission encoding"
msgstr "Küldés karakterkódolása"
-#. bs(D
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1255,7 +1119,6 @@ msgctxt ""
msgid "Default value"
msgstr "Alapértelmezett érték"
-#. 8V5s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1264,7 +1127,6 @@ msgctxt ""
msgid "Default text"
msgstr "Alapértelmezett szöveg"
-#. m:fJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1273,7 +1135,6 @@ msgctxt ""
msgid "Default date"
msgstr "Alapértelmezett dátum"
-#. =9eF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1282,7 +1143,6 @@ msgctxt ""
msgid "Default time"
msgstr "Alapértelmezett idő"
-#. 5\n,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1291,7 +1151,6 @@ msgctxt ""
msgid "Frame"
msgstr "Keret"
-#. gvBZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1301,7 +1160,6 @@ msgctxt ""
msgid "Without frame"
msgstr "Keret nélkül"
-#. `OE4
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1311,7 +1169,6 @@ msgctxt ""
msgid "3D look"
msgstr "Térhatású"
-#. WER5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1321,7 +1178,6 @@ msgctxt ""
msgid "Flat"
msgstr "Lapos"
-#. s!/R
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1331,7 +1187,6 @@ msgctxt ""
msgid "Valuelist"
msgstr "Értéklista"
-#. .DU=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1341,7 +1196,6 @@ msgctxt ""
msgid "Table"
msgstr "Táblázat"
-#. lo]r
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1351,7 +1205,6 @@ msgctxt ""
msgid "Query"
msgstr "Lekérdezés"
-#. Ymw,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1361,7 +1214,6 @@ msgctxt ""
msgid "Sql"
msgstr "Sql"
-#. ?=gQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1371,7 +1223,6 @@ msgctxt ""
msgid "Sql [Native]"
msgstr "Sql [natív]"
-#. ,S\v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1381,7 +1232,6 @@ msgctxt ""
msgid "Tablefields"
msgstr "Táblamezők"
-#. Pb[-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1391,7 +1241,6 @@ msgctxt ""
msgid "Left"
msgstr "Balra"
-#. (^\V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1401,7 +1250,6 @@ msgctxt ""
msgid "Center"
msgstr "Középre"
-#. d71O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1411,7 +1259,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobbra"
-#. Qv,_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1421,7 +1268,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. envc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1431,7 +1277,6 @@ msgctxt ""
msgid "Submit form"
msgstr "Űrlapok elküldése"
-#. Ncsk
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1441,7 +1286,6 @@ msgctxt ""
msgid "Reset form"
msgstr "Űrlap alaphelyzetbe állítása"
-#. zk8i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1451,7 +1295,6 @@ msgctxt ""
msgid "Open document/web page"
msgstr "Dokumentum/weblap megnyitása"
-#. U!^p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1461,7 +1304,6 @@ msgctxt ""
msgid "First record"
msgstr "Első rekord"
-#. `DKS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1471,7 +1313,6 @@ msgctxt ""
msgid "Previous record"
msgstr "Előző rekord"
-#. #tT1
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1481,7 +1322,6 @@ msgctxt ""
msgid "Next record"
msgstr "Következő rekord"
-#. iQf\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1491,7 +1331,6 @@ msgctxt ""
msgid "Last record"
msgstr "Utolsó rekord"
-#. K.a;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1501,7 +1340,6 @@ msgctxt ""
msgid "Save record"
msgstr "Rekord mentése"
-#. md:S
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1511,7 +1349,6 @@ msgctxt ""
msgid "Undo data entry"
msgstr "Adatbevitel visszavonása"
-#. ;kox
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1521,7 +1358,6 @@ msgctxt ""
msgid "New record"
msgstr "Új rekord"
-#. ch,#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1531,7 +1367,6 @@ msgctxt ""
msgid "Delete record"
msgstr "Rekord törlése"
-#. }G3{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1541,7 +1376,6 @@ msgctxt ""
msgid "Refresh form"
msgstr "Űrlap frissítése"
-#. 39MD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1551,7 +1385,6 @@ msgctxt ""
msgid "Get"
msgstr "Lekérés"
-#. nup%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1561,7 +1394,6 @@ msgctxt ""
msgid "Post"
msgstr "Küldés"
-#. .:Px
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1571,7 +1403,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. DT?;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1581,7 +1412,6 @@ msgctxt ""
msgid "Multipart"
msgstr "Több részes"
-#. Bght
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1591,7 +1421,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. 5SE#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1601,7 +1430,6 @@ msgctxt ""
msgid "Standard (short)"
msgstr "Standard (rövid)"
-#. w\.d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1611,7 +1439,6 @@ msgctxt ""
msgid "Standard (short YY)"
msgstr "Standard (rövid ÉÉ)"
-#. /649
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1621,7 +1448,6 @@ msgctxt ""
msgid "Standard (short YYYY)"
msgstr "Standard (rövid ÉÉÉÉ)"
-#. =^4t
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1631,7 +1457,6 @@ msgctxt ""
msgid "Standard (long)"
msgstr "Standard (hosszú)"
-#. !q\M
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1641,7 +1466,6 @@ msgctxt ""
msgid "DD/MM/YY"
msgstr "NN/HH/ÉÉ"
-#. x,)s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1651,7 +1475,6 @@ msgctxt ""
msgid "MM/DD/YY"
msgstr "HH/NN/ÉÉ"
-#. r`c0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1661,7 +1484,6 @@ msgctxt ""
msgid "YY/MM/DD"
msgstr "ÉÉ/HH/NN"
-#. K1Ia
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1671,7 +1493,6 @@ msgctxt ""
msgid "DD/MM/YYYY"
msgstr "NN/HH/ÉÉÉÉ"
-#. F)Ta
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1681,7 +1502,6 @@ msgctxt ""
msgid "MM/DD/YYYY"
msgstr "HH/NN/ÉÉÉÉ"
-#. 4moL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1691,7 +1511,6 @@ msgctxt ""
msgid "YYYY/MM/DD"
msgstr "ÉÉÉÉ/HH/NN"
-#. Jk}k
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1701,7 +1520,6 @@ msgctxt ""
msgid "YY-MM-DD"
msgstr "ÉÉ-HH-NN"
-#. iU`H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1711,7 +1529,6 @@ msgctxt ""
msgid "YYYY-MM-DD"
msgstr "ÉÉÉÉ-HH-NN"
-#. oN[8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1721,7 +1538,6 @@ msgctxt ""
msgid "13:45"
msgstr "13:45"
-#. 4xjn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1731,7 +1547,6 @@ msgctxt ""
msgid "13:45:00"
msgstr "13:45:00"
-#. 6MyJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1741,7 +1556,6 @@ msgctxt ""
msgid "01:45 PM"
msgstr "01:45 DU"
-#. E#X6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1751,7 +1565,6 @@ msgctxt ""
msgid "01:45:00 PM"
msgstr "01:45:00 DU"
-#. `UFq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1761,7 +1574,6 @@ msgctxt ""
msgid "Not Selected"
msgstr "Nincs kijelölve"
-#. K3uO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1771,7 +1583,6 @@ msgctxt ""
msgid "Selected"
msgstr "Kijelölve"
-#. X_8I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1781,7 +1592,6 @@ msgctxt ""
msgid "Not Defined"
msgstr "Nincs megadva"
-#. Xptb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1791,7 +1601,6 @@ msgctxt ""
msgid "All records"
msgstr "Összes rekord"
-#. fY_,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1801,7 +1610,6 @@ msgctxt ""
msgid "Active record"
msgstr "Aktív rekord"
-#. VwD6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1811,7 +1619,6 @@ msgctxt ""
msgid "Current page"
msgstr "Aktuális lap"
-#. nM7X
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1821,7 +1628,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. qP@v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1831,7 +1637,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. p!5z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1841,7 +1646,6 @@ msgctxt ""
msgid "Parent Form"
msgstr "Szülőűrlap"
-#. n8)q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1851,7 +1655,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. sS9+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1861,7 +1664,6 @@ msgctxt ""
msgid "Single"
msgstr "Egyszeres"
-#. .HAc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1871,7 +1673,6 @@ msgctxt ""
msgid "Multi"
msgstr "Többszörös"
-#. qWrG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1881,7 +1682,6 @@ msgctxt ""
msgid "Range"
msgstr "Tartomány"
-#. \aOo
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1890,7 +1690,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr "Paraméterek kitöltése"
-#. z1`m
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1899,7 +1698,6 @@ msgctxt ""
msgid "Execute action"
msgstr "Művelet végrehajtása"
-#. c{1]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1908,7 +1706,6 @@ msgctxt ""
msgid "After updating"
msgstr "Frissítés után"
-#. ^aZ=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1917,7 +1714,6 @@ msgctxt ""
msgid "Before updating"
msgstr "Frissítés előtt"
-#. 0L4,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1926,7 +1722,6 @@ msgctxt ""
msgid "Before record action"
msgstr "Rekordművelet előtt"
-#. q4W6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1935,7 +1730,6 @@ msgctxt ""
msgid "After record action"
msgstr "Rekordművelet után"
-#. o2v`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1944,7 +1738,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "Törlés megerősítése"
-#. M91!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1953,7 +1746,6 @@ msgctxt ""
msgid "Error occurred"
msgstr "Hiba történt"
-#. :9M2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1962,7 +1754,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr "Amikor a fókuszt megkapja"
-#. =o+p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1971,7 +1762,6 @@ msgctxt ""
msgid "When losing focus"
msgstr "Amikor a fókuszt elveszti"
-#. [D8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1980,7 +1770,6 @@ msgctxt ""
msgid "Item status changed"
msgstr "Elem állapota változott"
-#. |8SN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1989,7 +1778,6 @@ msgctxt ""
msgid "Key pressed"
msgstr "Billentyű lenyomva"
-#. FW$u
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1998,7 +1786,6 @@ msgctxt ""
msgid "Key released"
msgstr "Billentyű felengedve"
-#. =PkA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2007,7 +1794,6 @@ msgctxt ""
msgid "When loading"
msgstr "Töltés közben"
-#. ^Kw+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2016,7 +1802,6 @@ msgctxt ""
msgid "Before reloading"
msgstr "Újratöltés előtt"
-#. 8H0@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2025,7 +1810,6 @@ msgctxt ""
msgid "When reloading"
msgstr "Újratöltéskor"
-#. WS3:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2034,7 +1818,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr "Egér mozgott a billentyű lenyomása alatt"
-#. yr$)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2043,7 +1826,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr "Egér belül"
-#. 5,mV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2052,7 +1834,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr "Egér kívül"
-#. gi#W
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2061,7 +1842,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr "Egér mozdult"
-#. si70
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2070,7 +1850,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr "Egérgomb lenyomása"
-#. p!M}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2079,7 +1858,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr "Egérgomb elengedése"
-#. \2se
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2088,7 +1866,6 @@ msgctxt ""
msgid "Before record change"
msgstr "Rekordváltozás előtt"
-#. YnB!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2097,7 +1874,6 @@ msgctxt ""
msgid "After record change"
msgstr "Rekordváltozás után"
-#. 5#jX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2106,7 +1882,6 @@ msgctxt ""
msgid "After resetting"
msgstr "Alaphelyzetbe állítás után"
-#. $eXM
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2115,7 +1890,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr "Alaphelyzetbe állítás előtt"
-#. M14g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2124,7 +1898,6 @@ msgctxt ""
msgid "Approve action"
msgstr "Művelet jóváhagyása"
-#. -!|E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2133,7 +1906,6 @@ msgctxt ""
msgid "Before submitting"
msgstr "Elküldés előtt"
-#. Frn3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2142,7 +1914,6 @@ msgctxt ""
msgid "Text modified"
msgstr "Szöveg módosítva"
-#. uyNm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2151,7 +1922,6 @@ msgctxt ""
msgid "Before unloading"
msgstr "Kilépés előtt"
-#. ;HGO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2160,7 +1930,6 @@ msgctxt ""
msgid "When unloading"
msgstr "Kilépéskor"
-#. (PP(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2169,7 +1938,6 @@ msgctxt ""
msgid "Changed"
msgstr "Változott"
-#. aKp;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2178,7 +1946,6 @@ msgctxt ""
msgid "Events"
msgstr "Események"
-#. @v~z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2187,7 +1954,6 @@ msgctxt ""
msgid "Analyze SQL command"
msgstr "SQL-parancs elemzése"
-#. W;0g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2196,7 +1962,6 @@ msgctxt ""
msgid "PositionX"
msgstr "X pozíció"
-#. Pjpn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2205,7 +1970,6 @@ msgctxt ""
msgid "PositionY"
msgstr "Y pozíció"
-#. M6ON
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2214,7 +1978,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. -87E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2223,7 +1986,6 @@ msgctxt ""
msgid "Page (step)"
msgstr "Oldal (fázis)"
-#. ;kM`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2232,7 +1994,6 @@ msgctxt ""
msgid "Progress value"
msgstr "Folyamatérték"
-#. 1?kb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2241,7 +2002,6 @@ msgctxt ""
msgid "Progress value min."
msgstr "Legkisebb folyamatérték"
-#. S)Z:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2250,7 +2010,6 @@ msgctxt ""
msgid "Progress value max."
msgstr "Legnagyobb folyamatérték"
-#. qDPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2259,7 +2018,6 @@ msgctxt ""
msgid "Scroll value"
msgstr "Görgetési érték"
-#. s0rz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2268,7 +2026,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr "Maximális görgetési érték"
-#. @L1:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2277,7 +2034,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr "Min. görgetési érték"
-#. PoU-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2286,7 +2042,6 @@ msgctxt ""
msgid "Scroll width"
msgstr ""
-#. TH`U
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2295,7 +2050,6 @@ msgctxt ""
msgid "Scroll height"
msgstr ""
-#. #/`L
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2304,7 +2058,6 @@ msgctxt ""
msgid "Scroll top"
msgstr ""
-#. Y.\3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2313,7 +2066,6 @@ msgctxt ""
msgid "Scroll left"
msgstr ""
-#. dcw%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2322,7 +2074,6 @@ msgctxt ""
msgid "Default scroll value"
msgstr "Alapértelmezett görgetési érték"
-#. A,nt
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2331,7 +2082,6 @@ msgctxt ""
msgid "Small change"
msgstr "Kis változás"
-#. -NF]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2340,7 +2090,6 @@ msgctxt ""
msgid "Large change"
msgstr "Nagy változás"
-#. XQig
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2349,7 +2098,6 @@ msgctxt ""
msgid "Delay"
msgstr "Késleltetés"
-#. cdN\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2358,7 +2106,6 @@ msgctxt ""
msgid "Repeat"
msgstr "Ismétlés"
-#. IT`?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2367,7 +2114,6 @@ msgctxt ""
msgid "Visible size"
msgstr "Látható méret"
-#. fr[=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2376,7 +2122,6 @@ msgctxt ""
msgid "Orientation"
msgstr "Tájolás"
-#. kOP3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2386,7 +2131,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Vízszintes"
-#. @0u#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2396,7 +2140,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Függőleges"
-#. @{o^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2405,7 +2148,6 @@ msgctxt ""
msgid "While adjusting"
msgstr "Beállítás során"
-#. \nO8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2414,7 +2156,6 @@ msgctxt ""
msgid "Date"
msgstr "Dátum"
-#. #^c)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2423,7 +2164,6 @@ msgctxt ""
msgid "State"
msgstr "Állapot"
-#. %pud
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2432,7 +2172,6 @@ msgctxt ""
msgid "Time"
msgstr "Idő"
-#. IC[|
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2441,7 +2180,6 @@ msgctxt ""
msgid "Scale"
msgstr "Skála"
-#. .=PL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2450,7 +2188,6 @@ msgctxt ""
msgid "Button type"
msgstr "Gombtípus"
-#. 1Xm3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2460,7 +2197,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. #VJ5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2470,7 +2206,6 @@ msgctxt ""
msgid "OK"
msgstr "OK"
-#. [@v_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2480,7 +2215,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Mégse"
-#. Xzb_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2490,7 +2224,6 @@ msgctxt ""
msgid "Help"
msgstr "Súgó"
-#. 6fk?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2499,7 +2232,6 @@ msgctxt ""
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "Nem hozható létre kapcsolat a következő adatforrással: „$name$”."
-#. E.]F
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2508,7 +2240,6 @@ msgctxt ""
msgid "Text"
msgstr "szöveg"
-#. dE\_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2517,7 +2248,6 @@ msgctxt ""
msgid "Linked cell"
msgstr "Csatolt cella"
-#. i3l-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2526,7 +2256,6 @@ msgctxt ""
msgid "Source cell range"
msgstr "Forrás-cellatartomány"
-#. s2s{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2535,7 +2264,6 @@ msgctxt ""
msgid "Contents of the linked cell"
msgstr "A csatolt cella tartalma"
-#. 3?q/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2545,7 +2273,6 @@ msgctxt ""
msgid "The selected entry"
msgstr "Kijelölt bejegyzés"
-#. F$*\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2555,7 +2282,6 @@ msgctxt ""
msgid "Position of the selected entry"
msgstr "Kijelölt bejegyzés pozíciója"
-#. .r5g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2564,7 +2290,6 @@ msgctxt ""
msgid "Scrollbars"
msgstr "Görgetősávok"
-#. Xq.j
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2574,7 +2299,6 @@ msgctxt ""
msgid "Single-line"
msgstr "Egysoros"
-#. R0-%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2584,7 +2308,6 @@ msgctxt ""
msgid "Multi-line"
msgstr "Többsoros"
-#. G4gE
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2594,7 +2317,6 @@ msgctxt ""
msgid "Multi-line with formatting"
msgstr "Többsoros formázással"
-#. {:/n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2603,7 +2325,6 @@ msgctxt ""
msgid "Symbol color"
msgstr "Szimbólum színe"
-#. +9o9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2612,7 +2333,6 @@ msgctxt ""
msgid "Text lines end with"
msgstr "Szövegsorok végződése"
-#. Pn$*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2622,7 +2342,6 @@ msgctxt ""
msgid "LF (Unix)"
msgstr "LF (Unix)"
-#. {JJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2632,7 +2351,6 @@ msgctxt ""
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
-#. chgv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2642,7 +2360,6 @@ msgctxt ""
msgid "None"
msgstr "Semmi"
-#. qCVL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2652,7 +2369,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Vízszintes"
-#. C~lr
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2662,7 +2378,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Függőleges"
-#. /tKF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2672,7 +2387,6 @@ msgctxt ""
msgid "Both"
msgstr "Mindkettő"
-#. 9-$K
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2682,7 +2396,6 @@ msgctxt ""
msgid "Table"
msgstr "Tábla"
-#. ,bsl
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2692,7 +2405,6 @@ msgctxt ""
msgid "Query"
msgstr "Lekérdezés"
-#. Sfg@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2702,7 +2414,6 @@ msgctxt ""
msgid "SQL command"
msgstr "SQL-parancs"
-#. *Xi.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2711,7 +2422,6 @@ msgctxt ""
msgid "Toggle"
msgstr "Nézetváltás"
-#. 137^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2720,7 +2430,6 @@ msgctxt ""
msgid "Take Focus on Click"
msgstr "Kattintásra fókusz"
-#. 75:(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2729,7 +2438,6 @@ msgctxt ""
msgid "Hide selection"
msgstr "Kijelölés elrejtése"
-#. #K-[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2738,7 +2446,6 @@ msgctxt ""
msgid "Style"
msgstr "Stílus"
-#. S}u\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2748,7 +2455,6 @@ msgctxt ""
msgid "3D"
msgstr "Térbeli"
-#. hfq?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2758,7 +2464,6 @@ msgctxt ""
msgid "Flat"
msgstr "Lapos"
-#. #/cN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2767,7 +2472,6 @@ msgctxt ""
msgid "Border color"
msgstr "Szegély színe"
-#. $4$`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2777,7 +2481,6 @@ msgctxt ""
msgid "Left top"
msgstr "Balra fent"
-#. UuZU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2787,7 +2490,6 @@ msgctxt ""
msgid "Left centered"
msgstr "Balra középen"
-#. sn],
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2797,7 +2499,6 @@ msgctxt ""
msgid "Left bottom"
msgstr "Balra lent"
-#. q%p}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2807,7 +2508,6 @@ msgctxt ""
msgid "Right top"
msgstr "Jobbra fent"
-#. El?n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2817,7 +2517,6 @@ msgctxt ""
msgid "Right centered"
msgstr "Jobbra középen"
-#. sIfy
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2827,7 +2526,6 @@ msgctxt ""
msgid "Right bottom"
msgstr "Jobbra lent"
-#. ]UGJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2837,7 +2535,6 @@ msgctxt ""
msgid "Above left"
msgstr "Felette balra"
-#. +[9p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2847,7 +2544,6 @@ msgctxt ""
msgid "Above centered"
msgstr "Felette középen"
-#. dWOS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2857,7 +2553,6 @@ msgctxt ""
msgid "Above right"
msgstr "Felette jobbra"
-#. CC~q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2867,7 +2562,6 @@ msgctxt ""
msgid "Below left"
msgstr "Alatta balra"
-#. mqC(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2877,7 +2571,6 @@ msgctxt ""
msgid "Below centered"
msgstr "Alatta középen"
-#. v-Fd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2887,7 +2580,6 @@ msgctxt ""
msgid "Below right"
msgstr "Alatta jobbra"
-#. +o?.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2897,7 +2589,6 @@ msgctxt ""
msgid "Centered"
msgstr "Középen"
-#. 0;oG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2906,7 +2597,6 @@ msgctxt ""
msgid "Wrap text automatically"
msgstr "Automatikus szövegtördelés"
-#. %+Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2915,7 +2605,6 @@ msgctxt ""
msgid "Text type"
msgstr "Szövegtípus"
-#. S#Q3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2925,7 +2614,6 @@ msgctxt ""
msgid "Hide"
msgstr "Elrejtés"
-#. PnDz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2935,7 +2623,6 @@ msgctxt ""
msgid "Show"
msgstr "Megjelenítés"
-#. u$=i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2944,7 +2631,6 @@ msgctxt ""
msgid "XML data model"
msgstr "XML-adatmodell"
-#. f\dm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2953,7 +2639,6 @@ msgctxt ""
msgid "Binding expression"
msgstr "Kötéskifejezés"
-#. OlmL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2962,7 +2647,6 @@ msgctxt ""
msgid "Required"
msgstr "Szükséges"
-#. r!.y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2971,7 +2655,6 @@ msgctxt ""
msgid "List entry source"
msgstr "Listaelem forrása"
-#. 2RO$
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2980,7 +2663,6 @@ msgctxt ""
msgid "Relevant"
msgstr "Releváns"
-#. M\XT
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2989,7 +2671,6 @@ msgctxt ""
msgid "Read-only"
msgstr "Csak olvasásra"
-#. ~R[H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2998,7 +2679,6 @@ msgctxt ""
msgid "Constraint"
msgstr "Kényszerfeltétel"
-#. w]xA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3007,7 +2687,6 @@ msgctxt ""
msgid "Calculation"
msgstr "Számolás"
-#. C7!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3016,7 +2695,6 @@ msgctxt ""
msgid "Data type"
msgstr "Adattípus"
-#. RTu-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3025,7 +2703,6 @@ msgctxt ""
msgid "Whitespaces"
msgstr "Üres karakterek"
-#. 2`~}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3035,7 +2712,6 @@ msgctxt ""
msgid "Preserve"
msgstr "Megőrzés"
-#. DB_^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3045,7 +2721,6 @@ msgctxt ""
msgid "Replace"
msgstr "Csere"
-#. a:1a
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3055,7 +2730,6 @@ msgctxt ""
msgid "Collapse"
msgstr "Összevonás"
-#. _:{*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3064,7 +2738,6 @@ msgctxt ""
msgid "Pattern"
msgstr "Mintázat"
-#. {TC%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3073,7 +2746,6 @@ msgctxt ""
msgid "Length"
msgstr "Hossz"
-#. qNpQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3082,7 +2754,6 @@ msgctxt ""
msgid "Length (at least)"
msgstr "Hossz (legalább)"
-#. UHOq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3091,7 +2762,6 @@ msgctxt ""
msgid "Length (at most)"
msgstr "Hossz (legfeljebb)"
-#. 6j97
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3100,7 +2770,6 @@ msgctxt ""
msgid "Digits (total)"
msgstr "Számjegyek (összesen)"
-#. O%8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3109,7 +2778,6 @@ msgctxt ""
msgid "Digits (fraction)"
msgstr "Számjegyek (törtrész)"
-#. ^fxb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3118,7 +2786,6 @@ msgctxt ""
msgid "Max. (inclusive)"
msgstr "Max. (inkluzív)"
-#. rm_.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3127,7 +2794,6 @@ msgctxt ""
msgid "Max. (exclusive)"
msgstr "Max. (exkluzív)"
-#. ]~D~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3136,7 +2802,6 @@ msgctxt ""
msgid "Min. (inclusive)"
msgstr "Min. (inkluzív)"
-#. qah+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3145,7 +2810,6 @@ msgctxt ""
msgid "Min. (exclusive)"
msgstr "Max. (exkluzív)"
-#. J\Hf
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3154,7 +2818,6 @@ msgctxt ""
msgid "Submission"
msgstr "Beküldés"
-#. (Cb(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3163,7 +2826,6 @@ msgctxt ""
msgid "Binding"
msgstr "Kötés"
-#. 0!k2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3172,7 +2834,6 @@ msgctxt ""
msgid "Selection type"
msgstr "Kijelölés típusa"
-#. HlSx
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3181,7 +2842,6 @@ msgctxt ""
msgid "Root displayed"
msgstr "Gyökér megjelenik"
-#. .+E7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3190,7 +2850,6 @@ msgctxt ""
msgid "Show handles"
msgstr "Fogantyúk megjelenítése"
-#. @h9_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3199,7 +2858,6 @@ msgctxt ""
msgid "Show root handles"
msgstr "Gyökérfogantyúk megjelenítése"
-#. 2:Pq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3208,7 +2866,6 @@ msgctxt ""
msgid "Editable"
msgstr "Szerkeszthető"
-#. BCaS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3217,7 +2874,6 @@ msgctxt ""
msgid "Invokes stop node editing"
msgstr "Indítja a stop csomópont szerkesztését"
-#. \S=z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3226,7 +2882,6 @@ msgctxt ""
msgid "With title bar"
msgstr "Címsorral"
-#. EO4w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3235,7 +2890,6 @@ msgctxt ""
msgid "No Label"
msgstr "Nincs címke"
-#. smZT
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3245,7 +2899,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. 1gPb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3255,7 +2908,6 @@ msgctxt ""
msgid "Keep Ratio"
msgstr "Rögzített méretarány"
-#. `Wm.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3265,7 +2917,6 @@ msgctxt ""
msgid "Fit to Size"
msgstr "Méretre igazítás"
-#. vJ8;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3274,7 +2925,6 @@ msgctxt ""
msgid "Input required"
msgstr "Bevitel kötelező"
-#. FJqs
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3283,7 +2933,6 @@ msgctxt ""
msgid "Text direction"
msgstr "Szövegirány"
-#. E6Mb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3293,7 +2942,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "Balról jobbra"
-#. e(6@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3303,7 +2951,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "Jobbról balra"
-#. ^{n^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3313,7 +2960,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "Szülőobjektum beállításainak használata"
-#. }q9O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3323,7 +2969,6 @@ msgctxt ""
msgid "Never"
msgstr "Soha"
-#. Crc\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3333,7 +2978,6 @@ msgctxt ""
msgid "When focused"
msgstr "Ha fókuszban van"
-#. Sr4`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3343,7 +2987,6 @@ msgctxt ""
msgid "Always"
msgstr "Mindig"
-#. F/k`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3352,7 +2995,6 @@ msgctxt ""
msgid "Anchor"
msgstr "Horgony"
-#. 7r+v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3362,7 +3004,6 @@ msgctxt ""
msgid "To Paragraph"
msgstr "Bekezdésre"
-#. Fy8h
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3372,7 +3013,6 @@ msgctxt ""
msgid "As Character"
msgstr "Karakterként"
-#. ye~-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3382,7 +3022,6 @@ msgctxt ""
msgid "To Page"
msgstr "Oldalra"
-#. MB0^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3392,7 +3031,6 @@ msgctxt ""
msgid "To Frame"
msgstr "Keretre"
-#. 3i7.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3402,7 +3040,6 @@ msgctxt ""
msgid "To Character"
msgstr "Karakterre"
-#. |ZcH
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3412,7 +3049,6 @@ msgctxt ""
msgid "To Page"
msgstr "Oldalra"
-#. )n?x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3423,7 +3059,6 @@ msgid "To Cell"
msgstr "Cellára"
#. 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"
@@ -3433,7 +3068,6 @@ msgid "Regular"
msgstr "Normál"
#. That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
-#. /i9?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3443,7 +3077,6 @@ msgid "Bold Italic"
msgstr "Félkövér dőlt"
#. That's the 'Italic' as used for a font style, so please use a consistent translation.
-#. ^IUO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3453,7 +3086,6 @@ msgid "Italic"
msgstr "Dőlt"
#. That's the 'Bold' as used for a font style, so please use a consistent translation.
-#. ;yDn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3462,7 +3094,6 @@ msgctxt ""
msgid "Bold"
msgstr "Félkövér"
-#. aX]A
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3471,7 +3102,6 @@ msgctxt ""
msgid "(Default)"
msgstr "(Alapértelmezett)"
-#. d)p)
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3481,7 +3111,6 @@ msgctxt ""
msgid "Font"
msgstr "Betűkészlet"
-#. L{e]
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3491,7 +3120,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Betűhatások"
-#. CnL3
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3500,7 +3128,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. hzG4
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3510,7 +3137,6 @@ msgctxt ""
msgid "These are control fields that can be used as label fields for the $control_class$ $control_name$."
msgstr "Ezen vezérlőmezők címkeként is használhatóak a következőkhöz: $control_class$ $control_name$"
-#. -0+n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3520,7 +3146,6 @@ msgctxt ""
msgid "~No assignment"
msgstr "~Nincs hozzárendelés"
-#. kV]M
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3529,7 +3154,6 @@ msgctxt ""
msgid "Label Field Selection"
msgstr "Címkemező kiválasztása"
-#. %X$n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3538,7 +3162,6 @@ msgctxt ""
msgid "Forms"
msgstr "Űrlapok"
-#. gyU6
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3547,7 +3170,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. cx8C
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3556,7 +3178,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. $aE`
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3565,7 +3186,6 @@ msgctxt ""
msgid "Data"
msgstr "Adat"
-#. e^gC
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3575,7 +3195,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. Z;YA
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3585,7 +3204,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. PD5y
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3594,7 +3212,6 @@ msgctxt ""
msgid "Help"
msgstr "Súgó"
-#. xGE$
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3603,7 +3220,6 @@ msgctxt ""
msgid "<Embedded-Image>"
msgstr "<Beágyazott kép>"
-#. aOT_
#: propres.src
msgctxt ""
"propres.src\n"
diff --git a/source/hu/extensions/source/scanner.po b/source/hu/extensions/source/scanner.po
index 750cbd39bda..5d960e7f4bf 100644
--- a/source/hu/extensions/source/scanner.po
+++ b/source/hu/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-11-02 16:09+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 ""
"~Eszköz\n"
"névjegye"
-#. nZmm
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -43,7 +41,6 @@ msgstr ""
"Előnézet\n"
"létrehozása"
-#. ,$ZF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -53,7 +50,6 @@ msgctxt ""
msgid "Scan"
msgstr "Beolvasás"
-#. ESbO
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -63,7 +59,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. ,O6b
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -73,7 +68,6 @@ msgctxt ""
msgid "Scan area"
msgstr "Beolvasási terület"
-#. apdX
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -83,7 +77,6 @@ msgctxt ""
msgid "Left:"
msgstr "Bal:"
-#. ITmF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -93,7 +86,6 @@ msgctxt ""
msgid "Top:"
msgstr "Teteje:"
-#. bmM`
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -103,7 +95,6 @@ msgctxt ""
msgid "Right:"
msgstr "Jobb:"
-#. sNk/
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -113,7 +104,6 @@ msgctxt ""
msgid "Bottom:"
msgstr "Alja:"
-#. bTWg
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -123,7 +113,6 @@ msgctxt ""
msgid "Device used:"
msgstr "Használatban lévő eszköz:"
-#. f^4O
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -133,7 +122,6 @@ msgctxt ""
msgid "Resolution [~DPI]"
msgstr "Felbontás [~DPI]"
-#. Qq$M
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -143,7 +131,6 @@ msgctxt ""
msgid "Show advanced options"
msgstr "Speciális beállítások megjelenítése"
-#. NK-a
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -153,7 +140,6 @@ msgctxt ""
msgid "Options:"
msgstr "Beállítások:"
-#. J:eK
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -163,7 +149,6 @@ msgctxt ""
msgid "Vector element"
msgstr "Vektorelem"
-#. /}\N
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -173,7 +158,6 @@ msgctxt ""
msgid "Set"
msgstr "Beállítás"
-#. 5]Q7
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "Scanner"
msgstr "Lapolvasó"
-#. h;sG
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -199,7 +182,6 @@ msgstr ""
"Modell: %s\n"
"Típus: %s"
-#. Rw80
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -208,7 +190,6 @@ msgctxt ""
msgid "An error occurred while scanning."
msgstr "Hiba történt a lapolvasás közben."
-#. 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 "Az eszköz nem rendelkezik előnézet lehetőséggel. Ezért egy normál beolvasás lesz az előnézet alapja. Ez eltarthat egy darabig."
-#. 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 "A SANE-illesztőfelület beállítása sikertelen. A lapolvasás nem lehetséges."
-#. PgQe
#: grid.src
msgctxt ""
"grid.src\n"
@@ -236,7 +215,6 @@ msgctxt ""
msgid "Set"
msgstr "Beállítás"
-#. d)D;
#: grid.src
msgctxt ""
"grid.src\n"
@@ -246,7 +224,6 @@ msgctxt ""
msgid "Linear ascending"
msgstr "Egyenletesen növekvő"
-#. HyhL
#: grid.src
msgctxt ""
"grid.src\n"
@@ -256,7 +233,6 @@ msgctxt ""
msgid "Linear descending"
msgstr "Egyenletesen csökkenő"
-#. ]{CR
#: grid.src
msgctxt ""
"grid.src\n"
@@ -266,7 +242,6 @@ msgctxt ""
msgid "Original values"
msgstr "Eredeti értékek"
-#. (](f
#: grid.src
msgctxt ""
"grid.src\n"
diff --git a/source/hu/extensions/source/update/check.po b/source/hu/extensions/source/update/check.po
index 9abe7d60679..348f6d6e380 100644
--- a/source/hu/extensions/source/update/check.po
+++ b/source/hu/extensions/source/update/check.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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: 2012-07-12 15:51+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot 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 "Ellenőrzés..."
-#. Xj;\
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Checking for an update failed."
msgstr "A frissítés keresése sikertelen."
-#. 7^\Y
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
msgstr "A %PRODUCTNAME %PRODUCTVERSION naprakész."
-#. dxD7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -63,7 +59,6 @@ msgstr ""
"Megjegyzés: Frissítés letöltése előtt győződjön meg arról, hogy elégséges jogosultsággal rendelkezik a telepítéshez.\n"
"Jelszó, általában a rendszergazda vagy a root jelszava szükséges lehet."
-#. wfY$
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -72,7 +67,6 @@ msgctxt ""
msgid "Check for Updates"
msgstr "Frissítések keresése"
-#. kH/w
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -81,7 +75,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
msgstr "A %PRODUCTNAME %NEXTVERSION letöltése szünetel..."
-#. 7.2#
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -90,7 +83,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
msgstr "A %PRODUCTNAME %NEXTVERSION letöltése megállt"
-#. ~11K
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -105,7 +97,6 @@ msgstr ""
"\n"
"Az Eszközök – Beállítások... - %PRODUCTNAME – Online frissítés alatt módosíthatja a letöltés helyét."
-#. tkv_
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -114,7 +105,6 @@ msgctxt ""
msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
msgstr "A(z) %FILE_NAME letöltődött a(z) %DOWNLOAD_PATH útvonalra."
-#. g+Lt
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -129,7 +119,6 @@ msgstr ""
"\n"
"Kattintson a „Letöltés...” gombra a %PRODUCTNAME %NEXTVERSION kézi letöltéséhez a webhelyről."
-#. RJN8
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -138,7 +127,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
msgstr "A %PRODUCTNAME %NEXTVERSION letöltése folyamatban..."
-#. 3Dm9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -147,7 +135,6 @@ msgctxt ""
msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
msgstr "A %PRODUCTNAME %NEXTVERSION letöltése befejeződött. Készen áll a telepítésre."
-#. `eI9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -156,7 +143,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. I;J,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -165,7 +151,6 @@ msgctxt ""
msgid "Do you really want to cancel the download?"
msgstr "Biztosan megszakítja a letöltést?"
-#. B9|/
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -174,7 +159,6 @@ msgctxt ""
msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
msgstr "A frissítés telepítéséhez be kell zárni a %PRODUCTNAME %PRODUCTVERSION programot. Szeretné most telepíteni a frissítést?"
-#. v:FP
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -183,7 +167,6 @@ msgctxt ""
msgid "Install ~now"
msgstr "Telepítés ~most"
-#. QN)o
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -192,7 +175,6 @@ msgctxt ""
msgid "Install ~later"
msgstr "Telepítés ~később"
-#. t4,V
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -201,7 +183,6 @@ msgctxt ""
msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
msgstr "Nem futtatható a telepítőalkalmazás, futtassa kézzel a(z) %FILE_NAME programot a(z) %DOWNLOAD_PATH útvonalon."
-#. iC9T
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -210,7 +191,6 @@ msgctxt ""
msgid "A file with that name already exists! Do you want to overwrite the existing file?"
msgstr "Már létezik ilyen nevű fájl! Felülírja a létező fájlt?"
-#. w.]7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -219,7 +199,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 "Már létezik „%FILENAME” nevű fájl a(z) „%DOWNLOAD_PATH” útvonalon! Folytatja a letöltést, vagy törli és újratölti a fájlt?"
-#. 7N7V
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -228,7 +207,6 @@ msgctxt ""
msgid "Reload File"
msgstr "Fájl újratöltése"
-#. 8qG,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -237,7 +215,6 @@ msgctxt ""
msgid "Continue"
msgstr "Folytatás"
-#. MT,p
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -246,7 +223,6 @@ msgctxt ""
msgid "%PERCENT%"
msgstr "%PERCENT%"
-#. K}OW
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Status"
msgstr "Állapot"
-#. /hQk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "Description"
msgstr "Leírás"
-#. CqPi
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Close"
msgstr "Bezárás"
-#. Wb-C
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -282,7 +255,6 @@ msgctxt ""
msgid "~Download"
msgstr "~Letöltés"
-#. ^ZR3
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -291,7 +263,6 @@ msgctxt ""
msgid "~Install"
msgstr "~Telepítés"
-#. `svJ
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -300,7 +271,6 @@ msgctxt ""
msgid "~Pause"
msgstr "~Szünet"
-#. Fypk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "~Resume"
msgstr "~Folytatás"
-#. }D@S
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -318,7 +287,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Mégse"
-#. -L!;
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -327,7 +295,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr "%PRODUCTNAME-frissítés érhető el"
-#. 0#nw
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -336,7 +303,6 @@ msgctxt ""
msgid "Click the icon to start the download."
msgstr "A letöltés indításához kattintson az ikonra."
-#. 7D`X
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr "%PRODUCTNAME-frissítés érhető el"
-#. M?%A
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -354,7 +319,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr "További információkért kattintson az ikonra."
-#. +?c+
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -363,7 +327,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr "%PRODUCTNAME-frissítés érhető el"
-#. 5xVs
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Download of update begins."
msgstr "A frissítés letöltése megkezdődött."
-#. S:I4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -381,7 +343,6 @@ msgctxt ""
msgid "Download of update in progress"
msgstr "A frissítés letöltése folyamatban."
-#. vX:u
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "Download of update paused"
msgstr "A frissítés letöltése szünetel."
-#. Vi?J
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Click the icon to resume."
msgstr "A folytatáshoz kattintson az ikonra."
-#. aWS!
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Download of update stalled"
msgstr "A frissítés letöltése megállt."
-#. y4,B
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -417,7 +375,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr "További információkért kattintson az ikonra."
-#. wpWK
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "Download of update completed"
msgstr "A frissítés letöltése kész."
-#. 8NG0
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -435,7 +391,6 @@ msgctxt ""
msgid "Click the icon to start the installation."
msgstr "A telepítés indításához kattintson az ikonra."
-#. U-cB
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -444,7 +399,6 @@ msgctxt ""
msgid "Updates for extensions available"
msgstr "Kiterjesztésfrissítések érhetők el."
-#. oo*[
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
diff --git a/source/hu/extensions/source/update/check/org/openoffice/Office.po b/source/hu/extensions/source/update/check/org/openoffice/Office.po
index 1f4800b2d44..7d18133092b 100644
--- a/source/hu/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/hu/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: 2012-07-12 15:52+0200\n"
"Last-Translator: Gábor <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. QCbR
#: Addons.xcu
msgctxt ""
"Addons.xcu\n"
diff --git a/source/hu/filter/source/config/fragments/filters.po b/source/hu/filter/source/config/fragments/filters.po
index a48062a3a34..72cb2e57afb 100644
--- a/source/hu/filter/source/config/fragments/filters.po
+++ b/source/hu/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-07-12 16:22+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot 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%-rajz"
-#. FSla
#: Text__encoded__ui.xcu
msgctxt ""
"Text__encoded__ui.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Text Encoded"
msgstr "Kódolt szöveg"
-#. 1jf\
#: UOF_presentation_ui.xcu
msgctxt ""
"UOF_presentation_ui.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Unified Office Format presentation"
msgstr "Unified Office Format bemutató"
-#. ``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 "Kódolt szöveg (Writer/Web)"
-#. WZVM
#: HTML__StarCalc__ui.xcu
msgctxt ""
"HTML__StarCalc__ui.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "HTML Document (Calc)"
msgstr "HTML-dokumentum (Calc)"
-#. 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 "Kódolt szöveg (Fődokumentum)"
-#. 90^8
#: HTML__StarWriter__ui.xcu
msgctxt ""
"HTML__StarWriter__ui.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "HTML Document (Writer)"
msgstr "HTML-dokumentum (Writer)"
-#. eje)
#: UOF_text_ui.xcu
msgctxt ""
"UOF_text_ui.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Unified Office Format text"
msgstr "Unified Office Format szöveg"
-#. 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-sablon"
-#. x6dO
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML AutoPlay"
msgstr "Microsoft PowerPoint 2007/2010 XML AutoPlay"
-#. 877d
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
"MS_Word_2007_XML_Template.xcu\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr "Microsoft Word 2007/2010 XML sablon"
-#. cx]J
#: MS_Excel_95_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_95_Vorlage_Template_ui.xcu\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Microsoft Excel 95 Template"
msgstr "Microsoft Excel 95-sablon"
-#. EEc%
#: calc8_template_ui.xcu
msgctxt ""
"calc8_template_ui.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "ODF Spreadsheet Template"
msgstr "ODF-munkafüzetsablon"
-#. MVN`
#: impress8_template_ui.xcu
msgctxt ""
"impress8_template_ui.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "ODF Presentation Template"
msgstr "ODF-bemutatósablon"
-#. |H*2
#: chart8_ui.xcu
msgctxt ""
"chart8_ui.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "ODF Chart"
msgstr "ODF-diagram"
-#. 3K~!
#: calc_MS_Excel_2007_Binary_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_Binary_ui.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Microsoft Excel 2007 Binary"
msgstr "Microsoft Excel 2007 bináris"
-#. o?NG
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_Template.xcu\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr "Microsoft PowerPoint 2007/2010 XML sablon"
-#. ?Kb,
#: impress_OOXML_ui.xcu
msgctxt ""
"impress_OOXML_ui.xcu\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Office Open XML Presentation"
msgstr "Office Open XML-bemutató"
-#. %(ni
#: draw8_template_ui.xcu
msgctxt ""
"draw8_template_ui.xcu\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "ODF Drawing Template"
msgstr "ODF-rajzsablon"
-#. Y5_V
#: StarOffice_XML__Math__ui.xcu
msgctxt ""
"StarOffice_XML__Math__ui.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "%productname% %formatversion% Formula"
msgstr "%productname% %formatversion%-képlet"
-#. Z?OM
#: MS_Word_97_Vorlage_ui.xcu
msgctxt ""
"MS_Word_97_Vorlage_ui.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "Microsoft Word 97/2000/XP/2003 Template"
msgstr "Microsoft Word 97/2000/XP/2003-sablon"
-#. #2bU
#: impress_StarOffice_XML_Draw_ui.xcu
msgctxt ""
"impress_StarOffice_XML_Draw_ui.xcu\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing (Impress)"
msgstr "%productname% %formatversion%-rajz (Impress)"
-#. ?G4t
#: MS_Word_2007_XML_Template_ui.xcu
msgctxt ""
"MS_Word_2007_XML_Template_ui.xcu\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr "Microsoft Word 2007/2010 XML sablon"
-#. 8*:[
#: impress_OOXML_Template_ui.xcu
msgctxt ""
"impress_OOXML_Template_ui.xcu\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Office Open XML Presentation Template"
msgstr "Office Open XML-bemutatósablon"
-#. r=7Q
#: calc_OOXML_Template_ui.xcu
msgctxt ""
"calc_OOXML_Template_ui.xcu\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet Template"
msgstr "Office Open XML-munkafüzetsablon"
-#. 7,nr
#: UOF_spreadsheet_ui.xcu
msgctxt ""
"UOF_spreadsheet_ui.xcu\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "Unified Office Format spreadsheet"
msgstr "Unified Office Format munkafüzet"
-#. p]gv
#: calc_MS_Excel_2007_XML_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_XML_ui.xcu\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML"
msgstr "Microsoft Excel 2007/2010 XML"
-#. 0M*O
#: writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu
msgctxt ""
"writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "%productname% %formatversion% HTML Template"
msgstr "%productname% %formatversion% HTML-sablon"
-#. qT6D
#: writerweb8_writer_template_ui.xcu
msgctxt ""
"writerweb8_writer_template_ui.xcu\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "HTML Document Template"
msgstr "HTML-dokumentumsablon"
-#. yL/+
#: StarOffice_XML__Calc__ui.xcu
msgctxt ""
"StarOffice_XML__Calc__ui.xcu\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet"
msgstr "%productname% %formatversion%-munkafüzet"
-#. o/GW
#: OOXML_Text_Template_ui.xcu
msgctxt ""
"OOXML_Text_Template_ui.xcu\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "Office Open XML Text Template"
msgstr "Office Open XML-szövegsablon"
-#. $+;N
#: draw8_ui.xcu
msgctxt ""
"draw8_ui.xcu\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "ODF Drawing"
msgstr "ODF-rajz"
-#. L3Qs
#: calc_MS_Excel_2007_XML_Template_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_XML_Template_ui.xcu\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML Template"
msgstr "Microsoft Excel 2007/2010 XML sablon"
-#. H9?2
#: impress8_ui.xcu
msgctxt ""
"impress8_ui.xcu\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "ODF Presentation"
msgstr "ODF-bemutató"
-#. 6HHU
#: Text__StarWriter_Web__ui.xcu
msgctxt ""
"Text__StarWriter_Web__ui.xcu\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Text (Writer/Web)"
msgstr "Szöveg (Writer/Web)"
-#. 2*9O
#: impress_MS_PowerPoint_2007_XML_ui.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_ui.xcu\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr "Microsoft PowerPoint 2007/2010 XML"
-#. pn~s
#: calc8_ui.xcu
msgctxt ""
"calc8_ui.xcu\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "ODF Spreadsheet"
msgstr "ODF-munkafüzet"
-#. ,MlL
#: calc_HTML_WebQuery_ui.xcu
msgctxt ""
"calc_HTML_WebQuery_ui.xcu\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "Web Page Query (Calc)"
msgstr "Weboldal-lekérdezés (Calc)"
-#. `Atl
#: HTML_MasterDoc_ui.xcu
msgctxt ""
"HTML_MasterDoc_ui.xcu\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "HTML Document (Master Document)"
msgstr "HTML-dokumentum (Fődokumentum)"
-#. AJSF
#: writerweb8_writer_ui.xcu
msgctxt ""
"writerweb8_writer_ui.xcu\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "%productname% Text (Writer/Web)"
msgstr "%productname%-szöveg (Writer/Web)"
-#. }t(*
#: Text_ui.xcu
msgctxt ""
"Text_ui.xcu\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "Text"
msgstr "Szöveg"
-#. ,n.B
#: calc_StarOffice_XML_Calc_Template_ui.xcu
msgctxt ""
"calc_StarOffice_XML_Calc_Template_ui.xcu\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet Template"
msgstr "%productname% %formatversion%-munkafüzetsablon"
-#. 7sAm
#: OOXML_Text_ui.xcu
msgctxt ""
"OOXML_Text_ui.xcu\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "Office Open XML Text"
msgstr "Office Open XML-szöveg"
-#. @IUQ
#: HTML_ui.xcu
msgctxt ""
"HTML_ui.xcu\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "HTML-dokumentum"
-#. ][6X
#: impress_html_Export_ui.xcu
msgctxt ""
"impress_html_Export_ui.xcu\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "HTML Document (Impress)"
msgstr "HTML-dokumentum (Impress)"
-#. 2Nj`
#: writer_StarOffice_XML_Writer_Template_ui.xcu
msgctxt ""
"writer_StarOffice_XML_Writer_Template_ui.xcu\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document Template"
msgstr "%productname% %formatversion%-szövegesdokumentumsablon"
-#. MOg?
#: MS_Excel_97_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_97_Vorlage_Template_ui.xcu\n"
@@ -495,7 +447,6 @@ msgctxt ""
msgid "Microsoft Excel 97/2000/XP/2003 Template"
msgstr "Microsoft Excel 97/2000/XP/2003-sablon"
-#. clCD
#: StarOffice_XML__Writer__ui.xcu
msgctxt ""
"StarOffice_XML__Writer__ui.xcu\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr "%productname% %formatversion%-szövegesdokumentum"
-#. ZOC6
#: StarOffice_XML__Impress__ui.xcu
msgctxt ""
"StarOffice_XML__Impress__ui.xcu\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation"
msgstr "%productname% %formatversion%-bemutató"
-#. ^jXH
#: writerglobal8_ui.xcu
msgctxt ""
"writerglobal8_ui.xcu\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "ODF Master Document"
msgstr "ODF-mintadokumentum"
-#. J@6X
#: MS_Excel_5_0_95_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_5_0_95_Vorlage_Template_ui.xcu\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "Microsoft Excel 5.0 Template"
msgstr "Microsoft Excel 5.0-sablon"
-#. 30UV
#: MS_Excel_2003_XML_ui.xcu
msgctxt ""
"MS_Excel_2003_XML_ui.xcu\n"
@@ -545,7 +492,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"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation Template"
msgstr "%productname% %formatversion%-bemutatósablon"
-#. tI1@
#: writer_globaldocument_StarOffice_XML_Writer_ui.xcu
msgctxt ""
"writer_globaldocument_StarOffice_XML_Writer_ui.xcu\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr "%productname% %formatversion%-szövegesdokumentum"
-#. ,(b:
#: impress8_draw_ui.xcu
msgctxt ""
"impress8_draw_ui.xcu\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "ODF Drawing (Impress)"
msgstr "ODF-rajz (Impress)"
-#. Mt[;
#: writer_web_StarOffice_XML_Writer_ui.xcu
msgctxt ""
"writer_web_StarOffice_XML_Writer_ui.xcu\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document (Writer/Web)"
msgstr "%productname% %formatversion%-szövegesdokumentum (Writer/Web)"
-#. ?H1Y
#: calc_OOXML_ui.xcu
msgctxt ""
"calc_OOXML_ui.xcu\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet"
msgstr "Office Open XML-munkafüzet"
-#. yoFo
#: impress_MS_PowerPoint_2007_XML_Template_ui.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_Template_ui.xcu\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr "Microsoft PowerPoint 2007/2010 XML sablon"
-#. tb):
#: Text___txt___csv__StarCalc__ui.xcu
msgctxt ""
"Text___txt___csv__StarCalc__ui.xcu\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Text CSV"
msgstr "Strukturált szöveg (CSV)"
-#. 9B3M
#: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu
msgctxt ""
"writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "%productname% %formatversion% Master Document"
msgstr "%productname% %formatversion%-fődokumentum"
-#. W^dl
#: writer8_ui.xcu
msgctxt ""
"writer8_ui.xcu\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr "ODF-szövegesdokumentum"
-#. jmL)
#: MS_Word_95_Vorlage_ui.xcu
msgctxt ""
"MS_Word_95_Vorlage_ui.xcu\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "Microsoft Word 95 Template"
msgstr "Microsoft Word 95-sablon"
-#. l,@_
#: writer8_template_ui.xcu
msgctxt ""
"writer8_template_ui.xcu\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "ODF Text Document Template"
msgstr "ODF-szövegesdokumentumsablon"
-#. #3,N
#: draw_html_Export_ui.xcu
msgctxt ""
"draw_html_Export_ui.xcu\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "HTML Document (Draw)"
msgstr "HTML-dokumentum (Draw)"
-#. 3]]=
#: draw_StarOffice_XML_Draw_Template_ui.xcu
msgctxt ""
"draw_StarOffice_XML_Draw_Template_ui.xcu\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing Template"
msgstr "%productname% %formatversion%-rajzsablon"
-#. H=YU
#: writerglobal8_writer_ui.xcu
msgctxt ""
"writerglobal8_writer_ui.xcu\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr "ODF-szövegesdokumentum"
-#. 2[!X
#: StarOffice_XML__Base__ui.xcu
msgctxt ""
"StarOffice_XML__Base__ui.xcu\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "ODF Database"
msgstr "ODF-adatbázis"
-#. ]m0?
#: MS_Word_2007_XML_ui.xcu
msgctxt ""
"MS_Word_2007_XML_ui.xcu\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML"
msgstr "Microsoft Word 2007/2010 XML"
-#. @w`5
#: MS_PowerPoint_97_Vorlage_ui.xcu
msgctxt ""
"MS_PowerPoint_97_Vorlage_ui.xcu\n"
@@ -715,7 +645,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 97/2000/XP/2003 Template"
msgstr "Microsoft PowerPoint 97/2000/XP/2003-sablon"
-#. _bE!
#: StarOffice_XML__Chart__ui.xcu
msgctxt ""
"StarOffice_XML__Chart__ui.xcu\n"
@@ -725,7 +654,6 @@ msgctxt ""
msgid "%productname% %formatversion% Chart"
msgstr "%productname% %formatversion%-diagram"
-#. 8O3T
#: math8_ui.xcu
msgctxt ""
"math8_ui.xcu\n"
diff --git a/source/hu/filter/source/config/fragments/internalgraphicfilters.po b/source/hu/filter/source/config/fragments/internalgraphicfilters.po
index cb4c82d0820..0d3c76620fb 100644
--- a/source/hu/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "SVG - Scalable Vector Graphics"
-#. rk[w
#: psd_Import.xcu
msgctxt ""
"psd_Import.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. nN9M
#: jpg_Export.xcu
msgctxt ""
"jpg_Export.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. $180
#: dxf_Import.xcu
msgctxt ""
"dxf_Import.xcu\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. !1co
#: bmp_Import.xcu
msgctxt ""
"bmp_Import.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr "BMP - Windows-bitkép"
-#. kltH
#: tif_Import.xcu
msgctxt ""
"tif_Import.xcu\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. cK7s
#: xpm_Export.xcu
msgctxt ""
"xpm_Export.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr "XPM - X PixMap"
-#. LBZQ
#: pcd_Import_Base16.xcu
msgctxt ""
"pcd_Import_Base16.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (192x128)"
msgstr "PCD - Kodak Photo CD (192x128)"
-#. Qb,j
#: ras_Import.xcu
msgctxt ""
"ras_Import.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. Co!+
#: ppm_Import.xcu
msgctxt ""
"ppm_Import.xcu\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr "PPM - Portable Pixelmap"
-#. MoeF
#: png_Export.xcu
msgctxt ""
"png_Export.xcu\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. :=wc
#: sgv_Import.xcu
msgctxt ""
"sgv_Import.xcu\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "SGV - StarDraw 2.0"
msgstr "SGV - StarDraw 2.0"
-#. 7gT1
#: wmf_Import.xcu
msgctxt ""
"wmf_Import.xcu\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr "WMF - Windows-metafájl"
-#. ]?[k
#: pcx_Import.xcu
msgctxt ""
"pcx_Import.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. $(nB
#: sgf_Import.xcu
msgctxt ""
"sgf_Import.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "SGF - StarWriter Graphics Format"
msgstr "SGF - StarWriter Graphics Format"
-#. M]4B
#: met_Export.xcu
msgctxt ""
"met_Export.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr "MET - OS/2-metafájl"
-#. 6o+b
#: eps_Import.xcu
msgctxt ""
"eps_Import.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. @ZOn
#: bmp_Export.xcu
msgctxt ""
"bmp_Export.xcu\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr "BMP - Windows-bitkép"
-#. P}G7
#: jpg_Import.xcu
msgctxt ""
"jpg_Import.xcu\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. K_`5
#: ppm_Export.xcu
msgctxt ""
"ppm_Export.xcu\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr "PPM - Portable Pixelmap"
-#. )`ND
#: pbm_Export.xcu
msgctxt ""
"pbm_Export.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr "PBM - Portable Bitmap"
-#. aA?q
#: gif_Export.xcu
msgctxt ""
"gif_Export.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr "GIF - Graphics Interchange Format"
-#. :zU2
#: ras_Export.xcu
msgctxt ""
"ras_Export.xcu\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. Ga7:
#: tif_Export.xcu
msgctxt ""
"tif_Export.xcu\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. VNR8
#: pct_Import.xcu
msgctxt ""
"pct_Import.xcu\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr "PCT - Mac Pict"
-#. B`\~
#: xbm_Import.xcu
msgctxt ""
"xbm_Import.xcu\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. %Z(;
#: emf_Export.xcu
msgctxt ""
"emf_Export.xcu\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr "EMF - Enhanced Metafile"
-#. ]\SO
#: svm_Import.xcu
msgctxt ""
"svm_Import.xcu\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr "SVM - StarView-metafájl"
-#. llig
#: svg_Export.xcu
msgctxt ""
"svg_Export.xcu\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr "SVG - Scalable Vector Graphics"
-#. :[\\
#: xpm_Import.xcu
msgctxt ""
"xpm_Import.xcu\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr "XPM - X PixMap"
-#. IJmO
#: pcd_Import_Base4.xcu
msgctxt ""
"pcd_Import_Base4.xcu\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (384x256)"
msgstr "PCD - Kodak Photo CD (384x256)"
-#. JU6T
#: pcd_Import_Base.xcu
msgctxt ""
"pcd_Import_Base.xcu\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (768x512)"
msgstr "PCD - Kodak Photo CD (768x512)"
-#. y+w+
#: pgm_Import.xcu
msgctxt ""
"pgm_Import.xcu\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. UlYg
#: svm_Export.xcu
msgctxt ""
"svm_Export.xcu\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr "SVM - StarView-metafájl"
-#. 9+j;
#: met_Import.xcu
msgctxt ""
"met_Import.xcu\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr "MET - OS/2-metafájl"
-#. ;~S:
#: pct_Export.xcu
msgctxt ""
"pct_Export.xcu\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr "PCT - Mac Pict"
-#. @A~4
#: png_Import.xcu
msgctxt ""
"png_Import.xcu\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. WB2s
#: gif_Import.xcu
msgctxt ""
"gif_Import.xcu\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr "GIF - Graphics Interchange Format"
-#. sIoS
#: pbm_Import.xcu
msgctxt ""
"pbm_Import.xcu\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr "PBM - Portable Bitmap"
-#. }4lG
#: eps_Export.xcu
msgctxt ""
"eps_Export.xcu\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. 62U|
#: tga_Import.xcu
msgctxt ""
"tga_Import.xcu\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. zj\*
#: emf_Import.xcu
msgctxt ""
"emf_Import.xcu\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr "EMF - Enhanced Metafile"
-#. N-6v
#: wmf_Export.xcu
msgctxt ""
"wmf_Export.xcu\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr "WMF - Windows-metafájl"
-#. \c6#
#: pgm_Export.xcu
msgctxt ""
"pgm_Export.xcu\n"
diff --git a/source/hu/filter/source/config/fragments/types.po b/source/hu/filter/source/config/fragments/types.po
index 34f82d5a9c7..639ba716421 100644
--- a/source/hu/filter/source/config/fragments/types.po
+++ b/source/hu/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-07-28 10:51+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Writer 8-sablon"
-#. D[gE
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
"MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr "Microsoft PowerPoint 2007/2010 XML"
-#. sm8]
#: math8.xcu
msgctxt ""
"math8.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Math 8"
msgstr "Math 8"
-#. Bgkg
#: draw8.xcu
msgctxt ""
"draw8.xcu\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Draw 8"
msgstr "Draw 8"
-#. !^^%
#: writer8.xcu
msgctxt ""
"writer8.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Writer 8"
msgstr "Writer 8"
-#. U;W8
#: StarBase.xcu
msgctxt ""
"StarBase.xcu\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "OpenDocument Database"
msgstr "OpenDocument-adatbázis"
-#. {6WL
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
"MS_PowerPoint_2007_XML_Template.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr "Microsoft PowerPoint 2007/2010 XML sablon"
-#. jQ8A
#: impress8_template.xcu
msgctxt ""
"impress8_template.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Impress 8 Template"
msgstr "Impress 8-sablon"
-#. $TR?
#: calc8_template.xcu
msgctxt ""
"calc8_template.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Calc 8 Template"
msgstr "Calc 8-sablon"
-#. qwTC
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
"writer_MS_Word_2007_XML.xcu\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML"
msgstr "Microsoft Word 2007/2010 XML"
-#. 6gQv
#: calc_MS_Excel_2003_XML.xcu
msgctxt ""
"calc_MS_Excel_2003_XML.xcu\n"
@@ -125,7 +114,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"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Microsoft Excel 2007 Binary"
msgstr "Microsoft Excel 2007 bináris"
-#. zY[|
#: writer_MS_Word_2003_XML.xcu
msgctxt ""
"writer_MS_Word_2003_XML.xcu\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
-#. GB)m
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
"MS_Excel_2007_XML_Template.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML Template"
msgstr "Microsoft Excel 2007/2010 XML sablon"
-#. ;Fv(
#: chart8.xcu
msgctxt ""
"chart8.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Chart 8"
msgstr "Chart 8"
-#. TTlL
#: writerweb8_writer_template.xcu
msgctxt ""
"writerweb8_writer_template.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Writer/Web 8 Template"
msgstr "Writer/Web 8-sablon"
-#. x9Oe
#: draw8_template.xcu
msgctxt ""
"draw8_template.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Draw 8 Template"
msgstr "Draw 8-sablon"
-#. U@|E
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
"writer_MS_Word_2007_XML_Template.xcu\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr "Microsoft Word 2007/2010 XML sablon"
-#. Eu9!
#: calc8.xcu
msgctxt ""
"calc8.xcu\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Calc 8"
msgstr "Calc 8"
-#. 3P||
#: impress8.xcu
msgctxt ""
"impress8.xcu\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Impress 8"
msgstr "Impress 8"
-#. MGe)
#: writerglobal8.xcu
msgctxt ""
"writerglobal8.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Writer 8 Master Document"
msgstr "Writer 8-fődokumentum"
-#. .k,:
#: MS_PowerPoint_2007_XML.xcu
msgctxt ""
"MS_PowerPoint_2007_XML.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr "Microsoft PowerPoint 2007/2010 XML"
-#. a[Qh
#: MS_Excel_2007_XML.xcu
msgctxt ""
"MS_Excel_2007_XML.xcu\n"
diff --git a/source/hu/filter/source/flash.po b/source/hu/filter/source/flash.po
index 92dd209e09a..8e6a13f79bf 100644
--- a/source/hu/filter/source/flash.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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: legrosszabb minőség\n"
"100: legjobb minőség"
-#. \Qfh
#: impswfdialog.src
msgctxt ""
"impswfdialog.src\n"
diff --git a/source/hu/filter/source/graphicfilter/eps.po b/source/hu/filter/source/graphicfilter/eps.po
index 17b83daf374..dbab7fee9c0 100644
--- a/source/hu/filter/source/graphicfilter/eps.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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/hu/filter/source/pdf.po b/source/hu/filter/source/pdf.po
index d29101b2401..379f70979d7 100644
--- a/source/hu/filter/source/pdf.po
+++ b/source/hu/filter/source/pdf.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-07-12 15:55+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot 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 "~Exportálás"
-#. AQU:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Set open password"
msgstr "Megnyitási jelszó beállítása"
-#. Z2)V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Set permission password"
msgstr "Jogosultsági jelszó beállítása"
-#. 4S[C
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -52,7 +48,6 @@ msgctxt ""
msgid "Range"
msgstr "Tartomány"
-#. W0[B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "~All"
msgstr "~Mind"
-#. 0#QB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "~Pages"
msgstr "~Oldalak"
-#. (QN6
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~Kijelölés"
-#. TDTP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Images"
msgstr "Képek"
-#. W0pN
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -102,7 +93,6 @@ msgctxt ""
msgid "~Lossless compression"
msgstr "~Veszteségmentes tömörítés"
-#. (reK
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "~JPEG compression"
msgstr "~JPEG-tömörítés"
-#. !YT5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "~Quality"
msgstr "Mi~nőség"
-#. w1Y:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "~Reduce image resolution"
msgstr "Kép~felbontás csökkentése"
-#. wK|)
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. O__/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Watermark"
msgstr "Vízjel"
-#. m%~K
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "Sign with Watermark"
msgstr "Aláírás vízjellel"
-#. Z:i#
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Watermark Text"
msgstr "Vízjel szövege"
-#. ]h9H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. znbP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Em~bed OpenDocument file"
msgstr "~OpenDocument-fájl beágyazása"
-#. }Y+-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Makes this PDF easily editable in %PRODUCTNAME"
msgstr "A PDF könnyen szerkeszthető lesz a %PRODUCTNAME-ban"
-#. .Dg$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "P~DF/A-1a"
msgstr "P~DF/A-1a"
-#. :CRm
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "~Tagged PDF"
msgstr "~Felcímkézett PDF"
-#. t8Q0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "~Create PDF form"
msgstr "~PDF-űrlap létrehozása"
-#. Om4N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Submit ~format"
msgstr "Elküldési ~formátum"
-#. -R[=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Allow duplicate field ~names"
msgstr "Duplikált mező~nevek engedélyezése"
-#. K~#|
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "Export ~bookmarks"
msgstr "~Könyvjelzők exportálása"
-#. o}Se
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "~Export comments"
msgstr "~Megjegyzések exportálása"
-#. {wNC
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Export ~notes pages"
msgstr "Megjegyzések oldalainak e~xportálása"
-#. al{^
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "Export ~hidden pages"
msgstr "Rejtett oldalak e~xportálása"
-#. p-BB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -285,7 +256,6 @@ msgctxt ""
msgid "Exp~ort automatically inserted blank pages"
msgstr "~Automatikusan beszúrt üres oldalak exportálása"
-#. V{m/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "E~mbed standard fonts"
msgstr "Sz~abványos betűkészletek beágyazása"
-#. cfF8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -303,7 +272,6 @@ msgctxt ""
msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
msgstr "A PDF/A formátum nem teszi lehetővé a titkosítást. Az exportált PDF-fájl nem lesz jelszóvédett."
-#. LT;O
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "PDF/A Export"
msgstr "PDF/A export"
-#. S8jQ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "Panes"
msgstr "Panelek"
-#. -\#!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -332,7 +298,6 @@ msgctxt ""
msgid "~Page only"
msgstr "Csak az ~oldal"
-#. w.:v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -342,7 +307,6 @@ msgctxt ""
msgid "~Bookmarks and page"
msgstr "~Könyvjelzők és oldal"
-#. 2l@$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -352,7 +316,6 @@ msgctxt ""
msgid "~Thumbnails and page"
msgstr "~Miniatűrök és oldal"
-#. $I2H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -362,7 +325,6 @@ msgctxt ""
msgid "Open on page"
msgstr "Megnyitás ezen a lapon"
-#. W[ik
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -372,7 +334,6 @@ msgctxt ""
msgid "Magnification"
msgstr "Nagyítás"
-#. 6D(S
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -382,7 +343,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Alapértelmezett"
-#. teE,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -392,7 +352,6 @@ msgctxt ""
msgid "~Fit in window"
msgstr "A ~teljes oldal beleférjen az ablakba"
-#. K\UE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -402,7 +361,6 @@ msgctxt ""
msgid "Fit ~width"
msgstr "Az oldal ~széltében beleférjen az ablakba"
-#. Xr2t
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -412,7 +370,6 @@ msgctxt ""
msgid "Fit ~visible"
msgstr "A~z oldal tartalma (margók nélkül) beleférjen az ablakba"
-#. {USU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -422,7 +379,6 @@ msgctxt ""
msgid "~Zoom factor"
msgstr "~Nagyítás mértéke"
-#. Fz2T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -432,7 +388,6 @@ msgctxt ""
msgid "Page layout"
msgstr "Oldalbeállítás"
-#. _DAp
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -442,7 +397,6 @@ msgctxt ""
msgid "D~efault"
msgstr "Alapé~rtelmezett"
-#. PZ);
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -452,7 +406,6 @@ msgctxt ""
msgid "~Single page"
msgstr "~Egyetlen oldal"
-#. -^sP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -462,7 +415,6 @@ msgctxt ""
msgid "~Continuous"
msgstr "~Folyamatos"
-#. Nt(1
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -472,7 +424,6 @@ msgctxt ""
msgid "C~ontinuous facing"
msgstr "Fo~lyamatos, egymással szemben"
-#. {3So
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -482,7 +433,6 @@ msgctxt ""
msgid "First page is ~left"
msgstr "Az első oldal ~bal oldalt van"
-#. CoFE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -491,7 +441,6 @@ msgctxt ""
msgid "Initial View"
msgstr "Nézet megnyitáskor"
-#. s|1u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -501,7 +450,6 @@ msgctxt ""
msgid "Window options"
msgstr "Ablakbeállítások"
-#. %(k;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -511,7 +459,6 @@ msgctxt ""
msgid "~Resize window to initial page"
msgstr "~Ablak átméretezése a kezdőoldal méretére"
-#. u,vy
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -521,7 +468,6 @@ msgctxt ""
msgid "~Center window on screen"
msgstr "Ablak ~képernyő közepére helyezése"
-#. y,,T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -531,7 +477,6 @@ msgctxt ""
msgid "~Open in full screen mode"
msgstr "Megnyitás ~teljes képernyős módban"
-#. NuCV
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -541,7 +486,6 @@ msgctxt ""
msgid "~Display document title"
msgstr "~Dokumentum címének megjelenítése"
-#. nOuk
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -551,7 +495,6 @@ msgctxt ""
msgid "User interface options"
msgstr "Felhasználói felület beállításai"
-#. kNB;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -561,7 +504,6 @@ msgctxt ""
msgid "Hide ~menubar"
msgstr "~Menüsor elrejtése"
-#. I/hA
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -571,7 +513,6 @@ msgctxt ""
msgid "Hide ~toolbar"
msgstr "~Eszköztár elrejtése"
-#. HX(V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -581,7 +522,6 @@ msgctxt ""
msgid "Hide ~window controls"
msgstr "A~blakvezérlők elrejtése"
-#. 9H/u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -591,7 +531,6 @@ msgctxt ""
msgid "Transitions"
msgstr "Átmenetek"
-#. ccsb
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -601,7 +540,6 @@ msgctxt ""
msgid "~Use transition effects"
msgstr "Á~tmeneti effektusok alkalmazása"
-#. ={F=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -611,7 +549,6 @@ msgctxt ""
msgid "Bookmarks"
msgstr "Könyvjelzők"
-#. OKp0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -621,7 +558,6 @@ msgctxt ""
msgid "All bookmark levels"
msgstr "Minden könyvjelzőszint"
-#. SKf5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -631,7 +567,6 @@ msgctxt ""
msgid "Visible bookmark levels"
msgstr "Látható könyvjelzőszintek"
-#. fE4=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -640,7 +575,6 @@ msgctxt ""
msgid "User Interface"
msgstr "Felhasználói felület"
-#. RxVa
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -650,7 +584,6 @@ msgctxt ""
msgid "File encryption and permission"
msgstr "Fájltitkosítás és jogosultságok"
-#. 8O\m
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -660,7 +593,6 @@ msgctxt ""
msgid "Set ~passwords..."
msgstr "~Jelszavak beállítása..."
-#. C5/P
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -670,7 +602,6 @@ msgctxt ""
msgid "Set passwords"
msgstr "Jelszavak beállítása"
-#. 7#Y[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -680,7 +611,6 @@ msgctxt ""
msgid "Open password set"
msgstr "Van megnyitási jelszó"
-#. {Y5j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -690,7 +620,6 @@ msgctxt ""
msgid "PDF document will be encrypted"
msgstr "A PDF-dokumentum titkosítva lesz"
-#. ^5F;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -700,7 +629,6 @@ msgctxt ""
msgid "No open password set"
msgstr "Nincs megnyitási jelszó"
-#. _,dq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -710,7 +638,6 @@ msgctxt ""
msgid "PDF document will not be encrypted"
msgstr "A PDF-dokumentum nem lesz titkosítva"
-#. Vl%G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -720,7 +647,6 @@ msgctxt ""
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr "A PDF-dokumentum nem lesz titkosítva a PDF/A export miatt."
-#. 6eL*
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -730,7 +656,6 @@ msgctxt ""
msgid "Permission password set"
msgstr "Van jogosultsági jelszó"
-#. EOgG
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -740,7 +665,6 @@ msgctxt ""
msgid "PDF document will be restricted"
msgstr "A PDF-dokumentum korlátozva lesz"
-#. :#af
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -750,7 +674,6 @@ msgctxt ""
msgid "No permission password set"
msgstr "Nincs jogosultsági jelszó"
-#. uyXD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -760,7 +683,6 @@ msgctxt ""
msgid "PDF document will be unrestricted"
msgstr "A PDF-dokumentum nem lesz korlátozva"
-#. ]v4}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -770,7 +692,6 @@ msgctxt ""
msgid "PDF document will not be restricted due to PDF/A export."
msgstr "A PDF-dokumentumra vonatkozó jogosultságok nem lesznek korlátozva a PDF/A export miatt."
-#. 7B4x
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -780,7 +701,6 @@ msgctxt ""
msgid "Printing"
msgstr "Nyomtatás"
-#. SQO\
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -790,7 +710,6 @@ msgctxt ""
msgid "~Not permitted"
msgstr "~Nem engedélyezett"
-#. 5JyD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -800,7 +719,6 @@ msgctxt ""
msgid "~Low resolution (150 dpi)"
msgstr "~Alacsony felbontás (150 dpi)"
-#. !_.;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -810,7 +728,6 @@ msgctxt ""
msgid "~High resolution"
msgstr "~Magas felbontás"
-#. ;S*M
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -820,7 +737,6 @@ msgctxt ""
msgid "Changes"
msgstr "Módosítások"
-#. K9`=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -830,7 +746,6 @@ msgctxt ""
msgid "No~t permitted"
msgstr "Ne~m engedélyezett"
-#. 1C6j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -840,7 +755,6 @@ msgctxt ""
msgid "~Inserting, deleting, and rotating pages"
msgstr "~Oldalak beszúrása, törlése és forgatása"
-#. rN$F
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -850,7 +764,6 @@ msgctxt ""
msgid "~Filling in form fields"
msgstr "Ű~rlapmezők kitöltése"
-#. k~9D
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -860,7 +773,6 @@ msgctxt ""
msgid "~Commenting, filling in form fields"
msgstr "~Megjegyzések, űrlapmezők kitöltése"
-#. i#x!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -870,7 +782,6 @@ msgctxt ""
msgid "~Any except extracting pages"
msgstr "~Bármi, kivéve oldalak kiszedését"
-#. SM5,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -880,7 +791,6 @@ msgctxt ""
msgid "Ena~ble copying of content"
msgstr "~Tartalom másolásának engedélyezése"
-#. 2,%}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -890,7 +800,6 @@ msgctxt ""
msgid "Enable text access for acce~ssibility tools"
msgstr "~Támogatás a kisegítő eszközök számára"
-#. ?H~_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -899,7 +808,6 @@ msgctxt ""
msgid "Security"
msgstr "Biztonság"
-#. Z6B?
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -909,7 +817,6 @@ msgctxt ""
msgid "Use this certificate to digitally sign PDF documents:"
msgstr ""
-#. *h@_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -919,7 +826,6 @@ msgctxt ""
msgid "~Select..."
msgstr "~Kiválasztás..."
-#. I6O/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -929,7 +835,6 @@ msgctxt ""
msgid "Clear"
msgstr ""
-#. (ErU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -939,7 +844,6 @@ msgctxt ""
msgid "Certificate Password"
msgstr ""
-#. G7-[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -949,7 +853,6 @@ msgctxt ""
msgid "Location"
msgstr "Hely"
-#. 7Auq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -959,7 +862,6 @@ msgctxt ""
msgid "Contact Information"
msgstr ""
-#. \EMs
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -969,7 +871,6 @@ msgctxt ""
msgid "Reason"
msgstr ""
-#. dFjJ
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -979,7 +880,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr "Digitális aláírások"
-#. OX?3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -989,7 +889,6 @@ msgctxt ""
msgid "Export bookmarks as named destinations"
msgstr "Könyvjelzők exportálása névvel rendelkező célokként"
-#. HS$N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -999,7 +898,6 @@ msgctxt ""
msgid "Convert document references to PDF targets"
msgstr "Dokumentumhivatkozások átalakítása PDF-célokká"
-#. !$!B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1009,7 +907,6 @@ msgctxt ""
msgid "Export URLs relative to file system"
msgstr "A fájlrendszerhez viszonyított URL-ek exportálása"
-#. O?7X
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1019,7 +916,6 @@ msgctxt ""
msgid "Cross-document links"
msgstr "Dokumentumok közti hivatkozások"
-#. )[ir
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1029,7 +925,6 @@ msgctxt ""
msgid "Default mode"
msgstr "Alapértelmezett mód"
-#. 9P;G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1039,7 +934,6 @@ msgctxt ""
msgid "Open with PDF reader application"
msgstr "Megnyitás PDF-olvasó alkalmazással"
-#. \*C~
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1049,7 +943,6 @@ msgctxt ""
msgid "Open with Internet browser"
msgstr "Megnyitás internetböngészővel"
-#. +lJ3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1058,7 +951,6 @@ msgctxt ""
msgid "---"
msgstr "---"
-#. s1;s
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1068,7 +960,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. $S11
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1078,7 +969,6 @@ msgctxt ""
msgid "Initial View"
msgstr "Nézet megnyitáskor"
-#. 2{JW
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1088,7 +978,6 @@ msgctxt ""
msgid "User Interface"
msgstr "Felhasználói felület"
-#. kGN8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1098,7 +987,6 @@ msgctxt ""
msgid "Links"
msgstr "Hivatkozások"
-#. _Lk_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1108,7 +996,6 @@ msgctxt ""
msgid "Security"
msgstr "Biztonság"
-#. 50V0
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -1119,7 +1006,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr "Digitális aláírások"
-#. \^dH
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1128,7 +1014,6 @@ msgctxt ""
msgid "PDF Options"
msgstr "PDF-beállítások"
-#. %CF.
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1138,7 +1023,6 @@ msgctxt ""
msgid "During PDF export the following problems occurred:"
msgstr "A PDF-be exportálás során az alábbi problémák merültek fel:"
-#. (@3I
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1148,7 +1032,6 @@ msgctxt ""
msgid "PDF/A transparency"
msgstr "PDF/A átlátszóság"
-#. .z0;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1158,7 +1041,6 @@ msgctxt ""
msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
msgstr "A PDF/A tiltja az átlátszóságot. Az átlátszó objektum átlátszatlanná vált."
-#. Qmv-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1168,7 +1050,6 @@ msgctxt ""
msgid "PDF version conflict"
msgstr "PDF-verzióütközés"
-#. oWot
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1178,7 +1059,6 @@ msgctxt ""
msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
msgstr "Az átlátszóságot a PDF 1.4-nél korábbi verziók nem támogatják. Az átlátszó objektum átlátszatlanná vált."
-#. =SfZ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1188,7 +1068,6 @@ msgctxt ""
msgid "PDF/A form action"
msgstr "PDF/A-űrlapművelet"
-#. ^wB8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1198,7 +1077,6 @@ msgctxt ""
msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
msgstr "Az űrlap egyik vezérlőeleme olyan műveletet tartalmazott, amelyet a PDF/A szabvány nem támogat. A művelet kihagyva."
-#. qjQx
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1208,7 +1086,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 "Egyes objektumok képpé lettek alakítva az átlátszóság eltávolítása érdekében, mivel a cél PDF formátum nem támogatja az átlátszóságot. Valószínűleg jobb eredményt kap, ha exportálás előtt eltávolítja az átlátszó objektumokat."
-#. {s)$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1218,7 +1095,6 @@ msgctxt ""
msgid "Transparencies removed"
msgstr "Átlátszó objektumok törölve"
-#. _2f%
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1227,7 +1103,6 @@ msgctxt ""
msgid "Problems during PDF export"
msgstr "Problémák a PDF-be exportálás során"
-#. emFd
#: pdf.src
msgctxt ""
"pdf.src\n"
diff --git a/source/hu/filter/source/t602.po b/source/hu/filter/source/t602.po
index 70a34484b05..28177b68b2e 100644
--- a/source/hu/filter/source/t602.po
+++ b/source/hu/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-03-25 09:55+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "T602 importálásának beállításai"
-#. bS;E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Encoding"
msgstr "Kódolás"
-#. #}]Z
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. q39x
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "CP852 (Latin2)"
msgstr "CP852 (Latin2)"
-#. Z:#0
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "CP895 (KEYB2CS, Kamenicky)"
msgstr "CP895 (KEYB2CS, Kamenicky)"
-#. tnRz
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "KOI8 CS2"
msgstr "KOI8 CS2"
-#. xm\=
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Mode for Russian language (Cyrillic)"
msgstr "Üzemmód orosz nyelvhez (cirill)"
-#. g]SZ
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Reformat the text"
msgstr "A szöveg újraformázása"
-#. 7*\q
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Display dot commands"
msgstr "Pontparancsok megjelenítése"
-#. 3HiO
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Mégse"
-#. Tk%E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
diff --git a/source/hu/filter/source/xsltdialog.po b/source/hu/filter/source/xsltdialog.po
index c4f4d8a2187..018890c4436 100644
--- a/source/hu/filter/source/xsltdialog.po
+++ b/source/hu/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-07-12 15:54+0200\n"
"Last-Translator: Gábor <kelemeng@gnome.hu>\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 "Exportálás"
-
-#. 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 "Exportáló XSLT"
-
-#. 6Zh[
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_DOCUMENT\n"
-"fixedtext.text"
-msgid "Transform document"
-msgstr "Dokumentum átalakítása"
-
-#. 3kwV
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_EXPORT_BROWSE\n"
-"pushbutton.text"
-msgid "~Browse..."
-msgstr "~Tallózás..."
-
-#. 4pQX
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CURRENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Current Document"
-msgstr "~Aktuális dokumentum"
-
-#. m1(#
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_IMPORT\n"
-"fixedline.text"
-msgid "Import"
-msgstr "Importálás"
-
-#. ;V8@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for import"
-msgstr "Importáló 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 "Importáló sablon"
-
-#. 6|G?
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_FILE\n"
-"fixedtext.text"
-msgid "Transform file"
-msgstr "Fájl átalakítása"
-
-#. j[dR
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"CBX_DISPLAY_SOURCE\n"
-"checkbox.text"
-msgid "~Display source"
-msgstr "~Forrás megjelenítése"
-
-#. !P/u
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_IMPORT_BROWSE\n"
-"pushbutton.text"
-msgid "B~rowse..."
-msgstr "~Tallózás..."
-
-#. ,p_v
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_RECENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Recent File"
-msgstr "~Legutóbbi fájl"
-
-#. /}Y\
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr "~Bezárás"
-
-#. Xv;y
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"modaldialog.text"
-msgid "Test XML Filter: %s"
-msgstr "XML-szűrő tesztelése: %s"
-
-#. 44Ax
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"PB_VALIDATE\n"
-"pushbutton.text"
-msgid "~Validate"
-msgstr "Ér~vényesítés"
-
-#. /)Cm
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter output"
-msgstr "XML-szűrő kimenete"
-
-#. 6U=`
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -183,7 +24,6 @@ msgctxt ""
msgid "Filter name"
msgstr "Szűrő neve"
-#. RR@b
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -193,7 +33,6 @@ msgctxt ""
msgid "Application"
msgstr "Alkalmazás"
-#. !HS[
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -207,7 +46,6 @@ msgstr ""
"Fájltípus\n"
"neve"
-#. a@$t
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -217,7 +55,6 @@ msgctxt ""
msgid "File extension"
msgstr "Fájlkiterjesztés"
-#. ui6:
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -227,7 +64,6 @@ msgctxt ""
msgid "Comments"
msgstr "Megjegyzések"
-#. uJhC
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -236,7 +72,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. `qZZ
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -246,27 +81,6 @@ msgctxt ""
msgid "DocType"
msgstr "DocType"
-#. 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 "Tallózás..."
-
-#. HvP0
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -276,7 +90,6 @@ msgctxt ""
msgid "XSLT for export"
msgstr "Exportáló XSLT"
-#. ihb7
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -286,7 +99,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Tallózás..."
-#. kUl.
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -296,7 +108,6 @@ msgctxt ""
msgid "XSLT for import"
msgstr "Importáló XSLT"
-#. *3QN
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -306,7 +117,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Tallózás..."
-#. J~CV
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -316,7 +126,6 @@ msgctxt ""
msgid "Template for import"
msgstr "Importáló sablon"
-#. xdF,
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -326,7 +135,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Tallózás..."
-#. 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 "Átalakítás"
-#. c)%c
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -355,7 +161,6 @@ msgctxt ""
msgid "General"
msgstr "Általános"
-#. ~YIV
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -365,7 +170,6 @@ msgctxt ""
msgid "Transformation"
msgstr "Átalakítás"
-#. Bi34
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -374,96 +178,6 @@ msgctxt ""
msgid "XML Filter: %s"
msgstr "XML-szűrő: %s"
-#. mC7)
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_NEW\n"
-"pushbutton.text"
-msgid "~New..."
-msgstr "Ú~j..."
-
-#. hk8C
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_EDIT\n"
-"pushbutton.text"
-msgid "~Edit..."
-msgstr "S~zerkesztés..."
-
-#. 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-k ~tesztelése..."
-
-#. *B]g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_DELETE\n"
-"pushbutton.text"
-msgid "~Delete..."
-msgstr "~Törlés..."
-
-#. -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 "~Mentés csomagként..."
-
-#. TSeo
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_OPEN\n"
-"pushbutton.text"
-msgid "~Open Package..."
-msgstr "~Csomag megnyitása..."
-
-#. r`v9
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr "~Bezárás"
-
-#. k_8k
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"STR_XML_FILTER_LISTBOX\n"
-"string.text"
-msgid "XML Filter List"
-msgstr "XML-szűrők listája"
-
-#. Bx3g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter Settings"
-msgstr "XML-szűrő beállításai"
-
-#. 8k_g
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -472,7 +186,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. %-T^
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -481,7 +194,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. ~qjq
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -490,7 +202,6 @@ msgctxt ""
msgid "Unknown"
msgstr "Ismeretlen"
-#. YY?z
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -499,7 +210,6 @@ msgctxt ""
msgid "import filter"
msgstr "importszűrő"
-#. _D4M
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -508,7 +218,6 @@ msgctxt ""
msgid "import/export filter"
msgstr "import-/exportszűrő"
-#. %m6@
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -517,7 +226,6 @@ msgctxt ""
msgid "export filter"
msgstr "exportszűrő"
-#. P0XA
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -526,7 +234,6 @@ msgctxt ""
msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
msgstr "Valóban törölni akarja a(z) „%s” XML-szűrőt? A művelet nem vonható vissza."
-#. L*7(
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -535,7 +242,6 @@ msgctxt ""
msgid "An XML filter with the name '%s' already exists. Please enter a different name."
msgstr "Már létezik „%s” nevű XML-szűrő. Adjon meg egy másik nevet."
-#. M;HY
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -544,16 +250,6 @@ msgctxt ""
msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
msgstr "A felhasználói felülethez használt „%s1” nevet már a(z) „%s2” XML-szűrő használja. Adjon meg egy másik nevet."
-#. 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 "A DTD nem található. Adja meg a helyes elérési útvonalat."
-
-#. *exW
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -562,7 +258,6 @@ msgctxt ""
msgid "The XSLT for export cannot be found. Please enter a valid path."
msgstr "Nem található XSLT az exportáláshoz. Adja meg a helyes elérési útvonalat."
-#. }JWy
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -571,7 +266,6 @@ msgctxt ""
msgid "The XSLT for import cannot be found. Please enter a valid path."
msgstr "Nem található XSLT az importáláshoz. Adja meg a helyes elérési útvonalat."
-#. F]Q[
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -580,7 +274,6 @@ msgctxt ""
msgid "The given import template cannot be found. Please enter a valid path."
msgstr "Az importáláshoz megadott sablon nem található. Adja meg a helyes elérési útvonalat."
-#. d7wd
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -589,7 +282,6 @@ msgctxt ""
msgid "Not specified"
msgstr "Nincs meghatározva"
-#. 4On}
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -598,7 +290,6 @@ msgctxt ""
msgid "New Filter"
msgstr "Új szűrő"
-#. :~$h
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -607,7 +298,6 @@ msgctxt ""
msgid "Untitled"
msgstr "Névtelen"
-#. U7)s
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -616,7 +306,6 @@ msgctxt ""
msgid "undefined filter"
msgstr "ismeretlen szűrő"
-#. 1KTV
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -625,7 +314,6 @@ msgctxt ""
msgid "The XML filter '%s' has been saved as package '%s'. "
msgstr "A(z) „%s” XML-szűrő „%s” csomagként lett mentve. "
-#. Sn(,
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -634,7 +322,6 @@ msgctxt ""
msgid "%s XML filters have been saved in the package '%s'."
msgstr "%s XML-szűrő mentve lett a(z) „%s” csomagba."
-#. dW^I
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -643,7 +330,6 @@ msgctxt ""
msgid "XSLT filter package"
msgstr "XSLT-szűrőcsomag"
-#. T][`
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -652,7 +338,6 @@ msgctxt ""
msgid "The XML filter '%s' has been installed successfully."
msgstr "A(z) „%s” XML-szűrő telepítése sikerült."
-#. iaY+
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -661,7 +346,6 @@ msgctxt ""
msgid "%s XML filters have been installed successfully."
msgstr "%s XML-szűrő telepítése sikeresen befejeződött."
-#. FwPH
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -669,3 +353,11 @@ msgctxt ""
"string.text"
msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
msgstr "Nem sikerült XML-szűrőt telepíteni, mivel a(z) „%s” csomag nem tartalmaz XML-szűrőt."
+
+#: xmlfilterdialogstrings.src
+msgctxt ""
+"xmlfilterdialogstrings.src\n"
+"STR_XML_FILTER_LISTBOX\n"
+"string.text"
+msgid "XML Filter List"
+msgstr ""
diff --git a/source/hu/filter/uiconfig/ui.po b/source/hu/filter/uiconfig/ui.po
index a13b0ec7efd..77ec3886558 100644
--- a/source/hu/filter/uiconfig/ui.po
+++ b/source/hu/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: hu\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/hu/forms/source/resource.po b/source/hu/forms/source/resource.po
index e1008a9e2c4..4cc164403c5 100644
--- a/source/hu/forms/source/resource.po
+++ b/source/hu/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-03-25 09:53+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "A kombinált lista vagy lista tartalma nem határozható meg."
-#. #vZY
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert graphics"
msgstr "Kép beszúrása"
-#. vk|m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "substituted"
msgstr "behelyettesítve"
-#. .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 "Hiba történt a vezérlőelem betöltése közben, ezért helykitöltő helyettesíti."
-#. G8hN
#: strings.src
msgctxt ""
"strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Error reading data from database"
msgstr "Hiba történt az adatbázis olvasása közben."
-#. 4jLM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Connection failed"
msgstr "Sikertelen csatlakozás"
-#. 9aqb
#: strings.src
msgctxt ""
"strings.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "The data content could not be loaded."
msgstr "Az adattartalmat nem sikerült betölteni."
-#. Fj5.
#: strings.src
msgctxt ""
"strings.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "The data content could not be updated"
msgstr "Az adattartalmat nem sikerült frissíteni."
-#. v_cg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Error inserting the new record"
msgstr "Hiba az új rekord beszúrásakor"
-#. Pby/
#: strings.src
msgctxt ""
"strings.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Error updating the current record"
msgstr "Hiba az aktuális rekord frissítésekor"
-#. Gb4h
#: strings.src
msgctxt ""
"strings.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Error deleting the current record"
msgstr "Hiba az aktuális rekord törlésekor"
-#. 2.)M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Error deleting the specified records"
msgstr "Hiba a megadott rekordok törlésekor"
-#. =dhV
#: strings.src
msgctxt ""
"strings.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "The object cannot be NULL."
msgstr "Az objektum nem lehet NULL."
-#. P]bw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Insert graphics from..."
msgstr "Kép beszúrása..."
-#. [$;*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Remove graphics"
msgstr "Kép eltávolítása"
-#. cU6U
#: strings.src
msgctxt ""
"strings.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "The given stream is invalid."
msgstr "A megadott folyam érvénytelen."
-#. :TaJ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Syntax error in query expression"
msgstr "Szintaktikai hiba a lekérdezésben"
-#. `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 "A kötés által támogatott adattípusok nem használhatók adatcseréhez ezzel a vezérlőelemmel."
-#. hS|Q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Record"
msgstr "Rekord"
-#. \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 "A vezérlőelem egy külső értékkötéshez kapcsolódik, amely jelenleg érvényesítőként is működik. Vissza kell vonnia az értékkötést, mielőtt új érvényesítőt adna meg."
-#. eI8L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "of"
msgstr "/"
-#. RQ:o
#: strings.src
msgctxt ""
"strings.src\n"
@@ -217,7 +195,6 @@ msgstr ""
"Az aktuális űrlap tartalma megváltozott.\n"
"Akarja menteni a változtatásokat?"
-#. UDgo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr "Hiba a rendezési feltételek beállításában"
-#. 6MAG
#: strings.src
msgctxt ""
"strings.src\n"
@@ -235,7 +211,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr "Hiba a szűrési feltételek beállításában"
-#. )2J[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -244,7 +219,6 @@ msgctxt ""
msgid "To execute this function, parameters are needed."
msgstr "Ennek a műveletnek a végrehajtásához paraméterek szükségesek."
-#. `9#J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -253,7 +227,6 @@ msgctxt ""
msgid "This function cannot be executed, but is only for status queries."
msgstr "Ezt a műveletet nem lehet végrehajtani, csak állapotlekérdezésre szolgál."
-#. 2Jm9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -262,7 +235,6 @@ msgctxt ""
msgid "Unknown function."
msgstr "Ismeretlen művelet."
-#. Pi1%
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -271,7 +243,6 @@ msgctxt ""
msgid "Please enter a binding expression."
msgstr "Adjon meg egy kötéskifejezést."
-#. FDCA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -280,7 +251,6 @@ msgctxt ""
msgid "This is an invalid binding expression."
msgstr "Érvénytelen a megadott kötéskifejezés."
-#. U*B_
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -289,7 +259,6 @@ msgctxt ""
msgid "Value is invalid."
msgstr "Az érték érvénytelen."
-#. #Y_Y
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -298,7 +267,6 @@ msgctxt ""
msgid "A value is required."
msgstr "Egy érték megadása kötelező."
-#. zi(D
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -307,7 +275,6 @@ msgctxt ""
msgid "The constraint '$1' not validated."
msgstr "„$1” kényszerfeltétel nincs érvényesítve."
-#. _$9C
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -316,7 +283,6 @@ msgctxt ""
msgid "The value is not of the type '$2'."
msgstr "A megadott érték nem „$2” típusú."
-#. SFil
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -325,7 +291,6 @@ msgctxt ""
msgid "The value must be smaller than or equal to $2."
msgstr "Az értéknek kisebb-egyelőnek kell lennie, mint $2."
-#. XyW3
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -334,7 +299,6 @@ msgctxt ""
msgid "The value must be smaller than $2."
msgstr "Az értéknek kisebbnek kell lennie, mint $2."
-#. e7+c
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -343,7 +307,6 @@ msgctxt ""
msgid "The value must be greater than or equal to $2."
msgstr "Az értéknek nagyobb-egyelőnek kell lennie, mint $2."
-#. ^|1O
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -352,7 +315,6 @@ msgctxt ""
msgid "The value must be greater than $2."
msgstr "Az értéknek nagyobbnak kell lennie, mint $2."
-#. pT8q
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -361,7 +323,6 @@ msgctxt ""
msgid "The value does not match the pattern '$2'."
msgstr "Az érték nem illeszkedik erre a mintára: „$2”."
-#. lTio
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -370,7 +331,6 @@ msgctxt ""
msgid "$2 digits allowed at most."
msgstr "Legfeljebb $2 számjegy engedélyezett."
-#. HqUH
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -379,7 +339,6 @@ msgctxt ""
msgid "$2 fraction digits allowed at most."
msgstr "Legfeljebb $2 törtszámjegy engedélyezett."
-#. M?=5
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -388,7 +347,6 @@ msgctxt ""
msgid "The string must be $2 characters long."
msgstr "A karakterláncnak $2 karakterből kell állnia."
-#. WrdA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -397,7 +355,6 @@ msgctxt ""
msgid "The string must be at least $2 characters long."
msgstr "A karakterláncnak legalább $2 karakterből kell állnia."
-#. @4hv
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -406,7 +363,6 @@ msgctxt ""
msgid "The string can only be $2 characters long at most."
msgstr "A karakterlánc legfeljebb $2 karakterből állhat."
-#. rbes
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -415,7 +371,6 @@ msgctxt ""
msgid "String"
msgstr "Karakterlánc"
-#. rXuQ
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -424,7 +379,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
-#. u~~U
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -433,7 +387,6 @@ msgctxt ""
msgid "True/False (Boolean)"
msgstr "Igaz/Hamis (logikai)"
-#. 0Sac
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -442,7 +395,6 @@ msgctxt ""
msgid "Decimal"
msgstr "Decimális"
-#. CmEF
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -451,7 +403,6 @@ msgctxt ""
msgid "Floating point"
msgstr "Lebegőpontos"
-#. 1qG)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -460,7 +411,6 @@ msgctxt ""
msgid "Double"
msgstr "Dupla pontosságú"
-#. f~uq
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -469,7 +419,6 @@ msgctxt ""
msgid "Date"
msgstr "Dátum"
-#. P)O)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -478,7 +427,6 @@ msgctxt ""
msgid "Time"
msgstr "Idő"
-#. )=bo
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -487,7 +435,6 @@ msgctxt ""
msgid "Date and Time"
msgstr "Dátum és idő"
-#. ;c9I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -496,7 +443,6 @@ msgctxt ""
msgid "Month and year"
msgstr "Hónap és év"
-#. {/\k
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -505,7 +451,6 @@ msgctxt ""
msgid "Year"
msgstr "Év"
-#. `|l(
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -514,7 +459,6 @@ msgctxt ""
msgid "Month and day"
msgstr "Hónap és nap"
-#. DD08
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -523,7 +467,6 @@ msgctxt ""
msgid "Month"
msgstr "Hónap"
-#. D866
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -532,7 +475,6 @@ msgctxt ""
msgid "Day"
msgstr "Nap"
-#. q08I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -541,7 +483,6 @@ msgctxt ""
msgid "Error during evaluation"
msgstr "Hiba történt a kiértékelés közben"
-#. dgoc
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -550,7 +491,6 @@ msgctxt ""
msgid "The string '$1' does not match the required regular expression '$2'."
msgstr "A(z) „$1” karakterlánc nem illeszkedik erre a reguláris kifejezésre: „$2”."
-#. C]\5
#: xforms.src
msgctxt ""
"xforms.src\n"
diff --git a/source/hu/formula/source/core/resource.po b/source/hu/formula/source/core/resource.po
index 077b8c8eea0..fa984358e2d 100644
--- a/source/hu/formula/source/core/resource.po
+++ b/source/hu/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-13 14:38+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Hungarian <timar@fsf.hu>\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 "HA"
-#. Vc$S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "CHOOSE"
msgstr "VÁLASZT"
-#. mP7x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "AND"
msgstr "ÉS"
-#. 2J3O
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "OR"
msgstr "VAGY"
-#. /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 "NEM"
-#. Xn\o
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "NEG"
msgstr "NEG"
-#. 4Nri
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "PI"
msgstr "PI"
-#. FG^j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "RAND"
msgstr "VÉL"
-#. m^ND
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "TRUE"
msgstr "IGAZ"
-#. E+:h
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "FALSE"
msgstr "HAMIS"
-#. [[kV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "TODAY"
msgstr "MA"
-#. ,50T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "NOW"
msgstr "MOST"
-#. U/JS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "NA"
msgstr "HIÁNYZIK"
-#. lMaX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "CURRENT"
msgstr "CURRENT"
-#. R@HZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "DEGREES"
msgstr "FOK"
-#. Mr~v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "RADIANS"
msgstr "RADIÁN"
-#. IG@C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "SIN"
msgstr "SIN"
-#. QRgx
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "COS"
msgstr "COS"
-#. /pOK
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "TAN"
msgstr "TAN"
-#. x\9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "COT"
msgstr "COT"
-#. l?U)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "ASIN"
msgstr "ARCSIN"
-#. VDQS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "ACOS"
msgstr "ARCCOS"
-#. Y?JM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "ATAN"
msgstr "ARCTAN"
-#. ,k?^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "ACOT"
msgstr "ACOT"
-#. J8\|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "SINH"
msgstr "SINH"
-#. 13E8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "COSH"
msgstr "COSH"
-#. X5,.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "TANH"
msgstr "TANH"
-#. mERq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "COTH"
msgstr "COTH"
-#. GR)j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "ASINH"
msgstr "ASINH"
-#. Jz,L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "ACOSH"
msgstr "ACOSH"
-#. Pe+Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "ATANH"
msgstr "ATANH"
-#. ppm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "ACOTH"
msgstr "ACOTH"
-#. iVv8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "CSC"
msgstr "CSC"
-#. B;/]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "SEC"
msgstr "SEC"
-#. g0x@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "CSCH"
msgstr "CSCH"
-#. jX!b
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "SECH"
msgstr "SECH"
-#. $3PN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "EXP"
msgstr "KITEVŐ"
-#. Od!d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "LN"
msgstr "LN"
-#. 9;=d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "SQRT"
msgstr "GYÖK"
-#. 5q(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "FACT"
msgstr "FAKT"
-#. A0GS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "YEAR"
msgstr "ÉV"
-#. $9fa
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "MONTH"
msgstr "HÓNAP"
-#. 3#lj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "DAY"
msgstr "NAP"
-#. /+$;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "HOUR"
msgstr "ÓRA"
-#. */yO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "MINUTE"
msgstr "PERC"
-#. x8*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "SECOND"
msgstr "MPERC"
-#. ;h+?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -495,7 +447,6 @@ msgctxt ""
msgid "SIGN"
msgstr "ELŐJEL"
-#. \[#g
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "ABS"
msgstr "ABS"
-#. -x3}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "INT"
msgstr "INT"
-#. `[`,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "PHI"
msgstr "PHI"
-#. iLL#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "GAUSS"
msgstr "GAUSS"
-#. W#m=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -545,7 +492,6 @@ msgctxt ""
msgid "ISBLANK"
msgstr "ÜRES"
-#. h@5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "ISTEXT"
msgstr "SZÖVEG.E"
-#. 4-0T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "ISNONTEXT"
msgstr "NEM.SZÖVEG"
-#. ^dn3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "ISLOGICAL"
msgstr "LOGIKAI"
-#. CMiG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "TYPE"
msgstr "TÍPUS"
-#. 4[o9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "CELL"
msgstr "CELLA"
-#. :~9k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "ISREF"
msgstr "HIVATKOZÁS"
-#. Q^JJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "ISNUMBER"
msgstr "SZÁM"
-#. [h|0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "ISFORMULA"
msgstr "ISFORMULA"
-#. M`V(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "ISNA"
msgstr "NINCS"
-#. U-xd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "ISERR"
msgstr "HIBA"
-#. +$]+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "ISERROR"
msgstr "HIBÁS"
-#. 95R\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "ISEVEN"
msgstr "ISEVEN"
-#. /dJH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "ISODD"
msgstr "ISODD"
-#. g:yn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "N"
msgstr "N"
-#. Bf]2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "DATEVALUE"
msgstr "DÁTUMÉRTÉK"
-#. };uD
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "TIMEVALUE"
msgstr "IDŐÉRTÉK"
-#. C,O;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -715,7 +645,6 @@ msgctxt ""
msgid "CODE"
msgstr "KÓD"
-#. iTbH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -725,7 +654,6 @@ msgctxt ""
msgid "TRIM"
msgstr "TRIM"
-#. rUJT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -735,7 +663,6 @@ msgctxt ""
msgid "UPPER"
msgstr "NAGYBETŰS"
-#. QS)*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -745,7 +672,6 @@ msgctxt ""
msgid "PROPER"
msgstr "TNÉV"
-#. =E`*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -755,7 +681,6 @@ msgctxt ""
msgid "LOWER"
msgstr "KISBETŰ"
-#. BgE_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -765,7 +690,6 @@ msgctxt ""
msgid "LEN"
msgstr "HOSSZ"
-#. K;q#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -775,7 +699,6 @@ msgctxt ""
msgid "T"
msgstr "T"
-#. T:Tj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -785,7 +708,6 @@ msgctxt ""
msgid "VALUE"
msgstr "ÉRTÉK"
-#. #s{|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -795,7 +717,6 @@ msgctxt ""
msgid "CLEAN"
msgstr "TISZTÍT"
-#. x+76
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -805,7 +726,6 @@ msgctxt ""
msgid "CHAR"
msgstr "KARAKTER"
-#. 3(uz
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -815,7 +735,6 @@ msgctxt ""
msgid "JIS"
msgstr "JIS"
-#. V*1?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -825,7 +744,6 @@ msgctxt ""
msgid "ASC"
msgstr "ASC"
-#. /FU`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -835,7 +753,6 @@ msgctxt ""
msgid "UNICODE"
msgstr "UNICODE"
-#. S#.r
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -845,7 +762,6 @@ msgctxt ""
msgid "UNICHAR"
msgstr "UNICHAR"
-#. DqY,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -855,7 +771,6 @@ msgctxt ""
msgid "LOG10"
msgstr "LOG10"
-#. P0SO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -865,7 +780,6 @@ msgctxt ""
msgid "EVEN"
msgstr "PÁROS"
-#. ;X.V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -875,7 +789,6 @@ msgctxt ""
msgid "ODD"
msgstr "PÁRATLAN"
-#. m}`N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -885,7 +798,6 @@ msgctxt ""
msgid "NORMSDIST"
msgstr "STNORMELOSZL"
-#. g@_F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -895,7 +807,6 @@ msgctxt ""
msgid "FISHER"
msgstr "FISHER"
-#. E8y6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -905,7 +816,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr "INVERZ.FISHER"
-#. ReL]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -915,7 +825,6 @@ msgctxt ""
msgid "NORMSINV"
msgstr "INVERZ.STNORM"
-#. q{O:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -925,7 +834,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr "GAMMALN"
-#. $?cw
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -935,7 +843,6 @@ msgctxt ""
msgid "ERRORTYPE"
msgstr "HIBA.TÍPUS"
-#. JQE\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -945,7 +852,6 @@ msgctxt ""
msgid "FORMULA"
msgstr "FORMULA"
-#. )e8{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -955,7 +861,6 @@ msgctxt ""
msgid "ARABIC"
msgstr "ARABIC"
-#. [Z@V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -965,7 +870,6 @@ msgctxt ""
msgid "ATAN2"
msgstr "ARCTAN2"
-#. jdzi
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -975,7 +879,6 @@ msgctxt ""
msgid "CEILING"
msgstr "PLAFON"
-#. m+T#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -985,7 +888,6 @@ msgctxt ""
msgid "FLOOR"
msgstr "PADLÓ"
-#. G%ac
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -995,7 +897,6 @@ msgctxt ""
msgid "ROUND"
msgstr "KEREK"
-#. 5%D*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1005,7 +906,6 @@ msgctxt ""
msgid "ROUNDUP"
msgstr "KEREK.FEL"
-#. U;+9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1015,7 +915,6 @@ msgctxt ""
msgid "ROUNDDOWN"
msgstr "KEREK.LE"
-#. acvR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1025,7 +924,6 @@ msgctxt ""
msgid "TRUNC"
msgstr "CSONK"
-#. %2BT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1035,7 +933,6 @@ msgctxt ""
msgid "LOG"
msgstr "LOG"
-#. ,gec
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1045,7 +942,6 @@ msgctxt ""
msgid "POWER"
msgstr "HATVÁNY"
-#. KTQ5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1055,7 +951,6 @@ msgctxt ""
msgid "GCD"
msgstr "GCD"
-#. xY1Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1065,7 +960,6 @@ msgctxt ""
msgid "LCM"
msgstr "LCM"
-#. QmsM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1075,7 +969,6 @@ msgctxt ""
msgid "MOD"
msgstr "MARADÉK"
-#. y\!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1085,7 +978,6 @@ msgctxt ""
msgid "SUMPRODUCT"
msgstr "SZORZATÖSSZEG"
-#. bWw(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1095,7 +987,6 @@ msgctxt ""
msgid "SUMSQ"
msgstr "NÉGYZETÖSSZEG"
-#. p2-M
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1105,7 +996,6 @@ msgctxt ""
msgid "SUMX2MY2"
msgstr "SZUMX2BŐLY2"
-#. h!||
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1115,7 +1005,6 @@ msgctxt ""
msgid "SUMX2PY2"
msgstr "SZUMX2MEGY2"
-#. VX!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1125,7 +1014,6 @@ msgctxt ""
msgid "SUMXMY2"
msgstr "SZUMXBŐLY2"
-#. I!~Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1135,7 +1023,6 @@ msgctxt ""
msgid "DATE"
msgstr "DÁTUM"
-#. o(bC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1145,7 +1032,6 @@ msgctxt ""
msgid "TIME"
msgstr "IDŐ"
-#. uJqB
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1155,7 +1041,6 @@ msgctxt ""
msgid "DAYS"
msgstr "DAYS"
-#. ]I2$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1165,7 +1050,6 @@ msgctxt ""
msgid "DAYS360"
msgstr "NAP360"
-#. dwaI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1175,7 +1059,6 @@ msgctxt ""
msgid "DATEDIF"
msgstr "DÁTUMTÓLIG"
-#. d,kb
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1185,7 +1068,6 @@ msgctxt ""
msgid "MIN"
msgstr "MIN"
-#. 9VV1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1195,7 +1077,6 @@ msgctxt ""
msgid "MINA"
msgstr "MIN2"
-#. Pjby
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1205,7 +1086,6 @@ msgctxt ""
msgid "MAX"
msgstr "MAX"
-#. EXm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1215,7 +1095,6 @@ msgctxt ""
msgid "MAXA"
msgstr "MAX2"
-#. kYY;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1225,7 +1104,6 @@ msgctxt ""
msgid "SUM"
msgstr "SZUM"
-#. vIN,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1235,7 +1113,6 @@ msgctxt ""
msgid "PRODUCT"
msgstr "SZORZAT"
-#. D!nm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1245,7 +1122,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr "ÁTLAG"
-#. n]XY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1255,7 +1131,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr "ÁTLAGA"
-#. b4se
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1265,7 +1140,6 @@ msgctxt ""
msgid "COUNT"
msgstr "DARAB"
-#. G;:H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1275,7 +1149,6 @@ msgctxt ""
msgid "COUNTA"
msgstr "DARAB2"
-#. *@eF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1285,7 +1158,6 @@ msgctxt ""
msgid "NPV"
msgstr "NMÉ"
-#. [.O@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1295,7 +1167,6 @@ msgctxt ""
msgid "IRR"
msgstr "BMR"
-#. NC,e
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1305,7 +1176,6 @@ msgctxt ""
msgid "MIRR"
msgstr "MEGTÉRÜLÉS"
-#. }{EG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1315,7 +1185,6 @@ msgctxt ""
msgid "ISPMT"
msgstr "LRÉSZLETKAMAT"
-#. sz\Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1325,7 +1194,6 @@ msgctxt ""
msgid "VAR"
msgstr "VAR"
-#. :Uz?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1335,7 +1203,6 @@ msgctxt ""
msgid "VARA"
msgstr "VARA"
-#. (n^W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1345,7 +1212,6 @@ msgctxt ""
msgid "VARP"
msgstr "VARP"
-#. Rffd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1355,7 +1221,6 @@ msgctxt ""
msgid "VARPA"
msgstr "VARPA"
-#. #X]Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1365,7 +1230,6 @@ msgctxt ""
msgid "STDEV"
msgstr "SZÓRÁS"
-#. YP,U
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1375,7 +1239,6 @@ msgctxt ""
msgid "STDEVA"
msgstr "SZÓRÁSA"
-#. k==L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1385,7 +1248,6 @@ msgctxt ""
msgid "STDEVP"
msgstr "SZÓRÁSP"
-#. ^_9?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1395,7 +1257,6 @@ msgctxt ""
msgid "STDEVPA"
msgstr "SZÓRÁSPA"
-#. i!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1405,7 +1266,6 @@ msgctxt ""
msgid "B"
msgstr "B"
-#. E?A`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1415,7 +1275,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr "NORM.ELOSZL"
-#. H8(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1425,7 +1284,6 @@ msgctxt ""
msgid "EXPONDIST"
msgstr "EXP.ELOSZLÁS"
-#. 8_m#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1435,7 +1293,6 @@ msgctxt ""
msgid "BINOMDIST"
msgstr "BINOM.ELOSZLÁS"
-#. XcTN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1445,7 +1302,6 @@ msgctxt ""
msgid "POISSON"
msgstr "POISSON"
-#. O{vk
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1455,7 +1311,6 @@ msgctxt ""
msgid "COMBIN"
msgstr "KOMBINÁCIÓK"
-#. r,Da
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1465,7 +1320,6 @@ msgctxt ""
msgid "COMBINA"
msgstr "COMBINA"
-#. 8pwJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1475,7 +1329,6 @@ msgctxt ""
msgid "PERMUT"
msgstr "VARIÁCIÓK"
-#. C~E_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1485,7 +1338,6 @@ msgctxt ""
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
-#. $qaM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1495,7 +1347,6 @@ msgctxt ""
msgid "PV"
msgstr "MÉ"
-#. B}%j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1505,7 +1356,6 @@ msgctxt ""
msgid "SYD"
msgstr "SYD"
-#. M!(#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1515,7 +1365,6 @@ msgctxt ""
msgid "DDB"
msgstr "KCSA"
-#. gd.N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1525,7 +1374,6 @@ msgctxt ""
msgid "DB"
msgstr "KCS2"
-#. Fk.$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1535,7 +1383,6 @@ msgctxt ""
msgid "VDB"
msgstr "ÉCSRI"
-#. ;cmf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1545,7 +1392,6 @@ msgctxt ""
msgid "DURATION"
msgstr "DURATION"
-#. @5X\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1555,7 +1401,6 @@ msgctxt ""
msgid "SLN"
msgstr "LCSA"
-#. 7ADN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1565,7 +1410,6 @@ msgctxt ""
msgid "PMT"
msgstr "RÉSZLET"
-#. TnuR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1575,7 +1419,6 @@ msgctxt ""
msgid "COLUMNS"
msgstr "OSZLOPOK"
-#. gg|p
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1585,7 +1428,6 @@ msgctxt ""
msgid "ROWS"
msgstr "SOROK"
-#. X?;`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1595,7 +1437,6 @@ msgctxt ""
msgid "SHEETS"
msgstr "SHEETS"
-#. T0Oh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1605,7 +1446,6 @@ msgctxt ""
msgid "COLUMN"
msgstr "OSZLOP"
-#. qT,(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1615,7 +1455,6 @@ msgctxt ""
msgid "ROW"
msgstr "SOR"
-#. ,K0c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1625,7 +1464,6 @@ msgctxt ""
msgid "SHEET"
msgstr "SHEET"
-#. 4PFm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1635,7 +1473,6 @@ msgctxt ""
msgid "RRI"
msgstr "RRI"
-#. (*dv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1645,7 +1482,6 @@ msgctxt ""
msgid "FV"
msgstr "JBÉ"
-#. 7!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1655,7 +1491,6 @@ msgctxt ""
msgid "NPER"
msgstr "PER.SZÁM"
-#. |ncs
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1665,7 +1500,6 @@ msgctxt ""
msgid "RATE"
msgstr "RÁTA"
-#. D*#a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1675,7 +1509,6 @@ msgctxt ""
msgid "IPMT"
msgstr "RRÉSZLET"
-#. N9g.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1685,7 +1518,6 @@ msgctxt ""
msgid "PPMT"
msgstr "PRÉSZLET"
-#. [Wns
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1695,7 +1527,6 @@ msgctxt ""
msgid "CUMIPMT"
msgstr "CUMIPMT"
-#. ek~l
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1705,7 +1536,6 @@ msgctxt ""
msgid "CUMPRINC"
msgstr "CUMPRINC"
-#. e2hf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1715,7 +1545,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr "EFFECTIVE"
-#. $o9`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1725,7 +1554,6 @@ msgctxt ""
msgid "NOMINAL"
msgstr "NOMINAL"
-#. .H+F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1735,7 +1563,6 @@ msgctxt ""
msgid "SUBTOTAL"
msgstr "RÉSZÖSSZEG"
-#. Z(n2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1745,7 +1572,6 @@ msgctxt ""
msgid "DSUM"
msgstr "AB.SZUM"
-#. E@77
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1755,7 +1581,6 @@ msgctxt ""
msgid "DCOUNT"
msgstr "AB.DARAB"
-#. ~S?:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1765,7 +1590,6 @@ msgctxt ""
msgid "DCOUNTA"
msgstr "AB.DARAB2"
-#. EuvL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1775,7 +1599,6 @@ msgctxt ""
msgid "DAVERAGE"
msgstr "AB.ÁTLAG"
-#. Thmd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1785,7 +1608,6 @@ msgctxt ""
msgid "DGET"
msgstr "AB.MEZŐ"
-#. `Yn@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1795,7 +1617,6 @@ msgctxt ""
msgid "DMAX"
msgstr "AB.MAX"
-#. @Y=\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1805,7 +1626,6 @@ msgctxt ""
msgid "DMIN"
msgstr "AB.MIN"
-#. r=lc
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1815,7 +1635,6 @@ msgctxt ""
msgid "DPRODUCT"
msgstr "AB.SZORZAT"
-#. l;EA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1825,7 +1644,6 @@ msgctxt ""
msgid "DSTDEV"
msgstr "AB.SZÓRÁS"
-#. PB9d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1835,7 +1653,6 @@ msgctxt ""
msgid "DSTDEVP"
msgstr "AB.SZORÁS2"
-#. =]D,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1845,7 +1662,6 @@ msgctxt ""
msgid "DVAR"
msgstr "AB.VAR"
-#. l.$)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1855,7 +1671,6 @@ msgctxt ""
msgid "DVARP"
msgstr "AB.VAR2"
-#. qcU#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1865,7 +1680,6 @@ msgctxt ""
msgid "INDIRECT"
msgstr "INDIREKT"
-#. bdnL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1875,7 +1689,6 @@ msgctxt ""
msgid "ADDRESS"
msgstr "CÍM"
-#. F:u*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1885,7 +1698,6 @@ msgctxt ""
msgid "MATCH"
msgstr "HOL.VAN"
-#. G*]k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1895,7 +1707,6 @@ msgctxt ""
msgid "COUNTBLANK"
msgstr "DARABÜRES"
-#. rl!)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1905,7 +1716,6 @@ msgctxt ""
msgid "COUNTIF"
msgstr "DARABTELI"
-#. dP[c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1915,7 +1725,6 @@ msgctxt ""
msgid "SUMIF"
msgstr "SZUMHA"
-#. X-d{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1925,7 +1734,6 @@ msgctxt ""
msgid "LOOKUP"
msgstr "KUTAT"
-#. _DRq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1935,7 +1743,6 @@ msgctxt ""
msgid "VLOOKUP"
msgstr "FKERES"
-#. ?}]%
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1945,7 +1752,6 @@ msgctxt ""
msgid "HLOOKUP"
msgstr "VKERES"
-#. _\%7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1955,7 +1761,6 @@ msgctxt ""
msgid "MULTIRANGE"
msgstr "MULTIRANGE"
-#. ?eU1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1965,7 +1770,6 @@ msgctxt ""
msgid "OFFSET"
msgstr "OFSZET"
-#. Jz5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1975,7 +1779,6 @@ msgctxt ""
msgid "INDEX"
msgstr "INDEX"
-#. +qQ8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1985,7 +1788,6 @@ msgctxt ""
msgid "AREAS"
msgstr "TERÜLET"
-#. F_]z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1995,7 +1797,6 @@ msgctxt ""
msgid "DOLLAR"
msgstr "FORINT"
-#. =AV.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2005,7 +1806,6 @@ msgctxt ""
msgid "REPLACE"
msgstr "CSERE"
-#. GD+x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2015,7 +1815,6 @@ msgctxt ""
msgid "FIXED"
msgstr "FIX"
-#. `V[a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2025,7 +1824,6 @@ msgctxt ""
msgid "FIND"
msgstr "SZÖVEG.TALÁL"
-#. re$@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2035,7 +1833,6 @@ msgctxt ""
msgid "EXACT"
msgstr "AZONOS"
-#. KZf]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2045,7 +1842,6 @@ msgctxt ""
msgid "LEFT"
msgstr "BAL"
-#. 0rPe
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2055,7 +1851,6 @@ msgctxt ""
msgid "RIGHT"
msgstr "JOBB"
-#. ]3[S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2065,7 +1860,6 @@ msgctxt ""
msgid "SEARCH"
msgstr "SZÖVEG.KERES"
-#. r]IN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2075,7 +1869,6 @@ msgctxt ""
msgid "MID"
msgstr "KÖZÉP"
-#. KrZV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2085,7 +1878,6 @@ msgctxt ""
msgid "TEXT"
msgstr "SZÖVEG"
-#. Dri6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2095,7 +1887,6 @@ msgctxt ""
msgid "SUBSTITUTE"
msgstr "HELYETTE"
-#. @=si
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2105,7 +1896,6 @@ msgctxt ""
msgid "REPT"
msgstr "SOKSZOR"
-#. b27s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2115,7 +1905,6 @@ msgctxt ""
msgid "CONCATENATE"
msgstr "ÖSSZEFŰZ"
-#. \7ZC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2125,7 +1914,6 @@ msgctxt ""
msgid "MVALUE"
msgstr "MVALUE"
-#. $jQA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2135,7 +1923,6 @@ msgctxt ""
msgid "MDETERM"
msgstr "MDETERM"
-#. p\Zh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2145,7 +1932,6 @@ msgctxt ""
msgid "MINVERSE"
msgstr "INVERZ.MÁTRIX"
-#. x?y^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2155,7 +1941,6 @@ msgctxt ""
msgid "MMULT"
msgstr "MSZORZAT"
-#. M:e(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2165,7 +1950,6 @@ msgctxt ""
msgid "TRANSPOSE"
msgstr "TRANSZPONÁLÁS"
-#. xyM5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2175,7 +1959,6 @@ msgctxt ""
msgid "MUNIT"
msgstr "MUNIT"
-#. qF^k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2185,7 +1968,6 @@ msgctxt ""
msgid "GOALSEEK"
msgstr "GOALSEEK"
-#. 8\V7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2195,7 +1977,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr "HIPERGEOM.ELOSZLÁS"
-#. $a)3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2205,7 +1986,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr "LOG.ELOSZLÁS"
-#. S]Ef
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2215,7 +1995,6 @@ msgctxt ""
msgid "TDIST"
msgstr "T.ELOSZLÁS"
-#. 3#9(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2225,7 +2004,6 @@ msgctxt ""
msgid "FDIST"
msgstr "F.ELOSZLÁS"
-#. Kff1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2235,7 +2013,6 @@ msgctxt ""
msgid "CHIDIST"
msgstr "KHI.ELOSZLÁS"
-#. _R.J
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2245,7 +2022,6 @@ msgctxt ""
msgid "WEIBULL"
msgstr "WEIBULL"
-#. To7B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2255,7 +2031,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr "NEGBINOM.ELOSZL"
-#. 1]Bv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2265,7 +2040,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr "KRITBINOM"
-#. @Km^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2275,7 +2049,6 @@ msgctxt ""
msgid "KURT"
msgstr "CSÚCSOSSÁG"
-#. ,wlP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2285,7 +2058,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr "HARM.KÖZÉP"
-#. `p*C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2295,7 +2067,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr "MÉRTANI.KÖZÉP"
-#. qM)N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2305,7 +2076,6 @@ msgctxt ""
msgid "STANDARDIZE"
msgstr "NORMALIZÁLÁS"
-#. #Ce(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2315,7 +2085,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr "ÁTL.ELTÉRÉS"
-#. I+ZX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2325,7 +2094,6 @@ msgctxt ""
msgid "SKEW"
msgstr "FERDESÉG"
-#. u;Z(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2335,7 +2103,6 @@ msgctxt ""
msgid "DEVSQ"
msgstr "SQ"
-#. WOM2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2345,7 +2112,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr "MEDIÁN"
-#. cY%B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2355,7 +2121,6 @@ msgctxt ""
msgid "MODE"
msgstr "MÓDUSZ"
-#. mki,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2365,7 +2130,6 @@ msgctxt ""
msgid "ZTEST"
msgstr "Z.PRÓBA"
-#. G5!Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2375,7 +2139,6 @@ msgctxt ""
msgid "TTEST"
msgstr "T.PRÓBA"
-#. )6^A
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2385,7 +2148,6 @@ msgctxt ""
msgid "RANK"
msgstr "SORSZÁM"
-#. 1ZUU
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2395,7 +2157,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr "PERCENTILIS"
-#. -`uX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2405,7 +2166,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr "SZÁZALÉKRANG"
-#. B3)6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2415,7 +2175,6 @@ msgctxt ""
msgid "LARGE"
msgstr "NAGY"
-#. `^/,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2425,7 +2184,6 @@ msgctxt ""
msgid "SMALL"
msgstr "KICSI"
-#. F0yF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2435,7 +2193,6 @@ msgctxt ""
msgid "FREQUENCY"
msgstr "GYAKORISÁG"
-#. 44gA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2445,7 +2202,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr "KVARTILIS"
-#. $\Os
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2455,7 +2211,6 @@ msgctxt ""
msgid "NORMINV"
msgstr "INVERZ.NORM"
-#. .LzE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2465,7 +2220,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr "MEGBÍZHATÓSÁG"
-#. cM67
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2475,7 +2229,6 @@ msgctxt ""
msgid "FTEST"
msgstr "F.PRÓBA"
-#. k.|9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2485,7 +2238,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr "RÉSZÁTLAG"
-#. .Bua
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2495,7 +2247,6 @@ msgctxt ""
msgid "PROB"
msgstr "VALÓSZÍNŰSÉG"
-#. mLn^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2505,7 +2256,6 @@ msgctxt ""
msgid "CORREL"
msgstr "KORREL"
-#. @-w~
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2515,7 +2265,6 @@ msgctxt ""
msgid "COVAR"
msgstr "KOVAR"
-#. JSkE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2525,7 +2274,6 @@ msgctxt ""
msgid "PEARSON"
msgstr "PEARSON"
-#. (tCP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2535,7 +2283,6 @@ msgctxt ""
msgid "RSQ"
msgstr "RNÉGYZET"
-#. 4heE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2545,7 +2292,6 @@ msgctxt ""
msgid "STEYX"
msgstr "STHIBAYX"
-#. I7m3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2555,7 +2301,6 @@ msgctxt ""
msgid "SLOPE"
msgstr "MEREDEKSÉG"
-#. {p,-
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2565,7 +2310,6 @@ msgctxt ""
msgid "INTERCEPT"
msgstr "METSZ"
-#. v#n|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2575,7 +2319,6 @@ msgctxt ""
msgid "TREND"
msgstr "TREND"
-#. Qf]v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2585,7 +2328,6 @@ msgctxt ""
msgid "GROWTH"
msgstr "NÖV"
-#. -EP8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2595,7 +2337,6 @@ msgctxt ""
msgid "LINEST"
msgstr "LIN.ILL"
-#. Gsz[
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2605,7 +2346,6 @@ msgctxt ""
msgid "LOGEST"
msgstr "LOG.ILL"
-#. o0iV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2615,7 +2355,6 @@ msgctxt ""
msgid "FORECAST"
msgstr "ELŐREJELZÉS"
-#. M?3F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2625,7 +2364,6 @@ msgctxt ""
msgid "CHIINV"
msgstr "INVERZ.KHI"
-#. 1ny?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2635,7 +2373,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr "GAMMA.ELOSZLÁS"
-#. A(nJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2645,7 +2382,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr "INVERZ.GAMMA"
-#. )T9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2655,7 +2391,6 @@ msgctxt ""
msgid "TINV"
msgstr "INVERZ.T"
-#. X/)S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2665,7 +2400,6 @@ msgctxt ""
msgid "FINV"
msgstr "INVERZ.F"
-#. ;Q,}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2675,7 +2409,6 @@ msgctxt ""
msgid "CHITEST"
msgstr "KHI.PRÓBA"
-#. A$e/
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2685,7 +2418,6 @@ msgctxt ""
msgid "LOGINV"
msgstr "INVERZ.LOG.ELOSZLÁS"
-#. F}DZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2695,7 +2427,6 @@ msgctxt ""
msgid "MULTIPLE.OPERATIONS"
msgstr "MULTIPLE.OPERATIONS"
-#. *2sm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2705,7 +2436,6 @@ msgctxt ""
msgid "BETADIST"
msgstr "BÉTA.ELOSZLÁS"
-#. .f*\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2715,7 +2445,6 @@ msgctxt ""
msgid "BETAINV"
msgstr "INVERZ.BÉTA"
-#. 7_Jr
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2725,7 +2454,6 @@ msgctxt ""
msgid "WEEKNUM"
msgstr "WEEKNUM"
-#. huqp
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2735,7 +2463,6 @@ msgctxt ""
msgid "EASTERSUNDAY"
msgstr "EASTERSUNDAY"
-#. n~Zf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2745,7 +2472,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr "HÉT.NAPJA"
-#. M3m.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2755,7 +2481,6 @@ msgctxt ""
msgid "#NAME!"
msgstr "#NÉV!"
-#. cdty
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2765,7 +2490,6 @@ msgctxt ""
msgid "STYLE"
msgstr "STYLE"
-#. l([n
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2775,7 +2499,6 @@ msgctxt ""
msgid "DDE"
msgstr "DDE"
-#. g/Em
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2785,7 +2508,6 @@ msgctxt ""
msgid "BASE"
msgstr "BASE"
-#. PBBY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2795,7 +2517,6 @@ msgctxt ""
msgid "DECIMAL"
msgstr "DECIMAL"
-#. 1m0+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2805,7 +2526,6 @@ msgctxt ""
msgid "CONVERT"
msgstr "CONVERT"
-#. bi_(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2815,7 +2535,6 @@ msgctxt ""
msgid "ROMAN"
msgstr "RÓMAI"
-#. (a}=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2825,7 +2544,6 @@ msgctxt ""
msgid "HYPERLINK"
msgstr "HIPERHIVATKOZÁS"
-#. .j,H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2835,7 +2553,6 @@ msgctxt ""
msgid "INFO"
msgstr "INFO"
-#. ]:og
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2845,7 +2562,6 @@ msgctxt ""
msgid "BAHTTEXT"
msgstr "BAHTSZÖVEG"
-#. V_p5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2855,7 +2571,6 @@ msgctxt ""
msgid "GETPIVOTDATA"
msgstr "GETPIVOTDATA"
-#. v_m^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2865,7 +2580,6 @@ msgctxt ""
msgid "EUROCONVERT"
msgstr "EUROCONVERT"
-#. q{4P
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2875,7 +2589,6 @@ msgctxt ""
msgid "NUMBERVALUE"
msgstr "NUMBERVALUE"
-#. YqfY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2885,7 +2598,6 @@ msgctxt ""
msgid "GAMMA"
msgstr "GAMMA"
-#. c?p*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2895,7 +2607,6 @@ msgctxt ""
msgid "CHISQDIST"
msgstr "CHISQDIST"
-#. s,k=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2905,7 +2616,6 @@ msgctxt ""
msgid "CHISQINV"
msgstr "CHISQINV"
-#. S(m8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2915,7 +2625,6 @@ msgctxt ""
msgid "BITAND"
msgstr "BITAND"
-#. %ToX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2925,7 +2634,6 @@ msgctxt ""
msgid "BITOR"
msgstr "BITOR"
-#. 6_pV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2935,7 +2643,6 @@ msgctxt ""
msgid "BITXOR"
msgstr "BITXOR"
-#. .~dm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2945,7 +2652,6 @@ msgctxt ""
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
-#. ]fP+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2955,7 +2661,6 @@ msgctxt ""
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
-#. 5HqI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2965,7 +2670,6 @@ msgctxt ""
msgid "#NULL!"
msgstr "#NULLA!"
-#. 2U]$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2975,7 +2679,6 @@ msgctxt ""
msgid "#DIV/0!"
msgstr "#ZÉRÓOSZTÓ!"
-#. $a}i
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2985,7 +2688,6 @@ msgctxt ""
msgid "#VALUE!"
msgstr "#ÉRTÉK!"
-#. (T^C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2995,7 +2697,6 @@ msgctxt ""
msgid "#REF!"
msgstr "#HIV!"
-#. N[*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3005,7 +2706,6 @@ msgctxt ""
msgid "#NAME?"
msgstr "#NÉV?"
-#. M-]K
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3015,7 +2715,6 @@ msgctxt ""
msgid "#NUM!"
msgstr "#SZÁM!"
-#. [WhE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
diff --git a/source/hu/formula/source/ui/dlg.po b/source/hu/formula/source/ui/dlg.po
index 7dfb91abd9d..0ecfc08996b 100644
--- a/source/hu/formula/source/ui/dlg.po
+++ b/source/hu/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-03-25 09:53+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Kijelölés"
-#. R-Js
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Function not known"
msgstr "Ismeretlen függvény"
-#. x}mq
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "(optional)"
msgstr "(opcionális)"
-#. 8-`p
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "(required)"
msgstr "(kötelező)"
-#. 0h1x
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Last Used"
msgstr "Utoljára használt"
-#. h,@F
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "All"
msgstr "Összes"
-#. V%02
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "~Category"
msgstr "~Kategória"
-#. ]E,m
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "~Function"
msgstr "~Függvény"
-#. W`#G
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "~Structure"
msgstr "Str~uktúra"
-#. 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 "Hiba"
-#. LA-U
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Functions"
msgstr "Függvények"
-#. OYX,
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Structure"
msgstr "Struktúra"
-#. f:ni
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "For~mula"
msgstr "~Képlet"
-#. v%!v
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Function result"
msgstr "Fv. eredménye:"
-#. HON9
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Result"
msgstr "Eredmény"
-#. U\w!
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Array"
msgstr "Adattömb"
-#. qW~Y
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. CQ+I
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Maximize"
msgstr "Maximalizálás"
-#. bG0S
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr "<< ~Vissza"
-#. $,KF
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "~Next >>"
msgstr "~Tovább >>"
-#. h?Ds
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "Függvénytündér"
-#. ${X$
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr "Függvénytündér -"
-#. PtZx
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "~End"
msgstr "~Vége"
-#. 5GA-
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Functions"
msgstr "Függvények"
-#. vdc,
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "Structure"
msgstr "Struktúra"
-#. cJ45
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -293,7 +265,6 @@ msgctxt ""
msgid "For~mula"
msgstr "~Képlet"
-#. !f`w
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -303,7 +274,6 @@ msgctxt ""
msgid "Function result"
msgstr "Fv. eredménye:"
-#. mTa6
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -313,7 +283,6 @@ msgctxt ""
msgid "Result"
msgstr "Eredmény"
-#. k;$r
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -323,7 +292,6 @@ msgctxt ""
msgid "Array"
msgstr "Adattömb"
-#. 5r,t
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -333,7 +301,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. nVL#
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -343,7 +310,6 @@ msgctxt ""
msgid "Maximize"
msgstr "Maximalizálás"
-#. ;:RX
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -353,7 +319,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr "<< ~Vissza"
-#. O1up
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -363,7 +328,6 @@ msgctxt ""
msgid "~Next >>"
msgstr "~Tovább >>"
-#. ?k]\
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -373,7 +337,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "Függvénytündér"
-#. 2~aH
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -383,7 +346,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr "Függvénytündér -"
-#. )ol`
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
diff --git a/source/hu/fpicker/source/office.po b/source/hu/fpicker/source/office.po
index ebe14412a2e..3ab95f5a3de 100644
--- a/source/hu/fpicker/source/office.po
+++ b/source/hu/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-07-12 18:33+0200\n"
"Last-Translator: Gábor <kelemeng@gnome.hu>\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 "~Automatikus fájlnévkiterjesztés"
-#. Dj/:
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Save with pass~word"
msgstr "Mentés jel~szóval"
-#. 9N|P
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "~Edit filter settings"
msgstr "~Szűrő beállításainak módosítása"
-#. lbNM
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "Csak ~olvasható"
-#. !:SR
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Link"
msgstr "~Hivatkozás"
-#. ~{h[
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "~Előnézet"
-#. kNTP
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "~Play"
msgstr "~Lejátszás"
-#. %P4+
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "~Version:"
msgstr "~Verzió:"
-#. p(Uq
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "S~tyles:"
msgstr "~Stílusok:"
-#. )yE=
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Style:"
msgstr "Stílus:"
-#. LqbU
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~Kijelölés"
-#. o3;O
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "Fájl~típus:"
-#. 1bv8
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Select Path"
msgstr "Útvonal kiválasztása"
-#. D07^
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Please select a folder."
msgstr "Válasszon egy mappát."
-#. ]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 "Új mappa létrehozása"
-#. 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 "Egy szinttel feljebb"
-#. -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 "Kapcsolódás kiszolgálóhoz"
-#. gtrg
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -212,7 +191,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "Fájl~név:"
-#. 3oFW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "Fájl~típus:"
-#. 0IUA
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "Csak ~olvasható"
-#. f3pW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "Save with password"
msgstr "Mentés jelszóval"
-#. !;B:
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -252,7 +227,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "~Automatikus fájlnévkiterjesztés"
-#. NSiC
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -262,7 +236,6 @@ msgctxt ""
msgid "Edit ~filter settings"
msgstr "Szűrő~beállítások szerkesztése"
-#. Tfb=
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -272,7 +245,6 @@ msgctxt ""
msgid "~Open"
msgstr "~Megnyitás"
-#. !Wl]
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "Open"
msgstr "Megnyitás"
-#. vzL/
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Save as"
msgstr "Mentés másként"
-#. +C2x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "~Save"
msgstr "M~entés"
-#. 597d
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "~Path:"
msgstr "Ú~tvonal:"
-#. |qgQ
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Select path"
msgstr "Útvonal kiválasztása"
-#. .EW)
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "~Select"
msgstr "~Kijelölés"
-#. +TS2
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "Current version"
msgstr "Aktuális verzió"
-#. 8Um~
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid "File Preview"
msgstr "Fájl előnézete"
-#. k{IY
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "My Documents"
msgstr "Dokumentumok"
-#. \sF-
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Places"
msgstr "Helyek"
-#. 5j@s
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -382,7 +344,6 @@ msgctxt ""
msgid "Na~me"
msgstr "~Név"
-#. FB6m
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -392,7 +353,6 @@ msgctxt ""
msgid "Create new folder"
msgstr "Új mappa létrehozása"
-#. ,U8x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -401,7 +361,6 @@ msgctxt ""
msgid "$name$ does not exist."
msgstr "$name$ nem létezik."
-#. @`7(
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -414,7 +373,6 @@ msgstr ""
"Nem létezik $name$ nevű fájl.\n"
"Ellenőrizze, hogy a helyes fájlnevet írta-e be."
-#. Zl^@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -423,7 +381,6 @@ msgctxt ""
msgid "All files"
msgstr "Minden fájl"
-#. {30k
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -438,7 +395,6 @@ msgstr ""
"\n"
"Lecseréli?"
-#. sG][
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "Folder"
msgstr "Mappa"
-#. 3usx
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -460,7 +415,6 @@ msgstr ""
"Nem észlelhető az eltávolítható adathordozó.\n"
"Ellenőrizze, hogy megfelelően van-e csatlakoztatva, majd próbálja újra."
-#. qSJd
#: iodlg.src
msgctxt ""
"iodlg.src\n"
diff --git a/source/hu/framework/source/classes.po b/source/hu/framework/source/classes.po
index ac2cf369024..f69666efcc6 100644
--- a/source/hu/framework/source/classes.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Kiegészítők"
-#. J7v!
#: resource.src
msgctxt ""
"resource.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Add-~On Help"
msgstr "~Kiegészítő súgója"
-#. =X1Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "All"
msgstr "Összes"
-#. mL;x
#: resource.src
msgctxt ""
"resource.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Update"
msgstr "~Frissítés"
-#. }FiV
#: resource.src
msgctxt ""
"resource.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Close & Return to "
msgstr "~Bezárás és visszatérés "
-#. _J\Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -70,7 +64,6 @@ msgctxt ""
msgid "Visible ~Buttons"
msgstr "~Látható gombok"
-#. .__I
#: resource.src
msgctxt ""
"resource.src\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "~Customize Toolbar..."
msgstr "~Eszköztár testreszabása..."
-#. Mz%D
#: resource.src
msgctxt ""
"resource.src\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "~Dock Toolbar"
msgstr "Eszköztár ~dokkolása"
-#. #bq-
#: resource.src
msgctxt ""
"resource.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Dock ~All Toolbars"
msgstr "~Minden eszköztár dokkolása"
-#. ;Sdo
#: resource.src
msgctxt ""
"resource.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "~Lock Toolbar Position"
msgstr "Eszköztár pozíciójának ~rögzítése"
-#. X1|H
#: resource.src
msgctxt ""
"resource.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Close ~Toolbar"
msgstr "~Eszköztár bezárása"
-#. JT^K
#: resource.src
msgctxt ""
"resource.src\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "Save Copy ~as..."
msgstr "Másol~at mentése másként..."
-#. jC/t
#: resource.src
msgctxt ""
"resource.src\n"
@@ -138,7 +125,6 @@ msgctxt ""
msgid "No Documents"
msgstr "Nincsenek dokumentumok"
-#. VbG3
#: resource.src
msgctxt ""
"resource.src\n"
@@ -147,7 +133,6 @@ msgctxt ""
msgid "Add-On %num%"
msgstr "Kiegészítő %num%"
-#. Rbv~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -156,7 +141,6 @@ msgctxt ""
msgid "A %PRODUCTNAME product by %OOOVENDOR"
msgstr "%PRODUCTNAME, készítette: %OOOVENDOR"
-#. 5{4l
#: resource.src
msgctxt ""
"resource.src\n"
@@ -166,7 +150,6 @@ msgctxt ""
msgid "Please follow these steps to proceed with the installation:"
msgstr "A telepítés folytatásához kövesse az alábbi lépéseket:"
-#. 1L2:
#: resource.src
msgctxt ""
"resource.src\n"
@@ -176,7 +159,6 @@ msgctxt ""
msgid "1."
msgstr "1."
-#. R$W\
#: resource.src
msgctxt ""
"resource.src\n"
@@ -186,7 +168,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 "Olvassa végig a licencszerződést. A teljes szöveg megtekintéséhez használja a görgetősávot vagy a párbeszédablak „%PAGEDOWN” billentyűjét."
-#. RB$j
#: resource.src
msgctxt ""
"resource.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Scroll Down"
msgstr "Lapozás"
-#. U}jG
#: resource.src
msgctxt ""
"resource.src\n"
@@ -206,7 +186,6 @@ msgctxt ""
msgid "2."
msgstr "2."
-#. FEdQ
#: resource.src
msgctxt ""
"resource.src\n"
@@ -216,7 +195,6 @@ msgctxt ""
msgid "Accept the License Agreement."
msgstr "A licencfeltételek elfogadása"
-#. R_iD
#: resource.src
msgctxt ""
"resource.src\n"
@@ -226,7 +204,6 @@ msgctxt ""
msgid "~Accept"
msgstr "~Elfogadás"
-#. j~Je
#: resource.src
msgctxt ""
"resource.src\n"
@@ -236,7 +213,6 @@ msgctxt ""
msgid "Decline"
msgstr "Elutasítás"
-#. V{V{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "License Agreement"
msgstr "Licencszerződés"
-#. WzdP
#: resource.src
msgctxt ""
"resource.src\n"
@@ -254,7 +229,6 @@ msgctxt ""
msgid "Retry"
msgstr "Újra"
-#. 7aH6
#: resource.src
msgctxt ""
"resource.src\n"
@@ -277,7 +251,6 @@ msgstr ""
"A lemezhely felszabadítása után nyomja meg az „Újra” gombot az adatok mentésének ismételt megkísérléséhez.\n"
"\n"
-#. kJ]/
#: resource.src
msgctxt ""
"resource.src\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "~Reset"
msgstr "~Alapállapot"
-#. gI|E
#: resource.src
msgctxt ""
"resource.src\n"
@@ -299,7 +271,6 @@ msgstr ""
"Hiba történt a felhasználói felület konfigurációs adatainak beolvasásakor. Az alkalmazás bezáródik.\n"
"Próbálja meg újratelepíteni az alkalmazást."
-#. :KT~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -312,7 +283,6 @@ msgstr ""
"Hiba történt a felhasználói felület konfigurációs adatainak beolvasásakor. Az alkalmazás bezáródik.\n"
"Próbálja meg eltávolítani az alkalmazás felhasználói profilját."
-#. %iT9
#: resource.src
msgctxt ""
"resource.src\n"
@@ -325,7 +295,6 @@ msgstr ""
"Hiba történt a felhasználói felület konfigurációs adatainak beolvasásakor. Az alkalmazás bezáródik.\n"
"Először próbálja meg eltávolítani az alkalmazás felhasználói profilját, vagy próbálja meg újratelepíteni az alkalmazást."
-#. tgC]
#: resource.src
msgctxt ""
"resource.src\n"
@@ -334,7 +303,6 @@ msgctxt ""
msgid "Untitled"
msgstr "Névtelen"
-#. ^E1@
#: resource.src
msgctxt ""
"resource.src\n"
@@ -343,7 +311,6 @@ msgctxt ""
msgid "Multiple Languages"
msgstr "Több nyelv"
-#. y-I{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -352,7 +319,6 @@ msgctxt ""
msgid "None (Do not check spelling)"
msgstr "Nincs (nincs helyesírás-ellenőrzés)"
-#. J)Ua
#: resource.src
msgctxt ""
"resource.src\n"
@@ -361,7 +327,6 @@ msgctxt ""
msgid "Reset to Default Language"
msgstr "Vissza az alapértelmezett nyelvre"
-#. L=+w
#: resource.src
msgctxt ""
"resource.src\n"
@@ -370,7 +335,6 @@ msgctxt ""
msgid "More..."
msgstr "További..."
-#. \Q`Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -379,7 +343,6 @@ msgctxt ""
msgid "Set Language for Selection"
msgstr "Kijelölés nyelvének beállítása"
-#. @?yf
#: resource.src
msgctxt ""
"resource.src\n"
@@ -388,7 +351,6 @@ msgctxt ""
msgid "Set Language for Paragraph"
msgstr "Bekezdés nyelvének beállítása"
-#. YA!N
#: resource.src
msgctxt ""
"resource.src\n"
diff --git a/source/hu/framework/source/services.po b/source/hu/framework/source/services.po
index dcce001ff1d..3ae80b594c6 100644
--- a/source/hu/framework/source/services.po
+++ b/source/hu/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-03-25 09:52+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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
msgctxt ""
"fwk_services.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Create a new document"
msgstr "Új dokumentum létrehozása"
-#. ]WRA
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Templates..."
msgstr "~Sablonok..."
-#. 28zC
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "~Open..."
msgstr "~Megnyitás..."
-#. 4bp*
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Add new features to %PRODUCTNAME"
msgstr "Új funkciók hozzáadása a %PRODUCTNAME-hoz"
-#. !BQ^
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Get more information about %PRODUCTNAME"
msgstr "Bővebb információ a %PRODUCTNAME-ról"
-#. #_21
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
diff --git a/source/hu/helpcontent2/source/auxiliary.po b/source/hu/helpcontent2/source/auxiliary.po
new file mode 100644
index 00000000000..f643faa6cf1
--- /dev/null
+++ b/source/hu/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: hu\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/hu/helpcontent2/source/text/sbasic/guide.po b/source/hu/helpcontent2/source/text/sbasic/guide.po
index 4ae084a78cd..6d2f0596c0a 100644
--- a/source/hu/helpcontent2/source/text/sbasic/guide.po
+++ b/source/hu/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: 2012-11-12 20:36+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +16,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1352752608.0\n"
-#. lyK]
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Creating a Basic Dialog"
msgstr "Basic-párbeszédablak létrehozása"
-#. 5QGj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
msgstr "<bookmark_value>párbeszédablakok;Basic- párbeszédablakok létrehozása</bookmark_value>"
-#. 7/Gq
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -44,7 +41,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 "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Basic-párbeszédablak létrehozása\">Basic-párbeszédablak létrehozása</link></variable>"
-#. I[pj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr "Válassza az <emph>Eszközök - Makrók - Párbeszédablakok rendezése</emph> lehetőséget, majd kattintson az <emph>Új</emph> gombra."
-#. i4iR
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -64,7 +59,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 "Adja meg a párbeszédablak nevét, majd kattintson az <emph>OK</emph> gombra. Később úgy nevezheti át a párbeszédablakot, hogy a fülre kattint a jobb egérgombbal, és az <emph>Átnevezés</emph> parancsot választja."
-#. g4sC
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
msgstr "Kattintson a <emph>Szerkesztés</emph> lehetőségre. Megnyílik a Basic párbeszédablak-szerkesztő, amely egy üres párbeszédablakot tartalmaz."
-#. G]H:
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -83,7 +76,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 "Ha nem látja a <emph>Vezérlőelemek</emph> eszköztárat, kattintson a <emph>Vezérlőelemek</emph> ikon melletti nyílra a <emph>Vezérlőelemek</emph> eszköztár megnyitásához."
-#. R#P.
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Click a tool and then drag in the dialog to create the control."
msgstr "Kattintson egy eszközre, majd a vezérlőelem létrehozásához kattintson a párbeszédablakban, és húzza az egeret."
-#. pa$)
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -102,7 +93,6 @@ msgctxt ""
msgid "Creating Controls in the Dialog Editor"
msgstr "Vezérlőelemek létrehozása a párbeszédablak-szerkesztő segítségével"
-#. =H+1
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -111,7 +101,6 @@ msgctxt ""
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
msgstr "<bookmark_value>vezérlőelemek; létrehozás a Párbeszédablak-szerkesztőben</bookmark_value><bookmark_value>párbeszédablak-szerkesztő;vezérlőelemek létrehozása</bookmark_value>"
-#. Z:9c
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -121,7 +110,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=\"Vezérlőelemek létrehozása a párbeszédablak-szerkesztőben\">Vezérlőelemek létrehozása a párbeszédablak-szerkesztőben</link></variable>"
-#. b]H\
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -131,7 +119,6 @@ msgctxt ""
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr "A BASIC-párbeszédablakszerkesztő <emph>Eszközök</emph> panelén található eszközökkel adhat vezérlőelemeket a párbeszédablakhoz."
-#. (q+q
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -141,7 +128,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 "Az <emph>Eszközök</emph> megnyitásához kattintson a <emph>Makró</emph> eszköztár <emph>Vezérlőelemek beszúrása</emph> ikonja melletti nyílra."
-#. CTqE
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr "Kattintson az eszköztáron egy eszközre, például a <emph>Gomb</emph> eszközre."
-#. Z$eA
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -161,7 +146,6 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr "A párbeszédablakon húzza a gombot megfelelő méretűre."
-#. :3jB
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Programming Examples for Controls in the Dialog Editor"
msgstr "A párbeszédablak-szerkesztő vezérlőelemeinek példaprogramjai"
-#. 4OU5
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -179,7 +162,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 "<bookmark_value>vezérlőelemek példaprogramjai</bookmark_value><bookmark_value>párbeszédablakok;betöltés (példa)</bookmark_value><bookmark_value>párbeszédablakok;megjelenítés (példa)</bookmark_value><bookmark_value>vezérlőelemek;tulajdonságok olvasása vagy szerkesztése (példa)</bookmark_value><bookmark_value>listamezők;elemek eltávolítása belőlük (példa)</bookmark_value><bookmark_value>listamezők;elemek hozzáadása (példa)</bookmark_value><bookmark_value>példák; vezérlőelemek programozása</bookmark_value><bookmark_value>párbeszédpanel-szerkesztő;vezérlőelemek példaprogramjai</bookmark_value>"
-#. ,1-3
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -189,7 +171,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=\"Vezérlőelemek példaprogramjai a párbeszédablak-szerkesztőben\">Vezérlőelemek példaprogramjai a párbeszédablak-szerkesztőben</link></variable>"
-#. gNsl
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -199,7 +180,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 "Az alábbiak egy új „Dialog1” nevű <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"párbeszédablak\">párbeszédablak</link> létrehozására mutatnak példát. A párbeszédablak-szerkesztő <emph>Eszközök</emph> paneljén található eszközökkel hozza létre a párbeszédablakot, és adja hozzá a következő vezérlőelemeket: egy „CheckBox1” nevű <emph>Jelölőnégyzetet</emph>, egy „Label1” nevű <emph>Címkét</emph>, egy „CommandButton1” nevű <emph>Gombot</emph> és egy „ListBox1” nevű <emph>Listamezőt</emph>."
-#. @VQ#
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr "Legyen következetes a kis- és nagybetűk használatával egy vezérlőelem object (objektum) változóhoz rendelése esetén."
-#. ;Zv/
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Global Function for Loading Dialogs"
msgstr "Általános függvény párbeszédablakok betöltéséhez"
-#. $.c[
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "Displaying a Dialog"
msgstr "Párbeszédablak megjelenítése"
-#. o@5@
#: sample_code.xhp
#, fuzzy
msgctxt ""
@@ -239,7 +216,6 @@ msgctxt ""
msgid "REM global definition of variables"
msgstr "rem változók globális meghatározása"
-#. r0wJ
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Read or Edit Properties of Controls in the Program"
msgstr "A programban levő vezérlőelemek tulajdonságainak olvasása vagy szerkesztése"
-#. ]6.1
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -258,7 +233,6 @@ msgctxt ""
msgid "REM get dialog model"
msgstr "REM a párbeszédablak-modell beolvasása"
-#. [noW
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -267,7 +241,6 @@ msgctxt ""
msgid "REM display text of Label1"
msgstr "REM a Label1 szövegének megjelenítése"
-#. I:c%
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -276,7 +249,6 @@ msgctxt ""
msgid "REM set new text for control Label1"
msgstr "REM a Label1 vezérlőelem szövegének megváltoztatása"
-#. ^f!;
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -285,7 +257,6 @@ msgctxt ""
msgid "oLabel1.Text = \"New Files\""
msgstr "oLabel1.Text = \"Új fájlok\""
-#. j+5q
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -294,7 +265,6 @@ msgctxt ""
msgid "REM display model properties for the control CheckBox1"
msgstr "REM a CheckBox1 vezérlőelem modelltulajdonságainak megjelenítése"
-#. 0K/R
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "REM set new state for CheckBox1 for model of control"
msgstr "REM a CheckBox1 vezérlőelem modelljében új állapot beállítása"
-#. t-.)
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "REM display model properties for control CommandButton1"
msgstr "REM a CommandButton1 vezérlőelem modelltulajdonságainak megjelenítése"
-#. MW#z
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -321,7 +289,6 @@ msgctxt ""
msgid "REM display properties of control CommandButton1"
msgstr "REM a CommandButton1 vezérlőelem tulajdonságainak megjelenítése"
-#. #1@t
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -330,7 +297,6 @@ msgctxt ""
msgid "REM execute dialog"
msgstr "REM párbeszédablak futtatása"
-#. SQ;/
#: sample_code.xhp
#, fuzzy
msgctxt ""
@@ -340,7 +306,6 @@ msgctxt ""
msgid "End Sub"
msgstr "End Sub"
-#. oZMn
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -350,7 +315,6 @@ msgctxt ""
msgid "Add an Entry to a ListBox"
msgstr "Bejegyzés hozzáadása egy listamezőhöz"
-#. NVlH
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -359,7 +323,6 @@ msgctxt ""
msgid "REM adds a new entry to the ListBox"
msgstr "REM hozzáad a listamezőhöz egy új bejegyzést"
-#. !R)S
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -368,7 +331,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"
@@ -378,7 +340,6 @@ msgctxt ""
msgid "Remove an Entry from a ListBox"
msgstr "Bejegyzés eltávolítása egy listamezőből"
-#. W\?P
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -387,7 +348,6 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr "REM a listamező első bejegyzésének eltávolítása"
-#. T)mS
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -396,7 +356,6 @@ msgctxt ""
msgid "Changing the Properties of Controls in the Dialog Editor"
msgstr "A vezérlőelemek tulajdonságainak megváltoztatása a párbeszédablak-szerkesztőben"
-#. ?XnX
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -405,7 +364,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 "<bookmark_value>tulajdonságok; vezérlőelemek a párbeszédablak-szerkesztőben</bookmark_value><bookmark_value>módosítás;vezérlőelemek tulajdonságai</bookmark_value><bookmark_value>vezérlőelemek;tulajdonságok módosítása</bookmark_value><bookmark_value>párbeszédablak-szerkesztő;vezérlőelemek tulajdonságainak módosítása</bookmark_value>"
-#. r0LQ
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -415,7 +373,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 "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Vezérlőelemek tulajdonságainak módosítása a párbeszédablak-szerkesztőben\">Vezérlőelemek tulajdonságainak módosítása a párbeszédablak-szerkesztőben</link></variable>"
-#. mlL^
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -425,7 +382,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 "Beállíthatja a párbeszédablakhoz hozzáadni kívánt vezérlőelem tulajdonságait. Módosíthatja például a hozzáadott gomb színét, nevét és méretét. Párbeszédablak létrehozásakor vagy szerkesztésekor a legtöbb vezérlőelem-tulajdonságot módosíthatja. Viszont futási időben csak néhány tulajdonságot módosíthat."
-#. YrC3
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -435,7 +391,6 @@ msgctxt ""
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr "A vezérlőelem tulajdonságainak módosításához tervező módban kattintson a jobb egérgombbal a vezérlőelemre, majd válassza a <emph>Tulajdonságok</emph> elemet."
-#. 6c:g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -444,7 +399,6 @@ msgctxt ""
msgid "Translation of Controls in the Dialog Editor"
msgstr "Vezérlőelemek fordítása a párbeszédablak-szerkesztő segítségével"
-#. I%m*
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -453,7 +407,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
msgstr "<bookmark_value>párbeszédablakok fordítása</bookmark_value><bookmark_value>honosítás; párbeszédablakok</bookmark_value><bookmark_value>fordítás; párbeszédablakok</bookmark_value>"
-#. Zv\6
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -462,7 +415,6 @@ msgctxt ""
msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Vezérlőelemek fordítása a párbeszédablak-szerkesztő segítségével</link></variable>"
-#. ]%ki
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -471,7 +423,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs.</ahelp>"
msgstr "<ahelp hid=\".\">A Basic IDE párbeszédablak-szerkesztőjében a Nyelv eszköztáron jelennek meg azok az elemek, amelyekkel a párbeszédablakok honosítása elvégezhető.</ahelp>"
-#. w39E
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -480,7 +431,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 "Alapértelmezés szerint egy frissen létrehozott párbeszédablak csak egy nyelvhez tartalmaz karakterlánc-erőforrásokat. Szükséges lehet olyan párbeszédablakok létrehozása, amelyek a felhasználó nyelvi beállításainak megfelelő, honosított karakterláncokat jelenítenek meg."
-#. HsTg
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -489,7 +439,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 "<ahelp hid=\".\" visibility=\"hidden\">Jelölve ki a szerkeszteni kívánt karakterláncok nyelvét. Kattintson a Nyelvek kezelése ikonra a nyelvek hozzáadásához.</ahelp>"
-#. k_)8
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -498,7 +447,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 "<ahelp hid=\".\" visibility=\"hidden\">Kattintson egy nyelvre, majd kattintson az Alapértelmezett gombra a nyelv alapértelmezettként való beállításához, vagy a Törlés gombra a nyelv listáról való törléséhez.</ahelp>"
-#. `vfU
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -507,7 +455,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot, amelyen új nyelvet adhat hozzá a listához.</ahelp>"
-#. |z,=
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -516,7 +463,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 "<ahelp hid=\".\" visibility=\"hidden\">Jelöljön ki egy nyelvet a listáról, és kattintson a Törlés gombra az eltávolításához. Ha minden nyelvet eltávolít, a honosítható párbeszédablakok karakterlánc-erőforrásai minden párbeszédablakból törölve lesznek az aktuális könyvtárban.</ahelp>"
-#. trE)
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -525,7 +471,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 "<ahelp hid=\".\" visibility=\"hidden\">Jelöljön ki egy nyelvet, majd kattintson az Alapértelmezett gombra a nyelv alapértelmezettként való beállításához.</ahelp>"
-#. :o/z
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -534,7 +479,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az alapértelmezett nyelv lesz a forrása minden más nyelvű karakterláncnak.</ahelp>"
-#. lOW%
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -543,7 +487,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adjon hozzá nyelveket, amelyeken a párbeszédablak karakterláncai megjelenhetnek.</ahelp>"
-#. [+~9
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -552,7 +495,6 @@ msgctxt ""
msgid "To enable localizable dialogs"
msgstr "Honosítható párbeszédablakok engedélyezéséhez"
-#. 4GEp
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -561,7 +503,6 @@ msgctxt ""
msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>."
msgstr "A Basic IDE párbeszédablakban nyissa meg Nyelv eszköztárat a <item type=\"menuitem\">Nézet - Eszköztára - Nyelv</item> menüparancs segítségével."
-#. x)fS
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -570,7 +511,6 @@ msgctxt ""
msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
msgstr "Ha az aktuális könyvtár már tartalmaz honosítható párbeszédablakot, akkor a Nyelv eszköztár automatikusan megjelenik."
-#. P?77
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -579,7 +519,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 "Kattintson a <emph>Nyelvek kezelése</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Nyelvek kezelése ikon</alt></image> ikonra a Nyelv eszköztáron vagy a Vezérlőelemek eszköztáron."
-#. GIYx
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -588,7 +527,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 "Meg fog jelenni A felhasználói felület nyelveinek kezelése párbeszédablak. A párbeszédablak kezeli az aktuális könyvtár nyelveit. Az ablak címsorában megjelenik az aktuális könyvtár neve."
-#. b]RP
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -597,7 +535,6 @@ msgctxt ""
msgid "Click Add in the dialog to add a language entry."
msgstr "Kattintson a párbeszédablakban a Hozzáadás gombra egy új nyelv hozzáadásához."
-#. )oH3
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -606,7 +543,6 @@ msgctxt ""
msgid "This step enables all new dialogs to contain localizable string resources."
msgstr "Ez a lépés lehetővé teszi, hogy minden új párbeszédablak rendelkezzen honosítható karakterlánc-erőforrásokkal."
-#. CrnQ
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -615,7 +551,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 "Amikor az első alkalommal kattint a Hozzáadás gombra, megjelenik A felhasználóit felület alapértelmezett nyelvének beállítása párbeszédablak. Ezek után ha a Hozzáadás gombra kattint, A felhasználói felület nyelveinek hozzáadása párbeszédablak jelenik meg."
-#. D-0^
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -624,7 +559,6 @@ msgctxt ""
msgid "You can also change the default language in the Manage User Interface Language dialog."
msgstr "A felhasználói felület nyelveinek kezelése párbeszédablakon az alapértelmezett nyelv és megváltoztatható."
-#. +NiO
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -633,7 +567,6 @@ msgctxt ""
msgid "Select a language."
msgstr "Válasszon nyelvet."
-#. 0X5h
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -642,7 +575,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 "Ez karakterlánc-erőforrásokat ad hozzá a párbeszédablakhoz, amely az összes karakterlánc lefordított verzióit fogja tartalmazni. Az alapértelmezett nyelv karakterláncai átmásolódnak az összes fordítás helyére. Később átválthat az új nyelvre, és lefordíthatja a karakterláncokat."
-#. Ks?r
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -651,7 +583,6 @@ msgctxt ""
msgid "Close the dialog or add additional languages."
msgstr "Zárja be a párbeszédablakot, vagy adjon hozzá további nyelveket."
-#. +}jW
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -660,7 +591,6 @@ msgctxt ""
msgid "To edit localizable controls in your dialog"
msgstr "A párbeszédablak honosítható vezérlőelemeinek szerkesztéséhez"
-#. [%BK
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -669,7 +599,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 "Miután hozzáadta a honosítható karakterláncokhoz tartozó erőforrásokat a párbeszédablakokhoz, kijelölheti az aktuális nyelvet a Nyelv eszköztár Aktuális nyelv listájáról."
-#. A%({
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -678,7 +607,6 @@ msgctxt ""
msgid "Switch the Current Language listbox to display the default language."
msgstr "Váltson át az Aktuális nyelv listán az alapértelmezett nyelvre."
-#. *][@
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -687,7 +615,6 @@ msgctxt ""
msgid "Insert any number of controls to your dialog and enter all strings you want."
msgstr "Helyezze el a kívánt vezérlőelemeket a párbeszédablakra, és írja be a hozzájuk tartozó karakterláncokat."
-#. NwKw
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -696,7 +623,6 @@ msgctxt ""
msgid "Select another language in the Current Language listbox."
msgstr "Válasszon egy másik nyelvet az Aktuális nyelv listáról."
-#. 6c@g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -705,7 +631,6 @@ msgctxt ""
msgid "Using the control's property dialogs, edit all strings to the other language."
msgstr "A vezérlőelemek tulajdonság párbeszédablakainak használatával szerkesszen át minden karakterláncot a másik nyelvre."
-#. pm!y
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -714,7 +639,6 @@ msgctxt ""
msgid "Repeat for all languages that you added."
msgstr "Ismételje meg minden hozzáadott nyelvre."
-#. )W13
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -723,7 +647,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 "A párbeszédablak felhasználója azon a nyelven fogja látni a párbeszédablak karakterláncait, amilyen nyelvű a %PRODUCTNAME, feltéve hogy arra a nyelvre le vannak fordítva a karakterláncok."
-#. !aKh
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -732,7 +655,6 @@ msgctxt ""
msgid "If no language matches the user's version, the user will see the default language strings."
msgstr "Ha egyik nyelv sem egyezik meg a felhasználó verziójával, akkor az alapértelmezett nyelv jelenik meg."
-#. TADC
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -741,7 +663,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 "Ha a felhasználónak a %PRODUCTNAME egy régebbi verziója van meg, amely még nem ismeri a Basic-párbeszédablakok honosítható karakterlánc-erőforrásait, akkor az alapértelmezett nyelv jelenik meg."
-#. lK5B
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -750,7 +671,6 @@ msgctxt ""
msgid "Opening a Dialog With Program Code"
msgstr "Párbeszédablak megnyitása programkód segítségével"
-#. %+,9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -759,7 +679,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 "<bookmark_value>modul/párbeszédablak váltása</bookmark_value><bookmark_value>párbeszédablakok;megjelenítés programkóddal (példa)</bookmark_value><bookmark_value>példák; párbeszédablak megjelenítés programkóddal</bookmark_value>"
-#. Z#rJ
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -769,7 +688,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 "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Párbeszédablak megjelenítés programkóddal\">Párbeszédablak megjelenítés programkóddal</link></variable>"
-#. 9W_=
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -779,7 +697,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 "Egy párbeszédablakhoz létrehozott <item type=\"productname\">%PRODUCTNAME</item> BASIC-ablakban hagyja el a szerkesztőt a modulnév címkéjére történő kattintással, amelyhez a párbeszédablak hozzá van rendelve. A név címke az ablak alján található."
-#. m$G5
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -789,7 +706,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 "A <emph>Dialog1Show</emph> szubrutinhoz írja be az alábbi kódot. Ebben a példában a létrehozott párbeszédablak neve „Dialog1”:"
-#. .gr9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -799,7 +715,6 @@ msgctxt ""
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr "A „LoadDialog” használata nélkül az alábbi módon hívhatja meg a kódot:"
-#. 9mG;
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared.po b/source/hu/helpcontent2/source/text/sbasic/shared.po
index 50aceb65353..30ef1bbb237 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-07-13 21:55+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot 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 "Általános"
-#. XWZl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"Általános\">Általános</link>"
-#. 5vRd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -44,7 +41,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 "Adja meg a kijelölt párbeszédablak vagy vezérlőelem tulajdonságit. A rendelkezésre álló tulajdonságok a kijelölt vezérlőelemtől függenek. Ezért az alábbi tulajdonságok nem állnak rendelkezésre minden típusú vezérlőelemhez."
-#. c$Bu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. O@L;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Adja meg a kijelölt vezérlőelem igazítását.</ahelp>"
-#. |T2L
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "AutoFill"
msgstr "Automatikus kitöltés"
-#. rkR3
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
msgstr "<ahelp hid=\".\">Válassza az „Igen” lehetőséget az automatikus kitöltési funkció kijelölt vezérlőelemben történő engedélyezéséhez. </ahelp>"
-#. ZYQm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Background color"
msgstr "Háttérszín"
-#. ^Q2u
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem háttérszínét.</ahelp>"
-#. D;jl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Large change"
msgstr "Nagy változás"
-#. Fl}t
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -124,7 +113,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 "<ahelp hid=\".\">Adja meg, hány egységgel mozduljon el a dokumentum, ha a felhasználó a görgetősáv valamelyik nyila és a csúszka közti területre kattint.</ahelp>"
-#. kCE$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "Border"
msgstr "Szegély"
-#. %2RN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem szegélytípusát.</ahelp>"
-#. wCm5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "Button type"
msgstr "Gombtípus"
-#. ybwY
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -164,7 +149,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
msgstr "<ahelp hid=\".\">Válasszon egy gombtípust. A gombtípusok meghatározzák a kezdeményezett művelet típusát.</ahelp>"
-#. ,G\Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -174,7 +158,6 @@ msgctxt ""
msgid "Character set"
msgstr "Karakterkészlet"
-#. 4h]P
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -184,7 +167,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki a kijelölt vezérlőelem tartalmának megjelenítéséhez használt betűkészletet.</ahelp>"
-#. pQC6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -194,7 +176,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr "Pénznem szimbóluma"
-#. 7ySZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
msgstr "<ahelp hid=\".\">Írja be a pénznem szimbólumát, amelyet a pénznem típusú vezérlőelemek használnak.</ahelp>"
-#. n7=T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Date"
msgstr "Dátum"
-#. Ca`/
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -222,7 +201,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja a dátum vezérlőelemen megjelenítendő alapértelmezett dátumot.</ahelp>"
-#. LTEm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -232,7 +210,6 @@ msgctxt ""
msgid "Date format"
msgstr "Dátumformátum"
-#. /;J9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -242,7 +219,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 "<ahelp hid=\".\">Adja meg a dátum-vezérlőelem kívánt formátumát. A dátum-vezérlőelem a formátumbeállítás szerint értelmezi a felhasználói bevitelt.</ahelp>"
-#. 9BJ[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -252,7 +228,6 @@ msgctxt ""
msgid "Date max."
msgstr "Legkésőbbi dátum"
-#. RcPV
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -262,7 +237,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a dátum-vezérlőelem felső határértékét.</ahelp>"
-#. }`dD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -272,7 +246,6 @@ msgctxt ""
msgid "Date min."
msgstr "Legkorábbi dátum"
-#. ~Zl=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -282,7 +255,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a dátum-vezérlőelem alsó határértékét.</ahelp>"
-#. `dgE
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -292,7 +264,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr "Tizedes pontosság"
-#. 3|+-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -302,7 +273,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a numerikus vagy currency (pénznem) vezérlőelem által megjelenített tizedesjegyek számát.</ahelp>"
-#. C4CH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -312,7 +282,6 @@ msgctxt ""
msgid "Default button"
msgstr "Alapértelmezett gomb"
-#. G,NM
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -322,7 +291,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 "<ahelp hid=\".\">Ha azt akarja, hogy az aktuális gomb-vezérlőelem legyen az alapértelmezett, akkor válassza az „Igen” értéket. Az <emph>Enter</emph> billentyű párbeszédablakban történő megnyomása aktiválja az alapértelmezett gombot.</ahelp>"
-#. 1;cZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -331,7 +299,6 @@ msgctxt ""
msgid "Delay"
msgstr "Késleltetés"
-#. #bM1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -340,7 +307,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 "<ahelp hid=\".\">Megadja azt az időt ezredmásodpercben, amely a görgetősáv-események bekövetkezése között eltelik.</ahelp> Ez az esemény akkor következik be, ha kattint egy görgetősávnyílra vagy egy görgetősáv hátterére. Az ismételt események akkor következnek be, ha nyomva tartja az egérgombot egy görgetősávnyílon vagy egy görgetősáv hátterén. Ha akarja, megadhat mértékegységeket is a számokkal együtt, például 2 s vagy 500 ms."
-#. MCW+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -350,7 +316,6 @@ msgctxt ""
msgid "Dropdown"
msgstr "Legördülő"
-#. @^hH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -360,7 +325,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 "<ahelp hid=\".\">A lista- vagy kombináltlista-vezérlőelem legördülő listájának engedélyezéséhez válassza az „Igen” értéket. A legördülő listának van egy nyílgombja, amelynek segítségével megnyithatja a meglévő űrlapbejegyzések listáját.</ahelp>"
-#. dYO.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -370,7 +334,6 @@ msgctxt ""
msgid "Enabled"
msgstr "Engedélyezve"
-#. Uk81
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -380,7 +343,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 "<ahelp hid=\".\">A vezérlőelem engedélyezéséhez válassza az „Igen” értéket. Ha a vezérlőelem le van tiltva, akkor szürkével jelenik meg a párbeszédablakban.</ahelp>"
-#. c#Ib
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -390,7 +352,6 @@ msgctxt ""
msgid "Edit mask"
msgstr "Beviteli maszk"
-#. .{W?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -400,7 +361,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 "<ahelp hid=\".\">Adja meg a maszkoltmező-vezérlőelem szerkesztési maszkját. Ez egy karakterkód, amely meghatározza a vezérlőelem bemeneti formátumát.</ahelp>"
-#. 35~5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -410,7 +370,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 "A szerkesztési maszk minden beviteli karakterének meg kell határoznia a maszkolási karakterét, amely szabályozza a bevitelt a következő táblázatban megadott értékeknek megfelelően:"
-#. G*#j
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -420,7 +379,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. `]CP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -430,7 +388,6 @@ msgctxt ""
msgid "Meaning"
msgstr "Jelentés"
-#. v:x(
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -440,7 +397,6 @@ msgctxt ""
msgid "L"
msgstr "L"
-#. MYiQ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -450,7 +406,6 @@ msgctxt ""
msgid "A text constant. This character cannot be modified by the user."
msgstr "Egy szövegállandó. Ezt a karaktert a felhasználó nem módosíthatja."
-#. Q`?z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -460,7 +415,6 @@ msgctxt ""
msgid "a"
msgstr "a"
-#. %__%
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -470,7 +424,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 "Az a-tól z-ig terjedő karakterek írhatók be ide. Nagybetű beírásakor a rendszer automatikusan átalakítja azt kisbetűvé."
-#. (skl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -480,7 +433,6 @@ msgctxt ""
msgid "A"
msgstr "A"
-#. O\iW
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -490,7 +442,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 "Az A-tól Z-ig terjedő karakterek írhatók be ide. Kisbetű beírásakor a rendszer automatikusan átalakítja azt nagybetűvé."
-#. ^eoK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -500,7 +451,6 @@ msgctxt ""
msgid "c"
msgstr "c"
-#. dUKL
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -510,7 +460,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 "Az A-tól Z-ig terjedő és a 0-tól 9-ig terjedő karakterek írhatók be ide. Nagybetű beírásakor a rendszer automatikusan átalakítja azt kisbetűvé."
-#. O.$_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -520,7 +469,6 @@ msgctxt ""
msgid "C"
msgstr "C"
-#. 3gnh
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -530,7 +478,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 "Az A-tól Z-ig terjedő és a 0-tól 9-ig terjedő karakterek írhatók be ide. Kisbetű beírásakor a rendszer automatikusan átalakítja azt nagybetűvé."
-#. =Bz.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -540,7 +487,6 @@ msgctxt ""
msgid "N"
msgstr "N"
-#. U@jb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -550,7 +496,6 @@ msgctxt ""
msgid "Only the characters 0-9 can be entered."
msgstr "Csak a 0-9 közötti karaktereket lehet beírni."
-#. w`$|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -560,7 +505,6 @@ msgctxt ""
msgid "x"
msgstr "x"
-#. 0/%P
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -570,7 +514,6 @@ msgctxt ""
msgid "All printable characters can be entered."
msgstr "Minden nyomtatható karakter beírható."
-#. KT/f
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -580,7 +523,6 @@ msgctxt ""
msgid "X"
msgstr "X"
-#. aR(m
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -590,7 +532,6 @@ msgctxt ""
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
msgstr "Minden nyomtatható karakter beírható. Kisbetű használatakor a rendszer automatikusan átalakítja nagybetűvé."
-#. ^6$p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -599,7 +540,6 @@ msgctxt ""
msgid "Editable"
msgstr "Szerkeszthető"
-#. H%KR
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -608,7 +548,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja, hogy a favezérlőelem csomópontjai szerkeszthetők-e.</ahelp>"
-#. 4Y{A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -617,7 +556,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr "Az alapértelmezett érték a HAMIS."
-#. /nmC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -627,7 +565,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Kép"
-#. Ouj)
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -637,7 +574,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 "<ahelp hid=\".\">Adja meg egy gomb- vagy egy képvezérlőelem grafikájának forrását. A fájl kiválasztásához kattintson a „...” elemre.</ahelp>"
-#. M4Qq
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -647,7 +583,6 @@ msgctxt ""
msgid "Height"
msgstr "Magasság"
-#. hDlS
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -657,7 +592,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem vagy párbeszédablak magasságát.</ahelp>"
-#. ibPC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -667,7 +601,6 @@ msgctxt ""
msgid "Help text"
msgstr "Súgó szövege"
-#. ^a##
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -677,7 +610,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 "<ahelp hid=\".\">Adjon meg egy súgószöveget, amely tippként (buboréksúgóként) jelenik meg, amikor az egér a vezérlőelem fölött áll.</ahelp>"
-#. i^|d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -687,7 +619,6 @@ msgctxt ""
msgid "Help URL"
msgstr "Súgó-URL"
-#. eT*L
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -697,7 +628,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 "<ahelp hid=\".\">Adja meg azt a súgó-URL-t, amelyet akkor hív meg a program, ha a fókusz egy vezérlőelemen van, és a felhasználó megnyomja az F1 billentyűt. Például használja a HID:1234 értéket az 1234 számú súgóazonosító meghívásához.</ahelp>"
-#. xXrC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -706,7 +636,6 @@ msgctxt ""
msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
msgstr "A HELP_DEBUG környezeti változót 1 értékre állítja a súgóazonosítók kibővített súgótippekként történő megtekintéséhez."
-#. y.\=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -716,7 +645,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr "Érték növelése/csökkentése"
-#. JeK#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -726,7 +654,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a léptetőgombok lépésközét.</ahelp>"
-#. b@8M
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -735,7 +662,6 @@ msgctxt ""
msgid "Invokes stop mode editing"
msgstr "Elindítja a megállított módú szerkesztést."
-#. $*#h
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -744,7 +670,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 "<ahelp hid=\".\">Megadja, mi történjen, ha a szerkesztés megszakad a fa egy másik csomópontjának kiválasztása miatt, a fa adatainak módosulása miatt vagy egyéb okból.</ahelp>"
-#. ms=;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -753,7 +678,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 "Ha a tulajdonságot IGAZ értékre állítja, akkor a módosítások automatikusan mentve lesznek, ha a szerkesztést megszakítják. A HAMIS érték azt jelenti, hogy a szerkesztés félbeszakad, és a módosítások elvesznek."
-#. bZ.~
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -762,7 +686,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr "Az alapértelmezett érték a HAMIS."
-#. 5-?o
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -773,7 +696,6 @@ msgctxt ""
msgid "Label"
msgstr "Címke"
-#. -4:w
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -783,7 +705,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja az aktuális vezérlőelem címkéjét. A címke a vezérlőelemmel együtt jelenik meg.</ahelp>"
-#. ,pBi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -793,7 +714,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 "Többsoros <emph>címkéket</emph> is létrehozhat kézi sortörések beszúrásával, a <emph>Shift+Enter</emph> billentyűkombinációk segítségével."
-#. Ub9l
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -803,7 +723,6 @@ msgctxt ""
msgid "Line Count"
msgstr "Sorok száma"
-#. wv_a
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -813,7 +732,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 "<ahelp hid=\".\">Adja meg a lista-vezérlőelem megjelenített sorainak számát. Kombinált listák esetén ez a beállítás csak akkor aktív, ha a legördülő lista engedélyezve van. </ahelp>"
-#. y#FX
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -822,7 +740,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr "Görgetősáv"
-#. %IZA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -831,7 +748,6 @@ msgctxt ""
msgid "Adds the scrollbar type that you specify to a text box."
msgstr "A megadott típusú görgetősávot adja egy szövegmezőhöz."
-#. Yj5D
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -841,7 +757,6 @@ msgctxt ""
msgid "Small change"
msgstr "Kis változás"
-#. o#dN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -851,7 +766,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg, hány egységgel mozduljon el a dokumentum, ha a felhasználó a görgetősáv valamelyik nyilára kattint.</ahelp>"
-#. d:a\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -861,7 +775,6 @@ msgctxt ""
msgid "List entries"
msgstr "Listabejegyzések"
-#. $i_{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -871,7 +784,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 "<ahelp hid=\".\">Adja meg a lista-vezérlőelem bejegyzéseit. Egy sor egy listabejegyzést jelent. Új sor beszúrásához nyomja meg a <emph>Shift+Enter</emph> billentyűkombinációt.</ahelp>"
-#. bKmu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -881,7 +793,6 @@ msgctxt ""
msgid "Literal mask"
msgstr "Kifejezésmaszk"
-#. (d(*
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -891,7 +802,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 "<ahelp hid=\".\">Adja meg a maszkolt mező kezdeti értékeit. Ez segíti a felhasználókat a maszkolt mezőben megengedett értékek felismerésében. A kifejezésmaszkot a szerkesztési maszkban meghatározott formátum korlátozza.</ahelp>"
-#. ?ft9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -901,7 +811,6 @@ msgctxt ""
msgid "Manual line break"
msgstr "Kézi sortörés"
-#. KU5W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -911,7 +820,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza az „Igen” lehetőséget, ha a többsoros vezérlőelemekben kézi sortörést is akar használni.</ahelp>"
-#. -E51
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -921,7 +829,6 @@ msgctxt ""
msgid "Max. text length"
msgstr "Maximális szöveghossz"
-#. wc-1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -931,7 +838,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a felhasználó által beírható karakterek maximális számát.</ahelp>"
-#. y9h.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -941,7 +847,6 @@ msgctxt ""
msgid "Multiline Input"
msgstr "Többsoros bevitel"
-#. gjla
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -951,7 +856,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 "<ahelp hid=\".\">Ha engedélyezni kívánja a vezérlőelemben a többsoros bevitelt, akkor válassza ki az „Igen” értéket. A kézi sortörés vezérlőelembe történő beszúrásához nyomja meg az Entert.</ahelp>"
-#. GQ8#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -961,7 +865,6 @@ msgctxt ""
msgid "Multiselection"
msgstr "Többszörös kijelölés"
-#. 86Q`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -971,7 +874,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza az „Igen” lehetőséget a lista-vezérlőelemekben lévő bejegyzések többszörös kijelölésének elfogadásához.</ahelp>"
-#. 1;2b
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -981,7 +883,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. lCVG
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -991,7 +892,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
msgstr "<ahelp hid=\".\">Adjon nevet az aktuális vezérlőnek. Ez a név azonosítja a vezérlőelemet.</ahelp>"
-#. +]f#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1001,7 +901,6 @@ msgctxt ""
msgid "Order"
msgstr "Rendezés"
-#. :Pd\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1011,7 +910,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 "<ahelp hid=\".\">Adja meg, hogy milyen sorrendben aktiválódjanak a párbeszédablak vezérlőelemei a Tab billentyű lenyomására.</ahelp> Ha egy párbeszédablak aktív lesz, akkor a legkisebb sorrendi értékkel (0) rendelkező vezérlőelem kapja a fókuszt. A <emph>Tab</emph> billentyű megnyomásakor a vezérlőelemek a fókuszt a sorszámuk által meghatározott sorrendben kapják meg."
-#. [;q$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1021,7 +919,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 "A vezérlőelemek kezdetben a párbeszédablakhoz adásuk sorrendjében kapják a sorszámot. A vezérlőelemek sorszámát módosíthatja. A $[officename] Basic a többszörös számok elkerülése érdekében automatikusan frissíti a sorszámokat. A vezérlőelemek, amelyekre nem lehet fókuszálni, szintén rendelkeznek egy értékkel, de ezek a vezérlőelemek figyelmen kívül maradnak a Tab billentyű használatakor."
-#. :GC?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1031,7 +928,6 @@ msgctxt ""
msgid "Orientation"
msgstr "Tájolás"
-#. D6!3
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1041,7 +937,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a görgetősáv-vezérlőelem tájolását.</ahelp>"
-#. O]U6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1051,7 +946,6 @@ msgctxt ""
msgid "Page (step)"
msgstr "Oldal (fázis)"
-#. ;UH9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1061,7 +955,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 "<ahelp hid=\".\">Adja meg a párbeszédablak azon lapjának sorszámát, amelyik laphoz az aktuális vezérlőelemet rendelni kívánja, vagy amelyik lapot szerkeszteni akarja.</ahelp> Ha a párbeszédablaknak csak egy oldala van, akkor állítsa az <emph>Oldal (fázis)</emph> elemet <emph>0</emph> értékre."
-#. :NV?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1071,7 +964,6 @@ msgctxt ""
msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
msgstr "Ha minden párbeszédablak-oldalon láthatóvá kívánja tenni a vezérlőelemet, akkor válassza az <emph>Oldal (fázis)</emph> = 0 értéket."
-#. 7C65
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1081,7 +973,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 "Ha a párbeszédablak oldalai között futás közben kíván váltani, akkor létre kell hoznia egy makrót, amely módosítja az <emph>Oldal (fázis)</emph> értékét."
-#. sc@d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1091,7 +982,6 @@ msgctxt ""
msgid "Password characters"
msgstr "Jelszókarakterek"
-#. Mx4n
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1101,7 +991,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 "<ahelp hid=\".\">Adja meg a karaktert, amely megjelenjen a beírt karakterek helyett. Ez jelszó szöveg-vezérlőelembe történő beírásánál használható.</ahelp>"
-#. /OEi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1111,7 +1000,6 @@ msgctxt ""
msgid "PositionX"
msgstr "X pozíció"
-#. f]jA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1121,7 +1009,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem távolságát a párbeszédablak bal szélétől.</ahelp>"
-#. C#UB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1131,7 +1018,6 @@ msgctxt ""
msgid "PositionY"
msgstr "Y pozíció"
-#. ^ybM
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1141,7 +1027,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem távolságát a párbeszédablak tetejétől.</ahelp>"
-#. WB1z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1151,7 +1036,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr "Előtagjel"
-#. t%Kc
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1161,7 +1045,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza az „Igen” lehetőséget, ha a pénznem-vezérlőelemben szám beírásakor a pénznemszimbólumot meg akarja jeleníteni előtagként.</ahelp>"
-#. ^gf5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1171,7 +1054,6 @@ msgctxt ""
msgid "Print"
msgstr "Nyomtatás"
-#. ?x=F
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1181,7 +1063,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza az „Igen” lehetőséget, hogy az aktuális vezérlőelem benne legyen a dokumentum nyomtatási kimenetében.</ahelp>"
-#. H??@
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1191,7 +1072,6 @@ msgctxt ""
msgid "Progress value"
msgstr "Folyamatérték"
-#. kmaZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1201,7 +1081,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a folyamat állapotát a folyamatjelzőn.</ahelp>"
-#. p9T|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1211,7 +1090,6 @@ msgctxt ""
msgid "Progress value max."
msgstr "Legnagyobb folyamatérték"
-#. F0HI
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1221,7 +1099,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a folyamatjelző-vezérlőelem maximumértékét.</ahelp>"
-#. ##O:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1231,7 +1108,6 @@ msgctxt ""
msgid "Progress value min."
msgstr "Legkisebb folyamatérték"
-#. E819
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1241,7 +1117,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a folyamatjelző-vezérlőelem minimumértékét.</ahelp>"
-#. Rt:9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1251,7 +1126,6 @@ msgctxt ""
msgid "Read-only"
msgstr "Csak olvasásra"
-#. l2Kb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1261,7 +1135,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 "<ahelp hid=\".\">Ha az „Igen” lehetőséget választja, a felhasználó nem fogja tudni szerkeszteni az aktuális vezérlőelemet. A vezérlőelem érvényes és fókuszálható, de nem módosítható.</ahelp>"
-#. +WTD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1270,7 +1143,6 @@ msgctxt ""
msgid "Repeat"
msgstr "Ismétlés"
-#. tWr0
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1279,7 +1151,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 "<ahelp hid=\".\">Megismétli az eseményeket, ha nyomva tartja az egérgombot egy vezérlőelemen, például léptetőgombon.</ahelp>"
-#. i|T9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1288,7 +1159,6 @@ msgctxt ""
msgid "Root displayed"
msgstr "Gyökér megjelenik"
-#. BVN9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1297,7 +1167,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja, hogy megjelenjen-e a favezérlőelem gyökércsomópontja.</ahelp>"
-#. !M#:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1306,7 +1175,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 "Ha a Gyökér megjelenik tulajdonság értéke HAMIS, akkor a modell gyökércsomópontja többé nem egy érvényes csomópont a favezérlőelem számára, és nem használható a XTreeControl egyik metódusával sem."
-#. GO^^
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1315,7 +1183,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr "Az alapértelmezett érték az IGAZ."
-#. WST[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1324,7 +1191,6 @@ msgctxt ""
msgid "Row height"
msgstr "Sormagasság"
-#. uOs5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1333,7 +1199,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja a favezérlőelem sorainak magasságát képpontban.</ahelp>"
-#. CV(}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1342,7 +1207,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 "Ha a megadott érték kisebb nullánál vagy egyenlő azzal, akkor minden sor magassága maximális lesz."
-#. =%J:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1351,7 +1215,6 @@ msgctxt ""
msgid "The default value is 0."
msgstr "Az alapértelmezett érték a 0."
-#. 77_|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1361,7 +1224,6 @@ msgctxt ""
msgid "Scale"
msgstr "Skála"
-#. 0|#O
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1371,7 +1233,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
msgstr "<ahelp hid=\".\">Átméretezi a képet, hogy elférjen a vezérlőelemben.</ahelp>"
-#. P8oK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1380,7 +1241,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr "Görgetősáv"
-#. %5K)
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1389,7 +1249,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
msgstr "<ahelp hid=\".\">A megadott típusú görgetősávot adja egy szövegmezőhöz.</ahelp>"
-#. _.zK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1399,7 +1258,6 @@ msgctxt ""
msgid "Scroll value"
msgstr "Görgetési érték"
-#. g1(Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1409,7 +1267,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a görgetősáv-vezérlőelem kezdeti értékét. Ez meghatározza a görgetősáv csúszkájának helyét.</ahelp>"
-#. [a1p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1419,7 +1276,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr "Maximális görgetési érték"
-#. Dg7K
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1429,7 +1285,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a görgetősáv-vezérlőelem maximális értékét.</ahelp>"
-#. H8$W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1438,7 +1293,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr "Min. görgetési érték"
-#. @9F{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1447,7 +1301,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a görgetősáv-vezérlőelem minimumértékét.</ahelp>"
-#. E_7-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1456,7 +1309,6 @@ msgctxt ""
msgid "Show handles"
msgstr "Fogantyúk megjelenítése"
-#. PT-2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1465,7 +1317,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja, hogy a csomópontok fogantyúi megjelenjenek-e.</ahelp>"
-#. v%?Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1474,7 +1325,6 @@ msgctxt ""
msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
msgstr "A fogantyúk pontozott vonalak, amelyek megjelenítik a favezérlőelem hierarchiáját."
-#. Q-:]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1483,7 +1333,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr "Az alapértelmezett érték az IGAZ."
-#. H(1\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1492,7 +1341,6 @@ msgctxt ""
msgid "Show root handles"
msgstr "Gyökérfogantyúk megjelenítése"
-#. (}+q
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1501,7 +1349,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja, hogy a csomópontok fogantyúi a gyökérszinten is megjelenjenek-e.</ahelp>"
-#. rqs$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1510,7 +1357,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr "Az alapértelmezett érték az IGAZ."
-#. /%nh
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1519,7 +1365,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. 4.`(
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1528,7 +1373,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 "<ahelp hid=\".\">Megadja a kijelölt elemek sorrendjét, ahol a „0” az első elemnek felel meg. Ha egynél több elemet akar kijelölni, jelölje ki a Többszörös kijelölés lehetőséget.</ahelp>"
-#. S=eZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1537,7 +1381,6 @@ msgctxt ""
msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
msgstr "A <emph>Kijelölés</emph> párbeszédablak megnyitásához kattintson a <emph>...</emph> gombra."
-#. qtTg
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1546,7 +1389,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 "<ahelp hid=\".\">Kattintson a kijelölni kívánt elemre vagy elemekre. Ha egynél több elemet akar kijelölni, győződjön meg róla, hogy a Többszörös kijelölés lehetőség ki van jelölve.</ahelp>"
-#. MK0A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1555,7 +1397,6 @@ msgctxt ""
msgid "Selection type"
msgstr "Kijelölés típusa"
-#. AMKs
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1564,7 +1405,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
msgstr "<ahelp hid=\".\">Megadja a kijelölés módját, amely engedélyezve van a favezérlőelem számára.</ahelp>"
-#. +wE2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1574,7 +1414,6 @@ msgctxt ""
msgid "Spin Button"
msgstr "Léptetőgomb"
-#. (DiD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1584,7 +1423,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 "<ahelp hid=\".\">Léptetőgombok szám-, dátum- vagy idő-vezérlőelemhez történő hozzáadásához válassza az „Igen” értéket, ami engedélyezi, hogy a nyílgombokkal növelhető és csökkenthető legyen a beviteli érték.</ahelp>"
-#. .VqC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1594,7 +1432,6 @@ msgctxt ""
msgid "State"
msgstr "Állapot"
-#. PO|T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1604,7 +1441,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki az aktuális vezérlőelem kijelölési állapotát.</ahelp>"
-#. z1WB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1614,7 +1450,6 @@ msgctxt ""
msgid "Strict format"
msgstr "Kötött formátum"
-#. gAV`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1624,7 +1459,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 "<ahelp hid=\".\">Válassza az „Igen” lehetőséget, ha korlátozni akarja, hogy csak érvényes karakterek legyenek beírhatók a szám, pénznem, dátum vagy idő típusú vezérlőelemekbe.</ahelp>"
-#. KjPb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1634,7 +1468,6 @@ msgctxt ""
msgid "Tabstop"
msgstr "Tabulátorpozíció"
-#. X*Q/
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1644,7 +1477,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki, hogyan viselkedjen az aktuális vezérlőelem a <emph>Tab</emph> billentyű használatakor.</ahelp>"
-#. bBe=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1654,7 +1486,6 @@ msgctxt ""
msgid "Default"
msgstr "Alapértelmezett"
-#. iv8U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1664,7 +1495,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 "Csak a beviteli vezérlőelemek kapják meg a fókuszt a <emph>Tab</emph> billentyű használatakor. A bevitel nélküli vezérlőelemek, mint például a képfelirat-vezérlőelemek, kimaradnak."
-#. !/Xp
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1674,7 +1504,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. rjWw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1684,7 +1513,6 @@ msgctxt ""
msgid "When using the tab key focusing skips the control."
msgstr "A Tab billentyű használatakor a fókusz átugorja a vezérlőelemet."
-#. pYmP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1694,7 +1522,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. }o{U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1704,7 +1531,6 @@ msgctxt ""
msgid "The control can be selected with the Tab key."
msgstr "A Tab billentyű használatával a vezérlőelem kiválasztható."
-#. P5n1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1714,7 +1540,6 @@ msgctxt ""
msgid "Thousands Separator"
msgstr "Ezreselválasztó"
-#. qPkC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1724,7 +1549,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza az „Igen” lehetőséget az ezreselválasztó karakterek megjelenítéséhez a numerikus és pénznem-vezérlőelemekben.</ahelp>"
-#. (_M_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1734,7 +1558,6 @@ msgctxt ""
msgid "Time Format"
msgstr "Időformátum"
-#. E`QZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1744,7 +1567,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki az idő-vezérlőelemek formátumát.</ahelp>"
-#. zhn6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1754,7 +1576,6 @@ msgctxt ""
msgid "Time max."
msgstr "Max. idő"
-#. 1[{r
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1764,7 +1585,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az idő-vezérlőelem maximumértékét.</ahelp>"
-#. ZnC}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1774,7 +1594,6 @@ msgctxt ""
msgid "Time min."
msgstr "Min. idő"
-#. q]^`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1784,7 +1603,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az idő-vezérlőelem minimumértékét.</ahelp>"
-#. ~#YA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1794,7 +1612,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. B|ia
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1804,7 +1621,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a párbeszédablak címét. A párbeszédablak kiválasztásához kattintson a párbeszédablak szegélyére.</ahelp>"
-#. i)c;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1814,7 +1630,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 "A <emph>Címek</emph> csak párbeszédablak címzéshez használhatók, és csak egy sort tartalmazhatnak. Ha makrókkal dolgozik, akkor a vezérlőelemek csak a <emph>Név</emph> tulajdonságon keresztül hívhatók meg."
-#. T=V4
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1824,7 +1639,6 @@ msgctxt ""
msgid "Tristate"
msgstr "Háromállapotú"
-#. +9aB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1834,7 +1648,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 "<ahelp hid=\".\">Válassza az „Igen” lehetőséget, ha háromállapotú jelölőnégyzetet akar használni (bejelölve, törölve és inaktív) a szokásos kétállapotú helyett (bejelölve, törölve).</ahelp>"
-#. aLGH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1844,7 +1657,6 @@ msgctxt ""
msgid "Value"
msgstr "Érték"
-#. `=;J
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1854,7 +1666,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem értékét.</ahelp>"
-#. Ca`]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1864,7 +1675,6 @@ msgctxt ""
msgid "Value max."
msgstr "Legnagyobb érték"
-#. k]B\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1874,7 +1684,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem maximumértékét.</ahelp>"
-#. 3f7{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1884,7 +1693,6 @@ msgctxt ""
msgid "Value min."
msgstr "Legkisebb érték"
-#. \xHZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1894,7 +1702,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem minimumértékét.</ahelp>"
-#. =R1W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1904,7 +1711,6 @@ msgctxt ""
msgid "Visible size"
msgstr "Látható méret"
-#. :/7!
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1914,7 +1720,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a görgetősáv-vezérlőelem csúszkájának hosszát.</ahelp>"
-#. G;jd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1924,7 +1729,6 @@ msgctxt ""
msgid "Width"
msgstr "Szélesség"
-#. 6bKw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1934,7 +1738,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg az aktuális vezérlőelem vagy párbeszédablak szélességét.</ahelp>"
-#. XoGR
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1943,7 +1746,6 @@ msgctxt ""
msgid "Blue Function [Runtime]"
msgstr "Blue függvény [futásidejű]"
-#. =Cl5
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1952,7 +1754,6 @@ msgctxt ""
msgid "<bookmark_value>Blue function</bookmark_value>"
msgstr "<bookmark_value>Blue függvény</bookmark_value>"
-#. !(8.
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1962,7 +1763,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue függvény [futásidejű]\">Blue függvény [futásidejű]</link>"
-#. DAQN
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1972,7 +1772,6 @@ msgctxt ""
msgid "Returns the blue component of the specified color code."
msgstr "A meghatározott színkód kék összetevőjét adja vissza."
-#. 94UH
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1982,7 +1781,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. \d#d
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1992,7 +1790,6 @@ msgctxt ""
msgid "Blue (Color As Long)"
msgstr "Blue (Szín As Long)"
-#. `T;0
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2002,7 +1799,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. MF^g
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2012,7 +1808,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. kNc=
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2022,7 +1817,6 @@ msgctxt ""
msgid "Parameter:"
msgstr "Paraméter:"
-#. ^bG2
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2032,7 +1826,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 "<emph>Szín érték</emph>: A <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"színkódot\">színkódot</link> megadó long integer (hosszú egész szám) kifejezés, amelynek kék összetevőjét vissza kell adni."
-#. e)}(
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2042,7 +1835,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. 8;~O
#: 03010301.xhp
#, fuzzy
msgctxt ""
@@ -2053,7 +1845,6 @@ msgctxt ""
msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
msgstr "MsgBox \"A(z)\" & lVar & \" szín a következőkből áll:\" & Chr(13) &_"
-#. t?#N
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2063,7 +1854,6 @@ msgctxt ""
msgid "\"red= \" & Red(lVar) & Chr(13)&_"
msgstr "\"vörös= \" & Red(lVar) & Chr(13)&_"
-#. 9f3.
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2073,7 +1863,6 @@ msgctxt ""
msgid "\"green= \" & Green(lVar) & Chr(13)&_"
msgstr "\"zöld = \" & Green(lVar) & Chr(13)&_"
-#. 3%A,
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2083,7 +1872,6 @@ msgctxt ""
msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
msgstr "\"kék= \" & Blue(lVar) & Chr(13) , 64,\"színek\""
-#. QSX4
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2092,7 +1880,6 @@ msgctxt ""
msgid "Comparison Operators [Runtime]"
msgstr "Összehasonlító operátorok [futásidejű]"
-#. I_Ld
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2101,7 +1888,6 @@ msgctxt ""
msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
msgstr "<bookmark_value>összehasonlító operátorok;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operátorok;összehasonlítás</bookmark_value>"
-#. l#An
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2111,7 +1897,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Összehasonlító operátorok [futásidejű]\">Összehasonlító operátorok [futásidejű]</link>"
-#. DU^=
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2121,7 +1906,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 "Az összehasonlító operátorok két kifejezést hasonlítanak össze. Az eredmény egy boolean (logikai) kifejezés, amely meghatározza, hogy az összehasonlítás értéke True (-1, igaz) vagy False (0, hamis)."
-#. 2bxe
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2131,7 +1915,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. 7Z7p
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2141,7 +1924,6 @@ msgctxt ""
msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
msgstr "Eredmény = Kifejezés1 { = | < | > | <= | >= } Kifejezés2"
-#. U$L@
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2151,7 +1933,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. G.US
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2161,7 +1942,6 @@ msgctxt ""
msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
msgstr "<emph>Eredmény:</emph> Boolean (logikai) kifejezés, amely az összehasonlítás eredményét határozza meg (True (igaz) vagy False (hamis))."
-#. rr*J
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2171,7 +1951,6 @@ msgctxt ""
msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
msgstr "<emph>Kifejezés1, Kifejezés2:</emph> Az összehasonlítandó numerikus értékek vagy karakterláncok."
-#. `5qH
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2181,7 +1960,6 @@ msgctxt ""
msgid "Comparison operators"
msgstr "Összehasonlító operátorok"
-#. pREl
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2191,7 +1969,6 @@ msgctxt ""
msgid "= : Equal to"
msgstr "= : Egyenlő"
-#. +J3]
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2201,7 +1978,6 @@ msgctxt ""
msgid "< : Less than"
msgstr "< : Kisebb"
-#. BEZR
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2211,7 +1987,6 @@ msgctxt ""
msgid "> : Greater than"
msgstr "> : Nagyobb"
-#. $uCg
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2221,7 +1996,6 @@ msgctxt ""
msgid "<= : Less than or equal to"
msgstr "<= : Kisebb vagy egyenlő"
-#. __DJ
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2231,7 +2005,6 @@ msgctxt ""
msgid ">= : Greater than or equal to"
msgstr ">= : Nagyobb vagy egyenlő"
-#. 15\S
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2241,7 +2014,6 @@ msgctxt ""
msgid "<> : Not equal to"
msgstr "<> : Nem egyenlő"
-#. Tw#9
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2251,7 +2023,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. gma+
#: 03110100.xhp
#, fuzzy
msgctxt ""
@@ -2262,7 +2033,6 @@ msgctxt ""
msgid "Dim sRoot As String ' Root directory for file in and output"
msgstr "DIM sRoot As String REM ' A fájl be- és kimeneti könyvtára"
-#. bS?S
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2271,7 +2041,6 @@ msgctxt ""
msgid "Timer Function [Runtime]"
msgstr "Timer függvény [futásidejű]"
-#. h22Q
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2280,7 +2049,6 @@ msgctxt ""
msgid "<bookmark_value>Timer function</bookmark_value>"
msgstr "<bookmark_value>Timer függvény</bookmark_value>"
-#. vpGo
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2290,7 +2058,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer függvény [futásidejű]\">Timer függvény [futásidejű]</link>"
-#. ;9X`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2300,7 +2067,6 @@ msgctxt ""
msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
msgstr "Visszaad egy olyan értéket, amely az éjfél óta eltelt másodpercek számát adja meg."
-#. 2?:K
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2310,7 +2076,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 "Először a Timer függvény meghívására szolgáló változót kell deklarálni, majd hozzá kell rendelni egy „Long” (hosszú egész) adattípust, ellenkező esetben a dátum kerül visszaadásra."
-#. EypB
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2320,7 +2085,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. I[2Z
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2330,7 +2094,6 @@ msgctxt ""
msgid "Timer"
msgstr "Timer"
-#. n#?n
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2340,7 +2103,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. 9s5}
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2350,7 +2112,6 @@ msgctxt ""
msgid "Date"
msgstr "Date (dátum)"
-#. APE`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2360,7 +2121,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. 0acV
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2370,7 +2130,6 @@ msgctxt ""
msgid "MsgBox lSec,0,\"Seconds since midnight\""
msgstr "MsgBox lSec,0,\"Éjfél óta eltelt másodpercek\""
-#. qX*3
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2380,7 +2139,6 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
msgstr "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"Az idő\""
-#. K3ma
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2389,7 +2147,6 @@ msgctxt ""
msgid "Dir Function [Runtime]"
msgstr "Dir függvény [futásidejű]"
-#. d!$b
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2398,7 +2155,6 @@ msgctxt ""
msgid "<bookmark_value>Dir function</bookmark_value>"
msgstr "<bookmark_value>Dir függvény</bookmark_value>"
-#. 50[7
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2408,7 +2164,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir függvény [futásidejű]\">Dir függvény [futásidejű]</link>"
-#. \h)B
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2418,7 +2173,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 "Visszaadja egy könyvtár, egy fájl vagy az összes olyan fájl, illetve könyvtár nevét egy meghajtón, illetve egy könyvtárban, amelyek megfelelnek a megadott keresési útvonalnak."
-#. $=N|
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2428,7 +2182,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. g;2J
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2438,7 +2191,6 @@ msgctxt ""
msgid "Dir [(Text As String) [, Attrib As Integer]]"
msgstr "Dir [(Szöveg As String) [, Attribútum As Integer]]"
-#. L9k(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2448,7 +2200,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. L5WV
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2458,7 +2209,6 @@ msgctxt ""
msgid "String"
msgstr "String (karakterlánc)"
-#. #J[c
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2468,7 +2218,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. 58@D
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2478,7 +2227,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 "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely megadja a keresési utat, a fájlt vagy a könyvtárat. Ez az argumentum csak a Dir függvény első meghívásakor adható meg. Igény szerint <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelöléssel\">URL-jelöléssel</link> is megadhatja az elérési utat."
-#. [d6[
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2488,7 +2236,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 "<emph>Attribútum: </emph>Bármilyen integer (egész szám) kifejezés, amely megadja a fájlattribútum-biteket. A Dir függvény csak a megadott attribútumoknak megfelelő fájlokat vagy könyvtárakat adja vissza. Az attribútumértékek hozzáadásával számos attribútumot egyesíthet:"
-#. pSkB
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2498,7 +2245,6 @@ msgctxt ""
msgid "0 : Normal files."
msgstr "0 : Normál fájlok."
-#. m\l(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2508,7 +2254,6 @@ msgctxt ""
msgid "16 : Returns the name of the directory only."
msgstr "16 : Csak a könyvtár nevét adja vissza."
-#. hfrM
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2518,7 +2263,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 "Ezzel az attribútummal ellenőrizheti egy könyvtár létezését, vagy meghatározhatja az adott könyvtárban levő összes fájlt és mappát."
-#. :*Th
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2528,7 +2272,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 "Annak ellenőrzéséhez, hogy a fájl létezik-e, adja meg a fájl teljes elérési útját vagy nevét. Ha a fájl- vagy könyvtárnév nem létezik, akkor a Dir függvény nulla hosszúságú karakterláncot ad vissza (\"\")."
-#. ]S9T
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2538,7 +2281,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 "Ha egy adott könyvtárban lévő összes fájlt akarja kilistázni, a következő módon járjon el: A Dir függvény első meghívásakor adja meg a fájlok keresésének teljes elérési útját, például \"D:\\Files\\*.sxw\". Ha az elérési út helyes, és a keresés legalább egy fájlt talál, akkor a Dir függvény visszaadja a keresési útnak megfelelő első fájlt. Az elérési útnak megfelelő további fájlnevek visszaadásához hívja meg újra a Dir függvényt, de argumentumok nélkül."
-#. ^M5.
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2548,7 +2290,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 "Ha csak a könyvtárakat akarja visszaadni, használja az attribútumparamétert. Ugyanez érvényes, ha meg kívánja határozni a kötet (például merevlemez-partíció) nevét."
-#. ),T!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2558,7 +2299,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. EHQ`
#: 03020404.xhp
#, fuzzy
msgctxt ""
@@ -2569,7 +2309,6 @@ msgctxt ""
msgid "' Displays all files and directories"
msgstr "REM Megjeleníti az összes könyvtárat és fájlt"
-#. Vf8!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2579,7 +2318,6 @@ msgctxt ""
msgid "sDir=\"Directories:\""
msgstr "sDir=\"Könyvtárak:\""
-#. 9)..
#: 03020404.xhp
#, fuzzy
msgctxt ""
@@ -2590,7 +2328,6 @@ msgctxt ""
msgid "' Get the directories"
msgstr "REM könyvtárak beolvasása"
-#. )?Iv
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2599,7 +2336,6 @@ msgctxt ""
msgid "\"^\" Operator [Runtime]"
msgstr "\"^\" operátor [futásidejű]"
-#. ;TFR
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2608,7 +2344,6 @@ msgctxt ""
msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>\"^\" operátor (matematikai)</bookmark_value>"
-#. PO`7
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2618,7 +2353,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" operátor [futásidejű]</link>"
-#. 0ml!
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2628,7 +2362,6 @@ msgctxt ""
msgid "Raises a number to a power."
msgstr "Hatványoz egy számot."
-#. 7:7?
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2638,7 +2371,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. x/-8
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2648,7 +2380,6 @@ msgctxt ""
msgid "Result = Expression ^ Exponent"
msgstr "Eredmény = Kifejezés ^ Kitevő"
-#. qr`@
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2658,7 +2389,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. eFhL
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2668,7 +2398,6 @@ msgctxt ""
msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
msgstr "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely a hatványozás eredményét tárolja."
-#. sf1J
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2678,7 +2407,6 @@ msgctxt ""
msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
msgstr "<emph>Kifejezés:</emph> A hatványozandó numerikus kifejezés."
-#. W@nm
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2688,7 +2416,6 @@ msgctxt ""
msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
msgstr "<emph>Kitevő:</emph> A hatványkitevő értéke."
-#. Xl0I
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2698,7 +2425,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. Een*
#: 03070500.xhp
#, fuzzy
msgctxt ""
@@ -2709,7 +2435,6 @@ msgctxt ""
msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
msgstr "Print Exp ( 23 * Log( 12.345 ) ) REM Logaritmus felhasználásával hatványoz"
-#. J2U~
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2718,7 +2443,6 @@ msgctxt ""
msgid "Sgn Function [Runtime]"
msgstr "Sgn függvény [futásidejű]"
-#. g}_;
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2727,7 +2451,6 @@ msgctxt ""
msgid "<bookmark_value>Sgn function</bookmark_value>"
msgstr "<bookmark_value>Sgn függvény</bookmark_value>"
-#. =pP}
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2737,7 +2460,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn függvény [futásidejű]\">Sgn függvény [futásidejű]</link>"
-#. $EB%
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2747,7 +2469,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 "Egy -1 és 1 közötti egész számot ad vissza, amely megmutatja, hogy a függvénynek megadott szám pozitív, nulla, vagy negatív-e."
-#. LDj/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2757,7 +2478,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. !*t*
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2767,7 +2487,6 @@ msgctxt ""
msgid "Sgn (Number)"
msgstr "Sgn (Szám)"
-#. V|mw
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2777,7 +2496,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. y\C:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2787,7 +2505,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. g_S:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2797,7 +2514,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. yUgV
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2807,7 +2523,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
msgstr "<emph>Szám:</emph> Numerikus kifejezés, amely meghatározza a függvény visszatérési értékét."
-#. F^)(
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2817,7 +2532,6 @@ msgctxt ""
msgid "NumExpression"
msgstr "NumExpression"
-#. 53x/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2827,7 +2541,6 @@ msgctxt ""
msgid "Return value"
msgstr "Visszatérési érték"
-#. LVHP
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2837,7 +2550,6 @@ msgctxt ""
msgid "negative"
msgstr "negatív"
-#. Eg9+
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2847,7 +2559,6 @@ msgctxt ""
msgid "Sgn returns -1."
msgstr "Az Sgn -1-et ad vissza."
-#. WS)T
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2857,7 +2568,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. 9J?Y
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2867,7 +2577,6 @@ msgctxt ""
msgid "Sgn returns 0."
msgstr "Sgn 0-t ad vissza."
-#. j[\j
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2877,7 +2586,6 @@ msgctxt ""
msgid "positive"
msgstr "pozitív"
-#. 5G}l
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2887,7 +2595,6 @@ msgctxt ""
msgid "Sgn returns 1."
msgstr "Az Sgn 1-et ad vissza."
-#. m`V3
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2897,7 +2604,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. 9Ej\
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2908,7 +2614,6 @@ msgctxt ""
msgid "Print sgn(-10) ' returns -1"
msgstr "Print sgn(-10) REM -1-et ad vissza"
-#. {4m~
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2919,7 +2624,6 @@ msgctxt ""
msgid "Print sgn(0) ' returns 0"
msgstr "Print sgn(0) REM 0-t ad vissza"
-#. r:k{
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2930,7 +2634,6 @@ msgctxt ""
msgid "Print sgn(10) ' returns 1"
msgstr "Print sgn(10) REM 1-et ad vissza"
-#. IqOm
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2939,7 +2642,6 @@ msgctxt ""
msgid "Further Statements"
msgstr "További utasítások"
-#. u*9X
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2949,7 +2651,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"További utasítások\">További utasítások</link>"
-#. 0tqr
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2959,7 +2660,6 @@ msgctxt ""
msgid "Statements that do not belong to any of the other runtime categories are described here."
msgstr "Az alábbiakban az egyik kategóriába sem tartozó utasítások kerülnek részletezésre."
-#. fShM
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2968,7 +2668,6 @@ msgctxt ""
msgid "LBound Function [Runtime]"
msgstr "LBound függvény [futásidejű]"
-#. $U(5
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2977,7 +2676,6 @@ msgctxt ""
msgid "<bookmark_value>LBound function</bookmark_value>"
msgstr "<bookmark_value>LBound függvény</bookmark_value>"
-#. az{9
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2987,7 +2685,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound függvény [futásidejű]\">LBound függvény [futásidejű]</link>"
-#. vG?)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2997,7 +2694,6 @@ msgctxt ""
msgid "Returns the lower boundary of an array."
msgstr "Visszaadja egy tömb alsó határát."
-#. ,i\]
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3007,7 +2703,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. Ya;V
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3017,7 +2712,6 @@ msgctxt ""
msgid "LBound (ArrayName [, Dimension])"
msgstr "LBound (Tömbnév [, Dimenzió])"
-#. 7D-M
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3027,7 +2721,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. fx9)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3037,7 +2730,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. RTlQ
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3047,7 +2739,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. M$WD
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3057,7 +2748,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 "<emph>Tömbnév:</emph> A tömb neve, amelynek a felső (<emph>Ubound</emph>) vagy alsó (<emph>LBound</emph>) határát kívánja megkapni."
-#. mck}
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3067,7 +2757,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 "<emph>[Dimenzió]:</emph> Integer (egész szám), amely megadja, hogy melyik dimenziót kívánja visszaadni a felső (<emph>Ubound</emph>) vagy alsó (<emph>LBound</emph>) határhoz. Ha az érték nincs megadva, akkor az első dimenziót használja a rendszer."
-#. 9@:o
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3077,7 +2766,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. g@Og
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3088,7 +2776,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr "Print LBound(sVar()) REM 10-et ad vissza"
-#. Ll%f
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3099,7 +2786,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr "Print UBound(sVar()) 20-at ad vissza"
-#. ?P@L
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3110,7 +2796,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr "Print LBound(sVar(),2) REM 5-öt ad vissza"
-#. X%Di
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3121,7 +2806,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr "Print UBound(sVar(),2) REM 70-et ad vissza"
-#. (?7:
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3130,7 +2814,6 @@ msgctxt ""
msgid "UBound Function [Runtime]"
msgstr "UBound függvény [futásidejű]"
-#. S/!!
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3139,7 +2822,6 @@ msgctxt ""
msgid "<bookmark_value>UBound function</bookmark_value>"
msgstr "<bookmark_value>UBound függvény</bookmark_value>"
-#. ,$5Y
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3149,7 +2831,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound függvény [futásidejű]\">UBound függvény [futásidejű]</link>"
-#. P!ad
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3159,7 +2840,6 @@ msgctxt ""
msgid "Returns the upper boundary of an array."
msgstr "Visszaadja egy tömb felső határát."
-#. =5fw
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3169,7 +2849,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. ?%eL
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3179,7 +2858,6 @@ msgctxt ""
msgid "UBound (ArrayName [, Dimension])"
msgstr "UBound (Tömbnév [, Dimenzió])"
-#. O0yV
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3189,7 +2867,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. q$xu
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3199,7 +2876,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. +[T8
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3209,7 +2885,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. 4.O/
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3219,7 +2894,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 "<emph>Tömbnév:</emph> A tömb neve, amelynek meg kívánja határozni a felső (<emph>Ubound</emph>) vagy alsó (<emph>LBound</emph>) határát."
-#. 3l-3
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3229,7 +2903,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 "<emph>[Dimenzió]:</emph> Integer (egész szám), amely megadja, hogy melyik dimenziót kívánja visszaadni a felső (<emph>Ubound</emph>) vagy alsó (<emph>LBound</emph>) határhoz. Ha nincs érték megadva, akkor az első dimenzió határát adja vissza a rendszer."
-#. #CKR
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3239,7 +2912,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. -clZ
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3250,7 +2922,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr "Print LBound(sVar()) REM 10-et ad vissza"
-#. X[Q3
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3261,7 +2932,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr "Print UBound(sVar()) 20-at ad vissza"
-#. k:fN
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3272,7 +2942,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr "Print LBound(sVar(),2) REM 5-öt ad vissza"
-#. ;+)/
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3283,7 +2952,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr "Print UBound(sVar(),2) REM 70-et ad vissza"
-#. 7XzF
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3292,7 +2960,6 @@ msgctxt ""
msgid "Public Statement [Runtime]"
msgstr "Public utasítás [futásidejű]"
-#. PF3h
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3301,7 +2968,6 @@ msgctxt ""
msgid "<bookmark_value>Public statement</bookmark_value>"
msgstr "<bookmark_value>Public utasítás</bookmark_value>"
-#. _2lr
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3311,7 +2977,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public utasítás [futásidejű]\">Public utasítás [futásidejű]</link>"
-#. ]qAA
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3321,7 +2986,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 "Dimenzionál egy modulszinten (azaz nem függvényben vagy szubrutinban) levő változót vagy tömböt, így a változó vagy a tömb minden könyvtárban és modulban elérhető lesz."
-#. Nm8f
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3331,7 +2995,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. ypk$
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3341,7 +3004,6 @@ msgctxt ""
msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
msgstr "Public Változónév[(kezdés To befejezés)] [As Változótípus][, Változónév2[(kezdés To befejezés)] [As Változótípus][,...]]"
-#. UqOq
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3351,7 +3013,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. .l95
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3360,7 +3021,6 @@ msgctxt ""
msgid "CreateUnoValue Function [Runtime]"
msgstr "CreateUnoValue függvény [futásidejű]"
-#. `,o4
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3369,7 +3029,6 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
msgstr "<bookmark_value>CreateUnoValue függvény</bookmark_value>"
-#. qAD*
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3379,7 +3038,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue függvény [futásidejű]\">CreateUnoValue függvény [futásidejű]</link>"
-#. .rjF
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3389,7 +3047,6 @@ msgctxt ""
msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
msgstr "Visszaad egy objektumot, amely egy olyan, szigorúan típusos változóértéket jelenít meg, amely az Uno-típusrendszerre hivatkozik."
-#. cvK%
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3399,7 +3056,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 "Ezt az objektumot a rendszer az Unonak történő átadáskor automatikusan átalakítja a megfelelő típusok egyikére. A típust a teljes Uno-típusnévvel kell megadni."
-#. F$Xg
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3409,7 +3065,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 "A $[officename] API gyakran használja az Any (bármi) típust. Ez más környezetekben a Variant néven ismert típus megfelelője. Az Any (bármi) típus egy tetszőleges Uno-típust tartalmaz, és általános célú Uno-felületekben használható."
-#. -43$
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3419,7 +3074,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. /_:b
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3429,7 +3083,6 @@ msgctxt ""
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) bájtsorozat beolvasása."
-#. cx#[
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3439,7 +3092,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 "Ha a CreateUnoValue nem konvertálható a megadott Uno-típusra, akkor hiba történik. A konverzióhoz a TypeConverter szolgáltatás használható."
-#. YC6#
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3449,7 +3101,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 "Ez a függvény olyan helyzetben használható, ahol az alapértelmezett Basic-Uno típusátalakítás mechanizmus nem megfelelő. Ez akkor történhet, ha általános Any (bármi) alapú felületeket próbál meg elérni, mint például az XPropertySet::setPropertyValue( Név, Érték ) vagy X???Container::insertBy???( ???, Érték) a $[officename] Basic termékből. A Basic futásidejű környezet nem ismeri fel ezeket a típusokat, ha ezek csak a megfelelő szolgáltatásban vannak megadva."
-#. RU/F
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3459,7 +3110,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 "Ilyen helyzetben a $[officename] Basic kiválasztja a konvertálandó Basic-típusnak legjobban megfelelő típust. Ha rossz típust választ ki, akkor hiba történik. A CreateUnoValue() függvény segítségével hozhat létre értéket az ismeretlen Uno-típushoz."
-#. u4hQ
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3469,7 +3119,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 "A függvénnyel átadhat nem Any (bármi) értékeket, de ez nem ajánlatos. Ha a Basic már ismeri a céltípust, akkor a CreateUnoValue() függvény használata csak további konverziós művelethez vezet, amely lelassítja a Basic-végrehajtást."
-#. 9l0^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3478,7 +3127,6 @@ msgctxt ""
msgid "Left Function [Runtime]"
msgstr "Left függvény [futásidejű]"
-#. Vi+b
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3487,7 +3135,6 @@ msgctxt ""
msgid "<bookmark_value>Left function</bookmark_value>"
msgstr "<bookmark_value>Left függvény</bookmark_value>"
-#. n=BZ
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3497,7 +3144,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left függvény [futásidejű]\">Left függvény [futásidejű]</link>"
-#. ba2?
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3507,7 +3153,6 @@ msgctxt ""
msgid "Returns the number of leftmost characters that you specify of a string expression."
msgstr "Visszaadja egy karakterlánc meghatározott számú bal oldali karaktereit."
-#. 3yR:
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3517,7 +3162,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. )?m~
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3527,7 +3171,6 @@ msgctxt ""
msgid "Left (Text As String, n As Long)"
msgstr "Left (Text As String, n As Long)"
-#. 0m-[
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3537,7 +3180,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. .(s,
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3547,7 +3189,6 @@ msgctxt ""
msgid "String"
msgstr "String (karakterlánc)"
-#. 7LzP
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3557,7 +3198,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. GQq^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3567,7 +3207,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
msgstr "<emph>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés, amelynek a bal oldali karaktereit akarja visszakapni."
-#. 5|J)
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3577,7 +3216,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> Numerikus kifejezés, amely megadja a visszakapni kívánt karakterek számát. Ha az <emph>n</emph> = 0, akkor a függvény egy nulla hosszúságú karakterláncot ad vissza. A maximális érték 65535."
-#. (peG
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3587,7 +3225,6 @@ msgctxt ""
msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
msgstr "Az alábbi példa egy ÉÉÉÉ.HH.NN formátumban levő dátumot HH/NN/ÉÉÉÉ formátumúvá alakít."
-#. P(22
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3597,7 +3234,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. ,C]9
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3607,7 +3243,6 @@ msgctxt ""
msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
msgstr "sInput = InputBox(\"Adjon meg egy dátumot „ÉÉÉÉ-HH-NN” nemzetközi formátumban)"
-#. ?4LT
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3616,7 +3251,6 @@ msgctxt ""
msgid "Name Statement [Runtime]"
msgstr "Name utasítás [futásidejű]"
-#. NTgW
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3625,7 +3259,6 @@ msgctxt ""
msgid "<bookmark_value>Name statement</bookmark_value>"
msgstr "<bookmark_value>Name utasítás</bookmark_value>"
-#. )[6r
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3635,7 +3268,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name utasítás [futásidejű]\">Name utasítás [futásidejű]</link>"
-#. [-i[
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3645,7 +3277,6 @@ msgctxt ""
msgid "Renames an existing file or directory."
msgstr "Átnevez egy létező fájlt vagy könyvtárat."
-#. R5Q@
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3655,7 +3286,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. nEQQ
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3665,7 +3295,6 @@ msgctxt ""
msgid "Name OldName As String As NewName As String"
msgstr "Name RégiNév As String As ÚjNév As String"
-#. $\Ul
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3675,7 +3304,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. q]t\
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3685,7 +3313,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 "<emph>RégiNév, ÚjNév:</emph> String (karakterlánc) kifejezés, amely meghatározza a fájlnevet, az elérési utat is beleértve. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-#. CVw=
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3695,7 +3322,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. +:6V
#: 03020412.xhp
#, fuzzy
msgctxt ""
@@ -3706,7 +3332,6 @@ msgctxt ""
msgid "MsgBox \"File already exists\""
msgstr "msgbox \"A fájl már létezik.\""
-#. @4%H
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3715,7 +3340,6 @@ msgctxt ""
msgid "EqualUnoObjects Function [Runtime]"
msgstr "EqualUnoObjects függvény [futásidejű]"
-#. unM\
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3724,7 +3348,6 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr "<bookmark_value>EqualUnoObjects függvény</bookmark_value>"
-#. 3e/Q
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3734,7 +3357,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects függvény [futásidejű]\">EqualUnoObjects függvény [futásidejű]</link>"
-#. =\Xa
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3744,7 +3366,6 @@ msgctxt ""
msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
msgstr "Abban az esetben ad vissza True (igaz) értéket, ha a két megadott Uno-objektum ugyanazt az Uno-példányt testesíti meg."
-#. )Hn^
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3754,7 +3375,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. ;;7P
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3764,7 +3384,6 @@ msgctxt ""
msgid "EqualUnoObjects( oObj1, oObj2 )"
msgstr "EqualUnoObjects( oObj1, oObj2 )"
-#. _g7n
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3774,7 +3393,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. `oJI
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3784,7 +3402,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool (logikai)"
-#. 9vf)
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3794,7 +3411,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. /qDZ
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3804,7 +3420,6 @@ msgctxt ""
msgid "// Copy of objects -> same instance"
msgstr "// Az objektumok másolása -> ugyanaz a példány"
-#. Qi~Q
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3814,7 +3429,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"
@@ -3824,7 +3438,6 @@ msgctxt ""
msgid "oIntro2 = oIntrospection"
msgstr "oIntro2 = oIntrospection"
-#. C9[!
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3834,7 +3447,6 @@ msgctxt ""
msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
-#. (WP_
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3844,7 +3456,6 @@ msgctxt ""
msgid "// Copy of structs as value -> new instance"
msgstr "// Struktúrák másolása értékként -> új példány"
-#. YUL4
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3854,7 +3465,6 @@ msgctxt ""
msgid "Dim Struct1 as new com.sun.star.beans.Property"
msgstr "Dim Struct1 as new com.sun.star.beans.Property"
-#. kRos
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3864,7 +3474,6 @@ msgctxt ""
msgid "Struct2 = Struct1"
msgstr "Struct2 = Struct1"
-#. 8iE_
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3874,7 +3483,6 @@ msgctxt ""
msgid "print EqualUnoObjects( Struct1, Struct2 )"
msgstr "print EqualUnoObjects( Struct1, Struct2 )"
-#. ;A.4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3883,7 +3491,6 @@ msgctxt ""
msgid "FileAttr-Function [Runtime]"
msgstr "FileAttr függvény [futásidejű]"
-#. 2%k9
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3892,7 +3499,6 @@ msgctxt ""
msgid "<bookmark_value>FileAttr function</bookmark_value>"
msgstr "<bookmark_value>FileAttr függvény</bookmark_value>"
-#. ={4K
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3902,7 +3508,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr függvény [futásidejű]\">FileAttr függvény [futásidejű]</link>"
-#. !]o)
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3912,7 +3517,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 "Visszaadja az Open utasítással megnyitott fájl fájlhozzáférési számát vagy a hozzáférési módját. A fájlhozzáférési szám az operációs rendszertől függ (OSH = operációsrendszer-kezelő)."
-#. .@pU
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3922,7 +3526,6 @@ msgctxt ""
msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
msgstr "Ha 32 bites operációs rendszert használ, akkor nem használhatja a FileAttr függvényt a fájl hozzáférési számának meghatározására."
-#. ]=r@
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3932,7 +3535,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Lásd még: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. e_.0
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3942,7 +3544,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. `(9^
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3952,7 +3553,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (Fájlszám As Integer, Attribútum As Integer)"
-#. W|-~
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3962,7 +3562,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. ihPc
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3972,7 +3571,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. JBlI
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3982,7 +3580,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. #ulr
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3992,7 +3589,6 @@ msgctxt ""
msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
msgstr "<emph>Fájlszám:</emph> Az Open utasítással megnyitott fájl száma."
-#. lNet
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4002,7 +3598,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 "<emph>Attribútum:</emph> Integer (egész szám) kifejezés, amely jelzi a fájlinformáció típusát, amelyet vissza kíván adni. Az alábbi értékek lehetségesek:"
-#. (R).
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4012,7 +3607,6 @@ msgctxt ""
msgid "1: The FileAttr-Function indicates the access mode of the file."
msgstr "1: A FileAttr függvény a fájl hozzáférési módját jeleníti meg."
-#. ),R7
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4022,7 +3616,6 @@ msgctxt ""
msgid "2: The FileAttr-Function returns the file access number of the operating system."
msgstr "2: A FileAttr függvény az operációs rendszer fájlhozzáférési számát adja meg."
-#. M/|;
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4032,7 +3625,6 @@ msgctxt ""
msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
msgstr "Ha egy 1 értékű paraméterattribútumot ad meg, akkor a következő visszatérési értékek lehetségesek:"
-#. 0MhK
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4042,7 +3634,6 @@ msgctxt ""
msgid "1 - INPUT (file open for input)"
msgstr "1 - INPUT (a fájlt bemenetként nyitja meg)"
-#. I(+L
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4052,7 +3643,6 @@ msgctxt ""
msgid "2 - OUTPUT (file open for output)"
msgstr "2 - OUTPUT (a fájlt kimenetként nyitja meg)"
-#. n5WO
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4062,7 +3652,6 @@ msgctxt ""
msgid "4 - RANDOM (file open for random access)"
msgstr "4 - RANDOM (a fájlt véletlen elérésre nyitja meg)"
-#. ^ULb
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4072,7 +3661,6 @@ msgctxt ""
msgid "8 - APPEND (file open for appending)"
msgstr "8 - APPEND (a fájlt hozzáfűzésre nyitja meg)"
-#. jr;E
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4082,7 +3670,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (a fájlt bináris módban nyitja meg)."
-#. B$V4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4092,7 +3679,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. mB.]
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4102,7 +3688,6 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ez egy szövegsor\""
-#. Bmbe
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4112,7 +3697,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Hozzáférési mód\""
-#. xk4N
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4122,7 +3706,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Fájlattribútum\""
-#. E0%9
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4131,7 +3714,6 @@ msgctxt ""
msgid "Randomize Statement [Runtime]"
msgstr "Randomize utasítás [futásidejű]"
-#. VfN3
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4140,7 +3722,6 @@ msgctxt ""
msgid "<bookmark_value>Randomize statement</bookmark_value>"
msgstr "<bookmark_value>Randomize utasítás</bookmark_value>"
-#. Q*;%
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4150,7 +3731,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize utasítás [futásidejű]\">Randomize utasítás [futásidejű]</link>"
-#. Tyy6
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4160,7 +3740,6 @@ msgctxt ""
msgid "Initializes the random-number generator."
msgstr "Inicializálja a véletlenszám-generátort."
-#. HF,Y
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4170,7 +3749,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. 6v=g
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4180,7 +3758,6 @@ msgctxt ""
msgid "Randomize [Number]"
msgstr "Randomize [Szám]"
-#. 622S
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4190,7 +3767,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. EP_^
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4200,7 +3776,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
msgstr "<emph>Szám:</emph> Bármilyen egész érték, amely inicializálja a véletlenszám-generátort."
-#. Q.O*
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4210,7 +3785,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. #$Bb
#: 03080301.xhp
#, fuzzy
msgctxt ""
@@ -4221,7 +3795,6 @@ msgctxt ""
msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
msgstr "iVar = Int((10 * Rnd) ) REM 0-tól 9-ig"
-#. (i,2
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4231,7 +3804,6 @@ msgctxt ""
msgid "MsgBox sText,0,\"Spectral Distribution\""
msgstr "MsgBox sText,0,\"Spektrális eloszlás\""
-#. qaF-
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4240,7 +3812,6 @@ msgctxt ""
msgid "DimArray Function [Runtime]"
msgstr "DimArray függvény [futásidejű]"
-#. Qfd|
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4249,7 +3820,6 @@ msgctxt ""
msgid "<bookmark_value>DimArray function</bookmark_value>"
msgstr "<bookmark_value>DimArray függvény</bookmark_value>"
-#. 0FBv
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4259,7 +3829,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray függvény [futásidejű]\">DimArray függvény [futásidejű]</link>"
-#. Shnq
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4269,7 +3838,6 @@ msgctxt ""
msgid "Returns a Variant array."
msgstr "Visszaad egy Variant tömböt."
-#. wL0y
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4279,7 +3847,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. EP#8
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4289,7 +3856,6 @@ msgctxt ""
msgid "DimArray ( Argument list)"
msgstr "DimArray (Argumentumlista)"
-#. .TvI
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4299,7 +3865,6 @@ msgctxt ""
msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
msgstr "Lásd még: <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Tömb\">Tömb</link>"
-#. fP[Q
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4309,7 +3874,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 "Ha nincsenek paraméterek átadva, akkor egy üres tömb kerül létrehozásra (mint a Dim A(), amely ugyanaz, mint a 0 hosszúságú sorozat Unoban). Ha a paraméterek meg vannak adva, akkor egy dimenzió kerül létrehozásra minden paraméterhez."
-#. Fs%H
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4319,7 +3883,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. vpqI
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4329,7 +3892,6 @@ msgctxt ""
msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr "<emph>Argumentumlista:</emph> Olyan lista, amely tetszőleges számú, vesszővel elválasztott argumentumot tartalmaz."
-#. ^^_[
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4339,7 +3901,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. UiOy
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4349,7 +3910,6 @@ msgctxt ""
msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
msgstr "DimArray( 2, 2, 4 ) ugyanaz, mint a DIM a( 2, 2, 4 )"
-#. sRD\
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4358,7 +3918,6 @@ msgctxt ""
msgid "TypeName Function; VarType Function[Runtime]"
msgstr "TypeName függvény; VarType függvény [futásidejű]"
-#. ?G{^
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4367,7 +3926,6 @@ msgctxt ""
msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
msgstr "<bookmark_value>TypeName függvény</bookmark_value><bookmark_value>VarType függvény</bookmark_value>"
-#. SyVt
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4377,7 +3935,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName függvény; VarType függvény [futásidejű]\">TypeName függvény; VarType függvény [futásidejű]</link>"
-#. O.^c
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4387,7 +3944,6 @@ msgctxt ""
msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
msgstr "Visszaad egy változóról információt tartalmazó karakterláncot (TypeName) vagy numerikus értéket (VarType)."
-#. 1(0h
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4397,7 +3953,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. +*hA
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4407,7 +3962,6 @@ msgctxt ""
msgid "TypeName (Variable)VarType (Variable)"
msgstr "TypeName (Változó)VarType (Változó)"
-#. 0Ydn
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4417,7 +3971,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. E6aC
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4427,7 +3980,6 @@ msgctxt ""
msgid "String; Integer"
msgstr "String (karakterlánc); Integer (egész szám)"
-#. aoC_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4437,7 +3989,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. x?rb
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4447,7 +3998,6 @@ msgctxt ""
msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
msgstr "<emph>Változó:</emph> A változó, amelynek a típusát meg kívánja határozni. Az alábbi értékeket használhatja:"
-#. mcd7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4457,7 +4007,6 @@ msgctxt ""
msgid "key word"
msgstr "kulcsszó"
-#. Yx:-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4467,7 +4016,6 @@ msgctxt ""
msgid "VarType"
msgstr "VarType"
-#. i698
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4477,7 +4025,6 @@ msgctxt ""
msgid "Variable type"
msgstr "Változó típusa"
-#. TxUT
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4487,7 +4034,6 @@ msgctxt ""
msgid "Boolean"
msgstr "Boolean"
-#. !,V6
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4497,7 +4043,6 @@ msgctxt ""
msgid "11"
msgstr "11"
-#. G~4(
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4507,7 +4052,6 @@ msgctxt ""
msgid "Boolean variable"
msgstr "Logikai változó"
-#. *O9O
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4517,7 +4061,6 @@ msgctxt ""
msgid "Date"
msgstr "Date"
-#. uLaD
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4527,7 +4070,6 @@ msgctxt ""
msgid "7"
msgstr "7"
-#. 25)e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4537,7 +4079,6 @@ msgctxt ""
msgid "Date variable"
msgstr "Date (Dátum) változó"
-#. CPLZ
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4547,7 +4088,6 @@ msgctxt ""
msgid "Double"
msgstr "Double"
-#. p3EX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4557,7 +4097,6 @@ msgctxt ""
msgid "5"
msgstr "5"
-#. WsVl
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4567,7 +4106,6 @@ msgctxt ""
msgid "Double floating point variable"
msgstr "Dupla pontosságú lebegőpontos változó"
-#. SIw-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4577,7 +4115,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 9rRf
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4587,7 +4124,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. \apP
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4597,7 +4133,6 @@ msgctxt ""
msgid "Integer variable"
msgstr "Egészszám-változó"
-#. L^Wp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4607,7 +4142,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. cft#
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4617,7 +4151,6 @@ msgctxt ""
msgid "3"
msgstr "3"
-#. 4gq7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4627,7 +4160,6 @@ msgctxt ""
msgid "Long integer variable"
msgstr "Hosszú egész változó"
-#. \aBX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4637,7 +4169,6 @@ msgctxt ""
msgid "Object"
msgstr "Object"
-#. 7(6i
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4647,7 +4178,6 @@ msgctxt ""
msgid "9"
msgstr "9"
-#. pz-!
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4657,7 +4187,6 @@ msgctxt ""
msgid "Object variable"
msgstr "Objektumváltozó"
-#. T/r,
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4667,7 +4196,6 @@ msgctxt ""
msgid "Single"
msgstr "Single"
-#. Hp\v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4677,7 +4205,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. )j\w
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4687,7 +4214,6 @@ msgctxt ""
msgid "Single floating-point variable"
msgstr "Egyszeres pontosságú lebegőpontos változó"
-#. /J!v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4697,7 +4223,6 @@ msgctxt ""
msgid "String"
msgstr "String"
-#. nf,l
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4707,7 +4232,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. mnx_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4717,7 +4241,6 @@ msgctxt ""
msgid "String variable"
msgstr "Karakterlánc-változó"
-#. l!]e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4727,7 +4250,6 @@ msgctxt ""
msgid "Variant"
msgstr "Variant"
-#. PcCp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4737,7 +4259,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. a,^Q
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4747,7 +4268,6 @@ msgctxt ""
msgid "Variant variable (can contain all types specified by the definition)"
msgstr "Variant változó (a definíció által megadott összes típust tartalmazhatja)"
-#. xyd9
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4757,7 +4277,6 @@ msgctxt ""
msgid "Empty"
msgstr "Empty"
-#. m(+\
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4767,7 +4286,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. J%N!
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4777,7 +4295,6 @@ msgctxt ""
msgid "Variable is not initialized"
msgstr "A változó nincs inicializálva"
-#. _]}]
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4787,7 +4304,6 @@ msgctxt ""
msgid "Null"
msgstr "Null"
-#. *8BY
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4797,7 +4313,6 @@ msgctxt ""
msgid "1"
msgstr "1"
-#. QRtd
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4807,7 +4322,6 @@ msgctxt ""
msgid "No valid data"
msgstr "Nincs érvényes adat"
-#. FyQa
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4817,7 +4331,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. n/Dl
#: 03103600.xhp
#, fuzzy
msgctxt ""
@@ -4828,7 +4341,6 @@ msgctxt ""
msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
msgstr "TypeName(lVar) & \" \" & VarType(lVar),0,\"A $[officename] Basic néhány típusa\""
-#. OMUH
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4837,7 +4349,6 @@ msgctxt ""
msgid "Hour Function [Runtime]"
msgstr "Hour függvény [futásidejű]"
-#. /\`E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4846,7 +4357,6 @@ msgctxt ""
msgid "<bookmark_value>Hour function</bookmark_value>"
msgstr "<bookmark_value>Hour függvény</bookmark_value>"
-#. e:[[
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4856,7 +4366,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour függvény [futásidejű]\">Hour függvény [futásidejű]</link>"
-#. 1Gq2
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4866,7 +4375,6 @@ msgctxt ""
msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
msgstr "Visszaadja a TimeSerial vagy a TimeValue függvény által meghatározott időérték alapján meghatározott órát."
-#. J*+}
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4876,7 +4384,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Szintaxis:"
-#. k4,E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4886,7 +4393,6 @@ msgctxt ""
msgid "Hour (Number)"
msgstr "Hour (Szám)"
-#. @gPA
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4896,7 +4402,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Visszatérési érték:"
-#. S]R`
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4906,7 +4411,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. llUh
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4916,7 +4420,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paraméterek:"
-#. *JmV
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4926,7 +4429,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
msgstr "<emph>Szám:</emph> Numerikus kifejezés, amely az óraérték visszaadásához használt soros időértéket tartalmazza."
-#. ~VeE
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4936,7 +4438,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 "Ez a függvény a <emph>TimeSerial</emph> ellentéte. A <emph>TimeSerial</emph> vagy a <emph>TimeValue </emph> függvénnyel létrehozott időérték óráit ábrázoló egész értéket ad vissza. Például a"
-#. [sR.
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4946,7 +4447,6 @@ msgctxt ""
msgid "Print Hour(TimeSerial(12,30,41))"
msgstr "Print Hour(TimeSerial(12,30,41))"
-#. q]+)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4956,7 +4456,6 @@ msgctxt ""
msgid "returns the value 12."
msgstr "kifejezés a 12 értéket adja vissza."
-#. TAk)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4966,7 +4465,6 @@ msgctxt ""
msgid "Example:"
msgstr "Példa:"
-#. I8]m
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4976,7 +4474,6 @@ msgctxt ""
msgid "Sub ExampleHour"
msgstr "Sub ExampleHour"
-#. Cpi-
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4985,36746 +4482,3 @@ msgctxt ""
"help.text"
msgid "Print \"The current hour is \" & Hour( Now )"
msgstr "Print \"A jelenlegi idő \" & Hour( Now )"
-
-#. D]#~
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3153145\n"
-"15\n"
-"help.text"
-msgid "End Sub"
-msgstr "End Sub"
-
-#. j%qT
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"tit\n"
-"help.text"
-msgid "End Statement [Runtime]"
-msgstr "End utasítás [futásidejű]"
-
-#. K~rM
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
-"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr "<bookmark_value>End utasítás</bookmark_value>"
-
-#. %@Kc
-#: 03090404.xhp
-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/03090404.xhp\" name=\"End utasítás [futásidejű]\">End utasítás [futásidejű]</link>"
-
-#. tIn\
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Ends a procedure or block."
-msgstr "Befejez egy eljárást vagy egy blokkot."
-
-#. *P3P
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "End, End Function, End If, End Select, End Sub"
-
-#. A/2Q
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. g-$S
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr "Használja az End utasítást a következőként:"
-
-#. j}Im
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
-"7\n"
-"help.text"
-msgid "Statement"
-msgstr "Utasítás"
-
-#. 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 "End: nincs rá szükség, de egy eljáráson belül bárhol megadhatja a program futtatásának megállítása céljából."
-
-#. [`6q
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3145171\n"
-"9\n"
-"help.text"
-msgid "End Function: Ends a <emph>Function</emph> statement."
-msgstr "End függvény: Befejez egy <emph>Function</emph> utasítást."
-
-#. 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 "End If: Az <emph>If...Then...Else</emph> blokk végét jelöli."
-
-#. `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 "End Select A <emph>Select Case</emph> blokk végét jelöli."
-
-#. 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 "End Sub: Befejez egy <emph>Sub</emph> utasítást."
-
-#. k;j]
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. [TtR
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"1 és 5 közötti szám\""
-
-#. ZkTf
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"6 és 8 közötti szám\""
-
-#. jKo:
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Nagyobb mint 8\""
-
-#. fKkS
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"1-10 tartományon kívül eső\""
-
-#. CnCT
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"tit\n"
-"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
-msgstr "HasUnoIntrefaces függvény [futásidejű]"
-
-#. I@SF
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
-"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr "<bookmark_value>HasUnoInterfaces függvény</bookmark_value>"
-
-#. KdX[
-#: 03104400.xhp
-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/03104400.xhp\" name=\"HasUnoInterfaces függvény [futásidejű]\">HasUnoInterfaces függvény [futásidejű]</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 "Leellenőrzi, hogy egy Basic Uno-objektum támogat-e bizonyos Uno-felületeteket."
-
-#. 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 "True (igaz) értéket ad vissza, ha az <emph>összes</emph> felsorolt Uno-felület támogatva van, ellenkező esetben False (hamis) értéket."
-
-#. J1Ui
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "HasUnoInterfaces( oTeszt, Uno-felület-név1 [, Uno-felület-név2, ...])"
-
-#. Ynf?
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. xYhO
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"7\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. @\`M
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ]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 "<emph>oTeszt:</emph> a Basic Uno-objektum, amelyet le szeretne ellenőrizni."
-
-#. _~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 "<emph>Uno-felület-név:</emph> az Uno-felületek neveinek listája."
-
-#. c`dZ
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. -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( oTeszt, \"com.sun.star.beans.XIntrospection\" )"
-
-#. 7(of
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Choose Function [Runtime]"
-msgstr "Choose függvény [futásidejű]"
-
-#. ],sC
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr "<bookmark_value>Choose függvény</bookmark_value>"
-
-#. 5c$.
-#: 03090402.xhp
-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/03090402.xhp\" name=\"Choose függvény [futásidejű]\">Choose függvény [futásidejű]</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 "Visszaad az argumentumok listájából egy kiválasztott értéket."
-
-#. RP,+
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. N@%}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr "Choose (Index, Lehetőség1[, Lehetőség2, ... [,Lehetőség_n]])"
-
-#. 177C
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. }-{$
-#: 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 "<emph>Index:</emph> Egy numerikus kifejezés, amely meghatározza a visszatérési értéket."
-
-#. 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 "<emph>Lehetőség1:</emph> Bármilyen kifejezés, amely az egyik lehetőséget tárolja."
-
-#. 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 "A <emph>Choose</emph> függvény az index alapján visszaad egy értéket a kifejezések listájából. Ha az Index = 1, akkor a függvény a lista első kifejezését adja vissza, ha az index = 2, akkor a második kifejezést és így tovább."
-
-#. 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 "Ha az index értéke kisebb mint 1, vagy nagyobb, mint a kifejezések száma, akkor a függvény a Null értéket adja vissza."
-
-#. 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 "A következő példa a <emph>Choose</emph> függvény segítségével választ ki egy karakterláncot a menü számos karakterlánca közül:"
-
-#. p|(}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "ChooseMenu = Choose(Index, \"Gyorsformázás\", \"Formázás mentése\", \"Rendszerformátum\")"
-
-#. w\%=
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line Input # Statement [Runtime]"
-msgstr "Line Input# utasítás [futásidejű]"
-
-#. 4%%U
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>Line Input statement</bookmark_value>"
-msgstr "<bookmark_value>Line Input utasítás</bookmark_value>"
-
-#. 3F2G
-#: 03020203.xhp
-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/03020203.xhp\" name=\"Line Input# utasítás [futásidejű]\">Line Input# utasítás [futásidejű]</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 "Karakterláncokat olvas be egy szekvenciális fájlból egy változóba."
-
-#. WG9N
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Line Input #FileNumber As Integer, Var As String"
-
-#. NR%i
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám: </emph>A beolvasni kívánt adatot tartalmazó fájl száma. A fájlt előzetesen meg kell nyitni az Open utasítással, az INPUT kulcsszó segítségével."
-
-#. 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 "<emph>változó:</emph> Az eredményt tároló változó neve."
-
-#. 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 "A <emph>Line Input#</emph> utasítással karakterláncokat olvashat egy megnyitott fájlból egy változóba. A string (karakterlánc) változók sorról sorra kerülnek olvasásra az első bekezdésvégjelig (Asc=13) vagy soremelésig (Asc=10). A sorvégjelek nem kerülnek be az eredményül kapott karakterláncba."
-
-#. 5f5D
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3163711\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. z2G,
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147124\n"
-"18\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Ez egy szövegsor\""
-
-#. NqRB
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3153415\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Print #iNumber, \"Ez egy másik szövegsor\""
-
-#. D^+l
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr "Xor operátor [futásidejű]"
-
-#. pN|r
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Xor operátor (logikai)</bookmark_value>"
-
-#. ~:h!
-#: 03060600.xhp
-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/03060600.xhp\" name=\"Xor operátor [futásidejű]\">Xor operátor [futásidejű]</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 "Két kifejezésen Kizáró vagy műveletet hajt végre."
-
-#. dNxb
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. [ZzC
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr "Eredmény = Kifejezés1 Xor Kifejezés2"
-
-#. zk]c
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Eredmény:</emph> Bármilyen numerikus változó, amely az összevonás eredményét tárolja."
-
-#. \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>Kifejezés1, Kifejezés2:</emph> Bármilyen numerikus kifejezések, amelyeket egymással össze szeretne vonni."
-
-#. 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 "Két logikai kifejezés logikai Kizáró vagy művelete esetén csak akkor adja vissza a True értéket, ha a két kifejezés különbözik egymástól (az egyik True, a másik False, vagy fordítva)."
-
-#. 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 "A bitenkénti Kizáró vagy művelet akkor ad vissza bitet, ha a megfelelő bit csak az egyik kifejezésben volt beállítva."
-
-#. ?J_)
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. CZ/:
-#: 03060600.xhp
-#, fuzzy
-msgctxt ""
-"03060600.xhp\n"
-"par_id3156442\n"
-"15\n"
-"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr "vOut = vA > vB Xor vB > vC REM 0-t ad vissza"
-
-#. !AeU
-#: 03060600.xhp
-#, fuzzy
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153191\n"
-"16\n"
-"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr "vOut = vB > vA Xor vB > vC REM -1-et ad vissza"
-
-#. _oB%
-#: 03060600.xhp
-#, fuzzy
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153144\n"
-"17\n"
-"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr "vOut = vA > vB Xor vB > vD REM -1-et ad vissza"
-
-#. (r9;
-#: 03060600.xhp
-#, fuzzy
-msgctxt ""
-"03060600.xhp\n"
-"par_id3154944\n"
-"18\n"
-"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr "vOut = (vB > vD Xor vB > vA) REM 0-t ad vissza"
-
-#. !q+O
-#: 03060600.xhp
-#, fuzzy
-msgctxt ""
-"03060600.xhp\n"
-"par_id3148455\n"
-"19\n"
-"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr "vOut = vB Xor vA REM 2-t ad vissza"
-
-#. [8xy
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Absolute Values"
-msgstr "Abszolút értékek"
-
-#. 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 "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Abszolút értékek\">Abszolút értékek</link>"
-
-#. 8[BE
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
-"help.text"
-msgid "This function returns absolute values."
-msgstr "Ez a függvény abszolút értékeket ad vissza."
-
-#. A\R;
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr "DefLng utasítás [futásidejű]"
-
-#. 3p/6
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
-"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "<bookmark_value>DefLng utasítás</bookmark_value>"
-
-#. DoPV
-#: 03101600.xhp
-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/03101600.xhp\" name=\"DefLng utasítás [futásidejű]\">DefLng utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. f3F7
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. rnc^
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. .M8j
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. z:PX
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Kulcsszó: </emph>Alapértelmezett változótípus"
-
-#. S)|I
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
-"9\n"
-"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "<emph>DefLng:</emph> Long (hosszú egész)"
-
-#. oV$?
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. zOm(
-#: 03101600.xhp
-#, fuzzy
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. $FJP
-#: 03101600.xhp
-#, fuzzy
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145273\n"
-"22\n"
-"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
-msgstr "lCount=123456789 REM az lCount egy implicit long integer (hosszú egész) változó"
-
-#. 7iSf
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Variables"
-msgstr "Változók használata"
-
-#. *_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 "<bookmark_value>változók nevei</bookmark_value><bookmark_value>változók;használat</bookmark_value><bookmark_value>változók típusai</bookmark_value><bookmark_value>változók deklarálása</bookmark_value><bookmark_value>értékek;változóké</bookmark_value><bookmark_value>állandók</bookmark_value><bookmark_value>tömbök;deklarálás</bookmark_value><bookmark_value>definiálás;állandók</bookmark_value>"
-
-#. vWaT
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149346\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Változók használata\">Változók használata</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 "Az alábbi rész a változók alapvető használati módját írja le a $[officename] Basicben."
-
-#. ?r1z
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
-"4\n"
-"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr "Elnevezési szokások a változók azonosítására"
-
-#. ]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 "Egy változónév maximum 255 karakterből állhat. A változó első karakternének A-Z vagy a-z betűnek <emph>kell</emph> lennie. A változónevekben számok is használhatók, de az írásjelek és speciális karakterek nem engedélyezettek az aláhúzásjel („_”) kivételével. A $[officename] Basic változóazonosítók nem különböztetik meg a kis- és nagybetűket. A változónevek tartalmazhatnak szóközöket, de ilyenkor a nevet szögletes zárójelek közé kell tenni."
-
-#. t=1?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
-"6\n"
-"help.text"
-msgid "Examples for variable identifiers:"
-msgstr "Példák a változóazonosítókra:"
-
-#. K9H=
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
-"help.text"
-msgid "Correct"
-msgstr "Helyes"
-
-#. 5mq*
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
-"help.text"
-msgid "Correct"
-msgstr "Helyes"
-
-#. (r(r
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
-"help.text"
-msgid "Correct"
-msgstr "Helyes"
-
-#. 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 "Nem érvényes, a szóközt tartalmazó változónak szögletes zárójelben kell állnia"
-
-#. *!V7
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
-"help.text"
-msgid "Correct"
-msgstr "Helyes"
-
-#. 7OMI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
-"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr "Nem érvényes, a különleges karakterek nem megengedettek"
-
-#. 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 "Nem érvényes, a változó nem kezdődhet számmal"
-
-#. WV@O
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
-"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr "Nem érvényes, az írásjel nem megengedett."
-
-#. Chom
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
-"help.text"
-msgid "Declaring Variables"
-msgstr "Változók deklarálása"
-
-#. 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 "A $[officename] Basicben nem kell explicit módon deklarálni a változókat. Egy változódeklaráció megadható a <emph>Dim</emph> utasítással. Egyszerre több változót is deklarálhat a neveket vesszővel elválasztva. A változótípus definiálásához használhatja a név után a típusdeklarációs jelet vagy a megfelelő kulcsszót."
-
-#. BWL/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
-"help.text"
-msgid "Examples for variable declarations:"
-msgstr "Példák a változók deklarálására (meghatározására):"
-
-#. Gv^n
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Az „a” változót string (karakterlánc) változóként deklarálja."
-
-#. 5b;?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Az „a” változót string (karakterlánc) változóként deklarálja."
-
-#. 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 "Egy változót string (karakterlánc) típusúként, egy másikat pedig integer (egész szám) típusúként deklarál."
-
-#. 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 "A c-t boolean (logikai) változóként deklarálja, amely TRUE (igaz) vagy FALSE (hamis) értékű lehet."
-
-#. 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 "Nagyon fontos változók deklarálásakor, hogy mindig használja a típusdeklarációs karaktert, még akkor is, ha azt használta a deklarációban a kulcsszó helyett. Az alábbi utasítások érvénytelenek:"
-
-#. yxDI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
-"help.text"
-msgid "Declares \"a\" as a String"
-msgstr "Az „a” változót karakterláncként deklarálja."
-
-#. X#o[
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
-"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr "A típusdeklaráció hiányzik: \"a$=\""
-
-#. 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 "Miután egy változót egy bizonyos típusnak deklarált, ugyanilyen név alatt nem adhat meg újra egy másik változót más típussal!"
-
-#. .1oZ
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
-"help.text"
-msgid "Forcing Variable Declarations"
-msgstr "Változódeklarációk kényszerítése"
-
-#. ~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 "A változódeklaráció erőltetésére használja az alábbi parancsot:"
-
-#. 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 "Az <emph>Option Explicit</emph> utasításnak a modul első sorában kell állni, az első SUB utasítás előtt. Általában csak a tömböket kell explicit módon deklarálni. Az összes többi változó a típusdeklarációs karakternek megfelelően lesz deklarálva, vagy - ha az nincs megadva - az alapértelmezett <emph>Single</emph> (egyszeres pontosságú) típusként."
-
-#. J)%h
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
-"help.text"
-msgid "Variable Types"
-msgstr "Változók típusai"
-
-#. v{i?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
-"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr "A $[officename] Basic négy változóosztályt támogat:"
-
-#. ?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 "A <emph>Numerikus</emph> változók számértékeket tartalmazhatnak. Néhány változó nagy vagy kis számokat tartalmaz, mások pedig lebegőpontos vagy törtszámokhoz használhatók."
-
-#. oZ8_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
-"help.text"
-msgid "<emph>String</emph> variables contain character strings."
-msgstr "A <emph>String</emph> (karakterlánc) változók karakterláncokat tartalmaznak."
-
-#. 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 "A <emph>Boolean</emph> (logikai) változók TRUE (igaz) vagy FALSE (hamis) értéket tartalmaznak."
-
-#. @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 "Az <emph>Object</emph> (objektum) változók különböző típusú objektumokat tárolhatnak, mint például a dokumentumokon belüli táblázatok vagy dokumentumok."
-
-#. xdv@
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
-"help.text"
-msgid "Integer Variables"
-msgstr "Integer (egész szám) változók"
-
-#. 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 "Az integer (egész szám) változók értéke -32768-tól 32767-ig terjedhet. Ha egy lebegőpontos értéket rendel egy integer (egész szám) változóhoz, akkor a tizedesjegyek kerekítve lesznek a következő egész számra. Az integer (egész szám) változókat a program gyorsan ki tudja számítani az eljárásokban és megfelelnek a ciklusokban lévő számlálóváltozókhoz. Egy integer (egész szám) változó csak két bájt memóriát foglal el. A „%” a típusdeklarációs karakter."
-
-#. b_wk
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
-"help.text"
-msgid "Long Integer Variables"
-msgstr "Long integer (hosszú egész szám) változók"
-
-#. 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 "A long integer (hosszú egész szám) változók értéke -2147483648-tól 2147483647-ig terjedhet. Ha egy lebegőpontos értéket rendel egy long integer (hosszú egész szám) változóhoz, akkor a tizedesjegyek kerekítve lesznek a következő egész számra. A long integer (hosszú egész szám) változók gyorsan számolhatók az eljárásokban, és megfelelnek a ciklusokban lévő nagy számlálóváltozókhoz. A hosszú egész szám változó négy bájt memóriát foglal el. Az „&” a típusdeklarációs karakter."
-
-#. f60_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
-"help.text"
-msgid "Decimal Variables"
-msgstr "Decimális változók"
-
-#. [?[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 "A decimális változók pozitív, negatív vagy zérus értéket vehetnek fel. A pontosság legfeljebb 29 számjegy."
-
-#. 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 "A decimális számok elé írhat plusz (+) vagy mínusz (-) jeleket (szóközzel vagy anélkül)."
-
-#. 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 "Ha egy decimális szám egy egész változóhoz van hozzárendelve, a %PRODUCTNAME Basic fel- vagy lekerekíti a számot."
-
-#. xW{R
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
-"help.text"
-msgid "Single Variables"
-msgstr "Single (egyszeres pontosságú) változók"
-
-#. 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 "A single (egyszeres pontosságú) változók pozitív és negatív értékeket vehetnek fel 3.402823 x 10E38 és 1.401298 x 10E-45 között. A single (egyszeres pontosságú) változók lebegőpontos változók, ahol a törtrész pontossága csökken az egészrész pontosságának növekedésével. A single (egyszeres pontosságú) változók az átlagos pontosságú matematikai számításokhoz megfelelőek. A számítás több időt igényel, mint integer (egész szám) változókkal, de gyorsabb, mint double (dupla pontosságú) változókkal. A single (egyszeres pontosságú) változó 4 bájt memóriát foglal el. A típusdeklarációs karakter a „!”."
-
-#. Szb]
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
-"help.text"
-msgid "Double Variables"
-msgstr "Double (dupla pontosságú) változók"
-
-#. 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 "A double (dupla pontosságú) változók pozitív és negatív értékeket vehetnek fel 1.79769313486232 x 10E308 és 4.94065645841247 x 10E-324 között. A double (dupla pontosságú) változók lebegőpontos változók, ahol a törtrész pontossága csökken az egészrész pontosságának növekedésével. A double (dupla pontosságú) változók pontos számításokhoz megfelelőek. Ezek a számítások több időt igényelnek, mint a single (egyszeres pontosságú) változókkal végzett számítások. A double (dupla pontosságú) változók 8 bájt memóriát foglalnak el. A típusdeklarációs karakter „#”."
-
-#. ?iH/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
-"help.text"
-msgid "Currency Variables"
-msgstr "Currency (pénznem) változók"
-
-#. %}.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 "A currency (pénznem) változók belsőleg 64 bites számokként (8 bájt) tárolódnak, és rögzített decimális számként jelennek meg 15 egész és 4 tizedes értékkel. Az értékek a -922337203685477.5808 - +922337203685477.5807 tartományba esnek. A currency (pénznem) változók a pénznemértékek nagy pontosságú kiszámításához használhatók. A típusdeklarációs karakter a „@”."
-
-#. YRb5
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
-"help.text"
-msgid "String Variables"
-msgstr "String (karakterlánc) változók"
-
-#. %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 "A string (karakterlánc) változók maximum 65535 karakteres karakterláncokat tárolhatnak. Minden karakter a megfelelő Unicode-érték szerint kerül tárolásra. A string (karakterlánc) változók a programokon belüli szövegszerkesztésre és a nem nyomtatható karakterek ideiglenes tárolására alkalmasak maximum 64 kilobájt méretig. A string (karakterlánc) változók tárolásához szükséges memória a változó karaktereinek számától függ. A típusdeklarációs karakter a „$”."
-
-#. o)nB
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
-"help.text"
-msgid "Boolean Variables"
-msgstr "Boolean (logikai) változók"
-
-#. 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 "A Boolean (logikai) változók csak a két érték egyikét tartalmazzák: TRUE (igaz) vagy FALSE (hamis). A 0-s szám a FALSE (hamis) értéknek, minden más szám a TRUE (igaz) értéknek felel meg."
-
-#. WnT|
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
-"help.text"
-msgid "Date Variables"
-msgstr "Date (dátum) változók"
-
-#. 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 "A date (dátum) változók csak belső formátumban tárolt dátum- és időértékeket tartalmazhatnak. A date (dátum) változóhoz <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> vagy <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> függvény segítségével rendelt értékeket a rendszer automatikusan konvertálja belső formátumra. A date (dátum) változókat a <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> vagy az <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> függvénnyel lehet konvertálni normál számmá. A belső formátum lehetővé teszi dátum/idő-értékek összehasonlítását a két szám közötti különbség kiszámításával. Ezek a változók csak a <emph>Date</emph> kulcsszóval deklarálhatók."
-
-#. SN6t
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
-"help.text"
-msgid "Initial Variable Values"
-msgstr "Változók kezdeti értéke"
-
-#. 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 "Ha a változó deklarálásra került, akkor a rendszer automatikusan „Null” értékre állítja. Vegye figyelembe az alábbi jelölési szokásokat:"
-
-#. }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 "A <emph>numerikus</emph> változókhoz a rendszer automatikusan hozzárendeli a „0” értéket, deklarálásuk után."
-
-#. 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 "A <emph>date</emph> (dátum) változókhoz belsőleg hozzá van rendelve a 0 érték, ami ugyanaz, mintha konvertálná a „0” értéket a <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> vagy az <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> függvénnyel."
-
-#. ?[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 "<emph>String</emph> (karakterlánc) változókhoz a rendszer deklaráláskor üres karakterláncot rendel (\"\")."
-
-#. kz=I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
-"help.text"
-msgid "Arrays"
-msgstr "Tömbök"
-
-#. 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 "A $[officename] Basic egy vagy többdimenziós tömböket ismer, amelyet a megadott változótípus definiál. A tömbök listák és táblázatok szerkesztésére alkalmasak a programokban. A tömb egyedi elemei numerikus indexen keresztül címezhetők."
-
-#. 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 "A tömböket a <emph>Dim</emph> utasítással <emph>kell</emph> deklarálni. A tömb indextartománya többféleképp megadható:"
-
-#. QEV+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
-"help.text"
-msgid "21 elements numbered from 0 to 20"
-msgstr "0-tól 20-ig számozott huszonegy elem"
-
-#. 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 "30 elem (egy 6 * 5 elemű mátrixban)"
-
-#. l:~!
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
-"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr "21 elem, 5-25-ig számozva"
-
-#. =$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 "-15-től 5-ig számozott huszonegy elem (0-val együtt)"
-
-#. 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 "Az indextartomány pozitív és negatív számokat is tartalmazhat."
-
-#. uG-I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
-"help.text"
-msgid "Constants"
-msgstr "Állandók"
-
-#. 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 "Az állandók rögzített értékkel rendelkeznek. A programban csak egyszer vannak megadva, és később nem adhatók meg újra:"
-
-#. V=3Z
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr "DefObj utasítás [futásidejű]"
-
-#. 2}^e
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr "<bookmark_value>DefObj utasítás</bookmark_value>"
-
-#. 0,G/
-#: 03101700.xhp
-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/03101700.xhp\" name=\"DefObj utasítás [futásidejű]\">DefObj utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. 4buU
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 9rmz
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. RO1W
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. -.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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. p=G|
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Kulcsszó: </emph>Alapértelmezett változótípus"
-
-#. F/41
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "<emph>DefObj:</emph> Object (objektum)"
-
-#. iQKO
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. bGmG
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. I.%M
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr "DefBool b"
-
-#. 9ok(
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr "DefDate t"
-
-#. 0U5I
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
-msgstr "DefDbL d"
-
-#. !ajZ
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
-"help.text"
-msgid "DefInt i"
-msgstr "DefInt i"
-
-#. _``1
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
-"help.text"
-msgid "DefLng l"
-msgstr "DefLng l"
-
-#. 5tub
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
-"help.text"
-msgid "DefObj o"
-msgstr "DefObj o"
-
-#. [EE4
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3152886\n"
-"19\n"
-"help.text"
-msgid "DefVar v"
-msgstr "DefVar v"
-
-#. LpU|
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Let Statement [Runtime]"
-msgstr "Let utasítás [futásidejű]"
-
-#. JP!%
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr "<bookmark_value>Let utasítás</bookmark_value>"
-
-#. UW)@
-#: 03103100.xhp
-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/03103100.xhp\" name=\"Let utasítás [futásidejű]\">Let utasítás [futásidejű]</link>"
-
-#. %B.X
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
-"2\n"
-"help.text"
-msgid "Assigns a value to a variable."
-msgstr "Értéket rendel egy változóhoz."
-
-#. *AiS
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. g:~C
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "[Let] VarName=Expression"
-msgstr "[Let] Változónév=Kifejezés"
-
-#. fkYg
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Változónév:</emph> Változó, amelyhez értéket kíván rendelni. Az értéknek és a változónak kompatibilisnek kell lennie."
-
-#. 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 "Ahogy a legtöbb BASIC-dialektusban, a <emph>Let</emph> kulcsszó itt is elhagyható."
-
-#. 3AA_
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. {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 9-et ad vissza"
-
-#. LVS9
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr "Képernyő-I/O-függvények"
-
-#. !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 "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Képernyő-I/O-függvények\">Képernyő-I/O-függvények</link>"
-
-#. 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 "Ez a szakasz a felhasználói bemenetet és kimenetet támogató párbeszédablakokhoz használt futásidejű függvényeket írja le."
-
-#. HJTA
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr "CreateUnoService függvény [futásidejű]"
-
-#. T`0z
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoService függvény</bookmark_value>"
-
-#. zlm6
-#: 03131600.xhp
-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/03131600.xhp\" name=\"CreateUnoService függvény [futásidejű]\">CreateUnoService függvény [futásidejű]</link>"
-
-#. FJsP
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
-"2\n"
-"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr "A ProcessServiceManager segítségével egy Uno-szolgáltatás hozható létre."
-
-#. rpp?
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. $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-szolgáltatás neve )"
-
-#. ,Go$
-#: 03131600.xhp
-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 "Az elérhető szolgáltatások listája a következő helyen található: http://api.libreoffice.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 "Példák:"
-
-#. 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-szolgáltatás</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 "A következő kód egy szolgáltatást használ a fájlmegnyitás-párbeszédablak megnyitásához:"
-
-#. D`n4
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
-"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr "fName = FileOpenDialog (\"Válasszon egy fájlt\")"
-
-#. VE1e
-#: 03131600.xhp
-#, fuzzy
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Print \"file chosen: \"+fName"
-msgstr "print \"választott fájl: \"+fName"
-
-#. {);3
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Month Function [Runtime]"
-msgstr "Month függvény [futásidejű]"
-
-#. K:Be
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr "<bookmark_value>Month függvény</bookmark_value>"
-
-#. /\J|
-#: 03030104.xhp
-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/03030104.xhp\" name=\"Month függvény [futásidejű]\">Month függvény [futásidejű]</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 "A DateSerial vagy a DateValue függvénnyel létrehozott soros dátumérték alapján meghatározott év egy hónapját adja vissza."
-
-#. j{O,
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. GAF\
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "Month (Number)"
-msgstr "Month (Szám)"
-
-#. 9s-q
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. p9KR
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. R!ih
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Numerikus kifejezés, amely az év egy hónapját meghatározó soros dátumértéket tartalmazza."
-
-#. 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 "Ez a függvény a <emph>DateSerial </emph> ellentéte. Visszaadja a <emph>DateSerial</emph> vagy <emph>DateValue</emph> függvény által előállított soros dátumnak megfelelő év hónapját. Például a"
-
-#. ;aol
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
-"11\n"
-"help.text"
-msgid "returns the value 12."
-msgstr "kifejezés a 12 értéket adja vissza."
-
-#. WX|`
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 8fN[
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-msgstr "MsgBox \"\" & Month(Now) ,64,\"Az aktuális hónap\""
-
-#. v9ET
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr "GoSub...Return utasítás [futásidejű]"
-
-#. m`+2
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
-msgstr "<bookmark_value>GoSub...Return utasítás</bookmark_value>"
-
-#. IL\]
-#: 03090301.xhp
-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/03090301.xhp\" name=\"GoSub...Return utasítás [futásidejű]\">GoSub...Return utasítás [futásidejű]</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 "Egy szubrutinból vagy függvényből meghív egy szubrutint, amelyet egy címke azonosít. A címkét követő utasítások a következő Return utasításig kerülnek végrehajtásra. Ezután a program a <emph>GoSub</emph> utasítást követő utasítással folytatódik."
-
-#. g=V;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. r,Mz
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr "lásd Paraméterek"
-
-#. N)@v
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. NZi;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3148664\n"
-"6\n"
-"help.text"
-msgid "Sub/Function"
-msgstr "Sub/Function"
-
-#. h^c@
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150400\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. s5{;
-#: 03090301.xhp
-#, fuzzy
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
-"8\n"
-"help.text"
-msgid "Label"
-msgstr "Címke"
-
-#. $\cJ
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
-"9\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. l+Ce
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
-"10\n"
-"help.text"
-msgid "GoSub Label"
-msgstr "GoSub Címke"
-
-#. +MY2
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3153969\n"
-"11\n"
-"help.text"
-msgid "Exit Sub/Function"
-msgstr "Exit Sub/Function"
-
-#. /Elh
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
-"12\n"
-"help.text"
-msgid "Label:"
-msgstr "Címke:"
-
-#. !:4(
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. [5lC
-#: 03090301.xhp
-#, fuzzy
-msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
-"14\n"
-"help.text"
-msgid "Return"
-msgstr "Return"
-
-#. Q?*l
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154321\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/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 "A <emph>GoSub</emph> utasítás egy szubrutinon vagy függvényen belül meghívja a címkével jelölt lokális szubrutint. A címke nevének kettőspontra kell végződnie (\":\")."
-
-#. 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 "Ha a program futása olyan Return utasításhoz ér, amelyet nem előzött meg <emph>GoSub</emph> utasítás, akkor a $[officename] Basic hibaüzenetet ad vissza. Az <emph>Exit Sub</emph> vagy <emph>Exit Function</emph> segítségével biztosítsuk, hogy a program elhagyja a szubrutint vagy függvényt a következő Return utasítás elérése előtt."
-
-#. $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 "Az alábbi példa bemutatja a <emph>GoSub</emph> és <emph>Return</emph> használatát. A programszakasz kétszeri végrehajtásával a program kiszámítja a felhasználó által beírt két szám négyzetgyökét."
-
-#. @q^9
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. rvNV
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3146970\n"
-"25\n"
-"help.text"
-msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-msgstr "iInputa = Int(InputBox$ \"Írja be az első számot: \",\"Számbevitel\"))"
-
-#. +/PP
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150329\n"
-"26\n"
-"help.text"
-msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
-msgstr "iInputb = Int(InputBox$ \"Írja be a második számot: \",\"Számbevitel\"))"
-
-#. 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 "Print iInputa;\" négyzetgyöke \";iInputc"
-
-#. DVmo
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3147340\n"
-"32\n"
-"help.text"
-msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
-msgstr "Print iInputb;\" négyzetgyöke \";iInputc"
-
-#. R#O|
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"tit\n"
-"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr "Stop utasítás [futásidejű]"
-
-#. oQ=*
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr "<bookmark_value>Stop utasítás</bookmark_value>"
-
-#. !]1g
-#: 03090408.xhp
-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/03090408.xhp\" name=\"Stop utasítás [futásidejű]\">Stop utasítás [futásidejű]</link>"
-
-#. AKbS
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
-"2\n"
-"help.text"
-msgid "Stops the execution of the Basic program."
-msgstr "Leállítja a Basic-program futtatását."
-
-#. KL+x
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. JqKE
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Stop"
-msgstr "Stop"
-
-#. R`wE
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. +R]U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"tit\n"
-"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "RGB függvény [futásidejű]"
-
-#. Kr,C
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3150792\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB függvény [futásidejű]\">RGB függvény [futásidejű]</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 "Visszaad egy vörös, zöld és kék összetevőből álló <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"hosszú egész színértéket\">hosszú egész színértéket</link>."
-
-#. 3MXR
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. `dC1
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
-"4\n"
-"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr "RGB (Vörös, Zöld, Kék)"
-
-#. K:?4
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. cpy,
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3159153\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. {#Nu
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "<emph>Vörös</emph>: Bármilyen integer (egész szám) kifejezés, amely az összetett szín vörös összetevőjét (0-255) jelöli."
-
-#. 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 "<emph>Zöld</emph>: Bármilyen integer (egész szám) kifejezés, amely az összetett szín zöld összetevőjét (0-255) jelöli."
-
-#. .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 "<emph>Kék</emph>: Bármilyen integer (egész szám) kifejezés, amely az összetett szín kék összetevőjét (0-255) jelöli."
-
-#. 3P{K
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. vcX,
-#: 03010305.xhp
-#, fuzzy
-msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"A(z)\" & lVar & \" szín a következőkből áll:\" & Chr(13) &_"
-
-#. k~*r
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"vörös = \" & red(lVar) & Chr(13)&_"
-
-#. UW.U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"zöld = \" & green(lVar) & Chr(13)&_"
-
-#. M3|T
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"kék = \" & blue(lVar) & Chr(13) , 64,\"színek\""
-
-#. KzPt
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr "IsNull függvény [futásidejű]"
-
-#. 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>IsNull függvény</bookmark_value><bookmark_value>Null érték</bookmark_value>"
-
-#. -89b
-#: 03102600.xhp
-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/03102600.xhp\" name=\"IsNull függvény [futásidejű]\">IsNull függvény [futásidejű]</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 "Leellenőrzi, hogy egy változó a speciális Null értéket tartalmazza-e, amely azt jelöli, hogy a változó nem tartalmaz adatot."
-
-#. nC;n
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ?W.r
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "IsNull (Var)"
-msgstr "IsNull (Változó)"
-
-#. =_kG
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. Z|G*
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. @j8$
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Változó:</emph> A tesztelni kívánt változó. A függvény True (igaz) értéket ad vissza, ha a változó Null értéket tartalmaz, és False (hamis) értéket, ha nem a Null értéket tartalmazza."
-
-#. =\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 "<emph>Null</emph> - Ez az érték használatos az érvényes tartalom nélküli variant adataltípusra."
-
-#. (#+S
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. %fYR
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr "\"+\" operátor [futásidejű]"
-
-#. 8E|G
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
-"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>\"+\" operátor (matematikai)</bookmark_value>"
-
-#. 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 "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" operátor [futásidejű]</link>"
-
-#. ]X.;
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Adds or combines two expressions."
-msgstr "Összead vagy kombinál két kifejezést."
-
-#. ]SUO
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. v*Xr
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr "Eredmény = Kifejezés1 + Kifejezés2"
-
-#. AM~E
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely az összeadás eredményét tárolja."
-
-#. 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>Kifejezés1, Kifejezés2:</emph> Az összeadni vagy összevonni kívánt kifejezések."
-
-#. Di)B
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 0IUo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trim Function [Runtime]"
-msgstr "Trim függvény [futásidejű]"
-
-#. wg;!
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "<bookmark_value>Trim függvény</bookmark_value>"
-
-#. Q~P7
-#: 03120311.xhp
-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/03120311.xhp\" name=\"Trim függvény [futásidejű]\">Trim függvény [futásidejű]</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 "Egy karakterlánc elején, valamint végén levő összes szóközt eltávolítja."
-
-#. wO,N
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. XgN9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Trim( Text As String )"
-msgstr "Trim( Szöveg As String )"
-
-#. |/U9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. Y\lo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. $K(E
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. D:!6
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés."
-
-#. ^`=5
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. pdie
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr "Futásidejű függvények"
-
-#. 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 "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Futásidejű függvények\">Futásidejű függvények</link></variable>"
-
-#. [=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 "A szakasz leírja a <item type=\"productname\">%PRODUCTNAME</item> Basic futásidejű függvényeit."
-
-#. ^o2k
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Open Statement[Runtime]"
-msgstr "Open utasítás [Futásidő]"
-
-#. oh8p
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "<bookmark_value>Open utasítás</bookmark_value>"
-
-#. C;y%
-#: 03020103.xhp
-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/03020103.xhp\" name=\"Open utasítás [futásidejű]\">Open utasítás [futásidejű]</link>"
-
-#. =P.0
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
-"2\n"
-"help.text"
-msgid "Opens a data channel."
-msgstr "Megnyit egy adatcsatornát."
-
-#. azng
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. $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 "Open Fájlnév As String [For Mode] [Access IO-mód] [Védelem] As [#]Fájlszám As Integer [Len = AdathalmazHossza]"
-
-#. pi/N
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. #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 "<emph>Fájlnév: </emph>A megnyitni kívánt fájl neve és elérési útja. Ha egy nem létező fájlt próbál meg olvasni (Access = Read), akkor egy hibaüzenet jelenik meg. Ha egy nem létező fájlt próbál meg írni (Access = Write), akkor egy új fájl jön létre."
-
-#. !:(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 "<emph>Mód:</emph> A fájlmódot megadó kulcsszó. Érvényes értékek: Append (hozzáfűzés egy szekvenciális fájlhoz), Binary (bináris, az adat bájtonként érhető el a Get és Put segítségével), Input (megnyit egy adatcsatornát olvasásra), Output (megnyit egy adatcsatornát írásra), és Random (relatív fájlok szerkesztése)."
-
-#. $@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 "<emph>IO-mód:</emph> A hozzáférés típusát megadó kulcsszó. Érvényes értékek: Read (csak olvasható), Write (csak írható), Read Write (mindkettő)."
-
-#. \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 "<emph>Védelem:</emph> A fájl megnyitás utáni biztonsági állapotát meghatározó kulcsszó. Érvényes értékek: Shared (a fájl megosztott, megnyithatja másik alkalmazás), Lock Read (a fájl olvasásvédett), Lock Write (a fájl írásvédett), és Lock Read Write (megakadályozza a fájlhozzáférést)."
-
-#. 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 "<emph>Fájlszám:</emph> 0 és 511 közötti egész kifejezés, amely a szabad adatcsatorna számát jelzi. Ezután a fájl eléréséhez az adatcsatornán keresztül átadhatja a parancsokat. A fájlszámot a FreeFile függvénynek kell meghatároznia közvetlenül az Open utasítás előtt."
-
-#. 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 "<emph>AdathalmazHossza:</emph> A közvetlen elérésű fájlok esetén a rekord hossza."
-
-#. .~/,
-#: 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 "Csak az Open utasítással megnyitott fájl tartalmát módosíthatja. Ha egy már megnyitott fájlt próbál megnyitni, akkor egy hibaüzenet jelenik meg."
-
-#. ~eP5
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ,gmO
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Ez egy szövegsor\""
-
-#. \mCg
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Print #iNumber, \"Ez egy másik szövegsor\""
-
-#. @i*-
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr "\"*\" operátor [futásidejű]"
-
-#. 3Kg2
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
-"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>\"*\" operátor (matematikai)</bookmark_value>"
-
-#. 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 "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" operátor [futásidejű]</link>"
-
-#. X^t!
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
-"help.text"
-msgid "Multiplies two values."
-msgstr "Összeszoroz két értéket."
-
-#. D%GK
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. =?sL
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr "Eredmény = Kifejezés1 * Kifejezés2"
-
-#. g(U0
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ?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 "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely a szorzás eredményét tárolja."
-
-#. *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>Kifejezés1, Kifejezés2:</emph> Az összeszorozni kívánt kifejezések."
-
-#. O?|q
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. vJHv
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "File I/O Functions"
-msgstr "Fájl-I/O-függvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"Fájl-I/O-függvények\">Fájl-I/O-függvények</link>"
-
-#. ).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 "A fájl-I/O-függvények segítségével felhasználó által definiált (adat-) fájlokat hozhat létre és kezelhet."
-
-#. 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 "A függvények segítségével támogathatja a „relatív” fájlok létrehozását, így a rekordszámuk megadásával menthet és betölthet adott rekordokat. A fájl-I/O-függvények segítenek a fájlkezelésben azáltal, hogy információkat biztosítanak, mint például a fájlméret, aktuális elérési út beállításait, valamint a fájl vagy könyvtár létrehozási ideje."
-
-#. Cak%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CStr Function [Runtime]"
-msgstr "CStr függvény [futásidejű]"
-
-#. k6hG
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr "<bookmark_value>CStr függvény</bookmark_value>"
-
-#. `*bT
-#: 03101000.xhp
-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/03101000.xhp\" name=\"CStr függvény [futásidejű]\">CStr függvény [futásidejű]</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 "Bármilyen numerikus kifejezést string (karakterlánc) kifejezéssé alakít."
-
-#. \p[]
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. t:38
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "CStr (Expression)"
-msgstr "CStr (Kifejezés)"
-
-#. |HL{
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 9Wke
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. )*p5
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Kifejezés:</emph> Bármilyen érvényes string (karakterlánc) vagy numerikus kifejezés, amelyet át szeretne alakítani."
-
-#. U#^w
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
-"help.text"
-msgid "Expression Types and Conversion Returns"
-msgstr "Kifejezéstípusok és átalakítási eredmények"
-
-#. %r-Q
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
-"help.text"
-msgid "Boolean :"
-msgstr "Boolean (logikai) :"
-
-#. 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 "Karakterlánc, amely <emph>True</emph> (igaz) vagy <emph>False</emph> (hamis) értéket ad kiértékeléskor."
-
-#. [gqK
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
-"help.text"
-msgid "Date :"
-msgstr "Date (dátum):"
-
-#. 7nG%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
-"help.text"
-msgid "String that contains the date and time."
-msgstr "Karakterlánc, amely a dátumot és az időt tartalmazza."
-
-#. rVu*
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
-"help.text"
-msgid "Null :"
-msgstr "Null :"
-
-#. l3xa
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
-"help.text"
-msgid "Run-time error."
-msgstr "Futásidejű hiba."
-
-#. ;_!0
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
-"help.text"
-msgid "Empty :"
-msgstr "Üres :"
-
-#. cW8`
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
-"help.text"
-msgid "String without any characters."
-msgstr "Karakterlánc karakterek nélkül."
-
-#. R}9k
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
-"help.text"
-msgid "Any :"
-msgstr "Bármi :"
-
-#. kER;
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
-"help.text"
-msgid "Corresponding number as string."
-msgstr "A megfelelő szám karakterláncként."
-
-#. 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 "Egy lebegőpontos szám végén levő nullák a visszaadott karakterláncban nem fognak szerepelni."
-
-#. 3G`K
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Kbb9
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Close Statement [Runtime]"
-msgstr "Close utasítás [futásidejű]"
-
-#. ^%-1
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
-msgstr "<bookmark_value>Close utasítás</bookmark_value>"
-
-#. R%Pj
-#: 03020101.xhp
-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/03020101.xhp\" name=\"Close utasítás [futásidejű]\">Close utasítás [futásidejű]</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 "Bezár egy Open utasítással megnyitott fájlt."
-
-#. AJyg
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. (ga}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
-"4\n"
-"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr "Close Fájlszám As Integer[, Fájlszám_2 As Integer[,...]]"
-
-#. ]]v(
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. %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 "<emph>Fájlszám:</emph> Integer (egész szám) kifejezés, amely megadja az <emph>Open</emph> utasítással megnyitott adatcsatornák számát."
-
-#. ;OB}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. HWS^
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"16\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"A szöveg első sora\""
-
-#. S^If
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Másik szövegsor\""
-
-#. J-xp
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr "IsObject függvény [futásidejű]"
-
-#. $_sD
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr "<bookmark_value>IsObject függvény</bookmark_value>"
-
-#. 4DMM
-#: 03102800.xhp
-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/03102800.xhp\" name=\"IsObject függvény [futásidejű]\">IsObject függvény [futásidejű]</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 "Teszteli, hogy az object (objektum) változó egy OLE-objektum-e. A függvény True (igaz) értéket ad vissza, ha a változó OLE-objektum, ellenkező esetben False (hamis) értéket."
-
-#. M}Hd
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. Ug:7
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr "IsObject (Objektumváltozó)"
-
-#. U@a\
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. VXS)
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. pE@5
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Objektumváltozó:</emph> A tesztelni kívánt változó. Ha az object (objektum) változó OLE-objektumot tartalmaz, akkor a függvény True (igaz) értéket ad vissza."
-
-#. 17eZ
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr "GetDefaultContext függvény [Futásidő]"
-
-#. 3DR#
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
-"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
-msgstr "<bookmark_value>GetDefaultContext függvény</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 "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext függvény [Futásidő]</link>"
-
-#. 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 "A process service factory alapértelmezett kontextusával tér vissza, ha létezik, egyébként egy nullreferenciát ad vissza."
-
-#. PO,p
-#: 03132500.xhp
-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 "Ez a futásidejű függvény a használandó alapértelmezett komponenskontextussal tér vissza, amikor az XmultiServiceFactory-n keresztül példányosít szolgáltatásokat. További információért lásd a <item type=\"literal\">Professional UNO</item> fejezetet a <item type=\"literal\">Developer's Guide</item> kézikönyvben az <link href=\"http://api.libreoffice.org\">api.openoffice.org</link> webhelyen."
-
-#. r/)l
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "Atn függvény [futásidejű]"
-
-#. q\jk
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr "<bookmark_value>Atn függvény</bookmark_value>"
-
-#. +GH6
-#: 03080101.xhp
-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/03080101.xhp\" name=\"Atn függvény [futásidejű]\">Atn függvény [futásidejű]</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 "Trigonometriai függvény, amely visszaadja egy numerikus kifejezés árkusztangensét. A visszatérési érték a -Pi/2 - +Pi/2 tartományba esik."
-
-#. 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 "Az árkusztangens a tangens függvény inverze. Az Atn függvény az „alfa” szöget adja vissza radiánban a szög tangensének felhasználásával. A függvény úgy is vissza tudja adni az „alfa” szöget, hogy egy derékszögű háromszögben összehasonlítja a szöggel szemközt lévő befogó hosszát a szög mellett lévő befogó hosszával."
-
-#. 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 "Atn(szöggel szembeni befogó/szög melletti befogó)= Alfa"
-
-#. 9R-)
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. .rkX
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Atn (Number)"
-msgstr "Atn (Szám)"
-
-#. L14@
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. c0f4
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. +c4n
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ]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 "<emph>Szám:</emph> Numerikus kifejezés, amely a derékszögű háromszög két oldalának arányát ábrázolja. Az Atn függvény a megfelelő szöget adja vissza radiánban (árkusztangens)."
-
-#. 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 "A radiánértékek szögértékre való alakításához szorozza meg a radiánértéket 180/pi-vel."
-
-#. _eOA
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "fok=(radián*180)/pi"
-
-#. kVMZ
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3125864\n"
-"13\n"
-"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr "radián=(fok*pi)/180"
-
-#. 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 "A pi a rögzített körállandó 3.14159-es kerekített értékkel."
-
-#. =vZ*
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 1e5A
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
-"help.text"
-msgid "' The following example calculates for a right-angled triangle"
-msgstr "REM A következő példa derékszögű háromszög esetén kiszámolja a"
-
-#. 3K2Z
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
-"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
-msgstr "REM az alfa szöget az alfa szög tangenséből:"
-
-#. ZNfv
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
-msgstr "REM kerekített Pi = 3.14259 egy előre meghatározott konstans"
-
-#. 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 "d1 = InputBox$ (\"Adja meg a szög mellett lévő befogó hosszát: \",\"Melletti\")"
-
-#. 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 "d2 = InputBox$ (\"Adja meg a szöggel szemközt lévő befogó hosszát: \",\"Szemközti\")"
-
-#. 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 "Print \"Az alfa szög\"; (atn (d2/d1) * 180 / Pi); \" fok\""
-
-#. Y]g,
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr "Rnd függvény [futásidejű]"
-
-#. 9h1a
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
-"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr "<bookmark_value>Rnd függvény</bookmark_value>"
-
-#. d_O2
-#: 03080302.xhp
-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/03080302.xhp\" name=\"Rnd függvény [futásidejű]\">Rnd függvény [futásidejű]</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 "Egy 0 és 1 közötti véletlen számot ad eredményül."
-
-#. =$?*
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. J]-D
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Rnd [(Expression)]"
-msgstr "Rnd [(Kifejezés)]"
-
-#. b%Be
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. J.KZ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. 8N^h
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. iT;#
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr "<emph>Kifejezés: </emph>Bármilyen numerikus kifejezés."
-
-#. 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 "<emph>Nincs megadva:</emph> Visszaadja a sorozatban levő következő véletlen számot."
-
-#. 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 "Az <emph>Rnd</emph> függvény csak 0 és 1 közötti értéket ad vissza. Adott tartományba eső véletlen szám előállításához használja az alábbi példában levő képletet:"
-
-#. ldKx
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ]a?w
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"1 és 5 közötti szám\""
-
-#. #=!1
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"6 és 8 közötti szám\""
-
-#. FOsi
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Nagyobb mint 8\""
-
-#. U2GQ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"1-10 tartományon kívül eső\""
-
-#. [n%G
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Str Function [Runtime]"
-msgstr "Str függvény [futásidejű]"
-
-#. IOtT
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
-"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
-msgstr "<bookmark_value>Str függvény</bookmark_value>"
-
-#. nW)+
-#: 03120103.xhp
-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/03120103.xhp\" name=\"Str függvény [futásidejű]\">Str függvény [futásidejű]</link>"
-
-#. LBCo
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
-"2\n"
-"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr "Átalakít egy numerikus kifejezést string (karakterlánc) kifejezéssé."
-
-#. ;N(d
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ZfkW
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "Str (Expression)"
-msgstr "Str (Kifejezés)"
-
-#. {3YZ
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. #/[J
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. !]6a
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ?qvH
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "<emph>Kifejezés: </emph>Bármilyen numerikus kifejezés."
-
-#. 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 "Az <emph>Str</emph> függvény string (karakterlánc) értékké alakít egy numerikus változót vagy egy számítás eredményét. A negatív számokat egy mínuszjel előz meg. A pozitív számokat szóköz előzi meg (a pluszjel helyett)."
-
-#. q,*)
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. [*^m
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "System Date and Time"
-msgstr "Rendszerdátum és -idő"
-
-#. 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 "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"Rendszerdátum és -idő\">Rendszerdátum és -idő</link>"
-
-#. 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 "Az alábbi függvények és utasítások beállítják, vagy visszaadják a rendszerdátumot és rendszeridőt."
-
-#. ,NB(
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loops"
-msgstr "Ciklusok"
-
-#. .^ji
-#: 03090200.xhp
-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/03090200.xhp\" name=\"Ciklusok\">Ciklusok</link>"
-
-#. @h#c
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
-"2\n"
-"help.text"
-msgid "The following statements execute loops."
-msgstr "Az alábbi utasítások ciklusokat futtatnak."
-
-#. *sgM
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mathematical Operators"
-msgstr "Matematikai operátorok"
-
-#. 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 "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Matematikai operátorok\">Matematikai operátorok</link>"
-
-#. .!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 "A $[officename] Basic a következő matematikai operátorokat támogatja."
-
-#. 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 "Ez a fejezet rövid áttekintést ad a programon belüli számításokban használt aritmetikai operátorokról."
-
-#. :/W3
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Do...Loop Statement [Runtime]"
-msgstr "Do...Loop utasítás [futásidejű]"
-
-#. 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 "<bookmark_value>Do...Loop utasítás</bookmark_value><bookmark_value>While; Do ciklus</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>ciklusok</bookmark_value>"
-
-#. @i,T
-#: 03090201.xhp
-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/03090201.xhp\" name=\"Do...Loop utasítás [futásidejű]\">Do...Loop utasítás [futásidejű]</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 "Addig ismételgeti a Do és a Loop utasítások között elhelyezkedő utasításokat, ameddig a feltétel True (igaz) értékű, vagy True (igaz) értékűvé nem válik."
-
-#. 9@2U
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. rZ;L
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
-"4\n"
-"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr "Do [{While | Until} feltétel = True]"
-
-#. :`Me
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. ]ZSs
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
-"6\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
-
-#. rpFU
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. CLjv
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
-"8\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
-
-#. AcGd
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154749\n"
-"9\n"
-"help.text"
-msgid "or"
-msgstr "vagy"
-
-#. #x=?
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150503\n"
-"10\n"
-"help.text"
-msgid "Do"
-msgstr "Do"
-
-#. lvU~
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149762\n"
-"11\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. (%+z
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150984\n"
-"12\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
-
-#. b6i`
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3143228\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. +mO!
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
-"14\n"
-"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr "Loop [{While | Until} feltétel = True]"
-
-#. (3f9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
-"help.text"
-msgid "Parameters/Elements"
-msgstr "Paraméterek és elemek"
-
-#. 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 "<emph>Feltétel:</emph> Egy összehasonlítás, numerikus vagy string (karakterlánc) kifejezés, amelynek kiértékelésekor az eredmény True (igaz) vagy False (hamis) lehet."
-
-#. 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 "<emph>Utasításblokk:</emph> Utasítások, amelyeket addig szeretné ismételgetni, ameddig a feltétel True (igaz) értékű."
-
-#. 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 "A <emph>Do...Loop</emph> utasítás addig hajtja végre a ciklust, amíg egy adott feltétel igaz, vagy igaz nem lesz. A ciklusból kilépés feltételét a <emph>Do</emph> vagy <emph>Loop</emph> utasítás után kell beríni. Az alábbi példák érvényes kombinációk:"
-
-#. IPB[
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. hX*9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
-"20\n"
-"help.text"
-msgid "Do While condition = True"
-msgstr "Do While feltétel = True"
-
-#. XMK%
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr "...utasításblokk"
-
-#. @0)A
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
-"22\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
-
-#. 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 "A Do While és a Loop utasítás közti utasításblokk addig ismétlődik, ameddig a feltétel igaz (True)."
-
-#. zT*4
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr "Do Until feltétel = True"
-
-#. lq$s
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
-"26\n"
-"help.text"
-msgid "...statement block"
-msgstr "...utasításblokk"
-
-#. C_f7
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
-
-#. 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 "A Do Until és a Loop utasítás közti utasításblokk addig ismétlődik, ameddig a feltétel nem teljesül (False)."
-
-#. 6aAC
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153952\n"
-"30\n"
-"help.text"
-msgid "Do"
-msgstr "Do"
-
-#. k=.h
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
-"help.text"
-msgid "...statement block"
-msgstr "...utasításblokk"
-
-#. /}7q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
-"help.text"
-msgid "Loop While condition = True"
-msgstr "Loop While feltétel = True"
-
-#. 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 "A Do és a Loop utasítás közti utasításblokk addig ismétlődik, ameddig a feltétel teljesül."
-
-#. J26Q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"35\n"
-"help.text"
-msgid "Do"
-msgstr "Do"
-
-#. (JAy
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"36\n"
-"help.text"
-msgid "...statement block"
-msgstr "...utasításblokk"
-
-#. GB=b
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
-"help.text"
-msgid "Loop Until condition = True"
-msgstr "Loop Until feltétel = True"
-
-#. ?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 "A Do és a Loop utasítás közti utasításblokk addig ismétlődik, ameddig a feltétel igaz."
-
-#. 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 "Az <emph>Exit Do</emph> utasítás segítségével a hurok feltétel nélkül befejeződik. Ezt az utasítást a <emph>Do</emph>...<emph>Loop</emph> utasításban bárhol használhatja. Egy kilépési feltételt is megadhat az <emph>If...Then</emph> struktúra segítségével az alábbiak szerint:"
-
-#. p3gw
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"42\n"
-"help.text"
-msgid "Do..."
-msgstr "Do..."
-
-#. 3e]@
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149298\n"
-"43\n"
-"help.text"
-msgid "statements"
-msgstr "utasítások"
-
-#. Qb]G
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
-"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr "If feltétel = True Then Exit Do"
-
-#. XMQA
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
-"help.text"
-msgid "statements"
-msgstr "utasítások"
-
-#. 5coq
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"46\n"
-"help.text"
-msgid "Loop..."
-msgstr "Loop..."
-
-#. m9Br
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
-"47\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. !\Fi
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oct Function [Runtime]"
-msgstr "Oct függvény [futásidejű]"
-
-#. mjyo
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
-msgstr "<bookmark_value>Oct függvény</bookmark_value>"
-
-#. A~X1
-#: 03080802.xhp
-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/03080802.xhp\" name=\"Oct függvény [futásidejű]\">Oct függvény [futásidejű]</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 "Visszaadja egy szám nyolcas számrendszerbeli értékét."
-
-#. lz4$
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. RI|m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Oct (Number)"
-msgstr "Oct (Szám)"
-
-#. =2eN
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. bm]m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. 93{R
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. B2SA
-#: 03080802.xhp
-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>Szám:</emph> Bármilyen numerikus kifejezés, amelyet a nyolcas számrendszerbeli számmá szeretné alakítani."
-
-#. qh[G
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. `u63
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr "Négyzetgyök számítása"
-
-#. }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 "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Négyzetgyök számítása\">Négyzetgyök számítása</link>"
-
-#. 7kF7
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Use this function to calculate square roots."
-msgstr "Ezzel a függvénnyel négyzetgyököt számolhat."
-
-#. S+*4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateFromIso Function [Runtime]"
-msgstr "CDateFromIso függvény [futásidejű]"
-
-#. in.X
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
-msgstr "<bookmark_value>CdateFromIso függvény</bookmark_value>"
-
-#. }DV7
-#: 03030108.xhp
-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/03030108.xhp\" name=\"CDateFromIso függvény [futásidejű]\">CDateFromIso függvény [futásidejű]</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 "Visszaadja egy ISO formátumban levő dátumot tartalmazó karakterlánc belső dátumértékét."
-
-#. !IH*
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. E3il
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "CDateFromIso(String)"
-msgstr "CDateFromIso(Karakterlánc)"
-
-#. [8nn
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3154367\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. _`..
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3156212\n"
-"6\n"
-"help.text"
-msgid "Internal date number"
-msgstr "Belső dátumszám"
-
-#. F`a0
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karakterlánc:</emph> Egy string (karakterlánc), amely ISO formátumban tartalmazza a dátumot. Az évnek kettő vagy négy számjegye lehet."
-
-#. Y,bJ
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3150439\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. GHP4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3147318\n"
-"10\n"
-"help.text"
-msgid "dateval = CDateFromIso(\"20021231\")"
-msgstr "dateval = CDateFromIso(\"20021231\")"
-
-#. 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 "a 12/31/2002 dátumot adja vissza a rendszer dátumformátumában"
-
-#. [N0}
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"tit\n"
-"help.text"
-msgid "CCur Function [Runtime]"
-msgstr "CCur függvény [futásidejű]"
-
-#. /8-(
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
-"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
-msgstr "<bookmark_value>CCur függvény</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 "<link href=\"text/sbasic/shared/03100050.xhp\">CCur függvény [futásidejű]</link>"
-
-#. 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 "Egy karakterlánc-, vagy numerikus kifejezést egy currency (pénznem) kifejezéssé alakít. A tizedes elválasztójel és a pénznemszimbólum tekintetében a területi beállításokat használja."
-
-#. A::U
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. CP?2
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "CCur(Expression)"
-msgstr "CCur (Kifejezés)"
-
-#. (K]+
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. :]F|
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "Currency"
-msgstr "Pénznem"
-
-#. ^wEW
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "Kifejezés: Bármilyen karakterlánc-, vagy numerikus kifejezés, amelyet át szeretnénk alakítani."
-
-#. TfF6
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Tan függvény [futásidejű]"
-
-#. [S:-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "<bookmark_value>Tan függvény</bookmark_value>"
-
-#. /r#Z
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan függvény [futásidejű]\">Tan függvény [futásidejű]</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 "Meghatározza a szög tangensét. A szög radiánban van megadva."
-
-#. 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 "Az alfa szög felhasználásával a Tan függvény kiszámítja a szöggel szembeni befogó és a szög melletti befogó hosszának arányát."
-
-#. 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 "Tan(alfa) = a szöggel szembeni befogó/a szög melletti befogó"
-
-#. %mi1
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 95\G
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
-"help.text"
-msgid "Tan (Number)"
-msgstr "Tan (Szám)"
-
-#. ?1w`
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. oh-c
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. ~Uw3
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Bármilyen numerikus kifejezés, amelynek a tangensét (radiánban) szeretné kiszámolni."
-
-#. 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 "Fokok radiánná alakításához szorozza meg a fokokat pi/180-nal. Radiánok szögekké alakításához szorozza meg a radiánokat 180/pi-vel."
-
-#. N69$
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
-"help.text"
-msgid "degrees=(radiant*180)/Pi"
-msgstr "fok=(radián*180)/pi"
-
-#. [Fi%
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
-"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr "radián=(fok*pi)/180"
-
-#. JKbQ
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "A pi körülbelül 3.141593."
-
-#. 7d_A
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 5bIL
-#: 03080104.xhp
-#, fuzzy
-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 "REM Ebben a példában a következőket adhatja meg egy derékszögű háromszög esetén:"
-
-#. $[De
-#: 03080104.xhp
-#, fuzzy
-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 "REM szöggel szembeni oldal hosszát, valamit a szög értékét (fokokban) a szög melletti befogó hosszának kiszámítására:"
-
-#. ]^13
-#: 03080104.xhp
-#, fuzzy
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153158\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a pre-defined variable"
-msgstr "REM Pi = 3.1415926 egy előre meghatározott állandó"
-
-#. 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 "d1 = InputBox$ (\"Adja meg a szöggel szemközt lévő befogó hosszát: \",\"Szemközti\")"
-
-#. *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 "dAngle = InputBox$ (\"Adja meg az alfa szöget (fokban): \",\"Alfa\")"
-
-#. `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 "Print \"a szög melletti befogó hossza\"; (d1 / tan (dAlpha * Pi / 180))"
-
-#. gcZ]
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDate Function [Runtime]"
-msgstr "CDate függvény [futásidejű]"
-
-#. }Zs(
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
-"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
-msgstr "<bookmark_value>Cdate függvény</bookmark_value>"
-
-#. {s,C
-#: 03100300.xhp
-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/03100300.xhp\" name=\"CDate függvény [futásidejű]\">CDate függvény [futásidejű]</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 "Egy string (karakterlánc) vagy numerikus kifejezést date (dátum) értékké alakít."
-
-#. n(:O
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. JW1h
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
-"help.text"
-msgid "CDate (Expression)"
-msgstr "CDate (Kifejezés)"
-
-#. O?Gd
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. Jt+q
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Date (dátum)"
-
-#. [k.3
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Kifejezés:</emph> Bármilyen string (karakterlánc) vagy numerikus kifejezés, amelyet át szeretné alakítani."
-
-#. 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 "String (karakterlánc) kifejezés átalakításánál a dátumot és időt HH.NN.ÉÉÉÉ ÓÓ.PP.MM formában kell megadni, ahogy a <emph>DateValue</emph> és <emph>TimeValue</emph> függvény előírja. Numerikus kifejezésekben a tizedesponttól balra levő értékek a dátumot jelentik, 1899. december 31-étől kezdve. A tizedesponttól jobbra levő értékek pedig az időt jelentik."
-
-#. Z`fK
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ~3|D
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Events"
-msgstr "Események"
-
-#. Ux5S
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155506\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Események\">Események</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 "Adja meg a kijelölt párbeszédablak vagy vezérlőelem eseményeit. A rendelkezésre álló események a kijelölt vezérlőelemtől függenek."
-
-#. 8IQ=
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
-"help.text"
-msgid "When receiving focus"
-msgstr "Amikor a fókuszt megkapja"
-
-#. 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 "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Ez az esemény akkor következik be, amikor a vezérlőelem megkapja a fókuszt.</ahelp>"
-
-#. IJ5a
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
-"help.text"
-msgid "When losing focus"
-msgstr "Amikor a fókuszt elveszti"
-
-#. [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 "<ahelp hid=\"HID_EVT_FOCUSLOST\">Ez az esemény akkor következik be, amikor a vezérlőelem elveszti a fókuszt.</ahelp>"
-
-#. F5-`
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
-"help.text"
-msgid "Key pressed"
-msgstr "Billentyű lenyomva"
-
-#. 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 "<ahelp hid=\"HID_EVT_KEYTYPED\">Ez az esemény akkor következik be, amikor a felhasználó lenyom egy billentyűt, miközben a fókusz a vezérlőelemen van.</ahelp>"
-
-#. 0@=f
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
-"help.text"
-msgid "Key released"
-msgstr "Billentyű felengedve"
-
-#. 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 "<ahelp hid=\"HID_EVT_KEYUP\">Ez az esemény akkor következik be, amikor a felhasználó felenged egy billentyűt, miközben a fókusz a vezérlőelemen van.</ahelp>"
-
-#. iIXD
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
-"help.text"
-msgid "Modified"
-msgstr "Módosítva"
-
-#. 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 "<ahelp hid=\"HID_EVT_CHANGED\">Ez az esemény akkor következik be, amikor a vezérlőelem elveszti a fókuszt, és a tartalma megváltozott az előző fókuszelvesztés óta.</ahelp>"
-
-#. gI$B
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
-"help.text"
-msgid "Text modified"
-msgstr "Szöveg módosítva"
-
-#. 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 "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Ez az esemény akkor következik be, amikor a felhasználó beír valamit a beviteli mezőbe, vagy módosítja a tartalmát.</ahelp>"
-
-#. IQ7U
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
-"help.text"
-msgid "Item status changed"
-msgstr "Elem állapota változott"
-
-#. |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 "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Ez az esemény akkor következik be, ha a vezérlőelem állapota megváltozik, például bejelöltről nem bejelöltre.</ahelp>"
-
-#. G%=4
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
-"help.text"
-msgid "Mouse inside"
-msgstr "Egér belül"
-
-#. @(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 "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Ez az esemény akkor következik be, amikor az egérmutató a vezérlőelem fölé ér.</ahelp>"
-
-#. n08F
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
-"help.text"
-msgid "Mouse moved while key pressed"
-msgstr "Egér mozgott a billentyű lenyomása alatt"
-
-#. 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 "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Ez az esemény akkor következik be, amikor a felhasználó elhúzza az egeret, miközben egy billentyű le van nyomva.</ahelp>"
-
-#. LZkk
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
-"help.text"
-msgid "Mouse moved"
-msgstr "Egér mozdult"
-
-#. ~{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 "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Ez az esemény akkor következik be, amikor az egérmutató áthalad a vezérlőelemen.</ahelp>"
-
-#. ^-)l
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
-"help.text"
-msgid "Mouse button pressed"
-msgstr "Egérgomb lenyomása"
-
-#. 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 "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Ez az esemény akkor következik be, amikor a felhasználó lenyomja az egérgombot a vezérlőelem felett.</ahelp>"
-
-#. zyg$
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
-"help.text"
-msgid "Mouse button released"
-msgstr "Egérgomb elengedése"
-
-#. 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 "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Ez az esemény akkor következik be, amikor a felhasználó felengedi az egérgombot a vezérlőelem felett.</ahelp>"
-
-#. uaC/
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
-"help.text"
-msgid "Mouse outside"
-msgstr "Egér kívül"
-
-#. 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 "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Ez az esemény akkor következik be, amikor az egérmutató elhagyja a vezérlőelemet.</ahelp>"
-
-#. lReL
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
-"help.text"
-msgid "While adjusting"
-msgstr "Beállítás során"
-
-#. |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 "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Ez az esemény akkor következik be, amikor a görgetősávot elhúzzák.</ahelp>"
-
-#. :Hll
-#: 01050200.xhp
-msgctxt ""
-"01050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr "Hívási verem ablak (Hívások)"
-
-#. 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 "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Hívási verem ablak (Hívások)\">Hívási verem ablak (Hívások)</link>"
-
-#. 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 "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Megjeleníti az eljárások és függvények sorozatát a program végrehajtása alatt.</ahelp> A <emph>Hívási verem</emph> segítségével nyomon következő az eljárások és függvények végrehajtásának sorrendje a program futása közben. Az eljárások és függvények alulról felfelé kerülnek megjelenítésre, a legutóbbi függvény- vagy eljáráshívás kerül a lista tetejére."
-
-#. C5SF
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "TwipsPerPixelY függvény [futásidejű]"
-
-#. qWke
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelY függvény</bookmark_value>"
-
-#. [w*P
-#: 03131400.xhp
-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/03131400.xhp\" name=\"TwipsPerPixelY függvény [futásidejű]\">TwipsPerPixelY függvény [futásidejű]</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 "Egy képpont magasságát jelentő twipek számát adja vissza."
-
-#. bZ,I
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. @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 "Visszatérési érték:"
-
-#. MU~A
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. :!j*
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. sM03
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154142\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr "MsgBox \"\" & TwipsPerPixelX() & \" twip * \" & TwipsPerPixelY() & \" twip\",0,\"Képpontméret\""
-
-#. $f[{
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr "ASCII/ANSI-átalakítások karakterláncokban"
-
-#. 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 "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI-átalakítás karakterláncokban\">ASCII/ANSI-átalakítás karakterláncokban</link>"
-
-#. 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 "Az alábbi függvények karakterláncok ASCII-ANSI-átalakítását végzik el."
-
-#. bJmh
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr "With utasítás [futásidejű]"
-
-#. ,Z,]
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "<bookmark_value>With utasítás</bookmark_value>"
-
-#. Sm9q
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3153311\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With utasítás [futásidejű]\">With utasítás [futásidejű]</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 "Az objektumot alapértelmezettként állítja be. Ha nincs másik objektumnév megadva, akkor az összes tulajdonság és metódus az alapértelmezett objektumra hivatkozik, amíg a program az End With utasítást el nem éri."
-
-#. N)0;
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 5#@T
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr "With Objektum Utasításblokk End With"
-
-#. [Was
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "A <emph>With</emph> és az <emph>End With</emph> utasítást akkor érdemes használni, ha egy objektum számos tulajdonsággal vagy metódussal rendelkezik."
-
-#. !hRV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DatePart Function [Runtime]"
-msgstr "DatePart függvény [futásidejű]"
-
-#. 1P:_
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"bm_id249946\n"
-"help.text"
-msgid "<bookmark_value>DatePart function</bookmark_value>"
-msgstr "<bookmark_value>DatePart függvény</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 "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart függvény [futásidejű]</link>"
-
-#. 4Ls0
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "The DatePart function returns a specified part of a date."
-msgstr "A DatePart függvény a dátum meghatározott részét adja vissza."
-
-#. /)oc
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. l{?W
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
-msgstr "DatePart (növekmény, dátum [, hét_kezdete [, év_kezdete]])"
-
-#. %#$1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. Yb[S
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr "Egy dátumot tartalmazó Variant."
-
-#. b:?M
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. $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 "<emph>növekmény</emph> - Karakterlánc-kifejezés a következő táblázatból, amely a dátumintervallumot határozza meg."
-
-#. 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>dátum</emph> - A dátum, amelyből az eredmény számítódik."
-
-#. NiG(
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10611\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. j35K
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr "DefSng utasítás [futásidejű]"
-
-#. `I:S
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
-"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr "<bookmark_value>DefSng utasítás</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 "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng utasítás [futásidejű]</link>"
-
-#. _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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a DefSng utasítás a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. uYgM
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. `k8]
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. _2E+
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. !%A8
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. =.wI
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. `O\:
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "<emph>DefSng:</emph> Single (egyszeres pontosságú)"
-
-#. Bq~%
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Cr3[
-#: 03101130.xhp
-#, fuzzy
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. [\`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 az sSng egy implicit single (egyszeres pontosságú) változó"
-
-#. HBzx
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"tit\n"
-"help.text"
-msgid "LTrim Function [Runtime]"
-msgstr "LTrim függvény [futásidejű]"
-
-#. zrj8
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
-"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
-msgstr "<bookmark_value>LTrim függvény</bookmark_value>"
-
-#. I);E
-#: 03120305.xhp
-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/03120305.xhp\" name=\"LTrim függvény [futásidejű]\">LTrim függvény [futásidejű]</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 "Az összes kezdő szóközt eltávolítja egy string (karakterlánc) kifejezés elejéről."
-
-#. E=YQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. +|8Z
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "LTrim (Text As String)"
-msgstr "LTrim (Szöveg As String)"
-
-#. ;Ze4
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. Nx^I
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. [RQQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. yBn[
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés."
-
-#. #/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 "Ez a függvény egy string (karakterlánc) kifejezés elején levő szóközök eltávolítására használható."
-
-#. 6dZt
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. fZPT
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Statement [Runtime]"
-msgstr "Print utasítás [futásidejű]"
-
-#. )qPs
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
-"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "<bookmark_value>Print utasítás</bookmark_value>"
-
-#. UcmK
-#: 03010103.xhp
-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/03010103.xhp\" name=\"Print utasítás [futásidejű]\">Print utasítás [futásidejű]</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 "Kiírja a megadott karakterláncokat vagy numerikus kifejezéseket egy párbeszédablakba vagy egy fájlba."
-
-#. 1hZ.
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ,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 "Print [#Fájlnév,] Kifejezés1[{;|,} [Spc(Szám As Integer);] [Tab(Poz As Integer);] [Kifejezés2[...]]"
-
-#. bM9_
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "<emph>Fájlnév:</emph> Bármilyen numerikus kifejezés, amely tartalmazza a megfelelő fájl Open utasításában megadott fájlszámot."
-
-#. @|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 "<emph>Kifejezés</emph>: Kinyomtatandó string (karakterlánc) vagy numerikus kifejezés. Több kifejezés pontosvesszővel választható el. Ha vesszővel van elválasztva, akkor a kifejezések a következő tabulátorpozícióra lesznek igazítva. A tabulátorpozíciók nem igazíthatók."
-
-#. 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 "<emph>Szám</emph>: Az <emph>Spc</emph> függvény által beszúrandó szóközök száma."
-
-#. 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 "<emph>Poz</emph>: A megadott pozícióig beszúrt szóközök száma."
-
-#. 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 "Ha a pontosvessző vagy vessző az utolsó kinyomtatandó kifejezés után jelenik, akkor a $[officename] Basic a szöveget egy belső pufferben tárolja, és nyomtatás nélkül folytatja a program végrehajtását. Ha másik Print utasítás áll a sor végén pontosvessző vagy vessző nélkül, akkor az összes kinyomtatandó szöveg azonnal kinyomtatásra kerül."
-
-#. 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 "A pozitív numerikus kifejezéseket egy szóköz előzi meg nyomtatáskor. A negatív numerikus kifejezéseket mínuszjel előzi meg nyomtatáskor. Ha a lebegőpontos értékek egy adott tartományt túllépnek, akkor az adott numerikus kifejezés exponenciális formában lesz kinyomtatva."
-
-#. ?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 "Ha a megjelenítendő kifejezés meghalad egy megadott hosszt, a megjelenítés automatikusan beszúr egy sortörést, és a megjelenítést egy új sorban folytatja."
-
-#. 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 "Az argumentumok közé beszúrhatja pontosvesszővel lezárva a Tab függvényt a kimenet adott pozícióra történő igazításához, vagy használhatja az <emph>Spc</emph> függvényt a megadott számú szóköz beszúrásához."
-
-#. kCI%
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Q[;^
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Control and Dialog Properties"
-msgstr "Vezérlőelemek és párbeszédablakok tulajdonságai"
-
-#. ]#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 "<bookmark_value>vezérlőelemek; tulajdonságok</bookmark_value><bookmark_value>tulajdonságok; vezérlőelemek és párbeszédablakok</bookmark_value><bookmark_value>párbeszédablakok; tulajdonságok</bookmark_value>"
-
-#. 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 "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Vezérlőelemek és párbeszédablakok tulajdonságai\">Vezérlőelemek és párbeszédablakok tulajdonságai</link>"
-
-#. $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 "<ahelp hid=\".\">Megadja a kijelölt párbeszédablak vagy vezérlőelem tulajdonságait.</ahelp> Ez a parancs csak tervezői módban használható."
-
-#. Umir
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
-"help.text"
-msgid "Entering Data in the Properties Dialog"
-msgstr "Adatok megadása a Tulajdonságok párbeszédablakban"
-
-#. |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 "Az alábbi billentyűkombinációk érvényesek, ha adatokat ad meg a <emph>Tulajdonságok</emph> párbeszédablak többsoros mezőiben vagy kombinált listáiban:"
-
-#. S\Qj
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
-"help.text"
-msgid "Keys"
-msgstr "Billentyűk"
-
-#. D`[n
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
-"help.text"
-msgid "Effects"
-msgstr "Hatások"
-
-#. VN5[
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
-"help.text"
-msgid "Alt+Down Arrow"
-msgstr "Alt+Lefelé nyíl"
-
-#. fEOJ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
-"help.text"
-msgid "Opens a combo box"
-msgstr "Megnyit egy kombinált listát"
-
-#. Cb`/
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
-"help.text"
-msgid "Alt+Up Arrow"
-msgstr "Alt+Felfelé nyíl"
-
-#. K}L}
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
-"help.text"
-msgid "Closes a combo box"
-msgstr "Bezár egy kombinált listát"
-
-#. +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 "Egy sortörést szúr be a többsoros mezőbe."
-
-#. W-6i
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
-"help.text"
-msgid "(UpArrow)"
-msgstr "(Felfelé nyíl)"
-
-#. Hv1-
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
-"help.text"
-msgid "Goes to the previous line."
-msgstr "Az előző sorba lép."
-
-#. SLl7
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
-"help.text"
-msgid "(DownArrow)"
-msgstr "(Lefelé nyíl)"
-
-#. spSZ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
-"help.text"
-msgid "Goes to the next line."
-msgstr "A következő sorba lép."
-
-#. cbH!
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
-"help.text"
-msgid "Enter"
-msgstr "Enter"
-
-#. 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 "Alkalmazza a mezőben végrehajtott változtatásokat, és a kurzort a következő mezőbe viszi."
-
-#. (n`h
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trigonometric Functions"
-msgstr "Trigonometriai függvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometriai függvények\">Trigonometriai függvények</link>"
-
-#. 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 "A $[officename] Basic a következő trigonometriai függvényeket támogatja."
-
-#. ^ei1
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr "CVErr függvény [futásidejű]"
-
-#. dCVe
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
-"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr "<bookmark_value>CVErr függvény</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 "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr függvény [futásidejű]</link>"
-
-#. +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 "Egy karakterlánc-, vagy numerikus kifejezést egy \"Error\" altípusú variant kifejezéssé alakít."
-
-#. TN3\
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ?[2V
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVErr(Expression)"
-msgstr "CVErr (Kifejezés)"
-
-#. 6j/J
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. R%IE
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr "Variant."
-
-#. ?v+)
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. )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 "Kifejezés: Bármilyen karakterlánc-, vagy numerikus kifejezés, amelyet át szeretnénk alakítani."
-
-#. WSFa
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fix Function [Runtime]"
-msgstr "Fix függvény [futásidejű]"
-
-#. l$91
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr "<bookmark_value>Fix függvény</bookmark_value>"
-
-#. !$(P
-#: 03080501.xhp
-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/03080501.xhp\" name=\"Fix függvény [futásidejű]\">Fix függvény [futásidejű]</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 "Visszaadja egy numerikus kifejezés egész értékét, a szám tört részének elhagyásával."
-
-#. irMA
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 8#o#
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "Fix (Expression)"
-msgstr "Fix (Kifejezés)"
-
-#. $(|D
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. jT:=
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. Wqkp
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> Numerikus kifejezés, amelynek az egész értékét szeretné meghatározni."
-
-#. e^=*
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. lYf=
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156214\n"
-"11\n"
-"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
-msgstr "Print Fix(3.14159) REM 3-at ad vissza."
-
-#. ;Rx(
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"par_id3154217\n"
-"12\n"
-"help.text"
-msgid "Print Fix(0) ' returns 0."
-msgstr "Print Fix(0) REM 0-t ad vissza."
-
-#. u26{
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
-msgstr "Print Fix(-3.14159) REM -3-at ad vissza."
-
-#. YTKq
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Jumps"
-msgstr "Ugrások"
-
-#. Rv8O
-#: 03090300.xhp
-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/03090300.xhp\" name=\"Ugrások\">Ugrások</link>"
-
-#. R#RU
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
-"2\n"
-"help.text"
-msgid "The following statements execute jumps."
-msgstr "Az alábbi utasítások ugrásokat hajtanak végre."
-
-#. n;)I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr "CreateUnoStruct függvény [futásidejű]"
-
-#. 502o
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoStruct függvény</bookmark_value>"
-
-#. a.bH
-#: 03131500.xhp
-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/03131500.xhp\" name=\"CreateUnoStruct függvény [futásidejű]\">CreateUnoStruct függvény [futásidejű]</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=\".\">Létrehozza egy Uno-struktúratípus egy példányát.</ahelp>"
-
-#. ZwlF
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
-"3\n"
-"help.text"
-msgid "Use the following structure for your statement:"
-msgstr "Használja az alábbi utasítás-struktúrát:"
-
-#. 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 "Szintaxis:"
-
-#. 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-típus neve )"
-
-#. ]woP
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "Time utasítás [futásidejű]"
-
-#. x*lu
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Time statement</bookmark_value>"
-msgstr "<bookmark_value>Time utasítás</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 "<link href=\"text/sbasic/shared/03030302.xhp\">Time utasítás [futásidejű]</link>"
-
-#. 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 "Ez a függvény karakterláncként adja vissza az aktuális rendszeridőt, \"ÓÓ:PP:MM\" formátumban."
-
-#. a@V8
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. s2`n
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3149670\n"
-"4\n"
-"help.text"
-msgid "Time"
-msgstr "Time"
-
-#. J,)]
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely az új időt \"ÓÓ:PP:MM\" formátumban adja meg."
-
-#. @)s_
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145173\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 7Cq.
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox Time,0,\"The time is\""
-msgstr "MsgBox Time,0,\"Az idő\""
-
-#. ]$C(
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr "CreateUnoDialog függvény [futásidejű]"
-
-#. 3*oC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoDialog függvény</bookmark_value>"
-
-#. g`ed
-#: 03131800.xhp
-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/03131800.xhp\" name=\"CreateUnoDialog függvény [futásidejű]\">CreateUnoDialog függvény [futásidejű]</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 "Létrehoz egy Basic Uno-objektumot, amely a Basic-futásidő alatt egy Uno-párbeszédablak-vezérlőelemet jelenít meg."
-
-#. 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 "A párbeszédablakok a párbeszédablak-programkönyvtárakban vannak definiálva. Egy párbeszédablak megjelenítéséhez egy „élő” párbeszédablakot kell létrehozni a programkönyvtárból."
-
-#. 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 "Lásd <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Példák\">Példák</link>"
-
-#. [K\b
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Példa:"
-
-#. hac8
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
-"help.text"
-msgid "' Get dialog description from the dialog library"
-msgstr "' A párbeszédablak leírásának beolvasása a párbeszédablak-programkönyvtárból"
-
-#. vCm@
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3149234\n"
-"9\n"
-"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
-
-#. r3pC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154923\n"
-"10\n"
-"help.text"
-msgid "' generate \"live\" dialog"
-msgstr "' egy „élő” párbeszédablak generálása"
-
-#. .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 "' egy „élő” párbeszédablak megjelenítése"
-
-#. 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 "IsEmpty függvény [futásidejű]"
-
-#. pqV.
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
-"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
-msgstr "<bookmark_value>IsEmpty függvény</bookmark_value>"
-
-#. b:re
-#: 03102400.xhp
-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/03102400.xhp\" name=\"IsEmpty függvény [futásidejű]\">IsEmpty függvény [futásidejű]</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 "Teszteli, hogy a változó az Empty (üres) értéket tartalmazza-e. Az Empty (üres) érték jelzi, hogy a változó nincs inicializálva."
-
-#. }mrZ
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. x*F2
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "IsEmpty (Var)"
-msgstr "IsEmpty (Változó)"
-
-#. w}(z
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. r])T
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. SphW
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ,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>Változó:</emph> A tesztelni kívánt változó. Ha a változó az Empty (üres) értéket tartalmazza, akkor a függvény True (igaz) értéket ad vissza, ellenkező esetben False (hamis) értéket."
-
-#. Fucq
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 75.3
-#: 03102400.xhp
-#, fuzzy
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr "Print IsEmpty(sVar) REM True (igaz) értéket ad vissza"
-
-#. }+5~
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Time Values"
-msgstr "Időértékek konvertálása"
-
-#. 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 "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Időértékek átalakítása\">Időértékek átalakítása</link>"
-
-#. 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 "A következő függvények az időértékeket normál számokká alakítják át."
-
-#. lJ[z
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CLng Function [Runtime]"
-msgstr "CLng függvény [futásidejű]"
-
-#. Oyf~
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "<bookmark_value>CLng függvény</bookmark_value>"
-
-#. R6CJ
-#: 03100600.xhp
-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/03100600.xhp\" name=\"CLng függvény [futásidejű]\">CLng függvény [futásidejű]</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 "Bármilyen string (karakterlánc) vagy numerikus kifejezést long integer (hosszú egész) értékké alakít."
-
-#. .*c}
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. qL-M
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "CLng (Expression)"
-msgstr "CLng (Kifejezés)"
-
-#. ffak
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. ;d)Q
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. =1Th
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> Az átalakítani kívánt numerikus kifejezés. Ha a <emph>Kifejezés</emph> az -2147483648 és -2147483647 közti tartományon kívül esik, akkor a $[officename] Basic túlcsordulási hibát jelez. String (karakterlánc) kifejezés átalakításához a számot normál szövegként kell beírni (\"123.5\") az operációs rendszer alapértelmezett számformátumának felhasználásával."
-
-#. 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 "Ez a függvény a szám törtrészét mindig a legközelebbi egészre kerekíti."
-
-#. tiiv
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. RtH#
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "Makró eszköztár"
-
-#. 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>eszköztárak; Basic IDE</bookmark_value><bookmark_value>makró eszköztár</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=\"Makró eszköztár\">Makró eszköztár</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\">A <emph>Makró eszköztár</emph> tartalmazza a makró létrehozásához, szerkesztéséhez és futtatásához szükséges parancsokat.</ahelp>"
-
-#. ~lN^
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr "\"-\" operátor [futásidejű]"
-
-#. cM=j
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
-"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>\"-\" operátor (matematikai)</bookmark_value>"
-
-#. 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 "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" operátor [futásidejű]</link>"
-
-#. k\GP
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
-"2\n"
-"help.text"
-msgid "Subtracts two values."
-msgstr "Kivon egymásból két értéket."
-
-#. S-,K
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ?+88
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 - Expression2"
-msgstr "Eredmény = Kifejezés1 - Kifejezés2"
-
-#. f0KK
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely a kivonás eredményét tárolja."
-
-#. 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>Kifejezés1, Kifejezés2:</emph> Az egymásból kivonni kívánt kifejezések."
-
-#. NI[E
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. G:E@
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "TimeSerial függvény [futásidejű]"
-
-#. R4*]
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "<bookmark_value>TimeSerial függvény</bookmark_value>"
-
-#. 0i6+
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3143271\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial függvény [futásidejű]\">TimeSerial függvény [futásidejű]</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 "Kiszámítja a megadott óra-, perc- és másodperc-paraméter soros időértékét, amelyek numerikus értékként adódnak át. Az érték segítségével ezután kiszámíthatja az idők közötti eltérést."
-
-#. 57Q3
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ?bZl
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3150792\n"
-"5\n"
-"help.text"
-msgid "TimeSerial (hour, minute, second)"
-msgstr "TimeSerial (óra, perc, másodperc)"
-
-#. g{xt
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. vrWO
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
-"7\n"
-"help.text"
-msgid "Date"
-msgstr "Date (dátum)"
-
-#. j*\B
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>óra:</emph> Az idő óra részét tartalmazó integer (egész szám) kifejezés, amely meghatározza a soros idő értékét. Érvényes értékek: 0-23."
-
-#. 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 "<emph>perc:</emph> Az idő perc részét tartalmazó integer (egész szám) kifejezés, amely meghatározza a soros idő értékét. Általában 0 és 59 közötti értékeket használhat. A tartományon kívül eső értékeket is használhat, amelyben a percek száma befolyásolja az óra értékét."
-
-#. 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 "<emph>másodperc:</emph> Az idő másodperc részét tartalmazó integer (egész szám) kifejezés, amely meghatározza a soros idő értékét. Általában 0 és 59 közötti értékeket használhat. A tartományon kívül eső értékeket is használhat, amelyben a másodpercek száma befolyásolja a perc értékét."
-
-#. F($s
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>Példák:</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 "12, -5, 45 a 11, 55, 45-nek felel meg"
-
-#. -QK^
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147349\n"
-"14\n"
-"help.text"
-msgid "12, 61, 45 corresponds to 13, 2, 45"
-msgstr "12, 61, 45 a 13, 2, 45-nek felel meg"
-
-#. `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 "12, 20, -2 a 12, 19, 58-nak felel meg"
-
-#. 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 "12, 20, 63 a 12, 21, 4-nek felel meg"
-
-#. 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 "A TimeSerial függvényt az idő normál számértékké való átalakítására is használhatja, így időkülönbségek számítására is képesek lesz."
-
-#. 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 "A TimeSerial függvény Variant adattípust ad vissza 7-es VarType (Date (dátum)) altípussal. Ez az érték belsőleg double (dupla pontosságú), 0 és 0.9999999999 közötti számként kerül tárolásra. A DateSerial vagy DateValue függvénnyel ellentétben, ahol a soros dátumérték egy rögzített dátumhoz viszonyítva kerül kiszámításra, kiszámíthatja a TimeSerial függvény által visszaadott értékeket, de nem tudja kiértékelni őket."
-
-#. )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 "A TimeValue függvényben a karakterláncot az időt tartalmazó paraméterként adhatja át. A TimeSerial függvényhez az egyedi paramétereket (óra, perc, másodperc) külön numerikus kifejezésként adhatja át."
-
-#. q14B
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ]G=)
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155600\n"
-"25\n"
-"help.text"
-msgid "MsgBox dDate,64,\"Time as a number\""
-msgstr "MsgBox dDate,64,\"Idő számként\""
-
-#. f=a-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153417\n"
-"26\n"
-"help.text"
-msgid "MsgBox sDate,64,\"Formatted time\""
-msgstr "MsgBox sDate,64,\"Formázott idő\""
-
-#. Hm8-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Összehasonlító operátorok"
-
-#. \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 "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Összehasonlító operátorok\">Összehasonlító operátorok</link>"
-
-#. sZyA
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Az alábbiakban az elérhető összehasonlító operátorok részletezése következik."
-
-#. E(so
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Condition Statements"
-msgstr "Feltételes utasítások"
-
-#. 1rS(
-#: 03090100.xhp
-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/03090100.xhp\" name=\"Feltételes utasítások\">Feltételes utasítások</link>"
-
-#. (]8=
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"par_id3153750\n"
-"2\n"
-"help.text"
-msgid "The following statements are based on conditions."
-msgstr "A következő utasítások feltételeken alapulnak."
-
-#. 1xIk
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"tit\n"
-"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "CByte függvény [futásidejű]"
-
-#. X28J
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>CByte function</bookmark_value>"
-msgstr "<bookmark_value>CByte függvény</bookmark_value>"
-
-#. .jV,
-#: 03120105.xhp
-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/03120105.xhp\" name=\"CByte függvény [futásidejű]\">CByte függvény [futásidejű]</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 "Átalakít egy string (karakterlánc) vagy egy numerikus kifejezést bájt típusúvá."
-
-#. TK%f
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 7dEs
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Cbyte( expression )"
-msgstr "Cbyte( Kifejezés )"
-
-#. J:K[
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. H[:U
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "Byte"
-msgstr "Bájt"
-
-#. ,Auk
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Kifejezés:</emph> Egy string (karakterlánc) vagy egy numerikus kifejezés."
-
-#. ZyC`
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "InputBox Function [Runtime]"
-msgstr "InputBox függvény [futásidejű]"
-
-#. PvMt
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
-"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "<bookmark_value>InputBox függvény</bookmark_value>"
-
-#. 2E#Y
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3148932\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox függvény [futásidejű]\">InputBox függvény [futásidejű]</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 "A párbeszédablakban megjelenít egy részt, amelyben a felhasználó megadhatja a bemeneti szöveget. A bemenet hozzárendelődik egy változóhoz."
-
-#. 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 "Az <emph>InputBox</emph> utasítás egy kényelmes módszer a szöveg párbeszédablakon keresztüli megadására. Erősítse meg a bemenetet az OK gombra történő kattintással vagy a Return billentyű megnyomásával. A bemenetet a rendszer a függvény visszatérési értékeként adja vissza. Ha a Mégse gombbal zárja be a párbeszédablakot, akkor az <emph>InputBox</emph> nulla hosszúságú karakterláncot (\"\") ad vissza."
-
-#. EQI3
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "InputBox (Üzenet As String[, Cím As String[, Alapértelmezés As String[, x_poz As Integer, y_poz As Integer]]]])"
-
-#. _Z[H
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. AyIy
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. B\A,
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
-"8\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. *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 "<emph>Üzenet</emph>: String (karakterlánc) kifejezés, amely üzenetként jelenik meg a párbeszédablakban."
-
-#. %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 "<emph>Cím</emph>: String (karakterlánc) kifejezés, amely a párbeszédablak címsorában jelenik meg."
-
-#. 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 "<emph>Alapértelmezett</emph>: String (karakterlánc) kifejezés, amely alapértelmezettként jelenik meg a szövegmezőben, ha semmilyen más bevitelt nem adtak meg."
-
-#. 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 "<emph>x_poz</emph>: Integer (egész szám) kifejezés, amely megadja a párbeszédablak vízszintes helyét. A pozíció abszolút koordináta, és nem az irodai alkalmazás ablakára vonatkozik."
-
-#. 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 "<emph>y_poz</emph>: Integer (egész szám) kifejezés, amely megadja a párbeszédablak függőleges helyét. A pozíció abszolút koordináta, és nem az irodai alkalmazás ablakára vonatkozik."
-
-#. 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 "Ha az <emph>x_poz</emph> és az <emph>y_poz</emph> nincs megadva, akkor a párbeszédablak a képernyő közepére lesz igazítva. A pozíció <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twipben\">twipben</link> van megadva."
-
-#. =3xd
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149456\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. -05a
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3154367\n"
-"18\n"
-"help.text"
-msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-msgstr "sText = InputBox (\"Kérjük, adjon meg egy kifejezést:\",\"Kedves felhasználó\")"
-
-#. duBi
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151042\n"
-"19\n"
-"help.text"
-msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-msgstr "MsgBox ( sText , 64, \"A kifejezés megerősítése\")"
-
-#. I$q,
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"tit\n"
-"help.text"
-msgid "AND Operator [Runtime]"
-msgstr "AND operátor [futásidejű]"
-
-#. /FuX
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"bm_id3146117\n"
-"help.text"
-msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>AND operátor (logikai)</bookmark_value>"
-
-#. ogG0
-#: 03060100.xhp
-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/03060100.xhp\" name=\"AND operátor [futásidejű]\">AND operátor [futásidejű]</link>"
-
-#. SDE%
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3143268\n"
-"2\n"
-"help.text"
-msgid "Logically combines two expressions."
-msgstr "Logikailag összevon két kifejezést."
-
-#. ;/X;
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3147574\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 6|71
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3156344\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 And Expression2"
-msgstr "Eredmény = Kifejezés1 And Kifejezés2"
-
-#. hfY.
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3148946\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. =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 "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely tárolja az összevonás eredményét."
-
-#. 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>Kifejezés1, Kifejezés2:</emph> Bármely kifejezések, amelyeket össze szeretne vonni."
-
-#. 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 "Az AND operátorral egyesített logikai kifejezések csak akkor adnak vissza <emph>Igaz</emph> értéket, ha mindkét kifejezés értéke <emph>Igaz</emph>:"
-
-#. 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 "<emph>Igaz</emph> AND <emph>Igaz</emph> értéke <emph>Igaz</emph>; az összes többi kombináció <emph>Hamis</emph>."
-
-#. 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 "Az AND operátor két numerikus kifejezés azonos helyein levő bitek összehasonlítását is elvégzi."
-
-#. ={l1
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3153727\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ~jZY
-#: 03060100.xhp
-#, fuzzy
-msgctxt ""
-"03060100.xhp\n"
-"par_id3146984\n"
-"16\n"
-"help.text"
-msgid "vVarOut = A > B And B > C ' returns -1"
-msgstr "vVarOut = A > B And B > C REM -1-et ad vissza"
-
-#. Ed+s
-#: 03060100.xhp
-#, fuzzy
-msgctxt ""
-"03060100.xhp\n"
-"par_id3154014\n"
-"17\n"
-"help.text"
-msgid "vVarOut = B > A And B > C ' returns 0"
-msgstr "vVarOut = B > A And B > C REM 0-t ad vissza"
-
-#. kIr%
-#: 03060100.xhp
-#, fuzzy
-msgctxt ""
-"03060100.xhp\n"
-"par_id3149262\n"
-"18\n"
-"help.text"
-msgid "vVarOut = A > B And B > D ' returns 0"
-msgstr "vVarOut = A > B And B > D REM 0-t ad vissza"
-
-#. |BK6
-#: 03060100.xhp
-#, fuzzy
-msgctxt ""
-"03060100.xhp\n"
-"par_id3145751\n"
-"19\n"
-"help.text"
-msgid "vVarOut = (B > D And B > A) ' returns 0"
-msgstr "vVarOut = (B > D And B > A) REM 0-t ad vissza"
-
-#. $e4W
-#: 03060100.xhp
-#, fuzzy
-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 "vVarOut = B And A REM 8-at ad vissza a két argumentum bitszintű egyesítése következtében"
-
-#. Zm?r
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr "Programozás a $[officename] Basickel"
-
-#. 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 "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programozás a $[officename] Basicben \">Programozás a $[officename] Basicben </link></variable>"
-
-#. _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 "Itt találhat általános információkat a makrókról és a $[officename] Basicben végzett munkáról."
-
-#. Z}m2
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"tit\n"
-"help.text"
-msgid "Declare Statement [Runtime]"
-msgstr "Declare utasítás [futásidejű]"
-
-#. w28/
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"bm_id3148473\n"
-"help.text"
-msgid "<bookmark_value>Declare statement</bookmark_value>"
-msgstr "<bookmark_value>Declare utasítás</bookmark_value>"
-
-#. BHk{
-#: 03090403.xhp
-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/03090403.xhp\" name=\"Declare utasítás [futásidejű]\">Declare utasítás [futásidejű]</link>"
-
-#. Ey:i
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"bm_id3145316\n"
-"help.text"
-msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
-msgstr "<bookmark_value>DLL (Dynamic Link Library - Dinamikus csatolású programkönyvtár)</bookmark_value>"
-
-#. 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 "Deklarálja és definiálja egy DLL egyik szubrutinját, amelyet végre akar hajtani a $[officename] Basicben."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-
-#. B]YK
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3156344\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Declare {Sub | Function} Név Lib \"Libnév\" [Alias \"Aliasnév\"] [Paraméter] [As Típus]"
-
-#. ^,Dx
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Név:</emph> A DLL-ben meghatározott névtől különböző név, amellyel a szubrutint szeretné meghívni a $[officename] Basicben."
-
-#. 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 "<emph>Aliasnév</emph>: A szubrutin DLL-ben megadott neve."
-
-#. 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 "<emph>Libnév:</emph> A DLL fájl- vagy rendszerneve. A függvény első használatakor ez a könyvtár automatikusan betöltésre kerül."
-
-#. 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 "<emph>Argumentumlista:</emph> Az argumentumokat ábrázoló paraméterek listája, amelyek meghíváskor átadódnak az eljárásnak. A paraméterek típusa és száma a végrehajtott eljárástól függ."
-
-#. 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 "<emph>Típus:</emph> Megadja a függvényeljárás által visszaadott érték adattípusát. Nem kell megadni ezt a paramétert, ha a típusdeklarációs karakter meg van adva a név után."
-
-#. 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 "Ha a paramétert a szubrutinnak értékként kívánja átadni hivatkozás helyett, akkor a paramétert a <emph>ByVal</emph> kulcsszónak kell jeleznie."
-
-#. q%r1
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153951\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. EP-R
-#: 03120400.xhp
-msgctxt ""
-"03120400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Length"
-msgstr "Karakterláncok hosszúságának szerkesztése"
-
-#. 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=\"Karakterlánc hosszának szerkesztése\">Karakterlánc hosszának szerkesztése</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 "Az alábbi függvények visszaadják a karakterlánc-hosszúságokat, valamit összehasonlítják a karakterláncokat."
-
-#. /cHw
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr "Or operátor [futásidejű]"
-
-#. G6Ja
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"bm_id3150986\n"
-"help.text"
-msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Or operátor (logikai)</bookmark_value>"
-
-#. 0`{/
-#: 03060500.xhp
-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/03060500.xhp\" name=\"Or operátor [futásidejű]\">Or operátor [futásidejű]</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 "Két kifejezésen logikai VAGY műveletet hajt végre."
-
-#. .%ji
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. r`l7
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Or Expression2"
-msgstr "Eredmény = Kifejezés1 Or Kifejezés2"
-
-#. Oj6V
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. }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 "<emph>Eredmény:</emph> Bármilyen numerikus változó, amely a művelet eredményét tárolja."
-
-#. 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>Kifejezés1, Kifejezés2:</emph> Bármely numerikus kifejezések, amelyeket össze akar hasonlítani egymással."
-
-#. *-`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 "Két logikai kifejezés logikai VAGY műveleténél a visszatérési érték True, ha legalább az egyik kifejezés értéke True."
-
-#. 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 "Bitenkénti összehasonlítás esetén akkor állítja be az eredmény egyik bitjét, ha a megfelelő bit legalább az egyik kifejezésben be volt állítva."
-
-#. BZP-
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3161831\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. wkj8
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Format Function [Runtime]"
-msgstr "Format függvény [futásidejű]"
-
-#. s@mx
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>Format function</bookmark_value>"
-msgstr "<bookmark_value>Format függvény</bookmark_value>"
-
-#. }I[3
-#: 03120301.xhp
-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/03120301.xhp\" name=\"Format függvény [futásidejű]\">Format függvény [futásidejű]</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 "Átalakít egy számot karakterlánccá, majd a megadott formátumúra formázza."
-
-#. Q[=m
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. aJ0U
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153527\n"
-"5\n"
-"help.text"
-msgid "Format (Number [, Format As String])"
-msgstr "Format (Szám [, Formátum As String])"
-
-#. :9@2
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. TC{g
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. U,?I
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. d/R0
-#: 03120301.xhp
-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>Szám:</emph> Numerikus kifejezés, amelyet formázott karakterlánccá szeretne alakítani."
-
-#. 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 "<emph>Formátum:</emph> Karakterlánc, amely megadja a szám formátumkódját. Ha a <emph>Formátum</emph> nincs megadva, akkor a Format függvény az <emph>Str</emph> függvényhez hasonlóan működik."
-
-#. IOQw
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
-"help.text"
-msgid "Formatting Codes"
-msgstr "Formázási kódok"
-
-#. 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 "Az alábbi lista a számok formázására használt kódokat írja le:"
-
-#. -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 "<emph>0:</emph> Ha a <emph>Szám</emph> formátumkódjának 0. pozícióján van számjegy, akkor a számjegy megjelenik, ellenkező esetben a nulla kerül megjelenítésre."
-
-#. 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 "Ha a <emph>Szám</emph> kevesebb számjeggyel rendelkezik, mint a nullák száma a formátumkódban (a decimális számjegy tetszőleges oldalán), akkor vezető vagy záró nullák kerülnek megjelenítésre. Ha a szám több számjeggyel rendelkezik a tizedes elválasztótól balra, mint a nullák száma a formátumkódban, akkor további számjegyek kerülnek megjelenítésre formázás nélkül."
-
-#. *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 "A tizedesjegyek száma a számban a nullák számának megfelelően kerül kerekítésre, amelyek a tízes elválasztó után jelennek meg a <emph>Formátum</emph> kódban."
-
-#. 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 "<emph>#:</emph> Ha a <emph>Szám</emph> tartalmaz számjegyet a # helyettesítő pozícióján, a <emph>Formátum</emph> kódban, akkor a számjegy megjelenik, ellenkező esetben semmi nem jelenik meg ezen a pozíción."
-
-#. 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 "Ez a szimbólum úgy működik, mint a 0, azzal a kivétellel, hogy a kezdő vagy záró nullák nem jelennek meg, ha több # karakter van a formátumkódban, mint számjegy a számban. Csak a szám érintett számjegyei jelennek meg."
-
-#. \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 "<emph>.:</emph> A tizedes helykitöltő meghatározza a tizedesjegyek számát a tizedesjeltől jobbra és balra."
-
-#. ]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 "Ha a formátumkód csak # helykitöltőket tartalmaz ettől a szimbólumtól balra, akkor az 1-nél nagyobb számok tizedesjellel kezdődnek. Ha a törtszámot mindig kezdő nullákkal kívánja megjeleníteni, akkor használja a 0-t helykitöltőként a tizedesjeltől balra levő első számjegyhez."
-
-#. 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 "<emph>%:</emph> Megszorozza a számot százzal, és beszúrja a százalékjelet (%), ahol a szám feltűnik a formátumkódban."
-
-#. )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 "<emph>E- E+ e- e+ :</emph> Ha a formátumkód legalább egy számjegy-helykitöltőt (0 vagy #) tartalmaz az E-, E+, e- vagy e+ szimbólumtól jobbra, akkor a szám tudományos vagy exponenciális formátumban kerül formázásra. Az E vagy e betű beszúrásra kerül a szám és a kitevő közé. A szimbólumtól jobbra levő számjegy-helykitöltők száma meghatározza a kitevő számjegyeinek számát."
-
-#. 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 "Ha a kitevő negatív, akkor egy mínuszjel jelenik meg közvetlenül az E-, E+, e- vagy e+ kitevő előtt. Ha a kitevő pozitív, akkor csak az E+ vagy e+ kitevő előtt jelenik meg pluszjel."
-
-#. ^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 "Az ezreselválasztó akkor jelenik meg, ha a formátumkód az elválasztót számjegy-helykitöltőkkel (0 vagy #) együtt tartalmazza."
-
-#. \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 "Hogy a rendszer a pontot ezreselválasztóként vagy tizedesjelként használja, az a területi beállítástól függ. Ha egy számot közvetlenül a Basic-kódba ír be, mindig pontot használjon tizedesjelként. A tizedesjelként megjelenő karakter a rendszerbeállítások számformátumától függ."
-
-#. 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 "<emph>- + $ ( ) szóköz:</emph> Egy pluszjel (+), mínuszjel (-), dollár ($), szóköz vagy zárójel, amely a formátumkódba közvetlenül lett beírva, az adott karakterként fog megjelenni."
-
-#. ,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 "Az itt megjelenített karakterektől különböző karakterek megjelenítéséhez fordított perjelet (\\) kell eléjük írni, vagy idézőjelek (\" \") közé kell őket tenni."
-
-#. 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 "\\ : A fordított perjel megjeleníti az utána következő karaktert a formátumkódban."
-
-#. 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 "A formátumkódban levő speciális jelentéssel bíró karakterek csak akkor jelennek meg az adott karakterekként, ha ezeket fordított perjel előzi meg. A fordított perjel maga nem jelenik meg, hacsak nem dupla fordított perjelet (\\\\) ír be a formátumkódba."
-
-#. 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 "Karakterek, amelyek előtt fordított perjelnek kell lennie a formátumkódban annak érdekében, hogy az adott karakterekként jelenjenek meg a dátum- és időformázási karakterek (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numerikus formázási karakterek (#, 0, %, E, e, vessző, pont) és a karakterlánc-formázási karakterek (@, &, <, >, !)"
-
-#. 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 "Az alábbi előre meghatározott számformátumokat is használhatja. Az „Általános szám” kivételével az összes előre meghatározott formátumkód a számot decimális számként adja vissza két tizedesjeggyel."
-
-#. 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 "Ha az előre meghatározott formátumokat használja, akkor a formátum nevét idézőjelek közé kell tenni."
-
-#. !uN6
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149377\n"
-"32\n"
-"help.text"
-msgid "Predefined format"
-msgstr "Előre meghatározott formátum"
-
-#. !/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>Általános szám:</emph> A számok úgy jelennek meg, ahogy beírta őket."
-
-#. 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 "<emph>Pénznem</emph> A szám elé dollárjelet illeszt, valamint a negatív számokat zárójelek közé teszi."
-
-#. #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 "<emph>Rögzített:</emph> A tizedesjel előtt legalább egy számjegyet megjelenít."
-
-#. 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 "<emph>Szabványos:</emph> A számokat ezreselválasztóval jeleníti meg."
-
-#. 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 "<emph>Százalék:</emph> Megszorozza a számot százzal, és egy százalékjelet fűz hozzá."
-
-#. \.{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 "<emph>Tudományos:</emph> A számot tudományos formátumban jeleníti meg (például 1,00E+03 az 1000 helyett)."
-
-#. 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 "A formátumkód három részre van osztva, amelyeket pontosvesszők választanak el. Az első rész meghatározza a pozitív értékek formátumát, a második rész a negatív értékekét, a harmadik rész pedig a nullához tartozik. Ha csak egy formátumkódot ad meg, akkor az az összes számra érvényes."
-
-#. Rz+M
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"40\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. VV];
-#: 03120301.xhp
-#, fuzzy
-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 "REM ha egy számot a Basic-kódba ír be, mindig pontot használjon tizedesjelként"
-
-#. `8fh
-#: 03120301.xhp
-#, fuzzy
-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 "REM például 6,328.20 értéket jelenít meg angol helyi beállítások esetén, és 6 328,20 értéket jelenít meg magyar helyi beállítások esetén"
-
-#. rhgh
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic IDE"
-msgstr "$[officename] Basic IDE"
-
-#. #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 "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
-
-#. 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 "Ez a szakasz a Basic IDE felépítésének leírását tartalmazza."
-
-#. 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 "<ahelp hid=\".\" visibility=\"hidden\">Megnyitja a Basic IDE ablakot, amelyben makrókat írhat és szerkeszthet.</ahelp>"
-
-#. 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 "Parancsok a helyi menü modulfüleiről"
-
-#. VY?,
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
-"6\n"
-"help.text"
-msgid "Insert"
-msgstr "Beszúrás"
-
-#. !!P-
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3151074\n"
-"8\n"
-"help.text"
-msgid "Module"
-msgstr "Modul"
-
-#. 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 "<ahelp hid=\".uno:NewModule\">Új modult ad az aktuális programkönyvtárhoz.</ahelp>"
-
-#. `76?
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
-"help.text"
-msgid "Dialog"
-msgstr "Párbeszédablak"
-
-#. 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 "<ahelp hid=\".uno:NewDialog\">Új párbeszédablakot ad az aktuális programkönyvtárhoz.</ahelp>"
-
-#. n^7(
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3155602\n"
-"12\n"
-"help.text"
-msgid "Delete"
-msgstr "Törlés"
-
-#. 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 "<ahelp hid=\".uno:DeleteCurrent\">Törli a kijelölt modult.</ahelp>"
-
-#. aX|H
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3149018\n"
-"14\n"
-"help.text"
-msgid "Rename"
-msgstr "Átnevezés"
-
-#. 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 "<ahelp hid=\".uno:RenameCurrent\">Átnevezi az aktuális modult.</ahelp>"
-
-#. 8-.;
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3150043\n"
-"16\n"
-"help.text"
-msgid "Hide"
-msgstr "Elrejtés"
-
-#. 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 "<ahelp hid=\".uno:HideCurPage\">Elrejti az aktuális modult.</ahelp>"
-
-#. \/`\
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3163805\n"
-"18\n"
-"help.text"
-msgid "Modules"
-msgstr "Modulok"
-
-#. 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 "Megnyitja a <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Makrószervező\"><emph>Makrószervező</emph></link> párbeszédablakot."
-
-#. !=:c
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "DateDiff függvény [futásidejű]"
-
-#. mwyq
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"bm_id6134830\n"
-"help.text"
-msgid "<bookmark_value>DateDiff function</bookmark_value>"
-msgstr "<bookmark_value>DateDiff függvény</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 "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff függvény [futásidejű]</link>"
-
-#. 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 "Két adott dátum közötti dátumintervallumok számát adja eredményül."
-
-#. B60f
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ;ixa
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-msgstr "DateDiff (növekmény, 1. dátum, 2. dátum [, hét_kezdete [, év_kezdete]])"
-
-#. fkQW
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. qb0[
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "A number."
-msgstr "Egy szám."
-
-#. /2X1
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10652\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>növekmény</emph> - Karakterlánc-kifejezés a következő táblázatból, amely a dátumintervallumot határozza meg."
-
-#. ):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>1. dátum, 2. dátum</emph> - A két összehasonlítandó dátumérték."
-
-#. 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>hét_kezdete</emph> - Elhagyható paraméter, amely a hét kezdőnapját határozza meg."
-
-#. }v1d
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
-"help.text"
-msgid "Week_start value"
-msgstr "hét_kezdete érték"
-
-#. [:/@
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10680\n"
-"help.text"
-msgid "Explanation"
-msgstr "Magyarázat"
-
-#. !HLR
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10687\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. 32cP
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1068D\n"
-"help.text"
-msgid "Use system default value"
-msgstr "Az alapértelmezett rendszerbeállítás használata"
-
-#. wcO%
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10694\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. :z=8
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1069A\n"
-"help.text"
-msgid "Sunday (default)"
-msgstr "Vasárnap (alapértelmezett)"
-
-#. 61AV
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106A1\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. dx7G
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106A7\n"
-"help.text"
-msgid "Monday"
-msgstr "Hétfő"
-
-#. 3`e!
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106AE\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. i(-,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106B4\n"
-"help.text"
-msgid "Tuesday"
-msgstr "Kedd"
-
-#. ap-Y
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106BB\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. DGl/
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106C1\n"
-"help.text"
-msgid "Wednesday"
-msgstr "Szerda"
-
-#. 6IYN
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106C8\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. vDTZ
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Thursday"
-msgstr "Csütörtök"
-
-#. 2PVo
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106D5\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. nWk,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106DB\n"
-"help.text"
-msgid "Friday"
-msgstr "Péntek"
-
-#. oP_K
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106E2\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#. :~P=
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106E8\n"
-"help.text"
-msgid "Saturday"
-msgstr "Szombat"
-
-#. _)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>év_kezdete</emph> - Elhagyható paraméter, amely az év kezdőhetét határozza meg."
-
-#. af3,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106FB\n"
-"help.text"
-msgid "Year_start value"
-msgstr "év_kezdete érték"
-
-#. LW1#
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10701\n"
-"help.text"
-msgid "Explanation"
-msgstr "Magyarázat"
-
-#. LF06
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10708\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. ^JG.
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1070E\n"
-"help.text"
-msgid "Use system default value"
-msgstr "Az alapértelmezett rendszerbeállítás használata"
-
-#. K^M*
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10715\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. yjEK
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1071B\n"
-"help.text"
-msgid "Week 1 is the week with January, 1st (default)"
-msgstr "Az 1. hét a január 1-jét tartalmazó hét (alapértelmezett)."
-
-#. RkO3
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10722\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. 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 "Az 1. hét az első hét, amely négy vagy több napot tartalmaz az adott évből."
-
-#. 5C]*
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1072F\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. 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 "Az 1. hét az első hét, amelynek az összes napja az új évre esik."
-
-#. Os(u
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10738\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Jh2j
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"tit\n"
-"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "While...Wend utasítás [futásidejű]"
-
-#. Vmlp
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"bm_id3150400\n"
-"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr "<bookmark_value>While;While...Wend ciklus</bookmark_value>"
-
-#. zB.e
-#: 03090203.xhp
-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/03090203.xhp\" name=\"While...Wend utasítás [futásidejű]\">While...Wend utasítás [futásidejű]</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 "Ha a program While utasítást talál, akkor megvizsgálja a feltételt. Ha a feltétel hamis, akkor a program közvetlenül a Wend utasítás után folytatja. Ha a feltétel igaz, akkor a ciklus addig hajtódik végre, amíg a program meg nem találja a Wend utasítást, majd visszaugrik a <emph>While</emph> utasításra. Ha a feltétel továbbra is igaz, akkor a ciklus újra végrehajtásra kerül."
-
-#. 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 "A <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> utasítással ellentétben, a <emph>While...Wend</emph> ciklust nem fejezheti be az <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> utasítással. While...Wend ciklusból ne lépjen ki a <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link> utasítással, mert ez futásidejű hibát okozhat."
-
-#. ^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 "Egy Do...Loop ciklus sokkal rugalmasabb, mint egy While...Wend ciklus."
-
-#. k\=@
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. buAW
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
-"6\n"
-"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr "While Feltétel [Utasítás] Wend"
-
-#. jmL!
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 7pZ8
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
-"8\n"
-"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Sub ExampleWhileWend"
-
-#. ZGif
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
-"9\n"
-"help.text"
-msgid "Dim stext As String"
-msgstr "Dim stext As String"
-
-#. ^?v_
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3153143\n"
-"10\n"
-"help.text"
-msgid "Dim iRun As Integer"
-msgstr "Dim iRun As Integer"
-
-#. NCeQ
-#: 03090203.xhp
-#, fuzzy
-msgctxt ""
-"03090203.xhp\n"
-"par_id3155306\n"
-"11\n"
-"help.text"
-msgid "sText =\"This Is a short text\""
-msgstr "sText =\"Ez egy rövid szöveg\""
-
-#. Tj*V
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
-"12\n"
-"help.text"
-msgid "iRun = 1"
-msgstr "iRun = 1"
-
-#. u/L0
-#: 03090203.xhp
-#, fuzzy
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147215\n"
-"13\n"
-"help.text"
-msgid "While iRun < Len(sText)"
-msgstr "while iRun < Len(sText)"
-
-#. )rN[
-#: 03090203.xhp
-#, fuzzy
-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 "if Mid(sText,iRun,1 )<> \" \" then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
-
-#. 3`((
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3149665\n"
-"15\n"
-"help.text"
-msgid "iRun = iRun + 1"
-msgstr "iRun = iRun + 1"
-
-#. n]=+
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3152939\n"
-"16\n"
-"help.text"
-msgid "Wend"
-msgstr "Wend"
-
-#. `ouM
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3153189\n"
-"17\n"
-"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
-msgstr "MsgBox sText,0,\"Kódolt szöveg\""
-
-#. QrEj
-#: 03090203.xhp
-#, fuzzy
-msgctxt ""
-"03090203.xhp\n"
-"par_id3145251\n"
-"18\n"
-"help.text"
-msgid "End Sub"
-msgstr "End Sub"
-
-#. byqU
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"tit\n"
-"help.text"
-msgid "Global Statement [Runtime]"
-msgstr "Global utasítás [futásidejű]"
-
-#. h?4U
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "<bookmark_value>Global utasítás</bookmark_value>"
-
-#. [\9X
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3159201\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global utasítás [futásidejű]\">Global utasítás [futásidejű]</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 "Dimenzionál egy globális szinten (azaz nem függvényben vagy szubrutinban) levő változót vagy tömböt, így a változó vagy a tömb az aktuális munkafolyamat minden könyvtárában és moduljában elérhető lesz."
-
-#. R0V5
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3143270\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Global Változónév[(kezdés To befejezés)] [As Változótípus][, Változónév2[(kezdés To befejezés)] [As Változótípus][,...]]"
-
-#. S$s}
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ]EH+
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Const Statement [Runtime]"
-msgstr "Const utasítás [futásidejű]"
-
-#. \KxL
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>Const statement</bookmark_value>"
-msgstr "<bookmark_value>Const utasítás</bookmark_value>"
-
-#. Y2Ii
-#: 03100700.xhp
-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/03100700.xhp\" name=\"Const utasítás [futásidejű]\">Const utasítás [futásidejű]</link>"
-
-#. f[^b
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3154143\n"
-"2\n"
-"help.text"
-msgid "Defines a string as a constant."
-msgstr "Egy karakterláncot állandóként határoz meg."
-
-#. lky~
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. FFIO
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "Const Text = Expression"
-msgstr "Const Szöveg = Kifejezés"
-
-#. X#@O
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ,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 "<emph>Szöveg:</emph> Bármilyen állandónév, amely követi a szabványos változóelnevezés szabályait."
-
-#. 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 "Az állandó egy változó, amely segítségével növelhető a program olvashatósága. Az állandók nem adott típusú változóként vannak megadva, hanem helykitöltőként használhatók a kódban. Az állandót csak egyszer adhatja meg, és nem módosíthatja. Az alábbi utasítás segítségével adhat meg állandót:"
-
-#. K))V
-#: 03100700.xhp
-#, fuzzy
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150542\n"
-"8\n"
-"help.text"
-msgid "CONST ConstName=Expression"
-msgstr "CONST ÁllandóNeve=Kifejezés"
-
-#. 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 "A kifejezés típusa lényegtelen. A program indításakor a $[officename] Basic belsőleg konvertálja a programkódot, így az állandót használatakor a megadott kifejezés helyettesíti."
-
-#. Mgh,
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "Const sVar = \"Program\", dVar As Double = 1.00"
-
-#. d%V_
-#: 01020200.xhp
-msgctxt ""
-"01020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Objects"
-msgstr "Objektumok használata"
-
-#. (,: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 "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Az Objektumkatalógus használata</link></variable>"
-
-#. 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 "Az objektumkatalógus áttekintést nyújt a $[officename] programban létrehozott modulokról és párbeszédablakokról."
-
-#. 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 "Kattintson az <emph>Objektumkatalógus</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Ikon</alt></image> ikonra a Makró eszköztáron az objektumkatalógus megjelenítéséhez."
-
-#. 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 "A párbeszédablak a meglévő objektumok listáját hierarchikusan jeleníti meg. A listabejegyzésre történő dupla kattintással megnyílnak az alárendelt objektumok."
-
-#. 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 "Adott modul Szerkesztőben történő megjelenítéséhez vagy a kurzor kiválasztott szubrutinban vagy függvényben történő pozicionálásához válassza ki a megfelelő bejegyzést, és kattintson a <emph>Megjelenítés</emph> <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Ikon</alt></image> ikonra."
-
-#. 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 "Kattintson az (X) ikonra a címsoron az objektumkatalógus bezárásához."
-
-#. WFqN
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"tit\n"
-"help.text"
-msgid "FreeLibrary Function [Runtime]"
-msgstr "FreeLibrary függvény [futásidejű]"
-
-#. H(i8
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"bm_id3143270\n"
-"help.text"
-msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
-msgstr "<bookmark_value>FreeLibrary függvény</bookmark_value>"
-
-#. b;R5
-#: 03090405.xhp
-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/03090405.xhp\" name=\"FreeLibrary függvény [futásidejű]\">FreeLibrary függvény [futásidejű]</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 "Felszabadítja a Declare utasítás által betöltött DLL-eket. A felszabadított DLL automatikusan ismét betöltésre kerül az egyik függvénye meghívásakor. Lásd még: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
-
-#. *?hV
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3148550\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. O;El
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"par_id3153361\n"
-"4\n"
-"help.text"
-msgid "FreeLibrary (LibName As String)"
-msgstr "FreeLibrary (LibName As String)"
-
-#. xxsM
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Libnév:</emph> String (karakterlánc) kifejezés, amely a DLL nevét adja meg."
-
-#. 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 "A FreeLibrary utasítás csak olyan DLL-eket tud felszabadítani, amelyek a Basic futásideje alatt töltődtek be."
-
-#. 8$_%
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. q#8w
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Static Statement [Runtime]"
-msgstr "Static utasítás [futásidejű]"
-
-#. X!gU
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"bm_id3149798\n"
-"help.text"
-msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "<bookmark_value>Static utasítás</bookmark_value>"
-
-#. ;fK:
-#: 03103500.xhp
-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/03103500.xhp\" name=\"Static utasítás [futásidejű]\">Static utasítás [futásidejű]</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 "Egy változót vagy tömböt deklarál eljárásszinten egy szubrutinon vagy függvényen belül, így a változó vagy tömb értékei a szubrutinból vagy függvényből kilépés után is megmaradnak. A Dim utasítás elnevezési szokásai is érvényesek."
-
-#. -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 "A <emph>Static utasítás</emph> nem használható változótömbök megadásához. A tömböket a rögzített méretűnek kell megadni."
-
-#. MD]%
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3149657\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. -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 "Static Változónév[(kezdés To befejezés)] [As Változótípus][, Változónév2[(kezdés To befejezés)] [As Változótípus][,...]]"
-
-#. EYIV
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3148452\n"
-"6\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. M5l*
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id3150870\n"
-"11\n"
-"help.text"
-msgid "MsgBox iResult,0,\"The answer is\""
-msgstr "MsgBox iResult,0,\"A válasz\""
-
-#. .^,U
-#: 03103500.xhp
-#, fuzzy
-msgctxt ""
-"03103500.xhp\n"
-"par_id3151115\n"
-"15\n"
-"help.text"
-msgid "' Function for initialization of the static variable"
-msgstr "REM A statikus változó inicializáló függvénye"
-
-#. EnDf
-#: 03103500.xhp
-#, fuzzy
-msgctxt ""
-"03103500.xhp\n"
-"par_id1057161\n"
-"help.text"
-msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
-msgstr "Const iMinimum as Integer = 40 REM a függvény minimális visszatérési értéke"
-
-#. Ab^$
-#: 03103500.xhp
-#, fuzzy
-msgctxt ""
-"03103500.xhp\n"
-"par_id580462\n"
-"help.text"
-msgid "If iInit = 0 Then ' check if initialized"
-msgstr "if iInit = 0 then REM inicializálva van-e"
-
-#. ,3#z
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"tit\n"
-"help.text"
-msgid "For...Next Statement [Runtime]"
-msgstr "For...Next utasítás [futásidejű]"
-
-#. ~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 "<bookmark_value>For utasítás</bookmark_value><bookmark_value>To utasítás</bookmark_value><bookmark_value>Step utasítás</bookmark_value><bookmark_value>Next utasítás</bookmark_value>"
-
-#. `mMQ
-#: 03090202.xhp
-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/03090202.xhp\" name=\"For...Next utasítás [futásidejű]\">For...Next utasítás [futásidejű]</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 "Meghatározott számú alkalommal megismétli a For...Next blokkban levő utasításokat."
-
-#. {Or3
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. __M)
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3148473\n"
-"4\n"
-"help.text"
-msgid "For counter=start To end [Step step]"
-msgstr "For számláló=kezdés To befejezés [Step lépés]"
-
-#. ^;Bt
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156024\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. }jj%
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3146796\n"
-"6\n"
-"help.text"
-msgid "[Exit For]"
-msgstr "[Exit For]"
-
-#. 12{v
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3159414\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. C,Q@
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153897\n"
-"8\n"
-"help.text"
-msgid "Next [counter]"
-msgstr "Next [számláló]"
-
-#. slKh
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
-"9\n"
-"help.text"
-msgid "Variables:"
-msgstr "Változók:"
-
-#. ^.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 "<emph>Számláló:</emph> A ciklusszámlálóhoz kezdetben az egyenlőségjel jobb oldalán érték van hozzárendelve (kezdés). Csak numerikus változók használhatók. A ciklusszámláló értéke növekszik vagy csökken a Lépés változónak megfelelően a Befejezés elérésig."
-
-#. `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 "<emph>Kezdés:</emph> Numerikus változó, amely meghatározza a kezdőértéket a ciklus elején."
-
-#. 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 "<emph>Befejezés:</emph> Numerikus változó, amely meghatározza a befejező a ciklus végén."
-
-#. +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 "<emph>Lépés:</emph> Beállítja az értéket, amellyel a ciklusszámlálót növelni vagy csökkenteni kell. Ha a Lépés nincs megadva, akkor a ciklusszámlálót 1-gyel növeli a program. Ebben az esetben a Befejezés értékének nagyobbnak kell lennie a Kezdés értékénél. Ha csökkenteni kívánja a számlálót, akkor a Befejezés értékének kevesebbnek kell lennie a Kezdés értékénél, és a Lépéshez egy negatív értéket kell rendelni."
-
-#. ?;*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 "A <emph>For...Next</emph> ciklus a ciklus összes utasítását a paraméterek által meghatározott számszor ismétli."
-
-#. ?+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 "A számláló értékének csökkentésekor a $[officename] Basic ellenőrzi, hogy az elérte-e a végső értékét. Ha a számláló meghaladja a végső értékét, akkor a ciklus automatikusan befejeződik."
-
-#. 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 "A <emph>For...Next</emph> utasítások beágyazhatók. Ha nem ad meg változót a <emph>Next</emph> utasítás után, akkor a <emph>Next</emph> automatikusan a legutoljára végrehajtott <emph>For</emph> utasításra hivatkozik."
-
-#. {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 "Ha 0 növelést ad meg, akkor a <emph>For</emph> és <emph>Next</emph> közötti utasítások folyamatosan ismétlődnek."
-
-#. 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 "Ha a számláló lefelé számlál, akkor a $[officename] Basic ellenőrzi a túlcsordulást és az alulcsordulást. A ciklusnak akkor van vége, ha a Számláló nagyobb (pozitív Lépés esetén), vagy kisebb (negatív Lépés esetén) lesz, mint a Befejezés értéke."
-
-#. \*[:
-#: 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 "Az <emph>Exit For</emph> utasítás segítségével feltétel nélkül kiléphet a ciklusból. Ennek az utasításnak a <emph>For...Next</emph> cikluson belül kell lennie. Az <emph>If...Then</emph> utasítás segítségével tesztelheti a kilépési feltételt az alábbiak szerint:"
-
-#. J09K
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153190\n"
-"20\n"
-"help.text"
-msgid "For..."
-msgstr "For..."
-
-#. _9\N
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149482\n"
-"21\n"
-"help.text"
-msgid "statements"
-msgstr "utasítások"
-
-#. ZC`N
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3147124\n"
-"22\n"
-"help.text"
-msgid "If condition = True Then Exit For"
-msgstr "If feltétel = True Then Exit For"
-
-#. @k5[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153159\n"
-"23\n"
-"help.text"
-msgid "statements"
-msgstr "utasítások"
-
-#. 6CCT
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3154096\n"
-"24\n"
-"help.text"
-msgid "Next"
-msgstr "Next"
-
-#. 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 "Megjegyzés: Ha beágyazott <emph>For...Next</emph> ciklusokban az <emph>Exit For</emph> utasítással feltétel nélkül kilép a ciklusból, akkor csak egy ciklusból lép ki."
-
-#. _T2X
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A következő példa két egymásba ágyazott ciklust használ egy 10 olyan elemet (sEntry()) tartalmazó karakterlánc-tömb rendezésére, amely elemeknek először értéket ad:"
-
-#. 2i+H
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155767\n"
-"42\n"
-"help.text"
-msgid "sEntry(0) = \"Jerry\""
-msgstr "sEntry(0) = \"Jerry\""
-
-#. VU!z
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153711\n"
-"33\n"
-"help.text"
-msgid "sEntry(1) = \"Patty\""
-msgstr "sEntry(1) = \"Patty\""
-
-#. m{kB
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3148993\n"
-"34\n"
-"help.text"
-msgid "sEntry(2) = \"Kurt\""
-msgstr "sEntry(2) = \"Kurt\""
-
-#. 2-fN
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156382\n"
-"35\n"
-"help.text"
-msgid "sEntry(3) = \"Thomas\""
-msgstr "sEntry(3) = \"Thomas\""
-
-#. dxv%
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155174\n"
-"36\n"
-"help.text"
-msgid "sEntry(4) = \"Michael\""
-msgstr "sEntry(4) = \"Michael\""
-
-#. ]72:
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3166448\n"
-"37\n"
-"help.text"
-msgid "sEntry(5) = \"David\""
-msgstr "sEntry(5) = \"David\""
-
-#. pj:`
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149255\n"
-"38\n"
-"help.text"
-msgid "sEntry(6) = \"Cathy\""
-msgstr "sEntry(6) = \"Cathy\""
-
-#. U]~E
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149565\n"
-"39\n"
-"help.text"
-msgid "sEntry(7) = \"Susie\""
-msgstr "sEntry(7) = \"Susie\""
-
-#. xd6[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145148\n"
-"40\n"
-"help.text"
-msgid "sEntry(8) = \"Edward\""
-msgstr "sEntry(8) = \"Edward\""
-
-#. 7EOX
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145229\n"
-"41\n"
-"help.text"
-msgid "sEntry(9) = \"Christine\""
-msgstr "sEntry(9) = \"Christine\""
-
-#. 31_S
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDir Statement [Runtime]"
-msgstr "ChDir utasítás [futásidejű]"
-
-#. +Fs@
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"bm_id3150178\n"
-"help.text"
-msgid "<bookmark_value>ChDir statement</bookmark_value>"
-msgstr "<bookmark_value>ChDir utasítás</bookmark_value>"
-
-#. -PV%
-#: 03020401.xhp
-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/03020401.xhp\" name=\"ChDir utasítás [futásidejű]\">ChDir utasítás [futásidejű]</link>"
-
-#. VXSm
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Changes the current directory or drive."
-msgstr "Megváltoztatja az aktuális könyvtárat vagy meghajtót."
-
-#. 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 "Ez a futásidejű utasítás jelenleg nem a dokumentációnak megfelelően működik. További információért lásd <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">ezt a hibajegyet</link>."
-
-#. mWxI
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. vL}!
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3153897\n"
-"4\n"
-"help.text"
-msgid "ChDir Text As String"
-msgstr "ChDir Szöveg As String"
-
-#. D?`]
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3148664\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés, amely meghatározza az elérési utat vagy a meghajtót."
-
-#. 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 "Ha csak az aktuális meghajtót szeretne megváltoztatni, akkor írja be a meghajtó betűjelét, majd tegyen utána kettőspontot."
-
-#. sMR;
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. (,Hp
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Other Commands"
-msgstr "Egyéb parancsok"
-
-#. ,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=\"Egyéb parancsok\">Egyéb parancsok</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 "Ez a lista azokat a függvényeket és utasításokat tartalmazza, amelyek egyik eddig felsorolt kategóriába sem tartoznak."
-
-#. BBq(
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date Statement [Runtime]"
-msgstr "Date utasítás [futásidejű]"
-
-#. ?b=N
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>Date utasítás</bookmark_value>"
-
-#. VzM#
-#: 03030301.xhp
-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/03030301.xhp\" name=\"Date utasítás [futásidejű]\">Date utasítás [futásidejű]</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 "Karakterláncként adja vissza az aktuális dátumot, vagy visszaállítja a dátumot. A dátumformátum a rendszer területi beállításaitól függ."
-
-#. i=_h
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. @fcn
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
-"4\n"
-"help.text"
-msgid "Date ; Date = Text As String"
-msgstr "Date ; Date = Szöveg As String"
-
-#. zk?6
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. \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 "<emph>Szöveg:</emph> Csak a rendszerdátum visszaállításához szükséges. Ebben az esetben a string (karakterlánc) kifejezésnek meg kell felelnie a területi beállításokban megadott dátumformátumnak."
-
-#. j(;,
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. `d15
-#: 03030301.xhp
-#, fuzzy
-msgctxt ""
-"03030301.xhp\n"
-"par_id3156424\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"The date is \" & Date"
-msgstr "msgbox \"A dátum \" & Date"
-
-#. 3o#{
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"tit\n"
-"help.text"
-msgid "LSet Statement [Runtime]"
-msgstr "LSet utasítás [futásidejű]"
-
-#. 6c?G
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"bm_id3143268\n"
-"help.text"
-msgid "<bookmark_value>LSet statement</bookmark_value>"
-msgstr "<bookmark_value>LSet utasítás</bookmark_value>"
-
-#. 1O%o
-#: 03120304.xhp
-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/03120304.xhp\" name=\"LSet utasítás [futásidejű]\">LSet utasítás [futásidejű]</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 "Hozzáigazít egy karakterláncot egy string (karakterlánc) változó bal oldalához, vagy átmásol egy felhasználó által definiált típusú változót egy másik, felhasználó által definiált típusú változóba."
-
-#. D.~5
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 Változó As String = Szöveg vagy LSet Változó1 = Változó2"
-
-#. asqR
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Változó:</emph> Bármilyen string (karakterlánc) változó, amely a balra igazítandó karakterláncot tartalmazza."
-
-#. 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>Szöveg:</emph> Karakterlánc, amelyet a string (karakterlánc) változó bal oldalához akar igazítani."
-
-#. -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 "<emph>Változó1:</emph> Annak a felhasználó által definiált típusú változónak a neve, amelyre másolni akar."
-
-#. 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 "<emph>Változó2:</emph> Annak a felhasználó által definiált típusú változónak a neve, amelyről másolni akar."
-
-#. 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 "Ha a karakterlánc rövidebb a string (karakterlánc) változónál, akkor az <emph>LSet</emph> balra igazítja a karakterláncot a string (karakterlánc) változón belül. A string (karakterlánc) változó fennmaradó helyeit szóközökre cseréli. Ha a karakterlánc hosszabb a string (karakterlánc) változónál, akkor csak a string (karakterlánc) változó maximális hosszáig tartó bal oldali karakterek kerülnek átmásolásra. Az <emph>LSet</emph> utasítással felhasználó által definiált típus változót is átmásolhat ugyanazon típus másik változójába."
-
-#. kIO8
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 „SBX” igazítása a 40 karakteres hivatkozás-karakterláncon belül"
-
-#. HaY(
-#: 03120304.xhp
-#, fuzzy
-msgctxt ""
-"03120304.xhp\n"
-"par_id3148647\n"
-"19\n"
-"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "REM Csillagok lecserélése szóközökre"
-
-#. 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 „SBX” balra igazítása a 40 karakteres hivatkozás-karakterláncon belül"
-
-#. .Y-.
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateToIso Function [Runtime]"
-msgstr "CDateToIso függvény [futásidejű]"
-
-#. T@iq
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"bm_id3150620\n"
-"help.text"
-msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "<bookmark_value>CdateToIso függvény</bookmark_value>"
-
-#. G(Pa
-#: 03030107.xhp
-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/03030107.xhp\" name=\"CDateToIso függvény [futásidejű]\">CDateToIso függvény [futásidejű]</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 "Visszaadja a DateSerial vagy DateValue függvény által meghatározott soros dátumértéknek megfelelő dátumot ISO formátumban."
-
-#. loc}
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. Frk:
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "CDateToIso(Number)"
-msgstr "CDateToIso(Szám)"
-
-#. ^SX9
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3152347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. P#9f
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Karakterlánc"
-
-#. Ic5v
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Integer (egész szám) kifejezés, amely a soros dátumértéket tartalmazza."
-
-#. 0l@n
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. pI*X
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3153126\n"
-"11\n"
-"help.text"
-msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
-msgstr "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO-dátum\""
-
-#. 8*mH
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Shell függvény [futásidejű]"
-
-#. YqY)
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "<bookmark_value>Shell függvény</bookmark_value>"
-
-#. E4M^
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150040\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell függvény [futásidejű]\">Shell függvény [futásidejű]</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 "Elindít egy másik alkalmazást, és ha szükséges, meghatározza az alkalmazáshoz tartozó megfelelő ablakstílust."
-
-#. q2a$
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3153345\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 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 (ElérésiÚt As String[, Ablakstílus As Integer][, Paraméter As String][, Szinkronizálás])"
-
-#. bRF,
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3149235\n"
-"6\n"
-"help.text"
-msgid "Parameter"
-msgstr "Paraméter"
-
-#. /7eO
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3154306\n"
-"23\n"
-"help.text"
-msgid "Pathname"
-msgstr "ElérésiÚt"
-
-#. 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 "Az elindítani kívánt program teljes neve, valamint teljes elérési útja."
-
-#. {Z;{
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
-"help.text"
-msgid "Windowstyle"
-msgstr "Ablakstílus"
-
-#. 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 "Opcionális integer (egész szám) kifejezés, amely meghatározza a program futtatási ablakának stílusát. A következő értékek használhatók:"
-
-#. XqWL
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3148663\n"
-"25\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. ]%##
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3153360\n"
-"10\n"
-"help.text"
-msgid "The focus is on the hidden program window."
-msgstr "A fókusz az elrejtett programablakon van."
-
-#. =Jxf
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3154123\n"
-"26\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. 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 "A fókusz a szabványos méretű programablakon van."
-
-#. ldS.
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3156422\n"
-"27\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. {=E2
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3148451\n"
-"12\n"
-"help.text"
-msgid "The focus is on the minimized program window."
-msgstr "A fókusz a minimalizált programablakon van."
-
-#. _e-7
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3149561\n"
-"28\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. er-5
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3146921\n"
-"13\n"
-"help.text"
-msgid "focus is on the maximized program window."
-msgstr "A fókusz a maximalizált programablakon van."
-
-#. (9TB
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3149481\n"
-"29\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. z|?6
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3155854\n"
-"14\n"
-"help.text"
-msgid "Standard size program window, without focus."
-msgstr "Szabványos méretű programablak, fókusz nélkül."
-
-#. (d^{
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3145271\n"
-"30\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. 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 "Minimalizált programablak, a fókusz az aktív ablakon marad."
-
-#. 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 "Teljes képernyős megjelenítés."
-
-#. .h7[
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150419\n"
-"33\n"
-"help.text"
-msgid "Param"
-msgstr "Paraméter"
-
-#. 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 "Bármilyen string (karakterlánc) kifejezés, amely az átadni kívánt parancssort adja meg."
-
-#. XEdX
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3148456\n"
-"32\n"
-"help.text"
-msgid "bSync"
-msgstr "Szinkronizálás"
-
-#. 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 "Ha az értéke <emph>true</emph> (igaz), akkor a <emph>Shell</emph> parancs és az összes $[officename]-feladat megvárja a shell folyamat befejezését. Ha az értéke <emph>false</emph> (hamis), akkor a Shell parancs azonnal visszaadja a vezérlést. Az alapértelmezett érték <emph>false</emph> (hamis)."
-
-#. kbg)
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3154270\n"
-"19\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 3c41
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "TwipsPerPixelX függvény [futásidejű]"
-
-#. V+uc
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelX függvény</bookmark_value>"
-
-#. yh=N
-#: 03131300.xhp
-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/03131300.xhp\" name=\"TwipsPerPixelX függvény [futásidejű]\">TwipsPerPixelX függvény [futásidejű]</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 "Egy képpont szélességét jelentő twipek számát adja vissza."
-
-#. !(Rz
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Visszatérési érték:"
-
-#. [d~E
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. *I]K
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "MsgBox \"\" & TwipsPerPixelX() & \" twip * \" & TwipsPerPixelY() & \" twip\",0,\"Képpontméret\""
-
-#. NP[f
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CInt Function [Runtime]"
-msgstr "CInt függvény [futásidejű]"
-
-#. n+F[
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>CInt function</bookmark_value>"
-msgstr "<bookmark_value>CInt függvény</bookmark_value>"
-
-#. FFGl
-#: 03100500.xhp
-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/03100500.xhp\" name=\"CInt függvény [futásidejű]\">CInt függvény [futásidejű]</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 "Bármilyen string (karakterlánc) vagy numerikus kifejezést integer (egész szám) értékké alakít."
-
-#. K;K4
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. %`LR
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3154142\n"
-"4\n"
-"help.text"
-msgid "CInt (Expression)"
-msgstr "CInt (Kifejezés)"
-
-#. kldD
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3147531\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. V^@N
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. Ud9N
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> Az átalakítani kívánt numerikus kifejezés. Ha a <emph>Kifejezés</emph> meghaladja a -32768 és 32767 közti tartományt, akkor a $[officename] Basic túlcsordulási hibát jelez. String (karakterlánc) kifejezés átalakításához a számot normál szövegként kell beírni (\"123.5\") az operációs rendszer alapértelmezett számformátumának felhasználásával."
-
-#. *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 "Ez a függvény a szám törtrészét mindig a legközelebbi egészre kerekíti."
-
-#. uvBz
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. UZlO
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateAdd Function [Runtime]"
-msgstr "DateAdd függvény [futásidejű]"
-
-#. V]]l
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"bm_id6269417\n"
-"help.text"
-msgid "<bookmark_value>DateAdd function</bookmark_value>"
-msgstr "<bookmark_value>DateAdd függvény</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 "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd függvény [futásidejű]</link>"
-
-#. 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 "A megadott dátumhoz hozzáad adott számszor egy dátumintervallumot, és visszaadja az eredményként kapott dátumot."
-
-#. 6q_g
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. \(L~
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (növekmény, szám, dátum)"
-
-#. +E,*
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. !_?K
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10622\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr "Egy dátumot tartalmazó Variant."
-
-#. =GEL
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Növekmény - Karakterlánc-kifejezés a következő táblázatból, amely a dátumintervallumot határozza meg."
-
-#. cT:7
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10636\n"
-"help.text"
-msgid "Add (string value)"
-msgstr "Növekmény (karakterlánc)"
-
-#. $l_-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
-"help.text"
-msgid "Explanation"
-msgstr "Magyarázat"
-
-#. 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 "Év"
-
-#. 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 "Negyedév"
-
-#. 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 "Hónap"
-
-#. 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 "Év napja"
-
-#. 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 "Hétköznap"
-
-#. ?: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 "Év hete"
-
-#. ||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 "Nap"
-
-#. 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 "Óra"
-
-#. 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 "Perc"
-
-#. 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 "Másodperc"
-
-#. 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 "Szám - Számkifejezés, amely megadja, hogy hányszor kell a növekményt hozzáadni (pozitív szám esetén) vagy kivonni (negatív szám esetén)."
-
-#. 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 "Dátum - Egy dátum vagy egy dátumot tartalmazó variant változó neve. A növekmény értéke a megadott számszor fog hozzáadódni ehhez az értékhez."
-
-#. s=`S
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 0H}:
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefBool Statement [Runtime]"
-msgstr "DefBool utasítás [futásidejű]"
-
-#. 76_V
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"bm_id3145759\n"
-"help.text"
-msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "<bookmark_value>DefBool utasítás</bookmark_value>"
-
-#. q%r8
-#: 03101100.xhp
-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/03101100.xhp\" name=\"DefBool utasítás [futásidejű]\">DefBool utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a DefBool utasítás a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. 0Kdu
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149495\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. .;d*
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. SZAs
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3159201\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. a!OK
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Kulcsszó: </emph>Alapértelmezett változótípus"
-
-#. SFDf
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"9\n"
-"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
-msgstr "<emph>DefBool:</emph> Boolean (logikai)"
-
-#. -T?9
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. E7!H
-#: 03101100.xhp
-#, fuzzy
-msgctxt ""
-"03101100.xhp\n"
-"par_id3156152\n"
-"12\n"
-"help.text"
-msgid "' Prefix definition for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. T;M`
-#: 03101100.xhp
-#, fuzzy
-msgctxt ""
-"03101100.xhp\n"
-"par_id3151381\n"
-"22\n"
-"help.text"
-msgid "bOK=TRUE ' bOK is an implicit boolean variable"
-msgstr "bOK=TRUE REM a bOK egy implicit boolean (logikai) változó"
-
-#. c3sa
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"tit\n"
-"help.text"
-msgid "SetAttr Statement [Runtime]"
-msgstr "SetAttr utasítás [futásidejű]"
-
-#. Rsjm
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"bm_id3147559\n"
-"help.text"
-msgid "<bookmark_value>SetAttr statement</bookmark_value>"
-msgstr "<bookmark_value>SetAttr utasítás</bookmark_value>"
-
-#. nEMK
-#: 03020414.xhp
-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/03020414.xhp\" name=\"SetAttr utasítás [futásidejű]\">SetAttr utasítás [futásidejű]</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 "Beállítja egy megadott fájl attribútuminformációját."
-
-#. V5)K
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. E6^Z
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3154365\n"
-"4\n"
-"help.text"
-msgid "SetAttr FileName As String, Attribute As Integer"
-msgstr "SetAttr Fájlnév As String, Attribútum As Integer"
-
-#. yY(Y
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3125863\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ;*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 "Fájlnév: A fájl neve, az elérési utat is beleértve, amelynek az attribútumát tesztelni kívánja. Ha nem ad meg elérési utat, akkor a <emph>SetAttr</emph> az aktuális könyvtárban keresi a fájlt. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. 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 "<emph>Attribútum:</emph> A beállítandó vagy törlendő attribútumokat meghatározó bitminta:"
-
-#. E]dD
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3145786\n"
-"8\n"
-"help.text"
-msgid "<emph>Value</emph>"
-msgstr "<emph>Érték</emph>"
-
-#. ~e_9
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3152596\n"
-"9\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0 : Normál fájlok."
-
-#. $::0
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : Csak olvasható fájlok."
-
-#. 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 "32 : A fájl az utolsó biztonsági mentés után megváltozott (Archív bit)."
-
-#. 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 "Különböző attribútumokat is megadhat a megfelelő értékek logikai OR utasítással történő összekapcsolásával."
-
-#. h/6N
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3147434\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Zt[h
-#: 03020414.xhp
-#, fuzzy
-msgctxt ""
-"03020414.xhp\n"
-"par_id3148645\n"
-"17\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr "On Error Goto ErrorHandler REM Definiálja a hibakezelő függvényt"
-
-#. cAVT
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoTo Statement [Runtime]"
-msgstr "GoTo utasítás [futásidejű]"
-
-#. acip
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>GoTo utasítás</bookmark_value>"
-
-#. $rSn
-#: 03090302.xhp
-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/03090302.xhp\" name=\"GoTo utasítás [futásidejű]\">GoTo utasítás [futásidejű]</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 "A program futtatását egy szubrutinon vagy függvényen belül egy címke által megadott sorban folytatja."
-
-#. .C$%
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 6?y5
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr "lásd Paraméterek"
-
-#. 7~/(
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 7hWI
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3156214\n"
-"6\n"
-"help.text"
-msgid "Sub/Function"
-msgstr "Sub/Function"
-
-#. -Oy5
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3156424\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. +=G6
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
-"8\n"
-"help.text"
-msgid "Label1"
-msgstr "Címke1:"
-
-#. BTl-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3145786\n"
-"9\n"
-"help.text"
-msgid "<emph>Label2:</emph>"
-msgstr "<emph>Címke2:</emph>"
-
-#. j]iD
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. qf^i
-#: 03090302.xhp
-#, fuzzy
-msgctxt ""
-"03090302.xhp\n"
-"par_id3146120\n"
-"11\n"
-"help.text"
-msgid "Exit Sub"
-msgstr "Exit Sub"
-
-#. Getr
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3150010\n"
-"12\n"
-"help.text"
-msgid "<emph>Label1:</emph>"
-msgstr "<emph>Címke1:</emph>"
-
-#. f]*s
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. v(O_
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "GoTo Label2"
-msgstr "GoTo Címke2"
-
-#. }(H!
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/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 "A GoTo utasítás hatására a $[officename] Basic a program végrehajtását egy másik helyen folytatja az eljáráson belül. A helyet címkével kell jelölni. A címke beállításához rendeljen hozzá egy nevet, és zárja le egy kettősponttal (\":\")."
-
-#. 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 "Nem használhatja a GoTo parancsot egy szubrutinból vagy egy függvényből való kilépésre."
-
-#. qJE0
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3154731\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. oE/4
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id6967035\n"
-"help.text"
-msgid "see Parameters"
-msgstr "lásd Paraméterek"
-
-#. =.T-
-#: 03080700.xhp
-msgctxt ""
-"03080700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Expression Signs"
-msgstr "Előjelfüggvény"
-
-#. ;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 "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Előjelfüggvény\">Előjelfüggvény</link>"
-
-#. 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 "Ez a függvény egy numerikus kifejezés előjelét adja vissza."
-
-#. 4kcu
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"tit\n"
-"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr "RSet utasítás [futásidejű]"
-
-#. :3z6
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>RSet statement</bookmark_value>"
-msgstr "<bookmark_value>RSet utasítás</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 utasítás [futásidejű]\">RSet utasítás [futásidejű]</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 "Jobbra igazít egy karakterláncot egy string (karakterlánc) változón belül, vagy átmásol egy felhasználó által definiált típusú változót egy másik változóba."
-
-#. 0OU)
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. :]@*
-#: 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 Szöveg As String = Szöveg vagy RSet Változó1 = Változó1"
-
-#. \P=Q
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. A6PV
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3148552\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string variable."
-msgstr "<emph>Szöveg:</emph> Bármilyen string (karakterlánc) változó."
-
-#. ]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>Szöveg</emph>: Karakterlánc, amelyet a string (karakterlánc) változóban jobbra akar igazítani."
-
-#. 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>Változó1:</emph> Felhasználó által definiált változó, amely a másolandó változó célja."
-
-#. 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>Változó2:</emph> Felhasználó által definiált változó, amelyet egy másik változóba akar másolni."
-
-#. {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 "Ha a karakterlánc rövidebb a string (karakterlánc) változónál, akkor az <emph>RSet</emph> jobbra igazítja a karakterláncot a string (karakterlánc) változón belül. A string (karakterlánc) változó fennmaradó karakterei szóközökre cserélődnek. Ha a karakterlánc hosszabb a string (karakterlánc) változónál, akkor a változó hosszát meghaladó karakterek le lesznek vágva, és csak a fennmaradó karakterek lesznek jobbra igazítva a string (karakterlánc) változón belül."
-
-#. 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 "Az <emph>RSet utasítás</emph> segítségével a felhasználó által definiált típusú változókat hozzárendelheti másik típushoz."
-
-#. 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 "Az alábbi példák az <emph>RSet</emph> és <emph>LSet</emph> utasítást használják a karakterlánc balra és jobbra igazításának módosításához."
-
-#. C!o:
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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” jobbra igazítása egy 40 karakteres karakterláncban"
-
-#. bKP^
-#: 03120308.xhp
-#, fuzzy
-msgctxt ""
-"03120308.xhp\n"
-"par_id3152577\n"
-"21\n"
-"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "REM Csillagok lecserélése szóközökre"
-
-#. _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” balra igazítása egy 40 karakteres karakterláncban"
-
-#. NCZl
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
-msgstr "Exponenciális és logaritmikus függvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponenciális és logaritmikus függvények\">Exponenciális és logaritmikus függvények</link>"
-
-#. 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 "A $[officename] Basic által támogatott exponenciális és logaritmikus függvények."
-
-#. n,)0
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "The Basic Editor"
-msgstr "A Basic-szerkesztő"
-
-#. \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 "<bookmark_value>mentés;Basic-kód</bookmark_value><bookmark_value> betöltés;Basic-kód</bookmark_value><bookmark_value>Basic-szerkesztő</bookmark_value><bookmark_value>navigálás;Basic-projektekben</bookmark_value><bookmark_value>hosszú sorok;Basic-szerkesztőben</bookmark_value><bookmark_value>szövegsorok;Basic-szerkesztőben</bookmark_value><bookmark_value>folytatás;hosszú sorok a szerkesztőben</bookmark_value>"
-
-#. ZC{6
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3147264\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
-msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"A Basic-szerkesztő\">A Basic-szerkesztő</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 "A Basic-szerkesztő szabványos szerkesztési funkciókat biztosít, amelyeket szöveges dokumentum kezelésekor használhat. Ez támogatja a <emph>Szerkesztés</emph> menü funkcióit (Kivágás, Törlés, Beillesztés), a szöveg Shift billentyűvel kiválasztását, valamint a kurzorpozicionálási funkciókat (például szóról szóra mozgatás az <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> és nyílbillentyűkkel)."
-
-#. 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 "A hosszú sorok több részre oszthatók szóköz és aláhúzás-karakter (_) beszúrásával a sor utolsó két karaktereként. Ez összeköti a sort a következő sorral egy logikai sorrá. (Ha az \"Option Compatible\" („Kompatibilis beállítás”) használva van ugyanabban a Basic-modulban, akkor a sorfolytatási funkció érvényes a megjegyzéssorokra is.)"
-
-#. 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 "Ha rákattint a <emph>Makró</emph> eszköztár <emph>BASIC futtatása</emph> ikonjára, akkor a program végrehajtása elindul a Basic-szerkesztő első sorában. A program végrehajtja az első Sub vagy Function blokkot, majd a programvégrehajtás véget ér. A „Sub Main” elemnek nincs elsőbbsége a program végrehajtásában."
-
-#. 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 "Szúrja be a saját Basic-kódját a Sub Main és az End Sub sorok közé, amelyek az IDE első megnyitásakor jelennek meg. Törölheti is az összes sort, és beírhatja a saját Basic-kódját."
-
-#. dn1W
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Navigating in a Project"
-msgstr "Navigálás a projektben"
-
-#. TiFW
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "The Library List"
-msgstr "A programkönyvtár lista"
-
-#. 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 "Válasszon ki egy programkönyvtárat az eszköztár bal oldalán lévő <emph>Programkönyvtár</emph> listából a programkönyvtár szerkesztőbe történő betöltéséhez. Megjelenik a kiválasztott programkönyvtár első modulja."
-
-#. yA,X
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3153190\n"
-"8\n"
-"help.text"
-msgid "The Object Catalog"
-msgstr "Az Objektumkatalógus"
-
-#. GSD?
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3148647\n"
-"15\n"
-"help.text"
-msgid "Saving and Loading Basic Source Code"
-msgstr "Basic-forráskód mentése és betöltése"
-
-#. 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 "A Basic-kódot szöveges formátumban is mentheti más programozási rendszerekbe való importáláshoz és mentéshez."
-
-#. .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 "Basic-párbeszédablakokat nem menthet szöveges fájlba."
-
-#. mT4=
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr "Forráskód mentése szöveges fájlba"
-
-#. 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 "Válassza ki a szöveges formátumban exportálni kívánt modult az objektumkatalógusból."
-
-#. 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 "Kattintson a Makró eszköztáron a <emph>Forrás mentése másként</emph> ikonra."
-
-#. 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 "Válassza ki a fájl nevét, és mentéséhez kattintson az <emph>OK</emph> gombra."
-
-#. +9VX
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr "Forráskód betöltése szöveges fájlból"
-
-#. 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 "Válassza ki azt a modult az objektumkatalógusból, ahova a forráskódot szeretné importálni."
-
-#. _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 "Helyezze a kurzort oda, ahova a programkódot be szeretné szúrni."
-
-#. 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 "A Makró eszköztáron kattintson a <emph>Forrásszöveg beszúrása</emph> ikonra."
-
-#. 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 "Válassza ki a forráskódot tartalmazó szövegfájlt, és kattintson az <emph>OK</emph> gombra."
-
-#. v4~C
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3153198\n"
-"29\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-
-#. nW^*
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefVar Statement [Runtime]"
-msgstr "DefVar utasítás [futásidejű]"
-
-#. /%J7
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>DefVar statement</bookmark_value>"
-msgstr "<bookmark_value>DefVar utasítás</bookmark_value>"
-
-#. pUNl
-#: 03102000.xhp
-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/03102000.xhp\" name=\"DefVar utasítás [futásidejű]\">DefVar utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. IsQX
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. AT^;
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. U8t#
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. r9DG
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Kulcsszó: </emph>Alapértelmezett változótípus"
-
-#. bbX)
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefVar:</emph> Variant"
-
-#. m+lD
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. `6[*
-#: 03102000.xhp
-#, fuzzy
-msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"11\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. :u^J
-#: 03102000.xhp
-#, fuzzy
-msgctxt ""
-"03102000.xhp\n"
-"par_id3154012\n"
-"21\n"
-"help.text"
-msgid "vDiv=99 ' vDiv is an implicit variant"
-msgstr "vDiv=99 REM a vDiv egy implicit variant"
-
-#. XOz-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3146121\n"
-"22\n"
-"help.text"
-msgid "vDiv=\"Hello world\""
-msgstr "vDiv=\"Helló, világ!\""
-
-#. D5%q
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"tit\n"
-"help.text"
-msgid "Information"
-msgstr "Információ"
-
-#. 2=J@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr "Információ"
-
-#. 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 "Beállíthatja a számok, dátumok és pénznemek formázását meghatározó területi beállításokat a $[officename] Basic <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek</emph> lehetőségével. A Basic-formátumkódokban a tizedespont (<emph>.</emph>) mindig a területi beállításokban megadott tizedeselválasztó <emph>helyét jelöli</emph>, és a program a megfelelő karakterre cseréli."
-
-#. )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 "Ugyanez érvényes a dátum-, idő- és pénznemformátumok területi beállításaira. A Basic-formátumkód a területi beállításoknak megfelelően lesz értelmezve és megjelenítve."
-
-#. 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 "A 16 alapszín színértékei a következők:"
-
-#. Mcij
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153091\n"
-"3\n"
-"help.text"
-msgid "<emph>Color Value</emph>"
-msgstr "<emph>Színérték</emph>"
-
-#. q\}*
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154319\n"
-"4\n"
-"help.text"
-msgid "<emph>Color Name</emph>"
-msgstr "<emph>Szín neve</emph>"
-
-#. }Dk5
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151112\n"
-"5\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. I!b8
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155854\n"
-"6\n"
-"help.text"
-msgid "Black"
-msgstr "Fekete"
-
-#. TC*t
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154942\n"
-"7\n"
-"help.text"
-msgid "128"
-msgstr "128"
-
-#. WCbA
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154731\n"
-"8\n"
-"help.text"
-msgid "Blue"
-msgstr "Kék"
-
-#. $Sh@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145645\n"
-"9\n"
-"help.text"
-msgid "32768"
-msgstr "32768"
-
-#. _%Z(
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149400\n"
-"10\n"
-"help.text"
-msgid "Green"
-msgstr "Zöld"
-
-#. sV:`
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150753\n"
-"11\n"
-"help.text"
-msgid "32896"
-msgstr "32896"
-
-#. ]42^
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153765\n"
-"12\n"
-"help.text"
-msgid "Cyan"
-msgstr "Ciánkék"
-
-#. #;3l
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154756\n"
-"13\n"
-"help.text"
-msgid "8388608"
-msgstr "8388608"
-
-#. cQEh
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159266\n"
-"14\n"
-"help.text"
-msgid "Red"
-msgstr "Piros"
-
-#. RuOj
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3163807\n"
-"15\n"
-"help.text"
-msgid "8388736"
-msgstr "8388736"
-
-#. /c`-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145150\n"
-"16\n"
-"help.text"
-msgid "Magenta"
-msgstr "Bíbor"
-
-#. ;xAr
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147002\n"
-"17\n"
-"help.text"
-msgid "8421376"
-msgstr "8421376"
-
-#. gr^E
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3152778\n"
-"18\n"
-"help.text"
-msgid "Yellow"
-msgstr "Sárga"
-
-#. %hJi
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150088\n"
-"19\n"
-"help.text"
-msgid "8421504"
-msgstr "8421504"
-
-#. cfZM
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159239\n"
-"20\n"
-"help.text"
-msgid "White"
-msgstr "Fehér"
-
-#. h#l,
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150206\n"
-"21\n"
-"help.text"
-msgid "12632256"
-msgstr "12632256"
-
-#. WDFL
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149817\n"
-"22\n"
-"help.text"
-msgid "Gray"
-msgstr "Szürke"
-
-#. +X^%
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150363\n"
-"23\n"
-"help.text"
-msgid "255"
-msgstr "255"
-
-#. X#BR
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154576\n"
-"24\n"
-"help.text"
-msgid "Light blue"
-msgstr "Világoskék"
-
-#. (7Pd
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150367\n"
-"25\n"
-"help.text"
-msgid "65280"
-msgstr "65280"
-
-#. ^1j-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150202\n"
-"26\n"
-"help.text"
-msgid "Light green"
-msgstr "Világoszöld"
-
-#. 2Rrw
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154487\n"
-"27\n"
-"help.text"
-msgid "65535"
-msgstr "65535"
-
-#. ALfv
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151332\n"
-"28\n"
-"help.text"
-msgid "Light cyan"
-msgstr "Világos ciánkék"
-
-#. %_:?
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148702\n"
-"29\n"
-"help.text"
-msgid "16711680"
-msgstr "16711680"
-
-#. OU9]
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153067\n"
-"30\n"
-"help.text"
-msgid "Light red"
-msgstr "Világospiros"
-
-#. d?GN
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153912\n"
-"31\n"
-"help.text"
-msgid "16711935"
-msgstr "16711935"
-
-#. Lo{.
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159097\n"
-"32\n"
-"help.text"
-msgid "Light magenta"
-msgstr "Világosbíbor"
-
-#. rqcG
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155266\n"
-"33\n"
-"help.text"
-msgid "16776960"
-msgstr "16776960"
-
-#. zM6S
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3157978\n"
-"34\n"
-"help.text"
-msgid "Light yellow"
-msgstr "Világossárga"
-
-#. 4kX~
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153286\n"
-"35\n"
-"help.text"
-msgid "16777215"
-msgstr "16777215"
-
-#. ^odu
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151302\n"
-"36\n"
-"help.text"
-msgid "Transparent white"
-msgstr "Átlátszó fehér"
-
-#. Cdzm
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3152869\n"
-"37\n"
-"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Hibakódok</variable>"
-
-#. l,ep
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id315509599\n"
-"help.text"
-msgid "<variable id=\"err1\">1 An exception occurred</variable>"
-msgstr "<variable id=\"err1\">1 Kivétel történt</variable>"
-
-#. Ql/j
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155095\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"err2\">2 Syntax error</variable>"
-msgstr "<variable id=\"err2\">2 Szintaktikai hiba</variable>"
-
-#. Lin-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149126\n"
-"39\n"
-"help.text"
-msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
-msgstr "<variable id=\"err3\">3 Return használata Gosub nélkül</variable>"
-
-#. 7*5f
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153976\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
-msgstr "<variable id=\"err4\">4 Helytelen bemenet; próbálja újra</variable>"
-
-#. ^#Mw
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150891\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
-msgstr "<variable id=\"err5\">5 Érvénytelen eljáráshívás</variable>"
-
-#. _Vwy
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159227\n"
-"42\n"
-"help.text"
-msgid "<variable id=\"err6\">6 Overflow</variable>"
-msgstr "<variable id=\"err6\">6 Túlcsordulás</variable>"
-
-#. _cq6
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154649\n"
-"43\n"
-"help.text"
-msgid "<variable id=\"err7\">7 Not enough memory</variable>"
-msgstr "<variable id=\"err7\">7 Nincs elég memória.</variable>"
-
-#. #h7u
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150050\n"
-"44\n"
-"help.text"
-msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
-msgstr "<variable id=\"err8\">8 A tömb már dimenzionálva van</variable>"
-
-#. y$A[
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148900\n"
-"45\n"
-"help.text"
-msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
-msgstr "<variable id=\"err9\">9 Az index a definiált határokon kívülre mutat</variable>"
-
-#. R7S(
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153806\n"
-"46\n"
-"help.text"
-msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
-msgstr "<variable id=\"err10\">10 Többszörös definíció</variable>"
-
-#. LbqQ
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146963\n"
-"47\n"
-"help.text"
-msgid "<variable id=\"err11\">11 Division by zero</variable>"
-msgstr "<variable id=\"err11\">11 Osztás nullával</variable>"
-
-#. s^`2
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153013\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"err12\">12 Variable not defined</variable>"
-msgstr "<variable id=\"err12\">12 A változó nincs definiálva</variable>"
-
-#. ..Dv
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155593\n"
-"49\n"
-"help.text"
-msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
-msgstr "<variable id=\"err13\">13 Az adattípus nem egyezik</variable>"
-
-#. O3Wr
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151197\n"
-"50\n"
-"help.text"
-msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
-msgstr "<variable id=\"err14\">14 Érvénytelen paraméter</variable>"
-
-#. x]m6
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154710\n"
-"51\n"
-"help.text"
-msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr "<variable id=\"err18\">18 A felhasználó megszakította a folyamatot</variable>"
-
-#. #Gw1
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147504\n"
-"52\n"
-"help.text"
-msgid "<variable id=\"err20\">20 Resume without error</variable>"
-msgstr "<variable id=\"err20\">20 Resume használata hiba nélkül</variable>"
-
-#. hB64
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145319\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
-msgstr "<variable id=\"err28\">28 Nincs elég veremmemória</variable>"
-
-#. e$c/
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146110\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
-msgstr "<variable id=\"err35\">35 Aleljárás vagy függvényeljárás nincsen definiálva</variable>"
-
-#. V(;K
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147246\n"
-"55\n"
-"help.text"
-msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
-msgstr "<variable id=\"err48\">48 Hiba a DLL-fájl betöltésekor</variable>"
-
-#. r;\/
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146101\n"
-"56\n"
-"help.text"
-msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
-msgstr "<variable id=\"err49\">49 Hibás DLL-hívási konvenció</variable>"
-
-#. U7sq
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153957\n"
-"57\n"
-"help.text"
-msgid "<variable id=\"err51\">51 Internal error</variable>"
-msgstr "<variable id=\"err51\">51 Belső hiba</variable>"
-
-#. zi^1
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154404\n"
-"58\n"
-"help.text"
-msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
-msgstr "<variable id=\"err52\">52 Érvénytelen fájlnév vagy fájlszám</variable>"
-
-#. j[cK
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151338\n"
-"59\n"
-"help.text"
-msgid "<variable id=\"err53\">53 File not found</variable>"
-msgstr "<variable id=\"err53\">53 A fájl nem található</variable>"
-
-#. 0e7m
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147298\n"
-"60\n"
-"help.text"
-msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
-msgstr "<variable id=\"err54\">54 Helytelen fájlmód</variable>"
-
-#. _1zD
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148747\n"
-"61\n"
-"help.text"
-msgid "<variable id=\"err55\">55 File already open</variable>"
-msgstr "<variable id=\"err55\">55 A fájl már meg van nyitva</variable>"
-
-#. e=9Z
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145233\n"
-"62\n"
-"help.text"
-msgid "<variable id=\"err57\">57 Device I/O error</variable>"
-msgstr "<variable id=\"err57\">57 Eszköz-I/O-hiba</variable>"
-
-#. EnE;
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3156399\n"
-"63\n"
-"help.text"
-msgid "<variable id=\"err58\">58 File already exists</variable>"
-msgstr "<variable id=\"err58\">58 A fájl már létezik</variable>"
-
-#. .AX0
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149324\n"
-"64\n"
-"help.text"
-msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
-msgstr "<variable id=\"err59\">59 Helytelen rekordhossz</variable>"
-
-#. 7f|2
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147409\n"
-"65\n"
-"help.text"
-msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
-msgstr "<variable id=\"err61\">61 A lemez megtelt</variable>"
-
-#. 52oJ
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149146\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
-msgstr "<variable id=\"err62\">62 Olvasás a fájl vége (EOF) után</variable>"
-
-#. p#qY
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150456\n"
-"67\n"
-"help.text"
-msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr "<variable id=\"err63\">63 Helytelen rekordszám</variable>"
-
-#. uV39
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146883\n"
-"68\n"
-"help.text"
-msgid "<variable id=\"err67\">67 Too many files</variable>"
-msgstr "<variable id=\"err67\">67 Túl sok fájl</variable>"
-
-#. r#U!
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146818\n"
-"69\n"
-"help.text"
-msgid "<variable id=\"err68\">68 Device not available</variable>"
-msgstr "<variable id=\"err68\">68 Az eszköz nem érhető el</variable>"
-
-#. sbD_
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145225\n"
-"70\n"
-"help.text"
-msgid "<variable id=\"err70\">70 Access denied</variable>"
-msgstr "<variable id=\"err70\">70 Hozzáférés megtagadva</variable>"
-
-#. MN.L
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150372\n"
-"71\n"
-"help.text"
-msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "<variable id=\"err71\">71 A lemez nem áll készen</variable>"
-
-#. RNd%
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148894\n"
-"72\n"
-"help.text"
-msgid "<variable id=\"err73\">73 Not implemented</variable>"
-msgstr "<variable id=\"err73\">73 Nincs megvalósítva</variable>"
-
-#. EUgl
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3152981\n"
-"73\n"
-"help.text"
-msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
-msgstr "<variable id=\"err74\">74 A különböző meghajtók közötti átnevezés nem lehetséges</variable>"
-
-#. lMhc
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149355\n"
-"74\n"
-"help.text"
-msgid "<variable id=\"err75\">75 Path/file access error</variable>"
-msgstr "<variable id=\"err75\">75 Elérésiút-/fájlhozzáférési hiba</variable>"
-
-#. XVyg
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150477\n"
-"75\n"
-"help.text"
-msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "<variable id=\"err76\">76 Az elérési út nem található</variable>"
-
-#. `?J=
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154678\n"
-"76\n"
-"help.text"
-msgid "<variable id=\"err91\">91 Object variable not set</variable>"
-msgstr "<variable id=\"err91\">91 Az objektumváltozó nincs beállítva</variable>"
-
-#. VWo:
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149890\n"
-"77\n"
-"help.text"
-msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
-msgstr "<variable id=\"err93\">93 Érvénytelen mintakarakterlánc</variable>"
-
-#. 3Q+/
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146942\n"
-"78\n"
-"help.text"
-msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
-msgstr "<variable id=\"err94\">94 Itt nem állhat nulla</variable>"
-
-#. Jn9P
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469429\n"
-"help.text"
-msgid "<variable id=\"err250\">250 DDE Error</variable>"
-msgstr "<variable id=\"err250\">250 DDE-hiba</variable>"
-
-#. n,QA
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469428\n"
-"help.text"
-msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
-msgstr "<variable id=\"err280\">280 Várakozás a DDE-kapcsolat válaszára</variable>"
-
-#. nd#Y
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469427\n"
-"help.text"
-msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
-msgstr "<variable id=\"err281\">281 A DDE-csatornák elérhetetlenek</variable>"
-
-#. 0F#;
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469426\n"
-"help.text"
-msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err282\">282 Egy alkalmazás sem válaszolt a DDE-kapcsolat kezdeményezésre</variable>"
-
-#. $-P_
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469425\n"
-"help.text"
-msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err283\">283 Túl sok alkalmazás válaszolt a DDE-kapcsolat kezdeményezésre</variable>"
-
-#. njnX
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469424\n"
-"help.text"
-msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
-msgstr "<variable id=\"err284\">284 A DDE-csatorna lezárva</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 "<variable id=\"err285\">285 Külső alkalmazás nem hajthat végre DDE-műveletet</variable>"
-
-#. /QK.
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469422\n"
-"help.text"
-msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
-msgstr "<variable id=\"err286\">286 Időtúllépés a DDE válaszára várva</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 "<variable id=\"err287\">287 A felhasználó a DDE-művelet közben megnyomta az Esc billentyűt</variable>"
-
-#. )Pj2
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469420\n"
-"help.text"
-msgid "<variable id=\"err288\">288 External application busy</variable>"
-msgstr "<variable id=\"err288\">288 A külső alkalmazás foglalt</variable>"
-
-#. EYw)
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469419\n"
-"help.text"
-msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
-msgstr "<variable id=\"err289\">289 DDE-művelet adat nélkül</variable>"
-
-#. ,bM_
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469418\n"
-"help.text"
-msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
-msgstr "<variable id=\"err290\">290 Adat helytelen formában</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 "<variable id=\"err291\">291 A külső alkalmazás befejeződött</variable>"
-
-#. .RT,
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469416\n"
-"help.text"
-msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr "<variable id=\"err292\">292 DDE-kapcsolat megszakítva vagy módosítva</variable>"
-
-#. 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 "<variable id=\"err293\">293 A DDE-metódus meghívásakor nem volt nyitott csatorna</variable>"
-
-#. QUO$
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469414\n"
-"help.text"
-msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
-msgstr "<variable id=\"err294\">294 Érvénytelen DDE-hivatkozásformátum</variable>"
-
-#. FO,f
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469413\n"
-"help.text"
-msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
-msgstr "<variable id=\"err295\">295 A DDE-üzenet elveszett</variable>"
-
-#. )lVq
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469412\n"
-"help.text"
-msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
-msgstr "<variable id=\"err296\">296 A hivatkozás beillesztése már megtörtént</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 "<variable id=\"err297\">297 A hivatkozás érvénytelen tárgya miatt nem lehet beállítani a módját</variable>"
-
-#. `}*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 "<variable id=\"err298\">298 A DDE-nek szüksége van a DDEML.DLL fájlra</variable>"
-
-#. ?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 "<variable id=\"err323\">323 A modult nem lehet betölteni; érvénytelen formátum</variable>"
-
-#. DiPC
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148434\n"
-"80\n"
-"help.text"
-msgid "<variable id=\"err341\">341 Invalid object index</variable>"
-msgstr "<variable id=\"err341\">341 Érvénytelen objektumindex</variable>"
-
-#. $`Y|
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3143219\n"
-"81\n"
-"help.text"
-msgid "<variable id=\"err366\">366 Object is not available</variable>"
-msgstr "<variable id=\"err366\">366 Az objektum nem érhető el</variable>"
-
-#. dYj{
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3144744\n"
-"82\n"
-"help.text"
-msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
-msgstr "<variable id=\"err380\">380 Rossz tulajdonságérték</variable>"
-
-#. `IUS
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147420\n"
-"83\n"
-"help.text"
-msgid "<variable id=\"err382\">382 This property is read-only</variable>"
-msgstr "<variable id=\"err382\">382 Ez a tulajdonság csak olvasható</variable>"
-
-#. kBGr
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147472\n"
-"84\n"
-"help.text"
-msgid "<variable id=\"err394\">394 This property is write-only</variable>"
-msgstr "<variable id=\"err394\">394 Ez a tulajdonság csak írható</variable>"
-
-#. 8}gg
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148583\n"
-"85\n"
-"help.text"
-msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
-msgstr "<variable id=\"err420\">420 Érvénytelen objektumhivatkozás</variable>"
-
-#. 6T*!
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153329\n"
-"86\n"
-"help.text"
-msgid "<variable id=\"err423\">423 Property or method not found</variable>"
-msgstr "<variable id=\"err423\">423 A tulajdonság vagy metódus nem található</variable>"
-
-#. CJ%1
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148738\n"
-"87\n"
-"help.text"
-msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr "<variable id=\"err424\">424 Kötelező objektum</variable>"
-
-#. n;QF
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159084\n"
-"88\n"
-"help.text"
-msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
-msgstr "<variable id=\"err425\">425 Objektum helytelen használata</variable>"
-
-#. [`$m
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146806\n"
-"89\n"
-"help.text"
-msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
-msgstr "<variable id=\"err430\">430 Az objektum nem támogatja az OLE Automationt</variable>"
-
-#. #n5@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146130\n"
-"90\n"
-"help.text"
-msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
-msgstr "<variable id=\"err438\">438 Az objektum nem rendelkezik ilyen tulajdonsággal vagy metódussal</variable>"
-
-#. XF7\
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154374\n"
-"91\n"
-"help.text"
-msgid "<variable id=\"err440\">440 OLE automation error</variable>"
-msgstr "<variable id=\"err440\">440 OLE-automatizálási hiba</variable>"
-
-#. @nkF
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149685\n"
-"92\n"
-"help.text"
-msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
-msgstr "<variable id=\"err445\">445 Az objektum nem támogatja a műveletet</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 "<variable id=\"err446\">446 A megadott objektum nem támogatja a nevesített argumentumokat</variable>"
-
-#. 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 "<variable id=\"err447\">447 A megadott objektum nem támogatja a jelenlegi területi beállításokat</variable>"
-
-#. 2rM[
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3152771\n"
-"95\n"
-"help.text"
-msgid "<variable id=\"err448\">448 Named argument not found</variable>"
-msgstr "<variable id=\"err448\">448 Az elnevezett argumentum nem található</variable>"
-
-#. rwd_
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145145\n"
-"96\n"
-"help.text"
-msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
-msgstr "<variable id=\"err449\">449 Az argumentum nem hagyható el</variable>"
-
-#. Q?KO
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154399\n"
-"97\n"
-"help.text"
-msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Érvénytelen számú paraméter</variable>"
-
-#. %kg^
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146137\n"
-"98\n"
-"help.text"
-msgid "<variable id=\"err451\">451 Object is not a list</variable>"
-msgstr "<variable id=\"err451\">451 Az objektum nem lista</variable>"
-
-#. -,W.
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149507\n"
-"99\n"
-"help.text"
-msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
-msgstr "<variable id=\"err452\">452 Érvénytelen sorrend</variable>"
-
-#. ntuN
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154566\n"
-"100\n"
-"help.text"
-msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
-msgstr "<variable id=\"err453\">453 A megadott DLL-függvény nem található</variable>"
-
-#. USqX
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145595\n"
-"101\n"
-"help.text"
-msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
-msgstr "<variable id=\"err460\">460 Érvénytelen vágólapformátum</variable>"
-
-#. ,Os7
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455951\n"
-"help.text"
-msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "<variable id=\"err951\">951 Nem várt szimbólum:</variable>"
-
-#. KL`3
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455952\n"
-"help.text"
-msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "<variable id=\"err952\">952 Várt:</variable>"
-
-#. _/tw
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455953\n"
-"help.text"
-msgid "<variable id=\"err953\">953 Symbol expected</variable>"
-msgstr "<variable id=\"err953\">953 Szimbólum szükséges</variable>"
-
-#. +rkV
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455954\n"
-"help.text"
-msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "<variable id=\"err954\">954 Változó szükséges</variable>"
-
-#. yk/l
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455955\n"
-"help.text"
-msgid "<variable id=\"err955\">955 Label expected</variable>"
-msgstr "<variable id=\"err955\">955 Címke szükséges</variable>"
-
-#. aWC7
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455956\n"
-"help.text"
-msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
-msgstr "<variable id=\"err956\">956 Az érték nem alkalmazható</variable>"
-
-#. ;3Rq
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455957\n"
-"help.text"
-msgid "<variable id=\"err957\">957 Variable already defined</variable>"
-msgstr "<variable id=\"err957\">957 A változó már definiálva van</variable>"
-
-#. SCAs
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455958\n"
-"help.text"
-msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
-msgstr "<variable id=\"err958\">958 Az Aleljárás vagy függvényeljárás már definiálva van</variable>"
-
-#. Bk_I
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455959\n"
-"help.text"
-msgid "<variable id=\"err959\">959 Label already defined</variable>"
-msgstr "<variable id=\"err959\">957 A címke már definiálva van</variable>"
-
-#. X{@F
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455960\n"
-"help.text"
-msgid "<variable id=\"err960\">960 Variable not found</variable>"
-msgstr "<variable id=\"err960\">960 A változó nem található</variable>"
-
-#. nV}D
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455961\n"
-"help.text"
-msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "<variable id=\"err961\">961 A tömb vagy eljárás nem található</variable>"
-
-#. Xqfx
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455962\n"
-"help.text"
-msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "<variable id=\"err962\">962 Az eljárás nem található</variable>"
-
-#. lSGJ
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455963\n"
-"help.text"
-msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "<variable id=\"err963\">963 A címke nincs definiálva</variable>"
-
-#. !%td
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455964\n"
-"help.text"
-msgid "<variable id=\"err964\">964 Unknown data type</variable>"
-msgstr "<variable id=\"err964\">964 Ismeretlen adattípus</variable>"
-
-#. f8YI
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455965\n"
-"help.text"
-msgid "<variable id=\"err965\">965 Exit expected</variable>"
-msgstr "<variable id=\"err965\">965 Exit szükséges</variable>"
-
-#. o\J9
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
-"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr "<variable id=\"err966\">966 A kódblokk még mindig nyitott: hiányzó</variable>"
-
-#. C[yu
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455967\n"
-"help.text"
-msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr "<variable id=\"err967\">967 A zárójelezés nem megfelelő</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 "<variable id=\"err968\">968 A szimbólum már máshogy lett definiálva</variable>"
-
-#. .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 "<variable id=\"err969\">969 A paraméterek nem felelnek meg az eljárásnak</variable>"
-
-#. [lkn
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455970\n"
-"help.text"
-msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
-msgstr "<variable id=\"err970\">970 Érvénytelen karakter a számban</variable>"
-
-#. =m(n
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455971\n"
-"help.text"
-msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr "<variable id=\"err971\">971 A tömböt dimenzionálni kell</variable>"
-
-#. #@Ps
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455972\n"
-"help.text"
-msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr "<variable id=\"err972\">972 If nélküli Else/Endif</variable>"
-
-#. C~B/
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455973\n"
-"help.text"
-msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr "<variable id=\"err973\">973 nem engedélyezett eljáráson belül</variable>"
-
-#. CXl+
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455974\n"
-"help.text"
-msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr "<variable id=\"err974\">974 nem engedélyezett eljáráson kívül</variable>"
-
-#. 4lh4
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
-"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr "<variable id=\"err975\">975 A méretmegadások nem egyeznek</variable>"
-
-#. b.c^
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455976\n"
-"help.text"
-msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr "<variable id=\"err976\">976 Ismeretlen opció:</variable>"
-
-#. h@eF
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455977\n"
-"help.text"
-msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr "<variable id=\"err977\">977 Konstans újradefiniálva</variable>"
-
-#. Sfu4
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455978\n"
-"help.text"
-msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr "<variable id=\"err978\">978 A program túl nagy</variable>"
-
-#. _C?y
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455979\n"
-"help.text"
-msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
-msgstr "<variable id=\"err979\">979 Karakterláncok vagy tömbök nem megengedettek</variable>"
-
-#. BMKq
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455980\n"
-"help.text"
-msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
-msgstr "<variable id=\"err1000\">1000 Az objektumnak nincs ilyen tulajdonsága</variable>"
-
-#. ;2}Q
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455981\n"
-"help.text"
-msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
-msgstr "<variable id=\"err1001\">1001 Az objektumnak nincs ilyen metódusa</variable>"
-
-#. yuQo
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455982\n"
-"help.text"
-msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr "<variable id=\"err1002\">1002 Szükséges argumentum hiányzik</variable>"
-
-#. abv@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455983\n"
-"help.text"
-msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err1003\">1003 Érvénytelen számú paraméter</variable>"
-
-#. Iee-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455984\n"
-"help.text"
-msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
-msgstr "<variable id=\"err1004\">1004 Hiba a metódus végrehajtása során</variable>"
-
-#. .1Y5
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455985\n"
-"help.text"
-msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
-msgstr "<variable id=\"err1005\">1005 A tulajdonság nem állítható be</variable>"
-
-#. n2.P
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455986\n"
-"help.text"
-msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
-msgstr "<variable id=\"err1006\">1006 A tulajdonság nem meghatározható</variable>"
-
-#. hdnr
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
-msgstr "Mid függvény, Mid utasítás [futásidejű]"
-
-#. 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 függvény</bookmark_value><bookmark_value>Mid utasítás</bookmark_value>"
-
-#. Xv,k
-#: 03120306.xhp
-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/03120306.xhp\" name=\"Mid függvény, Mid utasítás [futásidejű]\">Mid függvény, Mid utasítás [futásidejű]</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 "Visszaadja egy string (karakterlánc) kifejezés megadott részét (<emph>Mid függvény</emph>), vagy lecseréli a string (karakterlánc) kifejezés egy részét egy másik string (karakterláncra) kifejezésre (<emph>Mid utasítás</emph>)."
-
-#. H!+j
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 (Szöveg As String, Kezdés As Long [, Hossz As Long]) vagy Mid (Szöveg As String, Kezdés As Long , Hossz As Long, Szöveg As String)"
-
-#. 9:;5
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. I.?C
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
-"6\n"
-"help.text"
-msgid "String (only by Function)"
-msgstr "String (karakterlánc) (csak a függvény esetén)"
-
-#. z$n\
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ]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>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés, amelyet módosítani akar."
-
-#. 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>Kezdés: </emph>Numerikus kifejezés, amely a karakterláncban a másolni vagy visszakapni kívánt karakterláncrész kezdetét jelző karakter pozícióját adja meg. A maximális érték 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>Hossz:</emph> Numerikus kifejezés, amely a másolni vagy visszakapni kívánt karakterek számát adja vissza. A maximális érték 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 "Ha a Hossz paraméter nincs megadva a <emph>Mid függvényben</emph>, akkor a függvény a string (karakterlánc) kifejezés összes karakterét - a kiindulási pozíciótól a végéig - visszaadja."
-
-#. 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 "Ha a <emph>Mid utasítás</emph> Hossz paramétere kisebb, mint a lecserélni kívánt szöveg hossza, akkor a függvény lecsökkenti a szöveget a megadott hosszra."
-
-#. 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>Szöveg:</emph> A string (karakterlánc) kifejezés lecserélésére szolgáló karakterlánc (<emph>Mid utasítás</emph>)."
-
-#. _{r/
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "sInput = InputBox(\"Adjon meg egy dátumot „ÉÉÉÉ-HH-NN” nemzetközi formátumban)"
-
-#. C{Up
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Year függvény [futásidejű]"
-
-#. ]uo@
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "<bookmark_value>Year függvény</bookmark_value>"
-
-#. mS(g
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3148664\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year függvény [futásidejű]\">Year függvény [futásidejű]</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 "Visszaadja a DateSerial vagy DateValue függvény által meghatározott soros dátumértéknek megfelelő évet."
-
-#. .\6V
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. )T:Q
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr "Year (Év)"
-
-#. US}c
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. n|.8
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. .YT{
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. /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 "<emph>Szám:</emph> Integer (egész szám) kifejezés, amely az év kiszámítására használt soros dátumértéket tartalmazza."
-
-#. 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 "Ez a függvény a <emph>DateSerial </emph> ellentéte, és a soros dátum évét adja vissza. Például a"
-
-#. ]uBU
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
-"help.text"
-msgid "returns the value 1994."
-msgstr "kifejezés az 1994 értéket adja vissza."
-
-#. f)\0
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. cheJ
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153363\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
-msgstr "MsgBox \"\" & Year(Now) ,64,\"Jelenlegi év\""
-
-#. zI)r
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"tit\n"
-"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "Abs függvény [futásidejű]"
-
-#. wWt\
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "<bookmark_value>Abs függvény</bookmark_value>"
-
-#. okL}
-#: 03080601.xhp
-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/03080601.xhp\" name=\"Abs függvény [futásidejű]\">Abs függvény [futásidejű]</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 "Visszaadja egy numerikus kifejezés abszolút értékét."
-
-#. BME2
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 5Nd\
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Abs (Number)"
-msgstr "Abs (Szám)"
-
-#. 9j1k
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. rAW_
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. _XMW
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Numerikus kifejezés, amelynek az abszolút értékét kívánja megkapni. A pozitív számokat, a 0-t is beleértve, változatlanul adja vissza, a negatív számokat pedig pozitívvá alakítja."
-
-#. [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 "Az alábbi példa az Abs függvény segítségével számítja ki a két érték közötti különbséget. Nem számít, hogy melyik értéket írja be először."
-
-#. *5vC
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. oq\[
-#: 03080601.xhp
-#, fuzzy
-msgctxt ""
-"03080601.xhp\n"
-"par_id3145786\n"
-"14\n"
-"help.text"
-msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
-msgstr "siW1 = Int(InputBox$ (\"Adja meg az első mennyiséget\",\"Bemeneti érték\"))"
-
-#. q8H)
-#: 03080601.xhp
-#, fuzzy
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149561\n"
-"15\n"
-"help.text"
-msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
-msgstr "siW2 = Int(InputBox$ (\"Adja meg a második mennyiséget\",\"Bemeneti érték\"))"
-
-#. R-c3
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3145750\n"
-"16\n"
-"help.text"
-msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
-msgstr "Print \"A különbség \"; Abs(siW1 - siW2)"
-
-#. 4Z5a
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "IsMissing függvény [futásidejű]"
-
-#. PRE}
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "<bookmark_value>IsMissing függvény</bookmark_value>"
-
-#. |?,.
-#: 03104000.xhp
-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/03104000.xhp\" name=\"IsMissing függvény [futásidejű]\">IsMissing függvény [futásidejű]</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 "Leellenőrzi, hogy egy függvény opcionális paraméterrel volt-e meghívva."
-
-#. (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 "Lásd még: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-
-#. %^FT
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ]0Sx
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
-"5\n"
-"help.text"
-msgid "IsMissing( ArgumentName )"
-msgstr "IsMissing( Argumentumnév )"
-
-#. ;Hj}
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. !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 "<emph>Argumentumnév:</emph> Egy opcionális argumentum neve."
-
-#. 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 "Ha az IsMissing függvény az Argumentumnév által lett meghívva, akkor a True (igaz) értéket fogja visszaadni."
-
-#. )]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 "Lásd még: <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Példák\">Példák</link>."
-
-#. C)RA
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Help"
-msgstr "$[officename] Basic Súgó"
-
-#. 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 Súgó\">%PRODUCTNAME Basic Súgó</link>"
-
-#. _OYK
-#: main0601.xhp
-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 "A %PRODUCTNAME %PRODUCTVERSION tartalmaz egy alkalmazásprogramozási felületet (Application Programming Interface, API), amely lehetővé teszi, hogy a $[officename] Software Development Kit (SDK) használatával különböző programozási nyelveken vezérelje a $[officename] összetevőit. A $[officename] API-ról és a Software Development Kitről további információkat a <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link> címen találhat."
-
-#. 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 "Ez a súgószakasz ismerteti a %PRODUCTNAME Basic legáltalánosabban használt függvényeit. Részletesebb információkat a wikiben található <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC programozói útmutatóban</link> talál."
-
-#. ?(vV
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
-"9\n"
-"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "A %PRODUCTNAME Basic kezelése"
-
-#. *UgN
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "A Súgó használata"
-
-#. Dh[M
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rem Statement [Runtime]"
-msgstr "Rem utasítás [futásidejű]"
-
-#. 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>Rem utasítás</bookmark_value><bookmark_value>megjegyzések;Rem utasítás</bookmark_value>"
-
-#. 4NqW
-#: 03090407.xhp
-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/03090407.xhp\" name=\"Rem utasítás [futásidejű]\">Rem utasítás [futásidejű]</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 "Megadja, hogy a program egy sora megjegyzés-e, vagy nem."
-
-#. Y@je
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. LILP
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
-"4\n"
-"help.text"
-msgid "Rem Text"
-msgstr "Rem Szöveg"
-
-#. (0iJ
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ^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 "<emph>Szöveg:</emph> Bármilyen megjegyzésként szereplő szöveg."
-
-#. 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 "A Rem kulcsszó helyett használhatja az aposztrófokat annak jelzéséhez, hogy a szöveg megjegyzés. Ez a szimbólum beszúrható közvetlenül a programkód jobb oldalára, és utána következhet a megjegyzés."
-
-#. .\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 "A hosszú sorok több részre oszthatók szóköz és aláhúzás-karakter (_) beszúrásával a sor utolsó két karaktereként. Ez összeköti a sort a következő sorral egy logikai sorrá. (Ha a „Kompatibilis beállítás” használva van ugyanabban a Basic-modulban, akkor a sorfolytatási funkció érvényes a megjegyzéssorokra is.)"
-
-#. M)O-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 6{uK
-#: 03090407.xhp
-#, fuzzy
-msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
-"help.text"
-msgid "' Nothing occurs here"
-msgstr "REM Itt semmi sem történik"
-
-#. g^o#
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefStr Statement [Runtime]"
-msgstr "DefStr utasítás [futásidejű]"
-
-#. AjX0
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
-"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
-msgstr "<bookmark_value>DefStr utasítás</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 "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr utasítás [futásidejű]</link>"
-
-#. 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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a DefStr utasítás a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. h)GP
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. pxE=
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. MhE[
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. \:-{
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. ,|#-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. q01#
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> String (karakterlánc)"
-
-#. tT\!
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. MVB9
-#: 03101140.xhp
-#, fuzzy
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. 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 az sStr egy implicit string (karakterlánc) változó"
-
-#. hCmr
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Logical Operators"
-msgstr "Logikai operátorok"
-
-#. 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 "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logikai operátorok\">Logikai operátorok</link>"
-
-#. ;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 "A $[officename] Basic a következő logikai operátorokat támogatja."
-
-#. 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 "A logikai operátorok két kifejezés, vagy változó értékét vonják össze bitenként. Így például le tudja tesztelni, hogy bizonyos bitek be vannak-e állítva, vagy sem."
-
-#. )+VZ
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"tit\n"
-"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr "GlobalScope [futásidejű]"
-
-#. 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 "<bookmark_value>GlobalScope függvény</bookmark_value><bookmark_value>programkönyvtár-rendszer</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
-
-#. +OyK
-#: 03131900.xhp
-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/03131900.xhp\" name=\"GlobalScope [futásidejű]\">GlobalScope [futásidejű]</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 "A Basic-forráskód és -párbeszédablakok egy programkönyvtár-rendszeren keresztül vannak szervezve."
-
-#. Cct]
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3145315\n"
-"3\n"
-"help.text"
-msgid "The LibraryContainer contains libraries"
-msgstr "A LibraryContainer programkönyvtárakat tartalmaz."
-
-#. D]~/
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Libraries can contain modules and dialogs"
-msgstr "A programkönyvtárak modulokat és párbeszédablakokat tartalmazhatnak."
-
-#. -CDE
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3143271\n"
-"5\n"
-"help.text"
-msgid "In Basic:"
-msgstr "A Basic nyelvben:"
-
-#. ~v},
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3153061\n"
-"6\n"
-"help.text"
-msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
-msgstr "A LibraryContainer neve <emph>BasicLibraries</emph>."
-
-#. 9*%0
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3154346\n"
-"7\n"
-"help.text"
-msgid "In dialogs:"
-msgstr "A párbeszédablakokban:"
-
-#. 0OB*
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3148663\n"
-"8\n"
-"help.text"
-msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
-msgstr "A LibraryContainer neve <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 "A LibraryContainerek az alkalmazásszinten léteznek és minden dokumentumon belül is. A Basic dokumentumban a dokumentum LibraryContainere automatikusan meghívásra kerül. Ha a globális LibraryContainereket akarja meghívni egy dokumentumon belülről, akkor a <emph>GlobalScope</emph> kulcsszót kell használnia."
-
-#. Y%XG
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
-"10\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Példa:"
-
-#. JT`B
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3154124\n"
-"13\n"
-"help.text"
-msgid "Example in the document Basic"
-msgstr "Példa a Basic dokumentumban."
-
-#. L!.l
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3158408\n"
-"14\n"
-"help.text"
-msgid "' calling Dialog1 in the document library Standard"
-msgstr "' a Dialog1 meghívása a Standard dokumentum-programkönyvtárból"
-
-#. (9r{
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3125865\n"
-"15\n"
-"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
-
-#. I1Il
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3154910\n"
-"16\n"
-"help.text"
-msgid "' calling Dialog2 in the application library Library1"
-msgstr "' a Dialog2 meghívása a Library1 alkalmazás-programkönyvtárban"
-
-#. 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 "Now függvény [futásidejű]"
-
-#. @N=M
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Now function</bookmark_value>"
-msgstr "<bookmark_value>Now függvény</bookmark_value>"
-
-#. )a9d
-#: 03030203.xhp
-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/03030203.xhp\" name=\"Now függvény [futásidejű]\">Now függvény [futásidejű]</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 "A jelenlegi dátumot és időt <emph>Date</emph> (dátum) értékként adja vissza."
-
-#. H[Eb
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3149456\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. a)MK
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3149655\n"
-"4\n"
-"help.text"
-msgid "Now"
-msgstr "Now"
-
-#. 2dZx
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. (,,@
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Date (dátum)"
-
-#. {n0F
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. TSD=
-#: 03030203.xhp
-#, fuzzy
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
-msgstr "msgbox \"A mai dátum:\" & Now"
-
-#. yRd;
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "Változók"
-
-#. ]4CE
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3149669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Változók\">Változók</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 "A következő utasítások és függvények állnak rendelkezésre a változók kezeléséhez. A függvények segítségével deklarálhat vagy definiálhat változókat, átalakíthat változókat egyik típusból a másikba, vagy meghatározhat változótípusokat."
-
-#. u\:K
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sin Function [Runtime]"
-msgstr "Sin függvény [futásidejű]"
-
-#. oJ;Z
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"bm_id3153896\n"
-"help.text"
-msgid "<bookmark_value>Sin function</bookmark_value>"
-msgstr "<bookmark_value>Sin függvény</bookmark_value>"
-
-#. qjm(
-#: 03080103.xhp
-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/03080103.xhp\" name=\"Sin függvény [futásidejű]\">Sin függvény [futásidejű]</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 "Visszaadja az alfa szinuszát. A szög radiánban van megadva. Az eredmény -1 és 1 közötti érték."
-
-#. 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 "Az alfa szög felhasználásával a Sin függvény kiszámítja a szöggel szembeni befogó és az átfogó hosszának arányát."
-
-#. wOLa
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148798\n"
-"4\n"
-"help.text"
-msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
-msgstr "Sin(alfa) = szöggel szembeni befogó/átfogó"
-
-#. Gq16
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. upcq
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Sin (Number)"
-msgstr "Sin (Szám)"
-
-#. GSEc
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. _5~x
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. 3Pda
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. $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 "<emph>Szám:</emph> Numerikus kifejezés, amely azon szög értékét tartalmazza radiánban, amelynek ki akarja számolni a szinuszát."
-
-#. 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 "Fokok radiánná alakításához szorozza meg a fokokat pi/180-nal. Radiánok szögekké alakításához szorozza meg a radiánokat 180/pi-vel."
-
-#. RBUJ
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3149664\n"
-"12\n"
-"help.text"
-msgid "grad=(radiant*180)/pi"
-msgstr "fok=(radián*180)/pi"
-
-#. S[CX
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3153143\n"
-"13\n"
-"help.text"
-msgid "radiant=(grad*pi)/180"
-msgstr "radián=(fok*pi)/180"
-
-#. J5b?
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3151112\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "A pi körülbelül 3.141593."
-
-#. m!5E
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. NeH_
-#: 03080103.xhp
-#, fuzzy
-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 "REM Ebben a példában a következőket adhatja meg egy derékszögű háromszög esetén:"
-
-#. SULa
-#: 03080103.xhp
-#, fuzzy
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148577\n"
-"17\n"
-"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
-msgstr "REM A szöggel szembeni oldal hosszát, valamit a szög értékét (fokokban) az átfogó hosszának kiszámítására:"
-
-#. ug_)
-#: 03080103.xhp
-#, fuzzy
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150011\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a predefined variable"
-msgstr "REM pi = 3.1415926 egy előre meghatározott állandó"
-
-#. 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 "d1 = InputBox$ (\"Adja meg a szöggel szemközti befogó hosszát: \",\"Szemközti oldal\")"
-
-#. 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 "dAngle = InputBox$ (\"Adja meg az alfa szöget (fokban): \",\"Alfa\")"
-
-#. 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 "Print \"Az átfogó hossza\"; (d1 / sin (dAlpha * Pi / 180))"
-
-#. 6Vkv
-#: 03050000.xhp
-msgctxt ""
-"03050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error-Handling Functions"
-msgstr "Hibakezelő függvények"
-
-#. `\1#
-#: 03050000.xhp
-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/03050000.xhp\" name=\"Hibakezelő függvények\">Hibakezelő függvények</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 "Az alábbi utasítások és függvények segítségével megadhatja, hogy a $[officename] Basic hogyan reagáljon a futás közbeni hibákra."
-
-#. 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 "A $[officename] Basic több módszert is kínál a program befejezésének megakadályozására egy, a futásidőben előforduló hiba esetén."
-
-#. 1i)3
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Dim Statement [Runtime]"
-msgstr "Dim utasítás [futásidejű]"
-
-#. 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 "<bookmark_value>Dim utasítás</bookmark_value><bookmark_value>tömbök; dimenzionálás</bookmark_value><bookmark_value>tömbök dimenzionálása</bookmark_value>"
-
-#. h?Fp
-#: 03102100.xhp
-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/03102100.xhp\" name=\"Dim utasítás [futásidejű]\">Dim utasítás [futásidejű]</link>"
-
-#. woeW
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3143271\n"
-"2\n"
-"help.text"
-msgid "Declares a variable or an array."
-msgstr "Egy változót vagy egy tömböt deklarál."
-
-#. ]^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 "Ha a változók vesszővel vannak elválasztva (például DIM sPar1, sPar2, sPar3 AS STRING), akkor csak Variant változók adhatók meg. Minden változóhoz külön definíciós sort használjon."
-
-#. ~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 "A Dim deklarálja a szubrutinokon belül a lokális változókat. A globális változók a PUBLIC vagy a PRIVATE utasítással deklarálhatók."
-
-#. M[6(
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. )@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 "[ReDim]Dim Változó [(kezdés To befejezés)] [As Típus][, Változó2 [(kezdés To befejezés)] [As Típus][,...]]"
-
-#. ;V!{
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3147397\n"
-"10\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 5mG!
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154730\n"
-"11\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr "<emph>Változónév:</emph> Bármilyen változó- vagy tömbnév."
-
-#. 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 "<emph>Kezdés, Befejezés:</emph> Numerikus értékek vagy konstansok, amelyek meghatározzák az elemszámot (ElemekSzáma=(befejezés-kezdés)+1 ), valamint az indextartományt."
-
-#. 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 "A Kezdés és a Befejezés numerikus kifejezés is lehet abban az esetben, ha a ReDim utasítást eljárási szintjen alkalmazzuk."
-
-#. 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 "<emph>Típus:</emph> Kulcsszó, amely egy változó adattípusát határozza meg."
-
-#. hG8]
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Kulcsszó:</emph> Változótípus"
-
-#. BuH%
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153949\n"
-"16\n"
-"help.text"
-msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr "<emph>Bool (logikai):</emph> Boolean (logikai) változó (True (igaz), False (hamis))"
-
-#. 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 "<emph>Currency (pénznem):</emph> Currency (pénznem) változó (pénznem 4 tizedeshellyel)"
-
-#. k}52
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Date (dátum):</emph> Date (dátum) változó"
-
-#. 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 "<emph>Double (dupla pontosságú):</emph> Dupla pontosságú lebegőpontos változó (1.79769313486232 x 10E308 - 4.94065645841247 x 10E-324)"
-
-#. I=DV
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148916\n"
-"20\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Integer (egész szám):</emph> Integer (egész szám) változó (-32768 - 32767)"
-
-#. ;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 "<emph>Long (hosszú egész):</emph> Long integer (hosszú egész szám) (-2147483648 - 2147483647)"
-
-#. 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 "<emph>Objektum:</emph> Object (objektum) változó (Megjegyzés: ezt a változót végül csak a Set utasítással lehet definiálni!)"
-
-#. 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 "<emph>Single (egyszeres pontosságú):</emph> Egyszeres pontosságú lebegőpontos változó (3.402823 x 10E38 - 1.401298 x 10E-45)."
-
-#. 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 "<emph>String (karakterlánc):</emph> String (karakterlánc) változó, amely maximum 64000 ASCII-karaktert tartalmazhat."
-
-#. 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 "<emph>[Variant]:</emph> Variant változótípus (összes típust tartalmazza, és a definíció határozza meg). Ha egy kulcsszó nincs megadva, akkor a változók automatikusan Variant típusként vannak megadva, hacsak nem a DefBooltól a DefVarig terjedő utasításokat használja."
-
-#. 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 "A $[officename] Basicben nem kell explicit módon deklarálni a változókat. A tömböt használat előtt mindig deklarálni kell. Egy változót a Dim utasítással deklarálhat, több deklarációt vesszővel kell elválasztani. Változótípus deklarálásához a név után adja meg a típusdeklarációs karaktert, vagy használja a megfelelő kulcsszót."
-
-#. %;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 "A $[officename] Basic az egy- vagy többdimenziós tömböket támogatja, amelyeket egy adott változótípus definiál. A tömböket akkor érdemes használni, ha a program szerkeszteni kívánt listákat vagy táblázatokat tartalmaz. A tömbök előnye, hogy az egyedi elemeket az indexekkel megcímezheti, amelyek numerikus kifejezések vagy változók lehetnek."
-
-#. (|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 "A tömbök a Dim utasítással vannak deklarálva. Az indextartományt két módszerrel adhatja meg:"
-
-#. 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 "DIM text(20) as String REM 21 elem, 0-tól 20-ig számozva"
-
-#. 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 "DIM text(5 to 25) as String REM 21 elem, 5-től 25-ig számozva"
-
-#. _*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 "DIM text(-15 to 5) as String REM 21 elem (a nullával együtt)"
-
-#. [UC+
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3152774\n"
-"32\n"
-"help.text"
-msgid "REM numbered from -15 to 5"
-msgstr "REM -15-től 5-ig számozva"
-
-#. 4$_z
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150829\n"
-"33\n"
-"help.text"
-msgid "Two-dimensional data field"
-msgstr "Kétdimenziós adatmező"
-
-#. 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 "DIM text(20,2) as String REM 63 elem, 1. szint: 0-20, 2. szint: 0-20, 3. szint: 0-20."
-
-#. 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 "A tömbtípusokat dinamikusként deklarálhatja, ha a ReDim utasítás megadja a dimenzió számát a tömböt tartalmazó szubrutinban vagy a függvényben. A tömbdimenziót általában csak egyszer lehet megadni, és nem lehet módosítani. Egy szubrutinon belül a tömböt ReDimmel deklarálhatja. A dimenziókat csak numerikus kifejezésekkel definiálhatja. Ez biztosítja, hogy a mezők csak olyan nagyok legyenek, amennyire szükséges."
-
-#. keI_
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3150344\n"
-"36\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. YL8)
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr "sVar = \"Office\""
-
-#. BP51
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr "Kétdimenziós adatmező"
-
-#. R)-{
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153782\n"
-"46\n"
-"help.text"
-msgid "Const sDim As String = \" Dimension:\""
-msgstr "Const sDim as String = \" Dimenzió:\""
-
-#. 46M;
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"tit\n"
-"help.text"
-msgid "FreeFile Function[Runtime]"
-msgstr "FreeFile függvény [futásidejű]"
-
-#. jM$1
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"bm_id3150400\n"
-"help.text"
-msgid "<bookmark_value>FreeFile function</bookmark_value>"
-msgstr "<bookmark_value>FreeFile függvény</bookmark_value>"
-
-#. #zph
-#: 03020102.xhp
-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/03020102.xhp\" name=\"FreeFile függvény [futásidejű]\">FreeFile függvény [futásidejű]</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 "Visszaadja a fájlmegnyitáshoz rendelkezésre álló következő fájl számát. A függvény segítségével és a fájlszám megadásával nyissa meg a fájlt, amelyet még nem használ egy jelenleg megnyitott fájl."
-
-#. fT!8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. bPdY
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. n%;8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3150440\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Egész szám"
-
-#. $kHi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Ez a függvény csak közvetlenül egy Open utasítás előtt használható. A FreeFile visszaadja a következő elérhető fájl számát, de nem foglalja le."
-
-#. 4Z2\
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. !-Ii
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"18\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"A szöveg első sora\""
-
-#. yn{I
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Másik szövegsor\""
-
-#. hZkp
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"tit\n"
-"help.text"
-msgid "ConvertToURL Function [Runtime]"
-msgstr "ConvertToURL függvény [futásidejű]"
-
-#. R#Tc
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"bm_id3152801\n"
-"help.text"
-msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertToURL függvény</bookmark_value>"
-
-#. 7;C8
-#: 03120312.xhp
-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/03120312.xhp\" name=\"ConvertToURL függvény [futásidejű]\">ConvertToURL függvény [futásidejű]</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 "Átalakít egy rendszerfájl-nevet fájl-URL-é."
-
-#. -rCF
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. JdF:
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "ConvertToURL(filename)"
-msgstr "ConvertToURL(Fájlnév)"
-
-#. +q(,
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. ]9LA
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. ;(0+
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Fájlnév:</emph> Egy fájlnév string (karakterlánc) kifejezésként."
-
-#. QI~-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Img1
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
-"10\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-
-#. ?FyK
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154365\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "url$ = ConvertToURL( systemFile$ )"
-
-#. HYYb
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr "print url$"
-
-#. 8G@A
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154909\n"
-"13\n"
-"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
-
-#. sZ9?
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3144762\n"
-"14\n"
-"help.text"
-msgid "print systemFileAgain$"
-msgstr "print systemFileAgain$"
-
-#. _=z_
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Set Statement[Runtime]"
-msgstr "Set utasítás [futásidejű]"
-
-#. *`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>Set utasítás</bookmark_value><bookmark_value>Nothing objektum</bookmark_value>"
-
-#. qa]H
-#: 03103700.xhp
-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/03103700.xhp\" name=\"Set utasítás [futásidejű]\">Set utasítás [futásidejű]</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 "Beállít egy objektumhivatkozást egy változón vagy egy tulajdonságon."
-
-#. _,fY
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 9[A8
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3154217\n"
-"4\n"
-"help.text"
-msgid "Set ObjectVar = Object"
-msgstr "Set Objektumváltozó = Objektum"
-
-#. Rqjn
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. .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 "<emph>Objektumváltozó:</emph> Egy változó vagy egy tulajdonság, amely objektumhivatkozást igényel."
-
-#. 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 "<emph>Objektum:</emph> Az objektum, amelyre a változó vagy a tulajdonság hivatkozik."
-
-#. 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 "<emph>Nothing</emph> - Rendelje hozzá a<emph>Nothing</emph> objektumot egy változóhoz, hogy törölje az előző hozzárendelést."
-
-#. Y}U?
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. p^3.
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefDate Statement [Runtime]"
-msgstr "DefDate utasítás [futásidejű]"
-
-#. IU:;
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"bm_id3150504\n"
-"help.text"
-msgid "<bookmark_value>DefDate statement</bookmark_value>"
-msgstr "<bookmark_value>DefDate utasítás</bookmark_value>"
-
-#. |`bD
-#: 03101300.xhp
-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/03101300.xhp\" name=\"DefDate utasítás [futásidejű]\">DefDate utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a DefDate utasítás a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. S7#=
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3154758\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. d(A8
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3148664\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. sK4}
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. 5T{P
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145171\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. #Gt9
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr "<emph>DefDate:</emph> Date (dátum)"
-
-#. Vd]%
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. qE-/
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. M|kw
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3152462\n"
-"22\n"
-"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr "tDate=Date REM a tDate egy implicit date (dátum) változó"
-
-#. Os1M
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr "Programkönyvtárak, modulok és párbeszédablakok"
-
-#. 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 "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Programkönyvtárak, modulok és párbeszédablakok\">Programkönyvtárak, modulok és párbeszédablakok</link>"
-
-#. 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 "A következő szakasz a programkönyvtárak, modulok és párbeszédablakok alapvető használatát írja le a $[officename] Basicben."
-
-#. 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 "A $[officename] Basic eszközöket biztosít a projektek strukturálásához. Ez különböző „egységeket” támogat, amelyek lehetővé teszik az egyedi szubrutinok és függvények csoportosítását egy Basic-projektben."
-
-#. Q,QI
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr "Programkönyvtárak"
-
-#. _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 "A programkönyvtárak a modulok rendszerezésére szolgálnak, és dokumentumokhoz, illetve sablonokhoz csatolhatók. Ha a dokumentum vagy a sablon mentve van, akkor a programkönyvtár összes modulja is automatikusan mentésre kerül."
-
-#. 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 "Egy programkönyvtár maximum 16000 modult tartalmazhat."
-
-#. Z5RP
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr "Modulok"
-
-#. 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 "A modul szubrutinokat és függvényeket tartalmazhat változódeklarációkkal együtt. A modulba menthető program hossza 64 kB-ra van korlátozva. Ha nagyobb területre van szükség, akkor a $[officename] Basic-projektet feloszthatja több modul között, és ezután mentheti őket egy könyvtárba."
-
-#. Il@(
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3152577\n"
-"11\n"
-"help.text"
-msgid "Dialog Modules"
-msgstr "Párbeszédablak-modulok"
-
-#. 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 "A párbeszédablak-modulok párbeszédablak-definíciókat tartalmaznak; a párbeszédablak tulajdonságait, a párbeszédablak-elemek tulajdonságait és a hozzárendelt eseményeket is beleértve. Mivel a párbeszédablak-modul csak egyetlen párbeszédablakot tartalmazhat, gyakran „párbeszédablakként” is hivatkoznak rá."
-
-#. _zo4
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time Functions"
-msgstr "Dátum- és időfüggvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Dátum- és időfüggvények\">Dátum- és időfüggvények</link>"
-
-#. 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 "Az alábbiakban leírt utasítások és függvények a dátummal és idővel történő számításoknál használhatók."
-
-#. 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 "A <item type=\"productname\">%PRODUCTNAME</item> Basic segítségével kiszámíthatja az idő- és dátumeltérést az idő- és dátumértékek folyamatos numerikus értékké konvertálásával. A különbség kiszámítása után speciális függvények újra konvertálják az értéket a szabványos idő- és számformátumokra."
-
-#. ?)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 "A dátum- és időértékeket egy lebegőpontos decimális számmá egyesítheti. A dátumot egészekre, az időt pedig decimális értékekre konvertálja a rendszer. A <item type=\"productname\">%PRODUCTNAME</item> Basic szintén támogatja a date (dátum) változótípust, amely dátumból és időből álló időspecifikációt tartalmazhat."
-
-#. lpe7
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Controlling Program Execution"
-msgstr "A program futásának vezérlése"
-
-#. :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 "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"A program futásának vezérlése\">A program futásának vezérlése</link>"
-
-#. 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 "Az alábbi utasítások a program futását vezérlik."
-
-#. 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 "A program általában a kód első sorától az utolsó soráig kerül végrehajtásra. Bizonyos eljárásokat a programon beül is végrehajthat adott feltétel szerint, vagy megismételheti a program egy részét a szubrutinon vagy függvényen belül. A ciklusok segítségével megismételheti a program részeit ahányszor szükséges, vagy az adott feltétel eléréséig. Az ilyen típusú vezérlőutasítások a következőképpen osztályozhatók: Feltétel, Ciklus vagy Ugrás."
-
-#. k{eB
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Numeric Functions"
-msgstr "Numerikus függvények"
-
-#. 0(yO
-#: 03080000.xhp
-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/03080000.xhp\" name=\"Numerikus függvények\">Numerikus függvények</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 "Az alábbi numerikus függvények számításokat hajtanak végre. A matematikai és logikai operátorok külön részben vannak leírva. A függvények abban különböznek az operátoroktól, hogy a függvények argumentumot adnak át, és eredményt adnak vissza, az operátorok pedig két numerikus kifejezés egyesítésével adnak vissza értéket."
-
-#. +/)N
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"tit\n"
-"help.text"
-msgid "UCase Function [Runtime]"
-msgstr "UCase függvény [futásidejű]"
-
-#. N\]W
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
-msgstr "<bookmark_value>UCase függvény</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 függvény [futásidejű]\">UCase függvény [futásidejű]</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 "Átalakítja a karakterláncban levő kisbetűs karaktereket nagybetűvé."
-
-#. _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 "Lásd még: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase függvény\">LCase függvény</link>"
-
-#. aLBY
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
-"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>Szintaxis</emph>:"
-
-#. 6J(C
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
-"help.text"
-msgid "UCase (Text As String)"
-msgstr "UCase (Szöveg As String)"
-
-#. +2LT
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "<emph>Visszatérési érték</emph>:"
-
-#. l_.e
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. [a[Z
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés, amelyet át szeretne alakítani."
-
-#. )A[c
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 a \"las vegas\" karakterláncot adja vissza"
-
-#. 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 a \"LAS VEGAS\" karakterláncot adja vissza"
-
-#. V(?6
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDec Function [Runtime]"
-msgstr "CDec függvény [futásidejű]"
-
-#. /)Tf
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"bm_id863979\n"
-"help.text"
-msgid "<bookmark_value>CDec function</bookmark_value>"
-msgstr "<bookmark_value>CDec függvény</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 "<link href=\"text/sbasic/shared/03100060.xhp\">CDec függvény [futásidejű]</link>"
-
-#. 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 "Egy karakterlánc-, vagy numerikus kifejezést egy decimális kifejezéssé alakít."
-
-#. fm#3
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. LBn,
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105EA\n"
-"help.text"
-msgid "CDec(Expression)"
-msgstr "CDec (Kifejezés)"
-
-#. |Xiz
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105ED\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. i$Rm
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F1\n"
-"help.text"
-msgid "Decimal number."
-msgstr "Decimális szám."
-
-#. qz(W
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F4\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "Kifejezés: Bármilyen karakterlánc-, vagy numerikus kifejezés, amelyet át szeretnénk alakítani."
-
-#. T;X[
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Event-Driven Macros"
-msgstr "Eseményvezérelt makrók"
-
-#. (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 "<bookmark_value>törlés;makrók eseményekhez rendelése</bookmark_value> <bookmark_value>makrók; hozzárendelése eseményekhez</bookmark_value> <bookmark_value>makrók hozzárendelése eseményekhez</bookmark_value> <bookmark_value>események; makrók hozzárendelése</bookmark_value>"
-
-#. (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 "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Eseményvezérelt makrók\">Eseményvezérelt makrók</link>"
-
-#. 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 "Ez a szakasz leírja, hogy hogyan rendelhet Basic-programokat programeseményekhez."
-
-#. 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 "A program a makrót automatikusan végrehajthatja egy adott szoftveresemény bekövetkezésekor, ha az eseményhez hozzárendeli a kívánt makrót. Az alábbi táblázat áttekintést nyújt a programeseményekről, és bemutatja, hogy mely ponton kerül végrehajtásra a hozzárendelt makró."
-
-#. gw#%
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
-"help.text"
-msgid "Event"
-msgstr "Esemény"
-
-#. 1l;P
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145799\n"
-"6\n"
-"help.text"
-msgid "An assigned macro is executed..."
-msgstr "A hozzárendelt makró elkezd futni..."
-
-#. CTDN
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149379\n"
-"7\n"
-"help.text"
-msgid "Program Start"
-msgstr "Program indítása"
-
-#. w3RB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150715\n"
-"8\n"
-"help.text"
-msgid "... after a $[officename] application is started."
-msgstr "... miután egy $[officename]-alkalmazás elindult."
-
-#. PB/|
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146914\n"
-"9\n"
-"help.text"
-msgid "Program End"
-msgstr "Program vége"
-
-#. !^;T
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153765\n"
-"10\n"
-"help.text"
-msgid "...before a $[officename] application is terminated."
-msgstr "...mielőtt egy $[officename]-alkalmazás befejeződött."
-
-#. 70d]
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145150\n"
-"11\n"
-"help.text"
-msgid "Create Document"
-msgstr "Dokumentum létrehozása"
-
-#. 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 "... miután egy új dokumentum került létrehozásra a <emph>Fájl - Új</emph> vagy az <emph>Új</emph> ikon segítségével."
-
-#. -}!]
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145790\n"
-"13\n"
-"help.text"
-msgid "Open Document"
-msgstr "Dokumentum megnyitása"
-
-#. 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 "... miután a dokumentum megnyitásra került a <emph>Fájl - Megnyitás</emph> menüparancs vagy a <emph>Megnyitás</emph> ikon segítségével."
-
-#. S/B#
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"15\n"
-"help.text"
-msgid "Save Document As"
-msgstr "Dokumentum mentése másként"
-
-#. ;@-*
-#: 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 "... mielőtt a dokumentum mentésre kerül a megadott néven (a <emph>Fájl - Mentés másként</emph>, a <emph>Fájl - Mentés</emph> menüparancs vagy a <emph>Mentés</emph> ikon segítségével, ha a dokumentumnév még nem lett megadva)."
-
-#. T4hc
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3158215\n"
-"43\n"
-"help.text"
-msgid "Document has been saved as"
-msgstr "Dokumentum mentve másként"
-
-#. 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 "... miután a dokumentum mentésre került a megadott néven (a <emph>Fájl - Mentés másként</emph>, a <emph>Fájl - Mentés</emph> menüparancs vagy a <emph>Mentés</emph> ikon segítségével, ha a dokumentumnév még nem lett megadva)."
-
-#. qd^Q
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150519\n"
-"17\n"
-"help.text"
-msgid "Save Document"
-msgstr "Dokumentum mentése"
-
-#. 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 "... mielőtt a dokumentum mentésre kerül a <emph>Fájl - Mentés</emph> lehetőség vagy a <emph>Mentés</emph> ikon segítségével, feltéve, hogy a dokumentumnév már meg lett megadva."
-
-#. qYmx
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149404\n"
-"45\n"
-"help.text"
-msgid "Document has been saved"
-msgstr "Dokumentum mentve"
-
-#. 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 "... miután a dokumentum mentésre került a <emph>Fájl - Mentés</emph> menüparancs vagy a <emph>Mentés</emph> ikon segítségével, feltéve, hogy a dokumentumnév már meg lett adva."
-
-#. )29f
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"19\n"
-"help.text"
-msgid "Document is closing"
-msgstr "A dokumentum bezáródik."
-
-#. (K@M
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"20\n"
-"help.text"
-msgid "...before a document is closed."
-msgstr "...mielőtt a dokumentumot bezárná."
-
-#. T4#E
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"47\n"
-"help.text"
-msgid "Document closed"
-msgstr "A dokumentum be van zárva."
-
-#. !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 "... dokumentum bezárása után. A „Dokumentum mentése” esemény akkor is bekövetkezhet, ha a dokumentum bezárás előtt mentésre kerül."
-
-#. =Wvo
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"21\n"
-"help.text"
-msgid "Activate Document"
-msgstr "Dokumentum aktiválása"
-
-#. 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 "...miután a dokumentum az előtérbe kerül."
-
-#. D#BZ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"23\n"
-"help.text"
-msgid "Deactivate Document"
-msgstr "Dokumentum deaktiválása"
-
-#. 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 "...miután a dokumentum a háttérbe kerül."
-
-#. lJoy
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3152384\n"
-"25\n"
-"help.text"
-msgid "Print Document"
-msgstr "Dokumentum nyomtatása"
-
-#. 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 "... a <emph>Nyomtatás</emph> párbeszédablak bezárása után, de a tényleges nyomtatási eljárás megkezdése előtt."
-
-#. fcbB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159227\n"
-"49\n"
-"help.text"
-msgid "JavaScript run-time error"
-msgstr "JavaScript futásidejű hiba"
-
-#. V2EQ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145362\n"
-"50\n"
-"help.text"
-msgid "...when a JavaScript run-time error occurs."
-msgstr "...mikor egy JavaScript futásidejű hiba előfordul."
-
-#. 0Fg;
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154767\n"
-"27\n"
-"help.text"
-msgid "Print Mail Merge"
-msgstr "Körlevél nyomtatása"
-
-#. 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 "... a <emph>Nyomtatás</emph> párbeszédablak bezárása után, de a tényleges nyomtatási eljárás megkezdése előtt. Ez az esemény minden példány kinyomtatásakor megtörténik."
-
-#. :}z3
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3156366\n"
-"51\n"
-"help.text"
-msgid "Change of the page count"
-msgstr "Oldalszámozás megváltoztatása"
-
-#. FoY(
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154627\n"
-"52\n"
-"help.text"
-msgid "...when the page count changes."
-msgstr "...mikor az oldalszámozás megváltozik."
-
-#. D@6.
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154737\n"
-"53\n"
-"help.text"
-msgid "Message received"
-msgstr "Üzenet érkezett"
-
-#. y(?x
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150952\n"
-"54\n"
-"help.text"
-msgid "...if a message was received."
-msgstr "...ha egy üzenet érkezik."
-
-#. O/)d
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"hd_id3153299\n"
-"30\n"
-"help.text"
-msgid "Assigning a Macro to an Event"
-msgstr "Makró hozzárendelése egy eseményhez"
-
-#. 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 "Válassza <emph>Eszközök - Testreszabás</emph> menüparancsot, és kattintson az <emph>Események</emph> lapra."
-
-#. 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 "A <emph>Mentés ide</emph> listából válassza ki, hogy a hozzárendelés globálisan vagy csak az aktuális dokumentumra legyen érvényes."
-
-#. 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 "Az <emph>Esemény</emph> listából válasszon ki egy eseményt."
-
-#. 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 "Kattintson a <emph>Makró</emph> gombra, és válassza ki a kijelölt eseményhez hozzárendelendő makrót."
-
-#. cCn|
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146321\n"
-"35\n"
-"help.text"
-msgid "Click <emph>OK</emph> to assign the macro."
-msgstr "A makró hozzárendeléséhez kattintson az <emph>OK</emph> gombra."
-
-#. `=2{
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3147414\n"
-"56\n"
-"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "A párbeszédablak bezárásához kattintson az <emph>OK</emph> gombra."
-
-#. 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 "Makró eseményhez rendelésének eltávolítása"
-
-#. 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 "Válassza <emph>Eszközök - Testreszabás</emph> menüparancsot, és kattintson az <emph>Események</emph> lapra."
-
-#. 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 "A <emph>Mentés ide</emph> listából válassza ki, hogy globális vagy csak az aktuális dokumentumra érvényes hozzárendelést kíván-e törölni."
-
-#. [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 "Az <emph>Esemény</emph> listából válasza ki az eltávolítandó hozzárendelést tartalmazó eseményt."
-
-#. \oqc
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149143\n"
-"37\n"
-"help.text"
-msgid "Click <emph>Remove</emph>."
-msgstr "Kattintson az <emph>Eltávolítás</emph> lehetőségre."
-
-#. 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 "A párbeszédablak bezárásához kattintson az <emph>OK</emph> gombra."
-
-#. KP;M
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Debugging a Basic Program"
-msgstr "Basic-programok hibakeresése"
-
-#. 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 "<bookmark_value>hibakeresés Basic-programokban</bookmark_value><bookmark_value>változók; változók megfigyelése</bookmark_value><bookmark_value>változók figyelése</bookmark_value><bookmark_value>futásidejű hibák Basicben</bookmark_value><bookmark_value>hibakódok Basicben</bookmark_value><bookmark_value>töréspontok</bookmark_value><bookmark_value>Hívási verem ablak</bookmark_value>"
-
-#. :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 "<link href=\"text/sbasic/shared/01030300.xhp\">Basic programok hibakeresése</link>"
-
-#. 9FPz
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3159224\n"
-"4\n"
-"help.text"
-msgid "Breakpoints and Single Step Execution"
-msgstr "Töréspontok és lépésenkénti futtatás"
-
-#. 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 "A Basic-program minden sorában kereshet hibákat a lépésenkénti végrehajtással. A hibák egyszerűen nyomon követhetők, mivel azonnal láthatja minden lépés eredményét. A Szerkesztő töréspont-oszlopában lévő mutató jelzi az aktuális sort. Töréspontot akkor is beállíthat, ha egy adott helyen meg kívánja szakítani a programot."
-
-#. 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 "Kattintson duplán a Szerkesztő ablak bal oldalán lévő <emph>töréspont</emph> oszlopra a megfelelő sor töréspontjának átkapcsolásához. Ha a program eléri a töréspontot, akkor a program végrehajtása megszakításra kerül."
-
-#. ?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 "A <emph>lépésenkénti</emph> végrehajtás segítségével, az <emph>Egységnyi léptetés</emph> ikon hatására a program elágazik az eljárásoknál és függvényeknél."
-
-#. 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 "Ha az <emph>Eljárásonként léptetve</emph> ikonnak az eljárásonkénti léptetést választja, akkor a program egy lépésként átugrik az eljárásokon és függvényeken."
-
-#. crWD
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3153825\n"
-"9\n"
-"help.text"
-msgid "Properties of a Breakpoint"
-msgstr "A töréspont tulajdonságai"
-
-#. 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 "A töréspont tulajdonságai annak helyi menüjén keresztül érhetőek el. Kattintson jobb egérgombbal a töréspont-oszlopban a töréspontra."
-
-#. 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 "A helyi menü <emph>Aktív</emph> elemének kiválasztásával <emph>aktiválhatja</emph> és <emph>inaktiválhatja</emph> a töréspontot. A töréspont inaktiválásakor a rendszer nem szakítja meg a program végrehajtását."
-
-#. 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 "Válassza ki a töréspont helyi menüjének <emph>Tulajdonságok</emph> elemét, vagy a töréspont-oszlop helyi menüjének <emph>Töréspontok</emph> elemét a <emph>Töréspontok</emph> párbeszédablak meghívásához, amelyben megadhat más töréspont-beállításokat."
-
-#. \=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 "A lista megjeleníti a forráskód összes <emph>töréspontját</emph> a megfelelő sorszámmal. A kiválasztott töréspontot az <emph>Aktív</emph> mező bejelölésével vagy bejelölésének megszüntetésével aktiválhatja vagy inaktiválhatja."
-
-#. /+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 "A <emph>Menetek száma</emph> megadja, hogy a töréspont hányszor léphető át a program megszakítása előtt. Ha 0-t ír be (alapértelmezett beállítás), akkor a program mindig megszakításra kerül a töréspont elérésekor."
-
-#. 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 "A töréspont programból történő eltávolításához kattintson a <emph>Törlés</emph> gombra."
-
-#. `YTC
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3150439\n"
-"14\n"
-"help.text"
-msgid "Observing the Value of Variables"
-msgstr "Változók értékének megfigyelése"
-
-#. 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 "A változó értékeit megfigyelheti, ha hozzáadja azt a <emph>Figyelés</emph> ablakhoz. Változók figyelt változók listájához történő hozzáadásához írja be a változó nevét a <emph>Figyelés</emph> szövegmezőbe, és nyomja meg az Entert."
-
-#. ?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 "A változók értékei csak akkor jelennek meg, ha benne vannak a hatókörben. Ha a változók nem az aktuális forráskód helyén vannak megadva, a („Hatókörön kívül”) jelenik meg az érték helyett."
-
-#. ;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 "Tömböket is felvehet a Figyelés ablakba. Ha egy tömbváltozó nevét indexérték nélkül adja meg a Figyelés szövegmezőben, akkor a teljes tömb tartalma megjelenik."
-
-#. 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 "Ha az egeret egy már meghatározott változó fölé viszi a program futása közben, a változó értéke megjelenik egy előugró mezőben."
-
-#. :Z9k
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3148618\n"
-"20\n"
-"help.text"
-msgid "The Call Stack Window"
-msgstr "A Hívási verem ablak"
-
-#. 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 "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Az eljárások és függvények meghívási hierarchiájáról ad áttekintést.</ahelp> Megtekintheti, hogy melyik eljárás vagy függvény milyen más eljárást vagy függvényt hívott meg a forráskód aktuális pontján."
-
-#. yyKl
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3150594\n"
-"24\n"
-"help.text"
-msgid "List of Run-Time Errors"
-msgstr "Futásidejű hibák listája"
-
-#. m*2J
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"tit\n"
-"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr "A Basic IDE gyorsbillentyűi"
-
-#. 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>billentyűzet;IDE</bookmark_value><bookmark_value>gyorsbillentyűk;Basic IDE</bookmark_value><bookmark_value>IDE;gyorsbillentyűk</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=\"A Basic IDE gyorsbillentyűi\">A Basic IDE gyorsbillentyűi</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 "A Basic IDE környezetben az alábbi gyorsbillentyűk használhatók:"
-
-#. _RT!
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
-"3\n"
-"help.text"
-msgid "Action"
-msgstr "Művelet"
-
-#. 5AD;
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153192\n"
-"4\n"
-"help.text"
-msgid "Keyboard shortcut"
-msgstr "Gyorsbillentyűk"
-
-#. 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 "A kód futtatása az első sortól, vagy ha töréspontnál állt le, akkor onnantól."
-
-#. 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 "Leállítás"
-
-#. 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 "Hozzáad egy <link href=\"text/sbasic/shared/01050100.xhp\" name=\"figyelést\">figyelést</link> a kurzornál lévő változóhoz."
-
-#. ^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 "Az utasítások egyesével lesznek futtatva az első sortól vagy attól az utasítástól kezdődően, ahol a program futtatása előzőleg félbemaradt."
-
-#. 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 "Egy lépés, mint az F8 billentyű esetén, de a függvényhívást csak <emph>egy</emph> utasításként kezeli a rendszer"
-
-#. 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 "Beállít vagy eltávolít egy <link href=\"text/sbasic/shared/01030300.xhp\" name=\"töréspontot\">töréspontot</link> az aktuális sorból vagy az aktuális kijelölés összes töréspontját."
-
-#. 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 "Engedélyezi vagy letiltja az aktuális sorban vagy az aktuális kiválasztásban levő összes töréspontot."
-
-#. \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 "A futó makró a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q billentyűkombinációval megszakítható a Basic IDE-n kívülről is. Ha a Basic IDE-n belül van, és a makró megáll egy töréspontnál, akkor a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q leállítja a makró végrehajtását, de ezt csak a következő F5, F8 vagy Shift+F8 után tudja felismerni."
-
-#. EoF]
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsArray Function [Runtime]"
-msgstr "IsArray függvény [futásidejű]"
-
-#. ljz2
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"bm_id3154346\n"
-"help.text"
-msgid "<bookmark_value>IsArray function</bookmark_value>"
-msgstr "<bookmark_value>IsArray függvény</bookmark_value>"
-
-#. _:Fn
-#: 03102200.xhp
-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/03102200.xhp\" name=\"IsArray függvény [futásidejű]\">IsArray függvény [futásidejű]</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 "Eldönti, hogy a változó egy tömbben levő adatmező-e."
-
-#. srvh
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. f2MY
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3153379\n"
-"4\n"
-"help.text"
-msgid "IsArray (Var)"
-msgstr "IsArray (Változó)"
-
-#. h!la
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3154365\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. LVRl
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. TqCE
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Változó:</emph> Tetszőleges változó, amelyet tesztelni kíván, hogy tömbként van-e deklarálva. Ha a változó egy tömb, akkor a függvény <emph>True</emph> (igaz) értéket ad vissza, ellenkező esetben <emph>False</emph> (hamis) értéket."
-
-#. wErW
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. NzT-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr "Véletlen számok létrehozása"
-
-#. 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 "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Véletlen számok generálása\">Véletlen számok generálása</link>"
-
-#. 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 "A következő utasítások és függvények véletlen számokat hoznak létre."
-
-#. !#Y#
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"tit\n"
-"help.text"
-msgid "CSng Function[Runtime]"
-msgstr "CSng függvény [futásidejű]"
-
-#. P#xA
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"bm_id3153753\n"
-"help.text"
-msgid "<bookmark_value>CSng function</bookmark_value>"
-msgstr "<bookmark_value>Csng függvény</bookmark_value>"
-
-#. |IY.
-#: 03100900.xhp
-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/03100900.xhp\" name=\"CSng függvény [futásidejű]\">CSng függvény [futásidejű]</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 "Bármilyen string (karakterlánc) vagy numerikus kifejezést single (egyszeres pontosságú) típusúvá alakít."
-
-#. sC\E
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3153255\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. J/0I
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3148983\n"
-"4\n"
-"help.text"
-msgid "CSng (Expression)"
-msgstr "CSng (Kifejezés)"
-
-#. =C+P
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3152347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. ZP`(
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3153750\n"
-"6\n"
-"help.text"
-msgid "Single"
-msgstr "Single (egyszeres pontosságú)"
-
-#. 5pzk
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3146957\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> Bármilyen string (karakterlánc) vagy numerikus kifejezés, amelyet át szeretne alakítani. String (karakterlánc) kifejezés átalakításához a számot normál szövegként kell beírni (\"123.5\") az operációs rendszer alapértelmezett számformátumának felhasználásával."
-
-#. @@!5
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3149514\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. eb[L
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"tit\n"
-"help.text"
-msgid "Int Function [Runtime]"
-msgstr "Int függvény [futásidejű]"
-
-#. M3(?
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>Int function</bookmark_value>"
-msgstr "<bookmark_value>Int függvény</bookmark_value>"
-
-#. AOXF
-#: 03080502.xhp
-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/03080502.xhp\" name=\"Int függvény [futásidejű]\">Int függvény [futásidejű]</link>"
-
-#. 4M$.
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3155420\n"
-"2\n"
-"help.text"
-msgid "Returns the integer portion of a number."
-msgstr "Visszaadja egy szám egész részét."
-
-#. ,,$2
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ?~lj
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Int (Number)"
-msgstr "Int (Szám)"
-
-#. 4aJC
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3149670\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. U+@f
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. 0VIB
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. (_OE
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3148797\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr "<emph>Szám: </emph>Bármilyen numerikus kifejezés."
-
-#. .MT@
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ibO~
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3125864\n"
-"11\n"
-"help.text"
-msgid "Print Int(3.99) ' returns the value 3"
-msgstr "Print Int(3.99) REM 3-at ad vissza."
-
-#. 02X%
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3145787\n"
-"12\n"
-"help.text"
-msgid "Print Int(0) ' returns the value 0"
-msgstr "Print Int(0) REM 0-t ad vissza."
-
-#. (4,r
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3153143\n"
-"13\n"
-"help.text"
-msgid "Print Int(-3.14159) ' returns the value -4"
-msgstr "Print Int(-3.14159) REM -4-et ad vissza."
-
-#. /FU|
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"tit\n"
-"help.text"
-msgid "RTrim Function [Runtime]"
-msgstr "RTrim függvény [futásidejű]"
-
-#. Bn8^
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"bm_id3154286\n"
-"help.text"
-msgid "<bookmark_value>RTrim function</bookmark_value>"
-msgstr "<bookmark_value>RTrim függvény</bookmark_value>"
-
-#. yjW+
-#: 03120309.xhp
-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/03120309.xhp\" name=\"RTrim függvény [futásidejű]\">RTrim függvény [futásidejű]</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 "Törli a string (karakterlánc) kifejezés végén levő szóközöket."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim függvény\">LTrim függvény</link>"
-
-#. 0_aA
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. *,~f
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3154347\n"
-"5\n"
-"help.text"
-msgid "RTrim (Text As String)"
-msgstr "RTrim (Szöveg As String)"
-
-#. 2n9v
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. }(u#
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. 4p1@
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. bzdN
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3151380\n"
-"9\n"
-"help.text"
-msgid "<emph>Text: </emph>Any string expression."
-msgstr "<emph>Szöveg: </emph> Bármilyen string (karakterlánc) kifejezés."
-
-#. 4Lci
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. `6)O
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr "Egész számok"
-
-#. iTl*
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"hd_id3153345\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Egész számok\">Egész számok</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 "Ezek a függvények számok kerekítésére szolgálnak."
-
-#. 21!v
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chr Function [Runtime]"
-msgstr "Chr függvény [futásidejű]"
-
-#. MA|5
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Chr function</bookmark_value>"
-msgstr "<bookmark_value>Chr függvény</bookmark_value>"
-
-#. Ki)}
-#: 03120102.xhp
-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/03120102.xhp\" name=\"Chr függvény [futásidejű]\">Chr függvény [futásidejű]</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 "Visszaadja a megadott karakterkódnak megfelelő karaktert."
-
-#. eiy7
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. m^?6
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Chr(Expression As Integer)"
-msgstr "Chr(Kifejezés As Integer)"
-
-#. kmF*
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3143228\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. v`,K
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. 8DO7
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> Numerikus változók, amelyek egy érvényes 8 bites ASCII-kódot (0-255), vagy egy 16 bites Unicode-értéket jelentenek."
-
-#. 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 "A <emph>Chr$</emph> függvény segítségével speciális vezérlősorozatokat küldhet egy nyomtatóra vagy másik típusú kimeneti forrásra. Ennek segítségével idézőjeleket is beszúrhat egy string (karakterlánc) kifejezésbe."
-
-#. U+M(
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. W*_q
-#: 03120102.xhp
-#, fuzzy
-msgctxt ""
-"03120102.xhp\n"
-"par_id3154909\n"
-"12\n"
-"help.text"
-msgid "' This example inserts quotation marks (ASCII value 34) in a string."
-msgstr "REM Ez a példa egy idézőjelet (34-es ASCII-kód) szúr be egy karakterláncba."
-
-#. 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 \"Egy \"+ Chr$(34)+\"rövid\" + Chr$(34)+\" utazás.\""
-
-#. JQa]
-#: 03120102.xhp
-#, fuzzy
-msgctxt ""
-"03120102.xhp\n"
-"par_id3145174\n"
-"14\n"
-"help.text"
-msgid "' The printout appears in the dialog as: A \"short\" trip."
-msgstr "REM A következőt írja ki: Egy \"rövid\" utazás."
-
-#. 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 "GetProcessServiceManager függvény [futásidejű]"
-
-#. 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 függvény</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-
-#. *Yec
-#: 03131700.xhp
-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/03131700.xhp\" name=\"GetProcessServiceManager függvény [futásidejű]\">GetProcessServiceManager függvény [futásidejű]</link>"
-
-#. il__
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3156414\n"
-"2\n"
-"help.text"
-msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
-msgstr "Visszaadja a ProcessServiceManager (központi Uno ServiceManager) programot."
-
-#. 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 "Ezt a függvényt akkor használja, ha egy szolgáltatásból a CreateInstanceWithArguments parancs segítségével akar egy példányt létrehozni."
-
-#. \?S6
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. NeDQ
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3151110\n"
-"5\n"
-"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr "oServiceManager = GetProcessServiceManager()"
-
-#. s:El
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"hd_id3149516\n"
-"6\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. oLoA
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3143270\n"
-"7\n"
-"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr "oServiceManager = GetProcessServiceManager()"
-
-#. 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 "ez ugyanaz, mint a következő utasítás:"
-
-#. ?%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 "Asc függvény [futásidejű]"
-
-#. !!U7
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Asc function</bookmark_value>"
-msgstr "<bookmark_value>Asc függvény</bookmark_value>"
-
-#. hD=[
-#: 03120101.xhp
-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/03120101.xhp\" name=\"Asc függvény [futásidejű]\">Asc függvény [futásidejű]</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 "Visszaadja egy string (karakterlánc) kifejezés első betűjének ASCII- (American Standard Code for Information Interchange) kódját."
-
-#. -\6}
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. gex|
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Asc (Text As String)"
-msgstr "Asc (Szöveg As String)"
-
-#. Nb:@
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. Lj+Q
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. l$2@
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Szöveg:</emph> Érvényes string (karakterlánc) kifejezés. Csak a string (karakterlánc) első karakterét veszi figyelembe a program."
-
-#. 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 "Az Asc függvény segítségével cserélheti le a betűket értékekre. Ha az Asc függvény üres karakterláncot kap, akkor a $[officename] Basic futásidejű hibát jelez. A 7 bites ASCII-karaktereken kívül (0-127 kód), az ASCII függvény a nem nyomtatható karakterkódokat is detektálni tudja ASCII-kódban. Ez a függvény a 16 bites Unicode-karaktereket is kezeli."
-
-#. $=J]
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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-öt ad vissza"
-
-#. 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-et ad vissza"
-
-#. ;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(\"Las Vegas\") REM 76-ot ad vissza, mivel csak az első karaktert veszi figyelembe"
-
-#. lHL(
-#: 03120101.xhp
-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/03120102.xhp\">CHR</link>"
-
-#. -XN1
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDbl Function [Runtime]"
-msgstr "CDbl függvény [futásidejű]"
-
-#. pyG4
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"bm_id3153750\n"
-"help.text"
-msgid "<bookmark_value>CDbl function</bookmark_value>"
-msgstr "<bookmark_value>CDbl függvény</bookmark_value>"
-
-#. G\gW
-#: 03100400.xhp
-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/03100400.xhp\" name=\"CDbl függvény [futásidejű]\">CDbl függvény [futásidejű]</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 "Bármilyen numerikus kifejezést vagy string (karakterlánc) kifejezést double (dupla pontosságú) típusúvá alakít."
-
-#. CU`#
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 25NM
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "CDbl (Expression)"
-msgstr "CDbl (Kifejezés)"
-
-#. 38MF
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3153061\n"
-"5\n"
-"help.text"
-msgid "Return value"
-msgstr "Visszatérési érték"
-
-#. +.[y
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. R}R8
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> Bármilyen string (karakterlánc) vagy numerikus kifejezés, amelyet át szeretné alakítani. String (karakterlánc) kifejezés átalakításához a számot normál szövegként kell beírni (\"123.5\") az operációs rendszer alapértelmezett számformátumának felhasználásával."
-
-#. Lw$-
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. +lCL
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Cos függvény [futásidejű]"
-
-#. e!8c
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"bm_id3154923\n"
-"help.text"
-msgid "<bookmark_value>Cos function</bookmark_value>"
-msgstr "<bookmark_value>Cos függvény</bookmark_value>"
-
-#. ph_M
-#: 03080102.xhp
-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/03080102.xhp\" name=\"Cos függvény [futásidejű]\">Cos függvény [futásidejű]</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 "Kiszámítja a szög koszinuszát. A szög radiánban van megadva. Az eredmény -1 és 1 közötti érték."
-
-#. 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 "Az alfa szög felhasználásával a Cos függvény kiszámítja a szög melletti befogó és az átfogó hosszának arányát."
-
-#. \8,*
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3154141\n"
-"4\n"
-"help.text"
-msgid "Cos(Alpha) = Adjacent/Hypotenuse"
-msgstr "Cos(alfa) = Melletti/Átfogó"
-
-#. :cMQ
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ]m`/
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3145172\n"
-"6\n"
-"help.text"
-msgid "Cos (Number)"
-msgstr "Cos (Szám)"
-
-#. avLi
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. C=FE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. v=Sv
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3153969\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Numerikus kifejezés, amely azon szög értékét tartalmazza radiánban, amelynek ki akarja számolni a koszinuszát."
-
-#. )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 "Fokok radiánná alakításához szorozza meg a fokokat pi/180-nal. Radiánok szögekké alakításához szorozza meg a radiánokat 180/pi-vel."
-
-#. 3.lE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149664\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "fok=(radián*180)/pi"
-
-#. :%Vg
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3146985\n"
-"13\n"
-"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr "radián=(fok*pi)/180"
-
-#. 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 "A pi a rögzített körállandó 3.14159-es kerekített értékkel."
-
-#. TQNa
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. [gj,
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3155855\n"
-"16\n"
-"help.text"
-msgid "' The following example allows for a right-angled triangle the input of"
-msgstr "REM Az alábbi példa lehetővé teszi egy derékszögű háromszög"
-
-#. *_\i
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149484\n"
-"17\n"
-"help.text"
-msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
-msgstr "REM szekánsának és szögének (fokokban) megadását, és ezek alapján kiszámolja a háromszög átfogójának hosszát:"
-
-#. Q!Ai
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr "REM kerekített Pi = 3.14159"
-
-#. `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 "d1 = InputBox$ (\"\"Adja meg a szög melletti befogó hosszát: \",\"Melletti\")"
-
-#. 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 "dAngle = InputBox$ (\"Adja meg az alfa szöget (fokban): \",\"Alfa\")"
-
-#. 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 "Print \"Az átfogó hossza\"; (d1 / cos (dAngle * Pi / 180))"
-
-#. 6ddw
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Töréspontok kezelése"
-
-#. 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 "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Töréspontok kezelése\">Töréspontok kezelése</link>"
-
-#. _}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 "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Megadja a töréspontok beállításait.</ahelp>"
-
-#. MlDG
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
-"3\n"
-"help.text"
-msgid "Breakpoints"
-msgstr "Töréspontok"
-
-#. 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 "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Töréspont megadásához írja be a sor számát, utána kattintson az <emph>Új</emph> gombra.</ahelp>"
-
-#. Haog
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3156280\n"
-"6\n"
-"help.text"
-msgid "Active"
-msgstr "Aktív"
-
-#. @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 "<ahelp hid=\"HID_BASICIDE_ACTIV\">Be- vagy kikapcsolja az aktuális töréspontot.</ahelp>"
-
-#. ()DC
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3144500\n"
-"8\n"
-"help.text"
-msgid "Pass Count"
-msgstr "Menetek száma"
-
-#. 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 "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Adja meg, hogy hányszor fusson le a ciklus a töréspont végrehajtása előtt.</ahelp>"
-
-#. Q7bw
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
-"10\n"
-"help.text"
-msgid "New"
-msgstr "Új"
-
-#. ~?!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 "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">A megadott számú sorban töréspontot hoz létre.</ahelp>"
-
-#. 9#45
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
-"12\n"
-"help.text"
-msgid "Delete"
-msgstr "Törlés"
-
-#. 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 "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Törli a kijelölt töréspontot.</ahelp>"
-
-#. DI}?
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Array Function [Runtime]"
-msgstr "Array függvény [futásidejű]"
-
-#. ]*}.
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Array function</bookmark_value>"
-msgstr "<bookmark_value>Array függvény</bookmark_value>"
-
-#. -SRW
-#: 03104200.xhp
-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/03104200.xhp\" name=\"Array függvény [futásidejű]\">Array függvény [futásidejű]</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 "A Variant típust adatmezőkkel adja vissza."
-
-#. pSl~
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 6Gb.
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "Array ( Argument list)"
-msgstr "Array (Argumentumlista)"
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-
-#. kX_=
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3150669\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Argumentumlista:</emph> Olyan lista, amely tetszőleges számú, vesszővel elválasztott argumentumot tartalmaz."
-
-#. DPx{
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. =f3O
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153897\n"
-"9\n"
-"help.text"
-msgid "Dim A As Variant"
-msgstr "Dim A As Variant"
-
-#. 97hl
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
-"10\n"
-"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-msgstr "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-
-#. *QLX
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3150792\n"
-"11\n"
-"help.text"
-msgid "Msgbox A(2)"
-msgstr "Msgbox A(2)"
-
-#. oD5(
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Val Function [Runtime]"
-msgstr "Val függvény [futásidejű]"
-
-#. `J)\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Val function</bookmark_value>"
-msgstr "<bookmark_value>Val függvény</bookmark_value>"
-
-#. 9SnG
-#: 03120104.xhp
-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/03120104.xhp\" name=\"Val függvény [futásidejű]\">Val függvény [futásidejű]</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 "Átalakít egy karakterláncot numerikus kifejezéssé."
-
-#. X/*7
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. o1MT
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Val (Text As String)"
-msgstr "Val (Szöveg As String)"
-
-#. ,Ta\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3150669\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. xv|T
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. /TE\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. \[@/
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3154348\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr "<emph>Szöveg:</emph> String (karakterlánc), amely egy számot tartalmaz."
-
-#. 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 "A Val függvény segítségével egy számot reprezentáló karakterlánccá numerikus kifejezéssé konvertálhat. Ez az <emph>Str</emph> függvény inverze. Ha csak a karakterlánc egy része tartalmaz számot, akkor a karakterlánc első megfelelő karakterei kerülnek konvertálásra. Ha a karakterlánc nem tartalmaz számot, akkor a <emph>Val</emph> függvény 0 értéket ad vissza."
-
-#. *ANs
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. p|qT
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr "Képernyő-beviteli függvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Képernyő-beviteli függvények\">Képernyő-beviteli függvények</link>"
-
-#. 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 "Ez a szakasz a képernyőbevitel vezérlésére szolgáló futásidejű függvényeket írja le."
-
-#. Y,1#
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"tit\n"
-"help.text"
-msgid "MkDir Statement [Runtime]"
-msgstr "MkDir utasítás [futásidejű]"
-
-#. #02k
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"bm_id3156421\n"
-"help.text"
-msgid "<bookmark_value>MkDir statement</bookmark_value>"
-msgstr "<bookmark_value>MkDir utasítás</bookmark_value>"
-
-#. %uwv
-#: 03020411.xhp
-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/03020411.xhp\" name=\"MkDir utasítás [futásidejű]\">MkDir utasítás [futásidejű]</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 "Létrehoz egy új könyvtárat egy adatmédiumon."
-
-#. EW7~
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. @+6W
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3155150\n"
-"4\n"
-"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Szöveg As String"
-
-#. i7db
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely megadja a létrehozandó könyvtár elérési útját és nevét. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. 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 "Ha az elérési út nincs megadva, akkor a könyvtárat az aktuális könyvtárban hozza létre."
-
-#. OK-/
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. (p3u
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr "' Példa a fájlok rendezéséhez használt függvényekre"
-
-#. cU%T
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149669\n"
-"13\n"
-"help.text"
-msgid "Const sSubDir1 As String =\"Test\""
-msgstr "Const sSubDir1 as String =\"Test\""
-
-#. 3X@Q
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3148663\n"
-"14\n"
-"help.text"
-msgid "Const sFile2 As String = \"Copied.tmp\""
-msgstr "Const sFile2 as String = \"Copied.tmp\""
-
-#. hAO:
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154071\n"
-"15\n"
-"help.text"
-msgid "Const sFile3 As String = \"Renamed.tmp\""
-msgstr "Const sFile3 as String = \"Renamed.tmp\""
-
-#. m6rk
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154217\n"
-"19\n"
-"help.text"
-msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
-msgstr "If Dir(sSubDir1,16)=\"\" then ' Létezik a könyvtár?"
-
-#. Li-a
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr "MsgBox sFile,0,\"Könyvtár létrehozása\""
-
-#. $,yF
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153770\n"
-"26\n"
-"help.text"
-msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-msgstr "MsgBox fSysURL(CurDir()),0,\"Aktuális könyvtár\""
-
-#. +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 "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Létrehozási idő\""
-
-#. 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 "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"Fájl hossza\""
-
-#. ;|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 "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"Fájlattribútumok\""
-
-#. r)jU
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
-"help.text"
-msgid "' Rename in the same directory"
-msgstr "' Átnevezés ugyanabban a könyvtárban"
-
-#. p)9s
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147426\n"
-"34\n"
-"help.text"
-msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
-msgstr "SetAttr( sFile, 0 ) 'Az összes attribútum törlése"
-
-#. 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 "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"Új fájlattribútumok\""
-
-#. #5]l
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3150092\n"
-"40\n"
-"help.text"
-msgid "' Converts a system path in URL"
-msgstr "' Konvertálja az URL-ben lévő elérési utat"
-
-#. Vi:T
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3156276\n"
-"49\n"
-"help.text"
-msgid "' the colon with DOS"
-msgstr "' kettőspont DOS-ban"
-
-#. 2ZB.
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"tit\n"
-"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr "On Error GoTo ... Resume utasítás [futásidejű]"
-
-#. 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 "<bookmark_value>Resume Next paraméter</bookmark_value><bookmark_value>On Error GoTo ... Resume utasítás</bookmark_value>"
-
-#. uQ6J
-#: 03050500.xhp
-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/03050500.xhp\" name=\"On Error GoTo ... Resume utasítás [futásidejű]\">On Error GoTo ... Resume utasítás [futásidejű]</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 "Hiba esetén elindít egy hibakezelő rutint, vagy folytatja a program futtatását."
-
-#. Ng2C
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
-
-#. L+Ac
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>GoTo Címke:</emph> Hiba esetén elindítja a „Címke” sorban kezdődő hibakezelő rutint."
-
-#. 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 "<emph>Resume Next:</emph> Hiba esetén a program futtatása a hibás utasítás utáni utasítás végrehajtásával fog folytatódni."
-
-#. 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 "<emph>GoTo 0:</emph> Kikapcsolja a hibakezelőt az aktuális eljárásban."
-
-#. .~:,
-#: 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 "<emph>Lokális:</emph> Az „On error” globális hatókörben van, és addig aktív, amíg egy másik „On error” utasítás nem írja felül. Az „On Local error” lokális, és arra a rutinra vonatkozik, amelyik meghívta. A lokális hibakezelés felülírja a korábbi globális beállításokat. Amikor a meghívó rutin kilép, a lokális hibakezelő automatikusan érvényét veszti, és visszaállnak a globális beállítások."
-
-#. 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 "Az On Error GoTo utasítás a makró futás közbeni hibáinak lekezelésére szolgál."
-
-#. DJeq
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. !8th
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3153876\n"
-"52\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Ez egy szövegsor\""
-
-#. N`\@
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3146916\n"
-"67\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Minden fájl lezárásra kerül\",0,\"Hiba\""
-
-#. ]LB4
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr "$[officename] Basic szószedet"
-
-#. 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 "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic szószedet\">$[officename] Basic szószedet</link>"
-
-#. 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 "A szószedet pár technikai kifejezést tartalmaz, amelyekkel a $[officename] Basic programmal való munka során találkozhat."
-
-#. [L1{
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
-"7\n"
-"help.text"
-msgid "Decimal Point"
-msgstr "Tizedespont"
-
-#. 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 "Számok konvertálásakor a $[officename] Basic a rendszer területi beállításait használja a tizedes- és ezreselválasztó típusának megadásához."
-
-#. 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 "A viselkedés hatással van az implicit konverzióra ( 1 + \"2.3\" = 3.3 ) valamint az <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link> futásidejű függvényre."
-
-#. k!8t
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155854\n"
-"29\n"
-"help.text"
-msgid "Colors"
-msgstr "Színek"
-
-#. )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 "A $[officename] Basic a színeket hosszú egész számként kezeli. A színlekérdezések visszatérési értéke mindig hosszú egész szám. Tulajdonságok megadásakor a színek megadhatók RGB-kódjukkal, amelyet a rendszer hosszú egész szám értékké konvertál az <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB függvény\">RGB függvény</link> segítségével."
-
-#. uU:d
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr "Mértékegységek"
-
-#. $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 "A $[officename] Basic programban a <emph>metódusparamétert</emph> vagy <emph>tulajdonságot</emph> igénylő egység megadható egész számként, hosszú egész kifejezésként egység nélkül vagy egységet tartalmazó karakterláncként. Ha a metódus nem kap egységet, akkor a rendszer az aktív dokumentumtípus alapértelmezett egységét használja. Ha a paraméter mértékegységet tartalmazó karakterláncként kerül átadásra, akkor az alapértelmezett beállítás figyelmen kívül marad. A dokumentumtípus alapértelmezett mértékegysége az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - (Dokumentumtípus) - Általános</emph> lehetőséggel állítható be."
-
-#. SuWS
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3145801\n"
-"help.text"
-msgid "<bookmark_value>twips; definition</bookmark_value>"
-msgstr "<bookmark_value>twip; definíció</bookmark_value>"
-
-#. N/fK
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145801\n"
-"5\n"
-"help.text"
-msgid "Twips"
-msgstr "Twip"
-
-#. 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 "A twip egy képernyőfüggetlen egység, amely megadja az egységes pozíciót és a képernyőméret elemeit az összes megjelenítési rendszeren. A twip 1/1440 hüvelyk vagy a nyomtató pontjának 1/20-ad része. 1440 twip egy hüvelyk, és körülbelül 567 twip egy centiméter."
-
-#. cPoM
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153159\n"
-"106\n"
-"help.text"
-msgid "URL Notation"
-msgstr "URL-jelölés"
-
-#. 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 "Az URL-ek (<emph>Egységes erőforrás-mutatók</emph>) meghatározzák egy erőforrás helyét - például egy fájlt a fájlrendszerben - jellemzően egy hálózati környezeten belül. Az URL egy protokollmeghatározóból, egy számítógép-meghatározóból, valamint egy fájl- és elérésiút-meghatározóból áll:"
-
-#. 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 "<emph>protokoll</emph>://<emph>számítógép.neve</emph>/<emph>a/fájl/elérési/útja.html</emph>"
-
-#. 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 "Az URL-eket általában az interneten használják weblapok megadásakor. Példák protokollokra: <emph>http</emph>, <emph>ftp</emph> vagy <emph>file</emph>. A <emph>file</emph> protokollmeghatározó a fájlrendszer egy fájljára történő hivatkozáskor használható."
-
-#. %\.,
-#: 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 "Az URL-jelölés nem engedélyezi bizonyos speciális karakterek használatát. Ezek lecserélhetők más karakterekre vagy kódolhatók. A törtvonal (<emph>/</emph>) használható elérési út elválasztójelként. A helyi számítógépen a „Windows jelölés alapján” <emph>C:\\Saját fájl.sxw</emph> néven hivatkozott fájl URL-jelölésben <emph>file:///C|/Saját%20fájl.sxw</emph> lesz."
-
-#. W0ny
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"tit\n"
-"help.text"
-msgid "Join Function [Runtime]"
-msgstr "Join függvény [futásidő]"
-
-#. /lP%
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Join function</bookmark_value>"
-msgstr "<bookmark_value>Join függvény</bookmark_value>"
-
-#. Ch.E
-#: 03120315.xhp
-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/03120315.xhp\" name=\"Join függvény [futásidejű]\">Join függvény [futásidejű]</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 "Egy string (karakterlánc) tömbben levő rész-karakterláncokból visszaad egy karakterláncot."
-
-#. YcNu
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. *L1^
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3156344\n"
-"4\n"
-"help.text"
-msgid "Join (Text As String Array, delimiter)"
-msgstr "Join (Szöveg As String Array, elválasztó)"
-
-#. /B^V
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. N[,G
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. %!2a
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. II,g
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3145171\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> A string array."
-msgstr "<emph>Szöveg:</emph> Egy string (karakterlánc) tömb."
-
-#. 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>elválasztó (opcionális):</emph> Egy karakter, amely elválasztja a részkarakterláncokat az eredményül kapott karakterláncban. Az alapértelmezett elválasztó a szóköz. Ha az elválasztó egy nulla hosszúságú karakterlánc \"\", akkor a részkarakterláncok elválasztó nélkül kerülnek összefésülésre."
-
-#. ?[TY
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. T.!=
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "DateValue függvény [futásidejű]"
-
-#. }{uT
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "<bookmark_value>DateValue függvény</bookmark_value>"
-
-#. %^Ai
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue függvény [futásidejű]\">DateValue függvény [futásidejű]</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 "Visszaad egy dátumértéket egy dátum-karakterláncból. A dátum-karakterlánc egy teljes dátum egy numerikus értékben. Ezt a sorozatszámot a két dátum közötti különbség meghatározásához is használhatja."
-
-#. eOLq
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. UAuj
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr "DateValue [(Dátum)]"
-
-#. 14NQ
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. dH$[
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Dátum"
-
-#. MMIc
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. =}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 "<emph>Dátum:</emph> String (karakterlánc) kifejezés, amely tartalmazza a kiszámítani kívánt dátumot. A dátum majdnem tetszőleges formátumban megadható."
-
-#. 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 "A függvény segítségével az 1582. december 1. és a 9999. december 31. közötti dátumot egész számmá konvertálhatja. Ezután az érték segítségével kiszámíthatja a két dátum közötti különbséget. Ha a dátumargumentum a használható tartományon kívül esik, akkor a $[officename] Basic hibaüzenetet ad vissza."
-
-#. 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 "A DateSerial függvénnyel ellentétben, amely az éveket, hónapokat és napokat különválasztott numerikus értékként kezeli, a DateValue függvény a dátumot a \"hónap.[,]nap.[,]év\" formában kezeli."
-
-#. oH]$
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ;Vf7
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "Karakterlánc-tartalmak szerkesztése"
-
-#. \5-O
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr "<bookmark_value>& szimbólum a StarBasicben</bookmark_value>"
-
-#. U{9G
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"hd_id3153894\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
-msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Karakterlánc tartalmának szerkesztése\">Karakterlánc tartalmának szerkesztése</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 "Az alábbi függvények a karakterlánc tartalmának szerkesztésére, formázására, valamint igazítására szolgálnak. Az & operátorral fűzheti össze a karakterláncokat."
-
-#. QOhM
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateObject Function [Runtime]"
-msgstr "CreateObject függvény [futásidejű]"
-
-#. !qI{
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "<bookmark_value>CreateObject függvény</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 "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject függvény [futásidejű]</link>"
-
-#. 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 "<ahelp hid=\".\">Létrehoz egy UNO-objektumot. Windows esetén OLE-objektumot is létrehoz.</ahelp>"
-
-#. @`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 "Ez a metódus a paraméterként kapott típusok példányait hozza létre."
-
-#. _?PZ
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. %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 "Példa:"
-
-#. hBL[
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr "Reset utasítás [futásidejű]"
-
-#. }qm;
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"bm_id3154141\n"
-"help.text"
-msgid "<bookmark_value>Reset statement</bookmark_value>"
-msgstr "<bookmark_value>Reset utasítás</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 "<link href=\"text/sbasic/shared/03020104.xhp\">Reset utasítás [futásidejű]</link>"
-
-#. 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 "Bezár minden megnyitott fájlt, és a puffer tartalmát a merevlemezre rögzíti."
-
-#. +bDM
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. {H@|
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. +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 "Print #iNumber, \"Ez a szöveg egy új sora\""
-
-#. Pjh\
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3163805\n"
-"62\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Minden fájl lezárásra kerül\",0,\"Hiba\""
-
-#. F1iV
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Red függvény [futásidejű]"
-
-#. O*Or
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "<bookmark_value>Red függvény</bookmark_value>"
-
-#. 3A]j
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red függvény [futásidejű]\">Red függvény [futásidejű]</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 "A meghatározott színkód vörös összetevőjét adja vissza."
-
-#. TDdA
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. \`?S
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
-"help.text"
-msgid "Red (ColorNumber As Long)"
-msgstr "Red (SzínSzáma As Long)"
-
-#. .Q1l
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 9o|:
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3145173\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Egész szám"
-
-#. %FsZ
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "<emph>SzínSzáma</emph>: A <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"színkódot\">színkódot</link> megadó long integer (hosszú egész szám) kifejezés, amelynek vörös összetevőjét vissza kell adni."
-
-#. %A`^
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148575\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. lwts
-#: 03010303.xhp
-#, fuzzy
-msgctxt ""
-"03010303.xhp\n"
-"par_id3147435\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"A(z)\" & lVar & \" szín a következőkből áll:\" & Chr(13) &_"
-
-#. \)UC
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3155306\n"
-"14\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"vörös = \" & red(lVar) & Chr(13)&_"
-
-#. H!{j
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3149262\n"
-"15\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"zöld = \" & green(lVar) & Chr(13)&_"
-
-#. ^*M(
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3147397\n"
-"16\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"kék = \" & blue(lVar) & Chr(13) , 64,\"színek\""
-
-#. N9Sv
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Split függvény [futásidejű]"
-
-#. vcS[
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "<bookmark_value>Split függvény</bookmark_value>"
-
-#. pu.,
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split függvény [futásidejű]\">Split függvény [futásidejű]</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 "Egy string (karakterlánc) kifejezésből visszaad egy részkarakterláncokból álló tömböt."
-
-#. fY;o
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ,NpX
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3153824\n"
-"4\n"
-"help.text"
-msgid "Split (Text As String, delimiter, number)"
-msgstr "Split (Szöveg As String, elválasztó, szám)"
-
-#. 7$5b
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. A[fG
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3154285\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. 0jG#
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. NP!Q
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3156023\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés."
-
-#. 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>elválasztó (opcionális):</emph> A Szöveg elválasztására használt karakter. Az alapértelmezett karakter a szóköz."
-
-#. (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>szám (opcionális):</emph> A visszakapni kívánt részkarakterláncok száma."
-
-#. GqT6
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. oKPP
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input# Statement [Runtime]"
-msgstr "Input# utasítás [futásidejű]"
-
-#. ]{@]
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"bm_id3154908\n"
-"help.text"
-msgid "<bookmark_value>Input statement</bookmark_value>"
-msgstr "<bookmark_value>Input utasítás</bookmark_value>"
-
-#. LPH2
-#: 03020202.xhp
-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/03020202.xhp\" name=\"Input# utasítás [futásidejű]\">Input# utasítás [futásidejű]</link>"
-
-#. qTY:
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3156424\n"
-"2\n"
-"help.text"
-msgid "Reads data from an open sequential file."
-msgstr "Egy megnyitott szekvenciális fájlból beolvassa az adatot."
-
-#. }JVw
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3125863\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. e=8-
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3150440\n"
-"4\n"
-"help.text"
-msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-msgstr "Input #FileNumber As Integer; változó1[, változó2[, változó3[,...]]]"
-
-#. |RRL
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám:</emph> A beolvasni kívánt adatot tartalmazó fájl száma. A fájlt az Open utasítással kell megnyitni, az INPUT kulcsszó felhasználásával."
-
-#. 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 "<emph>változó:</emph> Olyan numerikus vagy string (karakterlánc) változó, amelyhez értéket a megnyitott fájlból rendel."
-
-#. 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 "Az <emph>Input#</emph> utasítás numerikus értékeket vagy karakterláncot olvas egy megnyitott fájlból, és hozzárendeli az adatokat egy vagy több változóhoz. A numerikus változót az első bekezdésvégjelig (Asc=13), soremelésig (Asc=10), szóközig vagy vesszőig olvassa a rendszer. A string (karakterlánc) változót az első bekezdésvégjelig (Asc=13), soremelésig (Asc=10) vagy vesszőig olvassa a rendszer."
-
-#. 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 "A megnyitott fájl adatainak és adattípusainak ugyanabban a sorrendben kell megjelenniük, mint ahogy a „változó” paraméterben átadásra kerülnek. Ha nem numerikus értéket rendel egy numerikus változóhoz, akkor a „változó” elemhez a „0” érték lesz hozzárendelve."
-
-#. %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 "Vesszővel elválasztott rekordok nem rendelhetők hozzá egy karakterlánc változóhoz. A fájlban lévő idézőjelek (\") is figyelmen kívül maradnak. Ha ezeket a karaktereket be akarja olvasni a fájlból, akkor a <emph>Line Input#</emph> utasítással sorról sorra beolvashatja a szövegfájlt (csak nyomtatható karaktereket tartalmazó fájlt)."
-
-#. 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 "Ha egy adatelem olvasása közben éri el a fájl végét, akkor hiba történik, és a folyamat leáll."
-
-#. uU.c
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "ReDim utasítás [futásidejű]"
-
-#. :J`b
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"bm_id3150398\n"
-"help.text"
-msgid "<bookmark_value>ReDim statement</bookmark_value>"
-msgstr "<bookmark_value>ReDim utasítás</bookmark_value>"
-
-#. RQ0$
-#: 03102101.xhp
-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/03102101.xhp\" name=\"ReDim utasítás [futásidejű]\">ReDim utasítás [futásidejű]</link>"
-
-#. !La?
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "Declares a variable or an array."
-msgstr "Egy változót vagy egy tömböt deklarál."
-
-#. :In9
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3154218\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "[ReDim]Dim Változó [(kezdés To befejezés)] [As Típus][, Változó2 [(kezdés To befejezés)] [As Típus][,...]]"
-
-#. 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 "Ha szükség van rá, az újradimenzionált tömbhöz paraméterként megadhatja a <emph>Preserve</emph> kulcsszót a tömb tartalmának megőrzéséhez."
-
-#. LY,B
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3148451\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. hZU@
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3156423\n"
-"6\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr "<emph>Változónév:</emph> Bármilyen változó- vagy tömbnév."
-
-#. 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 "<emph>Kezdés, Befejezés:</emph> Numerikus értékek vagy konstansok, amelyek meghatározzák az elemszámot (ElemekSzáma=(befejezés-kezdés)+1 ), valamint az indextartományt."
-
-#. 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 "Ha a ReDim utasítást eljárásszinten használja, akkor a Kezdés és a Befejezés csak numerikus kifejezés lehet."
-
-#. %(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 "<emph>Típus:</emph> Kulcsszó, amely egy változó adattípusát határozza meg."
-
-#. 8dA`
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3147317\n"
-"10\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Kulcsszó:</emph> Változótípus"
-
-#. @1A(
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153728\n"
-"11\n"
-"help.text"
-msgid "<emph>Bool: </emph>Boolean variable (True, False)"
-msgstr "<emph>Bool (logikai): </emph>Boolean (logikai) változó (True (igaz), False (hamis))"
-
-#. PUi=
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3146121\n"
-"12\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Date (dátum):</emph> Date (dátum) változó"
-
-#. 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 "<emph>Double (dupla pontosságú):</emph> Dupla pontosságú lebegőpontos változó (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
-
-#. 4*hC
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3148616\n"
-"14\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Integer (egész szám):</emph> Integer (egész szám) változó (-32768 - 32767)"
-
-#. 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 "<emph>Long (hosszú egész):</emph> Long integer (hosszú egész szám) (-2147483648 - 2147483647)"
-
-#. 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 "<emph>Object (objektum):</emph> Object (objektum) változó (csak a Set utasítással lehet definiálni!)"
-
-#. 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 "<emph>[Single (egyszeres pontosságú]:</emph> Egyszeres pontosságú lebegőpontos változó (3.402823x10E38 - 1.401298x10E-45). Ha nincs kulcsszó megadva, akkor a változó single (egyszeres pontosságú) típusúként lesz definiálva, hacsak nem használja a DefBooltól DefVarig terjedő utasítások egyikét."
-
-#. 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 "<emph>String (karakterlánc):</emph> String (karakterlánc) változó, amely maximum 64000 ASCII karaktert tartalmazhat."
-
-#. @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 "<emph>Variant: </emph>Variant változótípus (minden típust tartalmaz, meghatározástól függően)."
-
-#. 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 "A $[officename] Basicben nem kell explicit módon deklarálni a változókat. A tömböt használat előtt mindig deklarálni kell. Egy változót a Dim utasítással deklarálhat, több deklarációt vesszővel kell elválasztani. Változótípus deklarálásához a név után adja meg a típusdeklarációs karaktert, vagy használja a megfelelő kulcsszót."
-
-#. 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 "A $[officename] Basic az egy- vagy többdimenziós tömböket támogatja, amelyeket egy adott változótípus definiál. A tömböket akkor érdemes használni, ha a program szerkeszteni kívánt listákat vagy táblázatokat tartalmaz. A tömbök előnye, hogy az egyedi elemeket az indexekkel megcímezheti, amelyek numerikus kifejezések vagy változók lehetnek."
-
-#. 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 "A Dim utasítással létrehozott tömbök indextartományainak megadására két módszer létezik."
-
-#. 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 "DIM text(20) As String REM 21 elem, 0-tól 20-ig számozva"
-
-#. *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 "DIM text(5 to 25) as String REM 21 elem, 5-től 25-ig számozva"
-
-#. 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 "DIM text$(-15 to 5) As String REM 21 elem (a 0-val együtt)"
-
-#. v.:0
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3150321\n"
-"26\n"
-"help.text"
-msgid "rem numbered from -15 to 5"
-msgstr "rem -15-től 5-ig számozva"
-
-#. 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 "A változómezők - a típustól függetlenül - dinamikussá tehetők, ha a ReDim segítségével kerültek dimenzionálásra eljárásszinten a szubrutinokban vagy függvényekben. Általában a tömb tartományát csak egyszer állíthatja be, és nem módosíthatja. Az eljáráson belül a ReDim utasítás és numerikus kifejezések segítségével deklarálhat egy tömböt a mezőméretek tartományának megadásához."
-
-#. u\cu
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3148405\n"
-"28\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. F?F-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Day Function [Runtime]"
-msgstr "Day függvény [futásidejű]"
-
-#. rGPm
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>Day function</bookmark_value>"
-msgstr "<bookmark_value>Day függvény</bookmark_value>"
-
-#. ](/$
-#: 03030103.xhp
-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/03030103.xhp\" name=\"Day függvény [futásidejű]\">Day függvény [futásidejű]</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 "A hónap napját ábrázoló értéket ad vissza a <emph>DateSerial</emph> vagy <emph>DateValue</emph> által létrehozott soros dátumszám alapján."
-
-#. B[]L
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. beG{
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Day (Number)"
-msgstr "Day (Szám)"
-
-#. 33vb
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. si%p
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. R,u%
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3150448\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Egy numerikus kifejezés, amely tartalmazza a soros dátumértéket, amely alapján meghatározható a hónap egy napja."
-
-#. 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 "Ez a függvény alapvetően a DateSerial függvény ellentéte. A <emph>DateSerial</emph> vagy a <emph>DateValue</emph> függvény által létrehozott soros dátumszámból visszaadja a hónap napját. Például a"
-
-#. YR=U
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr "kifejezés a 20 értéket adja vissza."
-
-#. Vd(]
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. *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 "Print \"A hónap\" & Day(DateSerial(1994, 12, 20)) &; \". napja\""
-
-#. 4#DM
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsUnoStruct Function [Runtime]"
-msgstr "IsUnoStruct függvény [futásidejű]"
-
-#. ]kdt
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"bm_id3146117\n"
-"help.text"
-msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>IsUnoStruct függvény</bookmark_value>"
-
-#. V%.P
-#: 03104500.xhp
-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/03104500.xhp\" name=\"IsUnoStruct függvény [futásidejű]\">IsUnoStruct függvény [futásidejű]</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 "True (igaz) értéket ad vissza, ha a megadott objektum egy Uno-struktúra."
-
-#. DHmt
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 7^{q
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "IsUnoStruct( Uno type )"
-msgstr "IsUnoStruct( Uno-típus )"
-
-#. kK~H
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. !me_
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. Xip-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. +9|)
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3148947\n"
-"8\n"
-"help.text"
-msgid "Uno type : A UnoObject"
-msgstr "Uno-típus: Egy Uno-objektum"
-
-#. ~3T}
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. yinh
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr "' Szolgáltatáspéldány létrehozása"
-
-#. 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 ' False (hamis) értéket jelenít meg, mert az oSimpleFileAccess NEM struktúra"
-
-#. \J\G
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "' Property struktúrapéldány létrehozása"
-
-#. 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 ' True (igaz) értéket jelenít meg, mert az aProperty struktúra"
-
-#. 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 ' False (hamis) értéket jelenít meg, mert a 42 NEM struktúra"
-
-#. Wh3Q
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr "Dátumértékek átalakítása"
-
-#. ~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 "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Dátumértékek átalakítása\">Dátumértékek átalakítása</link>"
-
-#. ;##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 "Az alábbi függvények a dátumértékek számmá alakítására, valamint visszaalakítására szolgálnak."
-
-#. ZD]z
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"tit\n"
-"help.text"
-msgid "MsgBox Function [Runtime]"
-msgstr "MsgBox függvény [futásidejű]"
-
-#. 8|m3
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"bm_id3153379\n"
-"help.text"
-msgid "<bookmark_value>MsgBox function</bookmark_value>"
-msgstr "<bookmark_value>MsgBox függvény</bookmark_value>"
-
-#. z2/-
-#: 03010102.xhp
-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/03010102.xhp\" name=\"MsgBox függvény [futásidejű]\">MsgBox függvény [futásidejű]</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 "Megjelenít egy üzenetet tartalmazó párbeszédablakot, és visszaad egy értéket."
-
-#. v3!(
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "MsgBox (Szöveg As String [,Típus As Integer [,Cím As String]])"
-
-#. !enV
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. r|JB
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Egész szám"
-
-#. ~\Mw
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "<emph>Szöveg</emph>: String (karakterlánc) kifejezés, amely üzenetként jelenik meg a párbeszédablakban. Sortörések a Chr$(13) megadásával szúrhatók be."
-
-#. .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 "<emph>Cím</emph>: String (karakterlánc) kifejezés, amely a párbeszédablak címsorában jelenik meg. Kihagyás esetén az adott alkalmazás neve jelenik meg."
-
-#. 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 "<emph>Típus</emph>: Bármilyen integer (egész szám) kifejezés, amely meghatározza a párbeszédablak típusát, a megjelenítendő gombok számát és típusát, valamint az ikon típusát. A <emph>Típus</emph> bitek kombinációja (az elemek kombinációja az adott értékek hozzáadásával adható meg):"
-
-#. N-c~
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "<emph>Values</emph>"
-msgstr "<emph>Értékek</emph>"
-
-#. qZS]
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"12\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr "0 : Csak az OK gomb jelenik meg."
-
-#. [3m/
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
-"13\n"
-"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1 : Az OK és a Mégse gombot jeleníti meg."
-
-#. SBkq
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"14\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2 : A Megszakítás, az Újra és a Mellőzés gombot jeleníti meg."
-
-#. mI7x
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"15\n"
-"help.text"
-msgid "3 : Display Yes, No, and Cancel buttons."
-msgstr "3 : Az Igen, a Nem és a Mégse gombot jeleníti meg."
-
-#. G1Ma
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"16\n"
-"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4 : Az Igen és a Nem gombot jeleníti meg."
-
-#. $U8s
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"17\n"
-"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5 : Az Újra és a Mégse gombot jeleníti meg."
-
-#. ]o6V
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr "16 : A Stop ikont adja hozzá a párbeszédablakhoz."
-
-#. %R%%
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153837\n"
-"19\n"
-"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr "32 : A Kérdőjel ikont adja hozzá a párbeszédablakhoz."
-
-#. .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 "48 : A Felkiáltójel ikont adja hozzá a párbeszédablakhoz."
-
-#. gcnS
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146915\n"
-"21\n"
-"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr "64 : Az Információ ikont adja hozzá a párbeszédablakhoz."
-
-#. 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 "128 : A párbeszédablak első gombja az alapértelmezett gomb."
-
-#. 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 "256 : A párbeszédablak második gombja az alapértelmezett gomb."
-
-#. 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 "512 : A párbeszédablak harmadik gombja az alapértelmezett gomb."
-
-#. |?s2
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"25\n"
-"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "<emph>Visszatérési érték:</emph>"
-
-#. 7][W
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145230\n"
-"26\n"
-"help.text"
-msgid "1 : OK"
-msgstr "1 : OK"
-
-#. Z``K
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149567\n"
-"27\n"
-"help.text"
-msgid "2 : Cancel"
-msgstr "2 : Mégse"
-
-#. Pj_z
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id4056825\n"
-"help.text"
-msgid "3 : Abort"
-msgstr "3 : Megszakítás"
-
-#. UY)0
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155335\n"
-"28\n"
-"help.text"
-msgid "4 : Retry"
-msgstr "4 : Ismét"
-
-#. }Z~s
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146918\n"
-"29\n"
-"help.text"
-msgid "5 : Ignore"
-msgstr "5 : Mellőzés"
-
-#. QzFl
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155961\n"
-"30\n"
-"help.text"
-msgid "6 : Yes"
-msgstr "6 : Igen"
-
-#. J@\M
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3148488\n"
-"31\n"
-"help.text"
-msgid "7 : No"
-msgstr "7 : Nem"
-
-#. 6|;k
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3150090\n"
-"40\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. L!Ik
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151278\n"
-"43\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\")"
-msgstr "sVar = MsgBox(\"Las Vegas\")"
-
-#. v=ao
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149034\n"
-"44\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\",1)"
-msgstr "sVar = MsgBox(\"Las Vegas\",1)"
-
-#. 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 "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Párbeszédablak címe\")"
-
-#. 7-}@
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"tit\n"
-"help.text"
-msgid "LCase Function [Runtime]"
-msgstr "LCase függvény [futásidejű]"
-
-#. 6{1U
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"bm_id3152363\n"
-"help.text"
-msgid "<bookmark_value>LCase function</bookmark_value>"
-msgstr "<bookmark_value>LCase függvény</bookmark_value>"
-
-#. A8mG
-#: 03120302.xhp
-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/03120302.xhp\" name=\"LCase függvény [futásidejű]\">LCase függvény [futásidejű]</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 "A karakterláncban előforduló nagybetűket kisbetűvé alakítja."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> függvény"
-
-#. [8qQ
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. U87V
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
-"5\n"
-"help.text"
-msgid "LCase (Text As String)"
-msgstr "LCase (Szöveg As String)"
-
-#. @_VH
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. d2lR
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. ^`L{
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3151043\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés, amelyet át szeretne alakítani."
-
-#. c1k`
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 A \"las vegas\" karakterláncot adja vissza"
-
-#. 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 A \"LAS VEGAS\" karakterláncot adja vissza"
-
-#. xW/%
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"tit\n"
-"help.text"
-msgid "ThisComponent Statement [Runtime]"
-msgstr "ThisComponent utasítás [futásidejű]"
-
-#. 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 "<bookmark_value>ThisComponent tulajdonság</bookmark_value><bookmark_value>komponensek;címzés</bookmark_value>"
-
-#. E)_o
-#: 03132200.xhp
-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/03132200.xhp\" name=\"ThisComponent [futásidejű]\">ThisComponent [futásidejű]</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 "Megcímzi az aktív komponenst, így a tulajdonságai olvashatóvá és beállíthatóvá válnak. A ThisComponent a dokumentum Basicből használható, és azt a dokumentumot reprezentálja, amelyhez a Basic tartozik. A ThisComponent által elért objektum típusa a dokumentum típusától függ."
-
-#. b?S/
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Példa:"
-
-#. [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 frissíti a „Table of Contents” (tartalomjegyzék) elemet egy szöveges dokumentumban"
-
-#. 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 használja a Table of Contents alapértelmezett nevét és utána egy 1 -est"
-
-#. VSH3
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Second Function [Runtime]"
-msgstr "Second függvény [futásidejű]"
-
-#. Jhy-
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"bm_id3153346\n"
-"help.text"
-msgid "<bookmark_value>Second function</bookmark_value>"
-msgstr "<bookmark_value>Second függvény</bookmark_value>"
-
-#. 32Oj
-#: 03030204.xhp
-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/03030204.xhp\" name=\"Second függvény [futásidejű]\">Second függvény [futásidejű]</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 "Egy olyan egész számot ad vissza, amely a TimeSerial vagy a TimeValue függvény által meghatározott időérték alapján meghatározott másodpercet jelenti."
-
-#. nVg[
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. k/*4
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Second (Number)"
-msgstr "Second (Szám)"
-
-#. 1b+\
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 3txD
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. YIBm
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ;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 "<emph>Szám:</emph> Numerikus kifejezés, amely a másodpercek kiszámítására használt soros időértéket tartalmazza."
-
-#. 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 "Ez a függvény a <emph>TimeSerial</emph> ellentéte. A <emph>TimeSerial</emph> vagy a <emph>TimeValue </emph> függvénnyel létrehozott soros időérték másodperceit adja vissza. Például a"
-
-#. *~]@
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3153951\n"
-"10\n"
-"help.text"
-msgid "Print Second(TimeSerial(12,30,41))"
-msgstr "Print Second(TimeSerial(12,30,41))"
-
-#. 0,RX
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3151117\n"
-"11\n"
-"help.text"
-msgid "returns the value 41."
-msgstr "kifejezés a 41 értéket adja vissza."
-
-#. .H86
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3147426\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "MsgBox \"Az aktuális idő másodperce:\"& Second( Now )"
-
-#. G314
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsDate Function [Runtime]"
-msgstr "IsDate függvény [futásidejű]"
-
-#. X/a-
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>IsDate function</bookmark_value>"
-msgstr "<bookmark_value>IsDate függvény</bookmark_value>"
-
-#. xo\2
-#: 03102300.xhp
-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/03102300.xhp\" name=\"IsDate függvény [futásidejű]\">IsDate függvény [futásidejű]</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 "Teszteli, hogy a numerikus vagy string (karakterlánc) kifejezés konvertálható-e <emph>Date</emph> (dátum) változóvá."
-
-#. FZ3-
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. +ch^
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "IsDate (Expression)"
-msgstr "IsDate (Kifejezés)"
-
-#. M(#x
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3143270\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. q_,z
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. [9,$
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> A tesztelni kívánt numerikus vagy string (karakterlánc) kifejezés. Ha a kifejezés dátummá alakítható, akkor a függvény <emph>True</emph> (igaz), ellenkező esetben pedig <emph>False</emph> (hamis) éréket ad vissza."
-
-#. ,l6s
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Ke^3
-#: 03102300.xhp
-#, fuzzy
-msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"13\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr "print IsDate(sDateVar) REM True (igaz) értéket ad vissza"
-
-#. ^f9`
-#: 03102300.xhp
-#, fuzzy
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"15\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr "print IsDate(sDateVar) REM False (hamis) értéket ad vissza"
-
-#. baSz
-#: 03020400.xhp
-msgctxt ""
-"03020400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Managing Files"
-msgstr "Fájlkezelés"
-
-#. Ave(
-#: 03020400.xhp
-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/03020400.xhp\" name=\"Fájlkezelés\">Fájlkezelés</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 "A következőkben a fájlkezelő függvények és utasítások lesznek kifejtve."
-
-#. fi5C
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"tit\n"
-"help.text"
-msgid "CBool Function [Runtime]"
-msgstr "CBool függvény [futásidejű]"
-
-#. oVE[
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>CBool function</bookmark_value>"
-msgstr "<bookmark_value>CBool függvény</bookmark_value>"
-
-#. 9Ulc
-#: 03100100.xhp
-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/03100100.xhp\" name=\"CBool függvény [futásidejű]\">CBool függvény [futásidejű]</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 "Egy string (karakterlánc) vagy egy numerikus összehasonlítást, illetve egy önálló numerikus kifejezést boolean (logikai) kifejezéssé alakít."
-
-#. ]6Hm
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 2e-n
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr "CBool (Kifejezés1 {= | <> | < | > | <= | >=} Kifejezés2) vagy CBool (Szám)"
-
-#. w!Vn
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. yd2Q
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
-#. z7cP
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés1, Kifejezés2:</emph> Bármilyen numerikus kifejezések, amelyeket össze akar hasonlítani egymással. Ha a kifejezések megegyeznek, akkor a <emph>CBool</emph> függvény <emph>True</emph> (igaz) értéket ad vissza, ellenkező esetben pedig <emph>False</emph> (hamis) értéket."
-
-#. 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 "<emph>Szám:</emph> Az átalakítani kívánt numerikus kifejezés. Ha a kifejezés egyenlő 0-val, akkor <emph>False</emph> (hamis) értéket ad vissza a függvény, ellenkező esetben <emph>True</emph> (igaz) értéket."
-
-#. 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 "Az alábbi példa a <emph>CBool</emph> függvényt használja az <emph>Instr</emph> függvény által visszaadott érték kiértékeléséhez. A függvény ellenőrzi, hogy az \"és\" szó megtalálható-e a felhasználó által beírt mondatban."
-
-#. B#$~
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. hK[U
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155132\n"
-"14\n"
-"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
-msgstr "sText = InputBox(\"Írjon be egy rövid mondatot:\")"
-
-#. ?49T
-#: 03100100.xhp
-#, fuzzy
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155855\n"
-"15\n"
-"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
-msgstr "REM Bizonyosodjon meg arról, hogy az „és” szó a mondatban jelenik meg."
-
-#. Aj[8
-#: 03100100.xhp
-#, fuzzy
-msgctxt ""
-"03100100.xhp\n"
-"par_id3146984\n"
-"16\n"
-"help.text"
-msgid "' Instead of the command line"
-msgstr "REM A parancssor helyett"
-
-#. MMD!
-#: 03100100.xhp
-#, fuzzy
-msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"17\n"
-"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr "REM If Instr(Input, \"és\")<>0 Then..."
-
-#. 3*Uj
-#: 03100100.xhp
-#, fuzzy
-msgctxt ""
-"03100100.xhp\n"
-"par_id3154014\n"
-"18\n"
-"help.text"
-msgid "' the CBool function is applied as follows:"
-msgstr "REM A CBool függvény a következőképpen lesz alkalmazva:"
-
-#. /nmc
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"19\n"
-"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr "If CBool(Instr(sText, \"és\")) Then"
-
-#. 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 "MsgBox \"Az „és” szó benne van a beírt mondatban!\""
-
-#. JK?i
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Get Statement [Runtime]"
-msgstr "Get utasítás [futásidejű]"
-
-#. i`uQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"bm_id3154927\n"
-"help.text"
-msgid "<bookmark_value>Get statement</bookmark_value>"
-msgstr "<bookmark_value>Get utasítás</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 "<link href=\"text/sbasic/shared/03020201.xhp\">Get utasítás [futásidejű]</link>"
-
-#. 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 "Beolvas egy rekordot egy relatív fájlból, vagy bájtok sorozatát egy bináris fájlból egy változóba."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> utasítás"
-
-#. 3-rr
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. \/Sn
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
-"5\n"
-"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr "Get [#] Fájlszám As Integer, [Pozíció], Változó"
-
-#. cY8U
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám:</emph> Bármilyen integer (egész szám) kifejezés, amely meghatároz egy fájlszámot."
-
-#. 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 "<emph>Pozíció:</emph> A Random módban megnyitott fájloknál a <emph>Pozíció</emph> az olvasni kívánt rekord száma."
-
-#. ;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 "A Binary módban megnyitott fájlokhoz a <emph>Pozíció</emph> a bájtpozíció a fájlban, ahol az olvasás elkezdődik."
-
-#. 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 "Ha a <emph>Pozíció</emph> nincs megadva, akkor az aktuális pozíció vagy a fájl aktuális adatrekordja lesz használatban."
-
-#. $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 "Változó: A beolvasandó változó neve. Az object (objektum) változó kivételével tetszőleges változótípust használhat."
-
-#. p.RQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. S0wR
-#: 03020201.xhp
-#, fuzzy
-msgctxt ""
-"03020201.xhp\n"
-"par_id3155307\n"
-"15\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant"
-msgstr "Dim sText As Variant REM Variant típusúnak kell lennie"
-
-#. a,8B
-#: 03020201.xhp
-#, fuzzy
-msgctxt ""
-"03020201.xhp\n"
-"par_id3149411\n"
-"21\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position at beginning"
-msgstr "Seek #iNumber,1 REM Pozíció az elejénél"
-
-#. TgS]
-#: 03020201.xhp
-#, fuzzy
-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 "Put #iNumber,, \"Ez a szöveg első sora\" REM Sor kitöltése szöveggel"
-
-#. 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 "Put #iNumber,, \"Ez a szöveg második sora\""
-
-#. 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 "Put #iNumber,, \"Ez a szöveg harmadik sora\""
-
-#. lUtS
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3155938\n"
-"33\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Ez egy új szöveg\""
-
-#. ?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 "Put #iNumber,20,\"Ez a szöveg a 20. rekordban\""
-
-#. g+=;
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNumeric Function [Runtime]"
-msgstr "IsNumeric függvény [futásidejű]"
-
-#. R?s[
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"bm_id3145136\n"
-"help.text"
-msgid "<bookmark_value>IsNumeric function</bookmark_value>"
-msgstr "<bookmark_value>IsNumeric függvény</bookmark_value>"
-
-#. Y]94
-#: 03102700.xhp
-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/03102700.xhp\" name=\"IsNumeric függvény [futásidejű]\">IsNumeric függvény [futásidejű]</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 "Teszteli, hogy a kifejezés szám-e. Ha a kifejezés <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"szám\">szám</link>, akkor a függvény True (igaz) értéket ad vissza, ellenkező esetben False (hamis) értéket."
-
-#. LVo7
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. @Op;
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "IsNumeric (Var)"
-msgstr "IsNumeric (Változó)"
-
-#. kEIG
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. JlFL
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. iDC!
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Változó:</emph> Bármilyen kifejezés, amelyet ellenőrizni akar."
-
-#. LS|e
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. TotR
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"13\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr "Print IsNumeric(vVar) REM False (hamis) értéket ad vissza"
-
-#. PUPx
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"15\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr "Print IsNumeric(vVar) REM True (igaz) értéket ad vissza"
-
-#. lA#2
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr "Optional (Function utasításban) [futásidejű]"
-
-#. 7,`h
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Optional function</bookmark_value>"
-msgstr "<bookmark_value>Optional függvény</bookmark_value>"
-
-#. _R~y
-#: 03104100.xhp
-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/03104100.xhp\" name=\"Optional (Function utasításban) [futásidejű]\">Optional (Function utasításban) [futásidejű]</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 "Lehetővé teszi egy függvénynek megadandó paraméter opcionálisként való megadását."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-
-#. Cp,z
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"hd_id3153824\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
-
-#. Rfn#
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"hd_id3145610\n"
-"7\n"
-"help.text"
-msgid "Examples:"
-msgstr "Példák:"
-
-#. ..^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 "Result = MyFunction(\"Itt\", 1, \"Ott\") ' az összes argumentum átadásra kerül."
-
-#. 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 "Result = MyFunction(\"Teszt\", ,1) ' a második argumentum hiányzik."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Példák\">Példák</link>."
-
-#. r+d.
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function Statement [Runtime]"
-msgstr "Function utasítás [futásidejű]"
-
-#. 6h`:
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"bm_id3153346\n"
-"help.text"
-msgid "<bookmark_value>Function statement</bookmark_value>"
-msgstr "<bookmark_value>Function utasítás</bookmark_value>"
-
-#. WEWc
-#: 03090406.xhp
-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/03090406.xhp\" name=\"Function utasítás [futásidejű]\">Function utasítás [futásidejű]</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 "Definiál egy szubrutint, amelyet kifejezésként lehet használni egy visszatérési típus meghatározásához."
-
-#. sQfJ
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. }lgv
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3148944\n"
-"4\n"
-"help.text"
-msgid "see Parameter"
-msgstr "lásd Paraméter"
-
-#. 5AX9
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. )mJ`
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 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 "Function Név[(Változónév1 [As Típus][, Változónév2 [As Típus][,...]])] [As Típus]"
-
-#. m/;+
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153360\n"
-"8\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. DN+6
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3148797\n"
-"9\n"
-"help.text"
-msgid "[Exit Function]"
-msgstr "[Exit Function]"
-
-#. P~Ov
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3145419\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. {,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 "Paraméter"
-
-#. 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 "<emph>Név:</emph> A függvény által visszaadott értéket tároló szubrutin neve."
-
-#. *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 "<emph>Változónév:</emph> A szubrutinnak átadandó paraméter."
-
-#. 11}S
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3147287\n"
-"15\n"
-"help.text"
-msgid "<emph>Type:</emph> Type-declaration keyword."
-msgstr "<emph>Típus:</emph> Típus deklarációs kulcsszó."
-
-#. |iGg
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. nY^,
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3152939\n"
-"21\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 to 10 REM Tömb feltöltése tesztadatokkal"
-
-#. aDL,
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3154943\n"
-"32\n"
-"help.text"
-msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
-msgstr "REM A Linsearch TextArray:sList()-et keres egy TextEntry számára:"
-
-#. 6!gp
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3155601\n"
-"33\n"
-"help.text"
-msgid "' Return value Is the index of the entry Or 0 (Null)"
-msgstr "REM A visszatérési érték a bejegyzés indexe vagy 0 (Null)"
-
-#. )^w`
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM sItem megtalálva"
-
-#. =n17
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Procedures and Functions"
-msgstr "Eljárások és függvények használata"
-
-#. 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 "<bookmark_value>eljárások</bookmark_value><bookmark_value>függvények;használat</bookmark_value><bookmark_value>változók;átadásuk eljárásoknak és függvényeknek</bookmark_value><bookmark_value>paraméterek;eljárások és függvények számára</bookmark_value><bookmark_value>paraméterek;átadás hivatkozásként vagy értékként</bookmark_value><bookmark_value>változók;hatókör</bookmark_value><bookmark_value>változók hatóköre</bookmark_value><bookmark_value>GLOBAL (globális) változók</bookmark_value><bookmark_value>PUBLIC (nyilvános) változók</bookmark_value><bookmark_value>PRIVATE (privát) változók</bookmark_value><bookmark_value>függvények;visszaadott érték</bookmark_value><bookmark_value>függvények által visszaadott érték típusa</bookmark_value>"
-
-#. (=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 "<link href=\"text/sbasic/shared/01020300.xhp\">Eljárások és függvények használata</link>"
-
-#. 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 "A következő szakasz az eljárások és a függvények alapvető használatát írja le a $[officename] Basicben."
-
-#. 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 "Új modul létrehozásakor a $[officename] Basic automatikusan beszúrja a „Main” nevű szubrutint. Ez az alapértelmezett név semmit sem csinál a $[officename] Basic-projekt sorrendjével vagy kezdési pontjával. Ezt a szubrutint biztonságosan átnevezheti."
-
-#. 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 "A változók, szubrutinok és függvények elnevezésére vannak korlátozások. Nem használhatja ugyanazt a nevet, mint az ugyanabban a függvénykönyvtárban levő másik modul."
-
-#. \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 "Az eljárások és a függvények segítségével fenntarthatja program strukturális áttekinthetőségét logikai részekre bontással."
-
-#. 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 "Az eljárások és a függvények használatának az az egyik előnye, hogy ha már kidolgozott egy programkódot valamilyen műveletre, azt később más projekteknél is használhatja."
-
-#. ^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 "Változók átadása az eljárások és függvények számára"
-
-#. 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 "A változók átadhatók eljárásoknak és függvényeknek is. A szubrutint vagy függvényt deklarálni kell a paraméterek fogadásához:"
-
-#. OY#E
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
-"29\n"
-"help.text"
-msgid "Program code"
-msgstr "Programkód"
-
-#. RByu
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152577\n"
-"31\n"
-"help.text"
-msgid "The SUB is called using the following syntax:"
-msgstr "A szubrutint az alábbi szintaxissal lehet meghívni:"
-
-#. 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 "A szubrutinnak átadott paramétereknek meg kell felelniük a szubrutin deklarációjánál megadottaknak."
-
-#. 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 "Ugyanez érvényes a függvényekre is. A függvények mindig egy függvényeredményt adnak vissza. A függvény eredménye a visszatérési érték függvénynévhez rendelésével van megadva:"
-
-#. Ke;$
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
-"help.text"
-msgid "Program code"
-msgstr "Programkód"
-
-#. 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 "A függvényt az alábbi szintaxissal hívhatja meg:"
-
-#. RQ5O
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
-"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr "Változó=Függvénynév(Paraméter1, Paraméter2,...)"
-
-#. 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 "Eljárás vagy függvény meghívásához használhatja a teljes nevet is:<br/><item type=\"literal\">Programkönyvtár.Modul.Makró()</item><br/> Ha például az Autotext makrót akarja meghívni a Gimmicks programkönyvtárból, használja a következő parancsot:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
-
-#. _3.^
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3156276\n"
-"45\n"
-"help.text"
-msgid "Passing Variables by Value or Reference"
-msgstr "Változók átadása értékként vagy hivatkozásként"
-
-#. 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 "A szubrutinnak vagy függvénynek a paraméterek hivatkozásként vagy értékként adhatók át. Hacsak nincs másképp megadva, akkor a paraméter mindig hivatkozásként kerül átadásra. Ez azt jelenti, hogy a szubrutin vagy függvény megkapja a paramétert, és az értéke olvasható vagy módosítható."
-
-#. 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 "Ha a paramétert értékként kívánja átadni, akkor az eljárás vagy függvény meghívásakor szúrja be a „ByVal” kulcsszót a paraméter elé, például:"
-
-#. ?Q(`
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
-"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr "Eredmény = Függvény(<emph>ByVal</emph> Paraméter)"
-
-#. 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 "Ebben az esetben a paraméter eredeti tartalma nem változik, hisz a függvény csak a paraméter értékét kapja meg, nem magát a paramétert."
-
-#. {u7p
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
-"help.text"
-msgid "Scope of Variables"
-msgstr "Változók hatóköre"
-
-#. +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 "Az eljáráson vagy függvényen belül megadott változó csak addig marad érvényes, amíg az eljárásból ki nem lép. Ez „lokális” változóként ismert. Számos esetben minden eljárásban, az összes könyvtár minden moduljában vagy az eljárásból vagy függvényből kilépés után is érvényes változóra van szükség."
-
-#. LQ}r
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
-"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr "Változók deklarálása a szubrutinon vagy a függvényen kívül"
-
-#. ZFq^
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
-"help.text"
-msgid "Global VarName As TYPENAME"
-msgstr "GLOBAL Változónév As TÍPUSNÉV"
-
-#. ;(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 "A változó addig érvényes, amíg a $[officename]-munkamenet tart."
-
-#. dEGL
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
-"help.text"
-msgid "Public VarName As TYPENAME"
-msgstr "PUBLIC Változónév As TÍPUSNÉV"
-
-#. V$,l
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
-"help.text"
-msgid "The variable is valid in all modules."
-msgstr "A változó minden modulban érvényes."
-
-#. OH?$
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
-"help.text"
-msgid "Private VarName As TYPENAME"
-msgstr "PUBLIC Változónév As TÍPUSNÉV"
-
-#. F8:=
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152994\n"
-"63\n"
-"help.text"
-msgid "The variable is only valid in this module."
-msgstr "A változó csak ebben a modulban érvényes."
-
-#. MIk6
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150368\n"
-"65\n"
-"help.text"
-msgid "The variable is only valid in this module."
-msgstr "A változó csak ebben a modulban érvényes."
-
-#. RI*B
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id5097506\n"
-"help.text"
-msgid "Example for private variables"
-msgstr "Példa privát változókra"
-
-#. 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 "Kényszerítse ki a privát változók modulokon keresztüli privát voltát a CompatibilityMode(true) beállítással."
-
-#. }9@^
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id9475997\n"
-"help.text"
-msgid "myText = \"Hello\""
-msgstr "myText = \"Hello\""
-
-#. qs7Y
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id6933500\n"
-"help.text"
-msgid "Print \"In module1 : \", myText"
-msgstr "print \"1. modulban: \", myText"
-
-#. aMK1
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id4104129\n"
-"help.text"
-msgid "' Now returns empty string"
-msgstr "' Üres karakterláncot ad vissza"
-
-#. kh\H
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id7906125\n"
-"help.text"
-msgid "' (or rises error for Option Explicit)"
-msgstr "' (vagy hibát kapunk az Option Explicit miatt)"
-
-#. l-os
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id8055970\n"
-"help.text"
-msgid "Print \"Now in module2 : \", myText"
-msgstr "print \"2. modulban: \", myText"
-
-#. 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 "Változó tartalmának mentése a szubrutin vagy függvény bezárása után"
-
-#. Ef]r
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3156288\n"
-"67\n"
-"help.text"
-msgid "Static VarName As TYPENAME"
-msgstr "STATIC Változónév As TÍPUSNÉV"
-
-#. 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 "A változó megtartja az értékét addig, amíg a program be nem lép a következő szubrutinba vagy függvénybe. A deklarációnak a szubrutinon vagy függvényen belül kell léteznie."
-
-#. 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 "Egy függvény visszaadandó értékének megadása"
-
-#. 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 "A változókhoz hasonlóan a típusdeklarációs karaktert a függvény neve vagy az „As” kulcsszóval jelzett típus után kell megadni, a megfelelő kulcsszót pedig a paraméterlista végén, a függvény visszatérési értékének megadásához, például:"
-
-#. )CB@
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Eqv Operator [Runtime]"
-msgstr "Eqv operátor [futásidejű]"
-
-#. \N`.
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Eqv operátor (logikai)</bookmark_value>"
-
-#. (DB0
-#: 03060200.xhp
-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/03060200.xhp\" name=\"Eqv operátor [futásidejű]\">Eqv operátor [futásidejű]</link>"
-
-#. @3r.
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Calculates the logical equivalence of two expressions."
-msgstr "Kiszámolja két logikai kifejezés ekvivalenciáját."
-
-#. 0Btc
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3154367\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 7~2D
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Eqv Expression2"
-msgstr "Eredmény = Kifejezés1 Eqv Kifejezés2"
-
-#. $xA@
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3151043\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. @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 "<emph>Eredmény:</emph> Bármilyen numerikus változó, amely az összehasonlítás eredményét tárolja."
-
-#. _;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>Kifejezés1, Kifejezés2:</emph> Bármely kifejezések, amelyeket össze szeretne hasonlítani egymással."
-
-#. 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 "A logikai kifejezések közötti egyenértékűség tesztelésekor az eredmény akkor <emph>True</emph> (igaz), ha mindkét kifejezés <emph>True</emph> (igaz) vagy <emph>False</emph> (hamis)."
-
-#. ?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 "Bitenkénti összehasonlításnál az Eqv operátor csak akkor állítja be az eredmény egy bitjét, ha az a bizonyos bit mindkét kifejezésnél be volt, vagy nem volt beállítva."
-
-#. i)V#
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3159154\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. N]JL
-#: 03060200.xhp
-#, fuzzy
-msgctxt ""
-"03060200.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Eqv B > C ' returns -1"
-msgstr "vOut = A > B Eqv B > C REM -1-et ad vissza"
-
-#. =k,r
-#: 03060200.xhp
-#, fuzzy
-msgctxt ""
-"03060200.xhp\n"
-"par_id3153191\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Eqv B > C ' returns 0"
-msgstr "vOut = B > A Eqv B > C REM 0-t ad vissza"
-
-#. `esk
-#: 03060200.xhp
-#, fuzzy
-msgctxt ""
-"03060200.xhp\n"
-"par_id3145799\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Eqv B > D ' returns 0"
-msgstr "vOut = A > B Eqv B > D REM 0-t ad vissza"
-
-#. @a{/
-#: 03060200.xhp
-#, fuzzy
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149412\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Eqv B > A) ' returns -1"
-msgstr "vOut = (B > D Eqv B > A) REM -1-et ad vissza"
-
-#. 0:-6
-#: 03060200.xhp
-#, fuzzy
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149959\n"
-"19\n"
-"help.text"
-msgid "vOut = B Eqv A ' returns -3"
-msgstr "vOut = B Eqv A REM -3-at ad vissza"
-
-#. k~B,
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"tit\n"
-"help.text"
-msgid "MsgBox Statement [Runtime]"
-msgstr "MsgBox utasítás [futásidejű]"
-
-#. ;(e*
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"bm_id1807916\n"
-"help.text"
-msgid "<bookmark_value>MsgBox statement</bookmark_value>"
-msgstr "<bookmark_value>MsgBox utasítás</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 "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox utasítás [futásidejű]</link>"
-
-#. wv9n
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "Displays a dialog box containing a message."
-msgstr "Megjelenít egy üzenetet tartalmazó párbeszédablakot."
-
-#. OBID
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "MsgBox Szöveg As String [,Típus As Integer [,Cím As String]] (utasításként) vagy MsgBox (Szöveg As String [,Típus As Integer [,Cím As String]]) (függvényként)"
-
-#. RLb;
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "<emph>Szöveg</emph>: String (karakterlánc) kifejezés, amely üzenetként jelenik meg a párbeszédablakban. Sortörések a Chr$(13) megadásával szúrhatók be."
-
-#. 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 "<emph>Cím</emph>: String (karakterlánc) kifejezés, amely a párbeszédablak címsorában jelenik meg. Kihagyás esetén a címsor megjeleníti az adott alkalmazás nevét."
-
-#. 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 "<emph>Típus</emph>: Bármilyen integer (egész szám) kifejezés, amely meghatározza a párbeszédablak típusát, a megjelenítendő gombok számát és típusát, valamint az ikon típusát. A <emph>Típus</emph> bitek kombinációja, azaz az elemek kombinációja az adott értékek hozzáadásával adható meg:"
-
-#. yRso
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3161832\n"
-"9\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr "0 : Csak az OK gomb jelenik meg."
-
-#. Cut9
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153726\n"
-"10\n"
-"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1 : Az OK és a Mégse gombot jeleníti meg."
-
-#. Y50i
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3149665\n"
-"11\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2 : A Megszakítás, az Újra és a Mellőzés gombot jeleníti meg."
-
-#. eVZ9
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3147318\n"
-"12\n"
-"help.text"
-msgid "3 : Display Yes, No and Cancel buttons."
-msgstr "3 : Az Igen, a Nem és a Mégse gombot jeleníti meg."
-
-#. BpiU
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3155412\n"
-"13\n"
-"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4 : Az Igen és a Nem gombot jeleníti meg."
-
-#. i(qv
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5 : Az Újra és a Mégse gombot jeleníti meg."
-
-#. 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 "16 : A Stop ikont adja hozzá a párbeszédablakhoz."
-
-#. 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 "32 : A Kérdőjel ikont adja hozzá a párbeszédablakhoz."
-
-#. Oj2{
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "48 : Add the Exclamation icon to the dialog."
-msgstr "48 : A Felkiáltójel ikont adja hozzá a párbeszédablakhoz."
-
-#. Y4mh
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3149960\n"
-"18\n"
-"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr "64 : Az Információ ikont adja hozzá a párbeszédablakhoz."
-
-#. 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 "128 : A párbeszédablak első gombja az alapértelmezett gomb."
-
-#. 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 "256 : A párbeszédablak második gombja az alapértelmezett gomb."
-
-#. 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 "512 : A párbeszédablak harmadik gombja az alapértelmezett gomb."
-
-#. :)MV
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. )DA*
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr "Const sText1 = \"Váratlan hiba történt.\""
-
-#. NC8q
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146912\n"
-"25\n"
-"help.text"
-msgid "Const sText2 = \"The program execution will continue, however.\""
-msgstr "Const sText2 = \"A program végrehajtása folytatódni fog.\""
-
-#. Okn.
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr "Const sText3 = \"Hiba\""
-
-#. Y);O
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hex Function [Runtime]"
-msgstr "Hex függvény [futásidejű]"
-
-#. -C83
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Hex function</bookmark_value>"
-msgstr "<bookmark_value>Hex függvény</bookmark_value>"
-
-#. 47m7
-#: 03080801.xhp
-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/03080801.xhp\" name=\"Hex függvény [futásidejű]\">Hex függvény [futásidejű]</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 "Visszaad egy karakterláncot, amely a szám hexadecimális értékét jelenti."
-
-#. WNYC
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. `+{l
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "Hex (Number)"
-msgstr "Hex (Szám)"
-
-#. lGP=
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3147530\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. @0k^
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. sn@)
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. CNx*
-#: 03080801.xhp
-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>Szám:</emph> Bármilyen numerikus kifejezés, amelyet hexadecimális számmá szeretné alakítani."
-
-#. hvZO
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. -;|Q
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
-"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
-msgstr "REM A $[officename] Calc BasicFormulast használja"
-
-#. D~!*
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3149262\n"
-"20\n"
-"help.text"
-msgid "' Returns a long integer from a hexadecimal value."
-msgstr "REM Visszaad egy long integert (hosszú egész szám) a hexadecimális értékből."
-
-#. #\]H
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
-"help.text"
-msgid "' Calculates a hexadecimal value in integer."
-msgstr "REM Kiszámolja a hexadecimális értéket egész számként."
-
-#. lIC[
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Numbers"
-msgstr "Számok átváltása"
-
-#. 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 "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Számok átváltása\">Számok átváltása</link>"
-
-#. ^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 "Az alábbi függvények számokat váltanak át az egyik számrendszerből egy másik számrendszerbe."
-
-#. ip+X
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"tit\n"
-"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "InStr függvény [futásidejű]"
-
-#. 2;*9
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"bm_id3155934\n"
-"help.text"
-msgid "<bookmark_value>InStr function</bookmark_value>"
-msgstr "<bookmark_value>InStr függvény</bookmark_value>"
-
-#. tJdq
-#: 03120401.xhp
-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/03120401.xhp\" name=\"InStr függvény [futásidejű]\">InStr függvény [futásidejű]</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 "Visszaadja egy karakterlánc másik karakterláncban levő helyzetét."
-
-#. 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 "Az Instr függvény visszaadja a pozíciót, amelyen az egyezés található. Ha a karakterlánc nem található, akkor a függvény 0-t vissza."
-
-#. e@O(
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 ([Kezdés As Integer,] Szöveg1 As String, Szöveg2 As String[, Összehasonlítás])"
-
-#. gnRP
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148538\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. m!Y9
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
-"7\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. pR:[
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Kezdés: </emph>Numerikus kifejezés, amely a keresendő részkarakterlánc keresésének kezdési pozícióját jelzi. Ha ez a paraméter nincs megadva, a keresés a karakterlánc elejétől kezdődik. A maximális érték 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>Szöveg1:</emph> Az a string (karakterlánc) kifejezés, amelyben keresni akar."
-
-#. ~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>Szöveg2:</emph> A keresendő string (karakterlánc) kifejezés."
-
-#. 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>Összehasonlítás:</emph> Opcionális numerikus kifejezés, amely megadja az összehasonlítás típusát. Ez a paraméter 0 vagy 1 lehet. Az 1 érték nem különbözteti meg a kis- és nagybetűket. A 0 érték bináris összehasonlítást jelöl, amely megkülönbözteti a kis- és nagybetűket."
-
-#. 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 "A futásidejű hibák elkerülése érdekében abban az esetben, ha az első visszatérési paraméter nincs megadva, ne adja meg az Összehasonlítás paramétert."
-
-#. b.7S
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "DefDbl utasítás [futásidejű]"
-
-#. +N)G
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "<bookmark_value>DefDbl utasítás</bookmark_value>"
-
-#. Jiox
-#: 03101400.xhp
-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/03101400.xhp\" name=\"DefDbl utasítás [futásidejű]\">DefDbl utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. Hm9W
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. jIf=
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. Cq/T
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3145069\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. Rk7,
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3151210\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. H:HP
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3154123\n"
-"9\n"
-"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr "<emph>DefDbl: </emph> Double (dupla pontosságú)"
-
-#. Sxnk
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. B$o|
-#: 03101400.xhp
-#, fuzzy
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. 9n*E
-#: 03101400.xhp
-#, fuzzy
-msgctxt ""
-"03101400.xhp\n"
-"par_id3153144\n"
-"22\n"
-"help.text"
-msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
-msgstr "dValue=1.23e43 REM dValue egy implicit double (dupla pontosságú) változótípus"
-
-#. EjV$
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Green Function [Runtime]"
-msgstr "Green függvény [futásidejű]"
-
-#. J|~@
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Green function</bookmark_value>"
-msgstr "<bookmark_value>Green függvény</bookmark_value>"
-
-#. ~n48
-#: 03010302.xhp
-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/03010302.xhp\" name=\"Green függvény [futásidejű]\">Green függvény [futásidejű]</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 "A meghatározott színkód zöld összetevőjét adja vissza."
-
-#. 2,-h
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ~mct
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153969\n"
-"4\n"
-"help.text"
-msgid "Green (Color As Long)"
-msgstr "Green (Szín As Long)"
-
-#. G8:w
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. s,4~
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Egész szám"
-
-#. U57e
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "<emph>Szín</emph>: A <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"színkódot\">színkódot</link> megadó long integer (hosszú egész szám) kifejezés, amelynek zöld összetevőjét vissza kell adni."
-
-#. ~)l9
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 2~|\
-#: 03010302.xhp
-#, fuzzy
-msgctxt ""
-"03010302.xhp\n"
-"par_id3151117\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-msgstr "msgbox \"A(z)\" & lVar & \" szín a következő összetevőkből áll:\" & Chr(13) &_"
-
-#. 2*U[
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr "\"vörös = \" & red(lVar) & Chr(13)&_"
-
-#. dXp]
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "\"green = \" & green(lVar) & Chr(13)&_"
-msgstr "\"zöld = \" & green(lVar) & Chr(13)&_"
-
-#. Rv\q
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3154730\n"
-"16\n"
-"help.text"
-msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"kék = \" & blue(lVar) & Chr(13) , 64,\"színek\""
-
-#. Uh,(
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integrated Development Environment (IDE)"
-msgstr "Integrated Development Environment (IDE, integrált fejlesztési környezet)"
-
-#. 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 "<bookmark_value>Basic IDE;Integrated Development Environment (integrált fejlesztési környezet)</bookmark_value><bookmark_value>IDE;Integrated Development Environment (integrált fejlesztési környezet)</bookmark_value>"
-
-#. ?^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 "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE, integrált fejlesztési környezet)\">Integrated Development Environment (IDE, integrált fejlesztési környezet)</link>"
-
-#. |}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 "Ez a szakasz a $[officename] Basic integrált fejlesztési környezetét írja le."
-
-#. K+tk
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Display Functions"
-msgstr "Megjelenítési függvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Megjelenítési függvények\">Megjelenítési függvények</link>"
-
-#. 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 "Ez a szakasz a kimeneti információk képernyőn történő megjelenését végző futásidejű függvényeket írja le."
-
-#. BidJ
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsError Function [Runtime]"
-msgstr "IsError függvény [futásidejű]"
-
-#. {::)
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"bm_id4954680\n"
-"help.text"
-msgid "<bookmark_value>IsError function</bookmark_value>"
-msgstr "<bookmark_value>IsError függvény</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 "<link href=\"text/sbasic/shared/03102450.xhp\">IsError függvény [futásidejű]</link>"
-
-#. +e~?
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Tests if a variable contains an error value."
-msgstr "Teszteli, hogy a változó az error (hiba) értéket tartalmaz-e."
-
-#. ME?Z
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. K.1M
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "IsError (Var)"
-msgstr "IsError (változó)"
-
-#. X`?w
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. cyRK
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. _TYE
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. //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>Változó:</emph> A tesztelni kívánt változó. Ha a változó hibaértéket tartalmaz, akkor a függvény True (igaz) értéket ad vissza, ellenkező esetben False (hamis) értéket."
-
-#. .kKY
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSolarVersion Function [Runtime]"
-msgstr "GetSolarVersion függvény [futásidejű]"
-
-#. L4ST
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"bm_id3157898\n"
-"help.text"
-msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
-msgstr "<bookmark_value>GetSolarVersion függvény</bookmark_value>"
-
-#. ~;jw
-#: 03131000.xhp
-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/03131000.xhp\" name=\"GetSolarVersion függvény [futásidejű]\">GetSolarVersion függvény [futásidejű]</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 "Visszaadja a $[officename] belső verziószámát."
-
-#. Ug,8
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Visszatérési érték:"
-
-#. B5E$
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. +b;P
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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,\"A solar-technológia verziószáma\""
-
-#. Ssl:
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "CreateUnoListener függvény [futásidejű]"
-
-#. @9a~
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoListener függvény</bookmark_value>"
-
-#. ;gDF
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3155150\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener függvény [futásidejű]\">CreateUnoListener függvény [futásidejű]</link>"
-
-#. +E:p
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr "Létrehoz egy figyelőpéldányt."
-
-#. 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 "Számos Uno-felület teszi lehetővé figyelők regisztrálását egy speciális figyelőfelületen. Ennek segítségével figyelhet adott eseményeket, és meghívhatja a megfelelő figyelőmetódust. A CreateUnoListener függvény vár a meghívott figyelőfelületre, majd átadja a felületet egy objektumnak, amelyet a felület támogat. Az objektum ezután a figyelő regisztrálásához átadódik a metódusnak."
-
-#. ]wcM
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. PsGA
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3143228\n"
-"49\n"
-"help.text"
-msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr "oListener = CreateUnoListener( Előtagnév, FigyelőfelületNév )"
-
-#. q!*Z
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3147574\n"
-"48\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "Az alábbi példa egy Basic-programkönyvtár-objektumon alapul."
-
-#. 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 "A CreateUnoListener metódus két paramétert vár. Az első az előtag, és ez az alábbiakban kerül részletes ismertetésre. A második paraméter a használni kívánt figyelőfelület teljes neve."
-
-#. %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 "A figyelőt ezután hozzá kell adni a Broadcaster objektumhoz. Ez a figyelő hozzáadására szolgáló megfelelő metódus meghívásával történik. Ezek a metódusok mindig az „addFooListener” mintát követik, ahol a „Foo” a figyelőfelület típusa, „X” nélkül. Ebben a példában az addContainerListener metódus az XContainerListener regisztrálása érdekében kerül meghívásra:"
-
-#. 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 ' A Library1-nek léteznie kell!"
-
-#. 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 ) ' A figyelő regisztrálása"
-
-#. ?@;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 "A figyelő most már regisztrálva van. Egy esemény bekövetkezésekor a megfelelő figyelő meghívja a megfelelő metódust a com.sun.star.container.XContainerListener felületről."
-
-#. 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 "Az előtag regisztrált figyelőket hív meg a Basic-szubrutinokból. A Basic futásidejű rendszer „PrefixListenerMethode” nevű Basic-szubrutinokat vagy -függvényeket keres, és ha talál ilyet, meghívja. Ellenkező esetben futásidejű hiba történik."
-
-#. 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 "Ebben a példában a figyelőfelület a következő eljárásokat használja:"
-
-#. W+si
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"36\n"
-"help.text"
-msgid "disposing:"
-msgstr "felszabadítás:"
-
-#. 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 "Figyelő alapfelülete (com.sun.star.lang.XEventListener): az összes Figyelőfelület alapfelülete"
-
-#. /=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 "A com.sun.star.container.XContainerListener felület metódusa"
-
-#. 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 "A com.sun.star.container.XContainerListener felület metódusa"
-
-#. 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 com.sun.star.container.XContainerListener felület metódusa"
-
-#. %.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 "Ebben a példában az előtag a ContListener_. Az alábbi szubrutinokat kell megvalósítani Basicben:"
-
-#. 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 "Egy eseménystruktúra-típus, amely információkat tartalmaz minden figyelőtípusban létező eseménnyel kapcsolatban. A figyelőmetódus meghívásakor az esemény egy példánya paraméterként átadódik a metódusnak. A Basic-figyelőmetódusok szintén meghívhatják ezeket az eseményobjektumokat, amíg a megfelelő paramétert átadja a szubrutin-deklaráció. Például:"
-
-#. jhdm
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"disposing\""
-msgstr "MsgBox \"felszabadítás\""
-
-#. 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 "Nem szükséges megadni egy eseményobjektum paraméterét abban az esetben, ha az objektumot nem használja:"
-
-#. hTU(
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150042\n"
-"5\n"
-"help.text"
-msgid "' Minimal implementation of Sub disposing"
-msgstr "' Szubrutin felszabadításának minimális megvalósítása"
-
-#. (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 "A figyelőmetódusokat <emph>mindig</emph> meg kell valósítani a Basic futásidejű hibák elkerülésének érdekében."
-
-#. `|m-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"tit\n"
-"help.text"
-msgid "Write Statement [Runtime]"
-msgstr "Write utasítás [futásidejű]"
-
-#. *fHF
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"bm_id3147229\n"
-"help.text"
-msgid "<bookmark_value>Write statement</bookmark_value>"
-msgstr "<bookmark_value>Write utasítás</bookmark_value>"
-
-#. +jxS
-#: 03020205.xhp
-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/03020205.xhp\" name=\"Write utasítás [futásidejű]\">Write utasítás [futásidejű]</link>"
-
-#. T0)=
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "Writes data to a sequential file."
-msgstr "Szöveget ír egy szekvenciális fájlba."
-
-#. w:|.
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. EM+(
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3145785\n"
-"4\n"
-"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr "Write [#Fájlnév], [Kifejezéslista]"
-
-#. 0YCi
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlnév:</emph> Bármilyen numerikus kifejezés, amely tartalmazza a megfelelő fájl Open utasításában megadott fájlszámot."
-
-#. ?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 "<emph>Kifejezéslista:</emph> Változók és kifejezések, amelyeket egy fájlba szeretne beírni vesszőkkel elválasztva."
-
-#. [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 "Ha a kifejezéslista nincs megadva, akkor a <emph>Write</emph> utasítás egy üres sort fűz a fájlhoz."
-
-#. (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 "Egy kifejezéslista új fájlhoz történő hozzáadásához a fájlt <emph>Output</emph> vagy <emph>Append</emph> módban kell megnyitni."
-
-#. 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 "A beírt karakterláncok idézőjelek között vannak, és vesszők választják el őket. A kifejezéslistába nem kell beírni ezeket a határolókat."
-
-#. 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 "Minden <emph>Write</emph> utasítás kiír egy sorvég jelet utolsó elemként."
-
-#. 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 "A tizedeselválasztót tartalmazó számok konvertálása a területi beállításoktól függ."
-
-#. l[mK
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. jSzv
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetAttr Function [Runtime]"
-msgstr "GetAttr függvény [futásidejű]"
-
-#. afc)
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"bm_id3150984\n"
-"help.text"
-msgid "<bookmark_value>GetAttr function</bookmark_value>"
-msgstr "<bookmark_value>GetAttr függvény</bookmark_value>"
-
-#. aVC[
-#: 03020409.xhp
-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/03020409.xhp\" name=\"GetAttr függvény [futásidejű]\">GetAttr függvény [futásidejű]</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 "Visszaad egy bitmintát, amely a fájl típusát vagy a kötet, illetve a könyvtár nevét azonosítja."
-
-#. eO-k
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. /3bY
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3150359\n"
-"4\n"
-"help.text"
-msgid "GetAttr (Text As String)"
-msgstr "GetAttr (Szöveg As String)"
-
-#. JQ[K
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. cQ#K
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. !iW.
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> Egyértelmű fájlspecifikációt tartalmazó string (karakterlánc) kifejezés. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. ?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 "Ez a függvény beolvassa egy adott fájl attribútumait, majd egy olyan bitmintát ad vissza, amely alapján a következő fájlattribútumokat azonosíthatja:"
-
-#. \,Nu
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
-"10\n"
-"help.text"
-msgid "Value"
-msgstr "Érték"
-
-#. GX1L
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3147349\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0 : Normál fájlok."
-
-#. \EQj
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3147434\n"
-"12\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : Csak olvasható fájlok."
-
-#. fBfJ
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr "8 : Visszaadja a kötet nevét."
-
-#. [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 "16 : Csak a könyvtár nevét adja vissza."
-
-#. [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 "32 : A fájl az utolsó biztonsági mentés után megváltozott (Archív bit)."
-
-#. 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 "Ha meg szeretné tudni, hogy az attribútumbájt egyik bitje be van-e állítva, akkor használja a következő lekérdezési módszert:"
-
-#. u2OJ
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3153094\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. #*}k
-#: 03020409.xhp
-#, fuzzy
-msgctxt ""
-"03020409.xhp\n"
-"par_id3155415\n"
-"21\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr "On Error Goto ErrorHandler REM Definiálja a hibakezelő függvényt"
-
-#. mzrg
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr "Select...Case utasítás [futásidejű]"
-
-#. 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>Select...Case utasítás</bookmark_value><bookmark_value>Case utasítás</bookmark_value>"
-
-#. iwGG
-#: 03090102.xhp
-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/03090102.xhp\" name=\"Select...Case utasítás [futásidejű]\">Select...Case utasítás [futásidejű]</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 "Meghatároz egy vagy több utasításblokkot egy bizonyos kifejezés értéke alapján."
-
-#. rZ)m
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Select Case feltétel Case kifejezés Utasításblokk [Case kifejezés2 Utasításblokk][Case Else] Utasításblokk End Select"
-
-#. 6uEQ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Feltétel:</emph> Bármilyen kifejezés, amely meghatározza, hogy az adott Case utasítás utáni utasításblokk végre legyen-e hajtva."
-
-#. @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 "<emph>Kifejezés:</emph> A Feltétel típusú kifejezéssel kompatibilis kifejezés. A Case utasítást követő utasításblokk akkor hajtódik végre, ha a <emph>Feltétel</emph> megfelel a <emph>Kifejezés</emph> elemnek."
-
-#. la%;
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. j$^#
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"1 és 5 közötti szám\""
-
-#. 9AoZ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3147349\n"
-"16\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"6 és 8 közötti szám\""
-
-#. Z@kw
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152886\n"
-"18\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Nagyobb mint 8\""
-
-#. .k*s
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3146975\n"
-"20\n"
-"help.text"
-msgid "Print \"Out of range 1 to 10\""
-msgstr "Print \"1-10 tartományon kívül esik\""
-
-#. JUPU
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"tit\n"
-"help.text"
-msgid "ConvertFromURL Function [Runtime]"
-msgstr "ConvertFromURL függvény [futásidejű]"
-
-#. -89,
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"bm_id3153894\n"
-"help.text"
-msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertFromURL függvény</bookmark_value>"
-
-#. B4S_
-#: 03120313.xhp
-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/03120313.xhp\" name=\"ConvertFromURL függvény [futásidejű]\">ConvertFromURL függvény [futásidejű]</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 "Átalakít egy fájl-URL-t rendszerfájl-névvé."
-
-#. W{h)
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. UBU8
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3154142\n"
-"4\n"
-"help.text"
-msgid "ConvertFromURL(filename)"
-msgstr "ConvertFromURL(Fájlnév)"
-
-#. c8wX
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. ;,Q^
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150669\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. .4o^
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. !,^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>Fájlnév:</emph> Egy fájlnév string (karakterlánc) kifejezésként."
-
-#. tKSr
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 5UkN
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3148664\n"
-"10\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-
-#. ]eVq
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "url$ = ConvertToURL( systemFile$ )"
-
-#. v%]4
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150792\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr "print url$"
-
-#. ahS/
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3154367\n"
-"13\n"
-"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
-
-#. Au*Q
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3153194\n"
-"14\n"
-"help.text"
-msgid "print systemFileAgain$"
-msgstr "print systemFileAgain$"
-
-#. Aa8z
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileLen-Function [Runtime]"
-msgstr "FileLen függvény [futásidejű]"
-
-#. $[Ck
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"bm_id3153126\n"
-"help.text"
-msgid "<bookmark_value>FileLen function</bookmark_value>"
-msgstr "<bookmark_value>FileLen függvény</bookmark_value>"
-
-#. b?p8
-#: 03020408.xhp
-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/03020408.xhp\" name=\"FileLen függvény [futásidejű]\">FileLen függvény [futásidejű]</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 "Visszaadja egy fájl méretét bájtokban kifejezve."
-
-#. XG0`
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. KP*?
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "FileLen (Text As String)"
-msgstr "FileLen (Szöveg As String)"
-
-#. If~!
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. t)Mo
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. -dIy
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. {+$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 "<emph>Szöveg:</emph> Egyértelmű fájlspecifikációt tartalmazó string (karakterlánc) kifejezés. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. $@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 "A függvény meghatározza a fájl hosszát. Ha a FileLen függvényt egy megnyitott fájlhoz hívja meg, akkor a megnyitás előtti hosszat adja vissza. Egy megnyitott fájl aktuális hosszát a Lof függvény segítségével határozhatja meg."
-
-#. M1D@
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Ts!#
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr "ChDrive utasítás [futásidejű]"
-
-#. H1UI
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "<bookmark_value>ChDrive utasítás</bookmark_value>"
-
-#. X{`*
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive utasítás [futásidejű]\">ChDrive utasítás [futásidejű]</link>"
-
-#. IG:s
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr "Megváltoztatja az aktuális meghajtót."
-
-#. ft.W
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. _FWx
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
-#. _a{/
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3156423\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. \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 "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely az új meghajtó betűjelét tartalmazza. Igény szerint használhatja az <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is."
-
-#. (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 "A meghajtóhoz nagybetűt kell rendelni. Windows rendszeren a meghajtóhoz rendelt betűjelet a LASTDRV beállításai korlátozzák. Ha a meghajtóargumentum több karakterből áll, akkor a program csak az első betűt veszi figyelembe. Ha egy nem létező meghajtót próbál meg elérni, akkor hiba történik, amelyet az OnError utasítással lehet kezelni."
-
-#. TcF]
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3153188\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. [z\[
-#: 03020402.xhp
-#, fuzzy
-msgctxt ""
-"03020402.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
-msgstr "ChDrive \"D\" REM Csak akkor lehetséges, ha a „D” meghajtó létezik."
-
-#. fhf$
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"tit\n"
-"help.text"
-msgid "Kill Statement [Runtime]"
-msgstr "Kill utasítás [futásidejű]"
-
-#. h1J~
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>Kill statement</bookmark_value>"
-msgstr "<bookmark_value>Kill utasítás</bookmark_value>"
-
-#. H1bq
-#: 03020410.xhp
-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/03020410.xhp\" name=\"Kill utasítás [futásidejű]\">Kill utasítás [futásidejű]</link>"
-
-#. .^6m
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3151211\n"
-"2\n"
-"help.text"
-msgid "Deletes a file from a disk."
-msgstr "Töröl egy fájlt a lemezről."
-
-#. I76E
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. [s!w
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "Kill File As String"
-msgstr "Kill Fájl As String"
-
-#. $Oo`
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ~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 "<emph>Fájl:</emph> Egyértelmű fájlspecifikációt tartalmazó string (karakterlánc) kifejezés. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. JL$]
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ]ZXb
-#: 03020410.xhp
-#, fuzzy
-msgctxt ""
-"03020410.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM A fájlt előbb létre kell hozni"
-
-#. @UK:
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "FileDateTime függvény [futásidejű]"
-
-#. U9c|
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "<bookmark_value>FileDateTime függvény</bookmark_value>"
-
-#. iC67
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime függvény [futásidejű]\">FileDateTime függvény [futásidejű]</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 "Visszaad egy olyan karakterláncot, amely a fájl létrehozásának vagy legutóbbi módosításának dátumát és időpontját tartalmazza."
-
-#. `eMw
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. o~Tl
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "FileDateTime (Szöveg As String)"
-
-#. Qtnl
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> Egyértelmű (nincsenek helyettesítő karakterek) fájlspecifikációt tartalmazó string (karakterlánc) kifejezés. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. 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 "Ez a függvény meghatározza a fájl létrehozásának vagy utolsó módosításának pontos idejét, és \"HH.NN.ÉÉÉÉ ÓÓ.PP.MM\" formátumban adja vissza."
-
-#. 3Jgr
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3146119\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. svVl
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr "Option Explicit utasítás [futásidejű]"
-
-#. BOgL
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
-msgstr "<bookmark_value>Option Explicit utasítás</bookmark_value>"
-
-#. h+Sa
-#: 03103300.xhp
-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/03103300.xhp\" name=\"Option Explicit utasítás [futásidejű]\">Option Explicit utasítás [futásidejű]</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 "Ezen utasítás használata esetén a programkódban levő minden egyes változót a Dim utasítással explicit meg kell adni."
-
-#. -;@(
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. O=CM
-#: 03103300.xhp
-#, fuzzy
-msgctxt ""
-"03103300.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Option Explicit"
-msgstr "Option Explicit"
-
-#. xTL^
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Ezt az utasítást a modulon belül egy futtatható programkód elé kell elhelyezni."
-
-#. 8FK)
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 4;K;
-#: 03103300.xhp
-#, fuzzy
-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 "For i% = 1 to 10 REM Ez futásidejű hibához vezet"
-
-#. 0dG5
-#: 03020100.xhp
-msgctxt ""
-"03020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening and Closing Files"
-msgstr "Fájlok megnyitása és bezárása"
-
-#. 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 "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Fájlok megnyitása és bezárása\">Fájlok megnyitása és bezárása</link>"
-
-#. tlFQ
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"tit\n"
-"help.text"
-msgid "Right Function [Runtime]"
-msgstr "Right függvény [futásidejű]"
-
-#. j$5T
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Right function</bookmark_value>"
-msgstr "<bookmark_value>Right függvény</bookmark_value>"
-
-#. ^:W=
-#: 03120307.xhp
-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/03120307.xhp\" name=\"Right függvény [futásidejű]\">Right függvény [futásidejű]</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 "Visszaadja egy string (karakterlánc) kifejezés jobb oldali \"n\" karakterét."
-
-#. `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 "Lásd még: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left függvény\">Left függvény</link>"
-
-#. ,1~)
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 8#U1
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3153061\n"
-"5\n"
-"help.text"
-msgid "Right (Text As String, n As Long)"
-msgstr "Right (Szöveg As String, n As Long)"
-
-#. #hV\
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 8)@y
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3156344\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. sZf=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés, amelynek a jobb oldali karaktereit akarja visszakapni."
-
-#. .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> Numerikus kifejezés, amely megadja a visszakapni kívánt karakterek számát. Ha az <emph>n</emph> = 0, akkor a függvény egy nulla hosszúságú karakterláncot ad vissza. A maximális érték 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 "Az alábbi példa egy ÉÉÉÉ-HH-NN formátumban levő dátumot átalakít amerikai dátumformátumúvá (HH/NN/ÉÉÉÉ)."
-
-#. ?0|=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "sInput = InputBox(\"Adjon meg egy dátumot „ÉÉÉÉ-HH-NN” nemzetközi formátumban)"
-
-#. \tNR
-#: 03120200.xhp
-msgctxt ""
-"03120200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Repeating Contents"
-msgstr "Tartalmak megismétlése"
-
-#. gYu=
-#: 03120200.xhp
-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/03120200.xhp\" name=\"Tartalmak megismétlése\">Tartalmak megismétlése</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 "Az alábbi függvények megismétlik egy karakterlánc tartalmát."
-
-#. }/xl
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr "\"/\" operátor [futásidejű]"
-
-#. 8haF
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>\"/\" operátor (matematikai)</bookmark_value>"
-
-#. (.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 "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" operátor [futásidejű]</link>"
-
-#. b?Bi
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3149670\n"
-"2\n"
-"help.text"
-msgid "Divides two values."
-msgstr "Eloszt egymással két értéket."
-
-#. D%wr
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. l2.l
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3153360\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 / Expression2"
-msgstr "Eredmény = Kifejezés1 / Kifejezés2"
-
-#. \^HA
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3150359\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Eredmény:</emph> Bármilyen numerikus változó, amely az osztás eredményét tárolja."
-
-#. 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>Kifejezés1, Kifejezés2:</emph> Az elosztani kívánt kifejezések."
-
-#. R4}.
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3154684\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. n0x~
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erl Function [Runtime]"
-msgstr "Erl függvény [futásidejű]"
-
-#. RDO6
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Erl function</bookmark_value>"
-msgstr "<bookmark_value>Erl függvény</bookmark_value>"
-
-#. 8V.W
-#: 03050100.xhp
-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/03050100.xhp\" name=\"Erl függvény [futásidejű]\">Erl függvény [futásidejű]</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 "Visszaadja azon sor számát, amelyben a program futtatása során hiba történt."
-
-#. l1~c
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. tz|#
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Erl"
-msgstr "Erl"
-
-#. 1`Mr
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3147265\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. (r_=
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3154924\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. W8*)
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Az Erl függvény csak a sor számát adja vissza, nem pedig a sor címkéjét."
-
-#. ;$v!
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Fs%6
-#: 03050100.xhp
-#, fuzzy
-msgctxt ""
-"03050100.xhp\n"
-"par_id3150010\n"
-"11\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Set up error handler"
-msgstr "on error goto ErrorHandler REM Hibakezelő beállítása"
-
-#. Gj2+
-#: 03050100.xhp
-#, fuzzy
-msgctxt ""
-"03050100.xhp\n"
-"par_id3153188\n"
-"14\n"
-"help.text"
-msgid "' Error caused by non-existent file"
-msgstr "REM A hibát egy nem létező fájl okozza"
-
-#. D.;*
-#: 03050100.xhp
-#, fuzzy
-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 "MsgBox \"Hiba\" & err & \": \" & error$ + chr(13) + \"A következő sorban : \" + Erl + chr(13) + Now , 16 ,\"Hiba történt\""
-
-#. id,b
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Erase függvény [futásidejű]"
-
-#. NS.M
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"bm_id624713\n"
-"help.text"
-msgid "<bookmark_value>Erase function</bookmark_value>"
-msgstr "<bookmark_value>Erase függvény</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 "<link href=\"text/sbasic/shared/03104700.xhp\">Erase függvény [futásidejű]</link>"
-
-#. 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 "Törli a rögzített méretű tömbök tömbelemeit, és felszabadítja a változó méretű tömbök által lefoglalt memóriát."
-
-#. Fpos
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ;~+9
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
-"help.text"
-msgid "Erase Arraylist"
-msgstr "Erase tömblista"
-
-#. JZ.2
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Tömblista</emph> - A törlendő tömbök listája."
-
-#. $rw[
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exp Function [Runtime]"
-msgstr "Exp függvény [futásidejű]"
-
-#. E@C,
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Exp function</bookmark_value>"
-msgstr "<bookmark_value>Exp függvény</bookmark_value>"
-
-#. ,ViF
-#: 03080201.xhp
-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/03080201.xhp\" name=\"Exp függvény [futásidejű]\">Exp függvény [futásidejű]</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 "Az e (= 2.718282) érték hatványát adja vissza."
-
-#. ztC0
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3150984\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. aW33
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "Exp (Number)"
-msgstr "Exp (Szám)"
-
-#. [AK_
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3154347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. +V`}
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. _M+h
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. #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 "<emph>Szám:</emph> Numerikus kifejezés, amely megadja a kitevőt, amelyre az „e”-t emelni akarja (a természetes logaritmus alapja). Egyszeres pontosságú számoknál 88.02969, dupla pontosságúnál pedig 709.782712893 értéknél nem lehet nagyobb a kitevő, mivel a $[officename] Basic Túlcsordulás hibát ad vissza az értékeket meghaladó számok esetén."
-
-#. yAj$
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3156280\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 2GjQ
-#: 03080201.xhp
-#, fuzzy
-msgctxt ""
-"03080201.xhp\n"
-"par_id3159254\n"
-"13\n"
-"help.text"
-msgid "Const b2=1.345e34"
-msgstr "const b2=1.345e34"
-
-#. 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 "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Szorzás logaritmussal\""
-
-#. hQ%;
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro"
-msgstr "Makró"
-
-#. 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>események;objektumhoz csatolt</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=\"Makró\">Makró</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=\".\">Válassza ki azt a makrót, amelyet a kijelölt kép, keret vagy OLE-objektum kiválasztásánál szeretne futtatni.</ahelp> A kiválasztott objektumtól függően a függvény az <emph>Objektum</emph> párbeszédablak <emph>Makró</emph> lapján vagy a <emph>Makró hozzárendelése</emph> párbeszédablakban található."
-
-#. AMJn
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150503\n"
-"3\n"
-"help.text"
-msgid "Event"
-msgstr "Esemény"
-
-#. )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\">Felsorolja a kijelölt objektumhoz jelenleg tartozó makrók számára értelmezhető eseményeket.</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 "Az alábbi táblázat a dokumentumban levő objektumokhoz rendelhető makrókat és eseményeket írja le:"
-
-#. XHvZ
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153360\n"
-"24\n"
-"help.text"
-msgid "Event"
-msgstr "Esemény"
-
-#. `do8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154365\n"
-"25\n"
-"help.text"
-msgid "Event trigger"
-msgstr "Kiváltó esemény"
-
-#. KMfc
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159149\n"
-"26\n"
-"help.text"
-msgid "OLE object"
-msgstr "OLE-objektum"
-
-#. LLWW
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
-"27\n"
-"help.text"
-msgid "Graphics"
-msgstr "Kép"
-
-#. O,J\
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
-"28\n"
-"help.text"
-msgid "Frame"
-msgstr "Keret"
-
-#. T^VC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
-"help.text"
-msgid "AutoText"
-msgstr "Szövegblokk"
-
-#. ^:mm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145785\n"
-"30\n"
-"help.text"
-msgid "ImageMap area"
-msgstr "Interaktívkép-terület"
-
-#. e|]]
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
-"31\n"
-"help.text"
-msgid "Hyperlink"
-msgstr "Hiperhivatkozás"
-
-#. TDq1
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155306\n"
-"32\n"
-"help.text"
-msgid "Click object"
-msgstr "Objektumra kattintás"
-
-#. t-m.
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3152460\n"
-"33\n"
-"help.text"
-msgid "Object is selected."
-msgstr "Az objektum ki van választva."
-
-#. .yeY
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147348\n"
-"34\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. -6^T
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147426\n"
-"35\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. N5Ee
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153951\n"
-"36\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. f$kJ
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150116\n"
-"37\n"
-"help.text"
-msgid "Mouse over object"
-msgstr "Egérkurzor az objektum felett"
-
-#. XCX8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145253\n"
-"38\n"
-"help.text"
-msgid "Mouse moves over the object."
-msgstr "Az egérkurzor az objektum felett van."
-
-#. ]s}f
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3144765\n"
-"39\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. ee?C
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153418\n"
-"40\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. gwVb
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153948\n"
-"41\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. Yh7u
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145652\n"
-"42\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. HWx+
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155066\n"
-"43\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. AIl;
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155446\n"
-"44\n"
-"help.text"
-msgid "Trigger Hyperlink"
-msgstr "Indító hiperhivatkozás"
-
-#. dR:$
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154756\n"
-"45\n"
-"help.text"
-msgid "Hyperlink assigned to the object is clicked."
-msgstr "Az objektumhoz rendelt hiperhivatkozásra történő kattintás."
-
-#. I2TC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150042\n"
-"46\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. 1iZE
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151252\n"
-"47\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. N~#L
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147344\n"
-"48\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. EeRm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3146920\n"
-"49\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. k/B%
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159333\n"
-"50\n"
-"help.text"
-msgid "Mouse leaves object"
-msgstr "Az egérkurzor elhagyja az objektumot"
-
-#. ^!Sc
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147003\n"
-"51\n"
-"help.text"
-msgid "Mouse moves off of the object."
-msgstr "Az egérkurzor elmozdul az objektumról."
-
-#. a5;Q
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151278\n"
-"52\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. HdDo
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145257\n"
-"53\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. 9{Be
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154122\n"
-"54\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. akeC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3156139\n"
-"55\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. g-Pg
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3149036\n"
-"56\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. (jOH
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150785\n"
-"57\n"
-"help.text"
-msgid "Graphics load successful"
-msgstr "Sikeres képbetöltés"
-
-#. a;K?
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153705\n"
-"58\n"
-"help.text"
-msgid "Graphics are loaded successfully."
-msgstr "A képek sikeresen betöltődtek."
-
-#. snsY
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150343\n"
-"59\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. 14EY
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150202\n"
-"60\n"
-"help.text"
-msgid "Graphics load terminated"
-msgstr "Képbetöltés megszakítva"
-
-#. .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 "A felhasználó leállította a képek betöltését (például az oldal letöltésekor)."
-
-#. ufI,
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154259\n"
-"62\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. HwnT
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155089\n"
-"63\n"
-"help.text"
-msgid "Graphics load faulty"
-msgstr "Hibás képbetöltés"
-
-#. 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 "A kép nem töltődött be, például abban az esetben, ha egy kép nem található."
-
-#. [D;c
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148840\n"
-"65\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. #b%c
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154533\n"
-"66\n"
-"help.text"
-msgid "Input of alpha characters"
-msgstr "Alfanumerikus karakterek bevitele"
-
-#. ?Agm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155266\n"
-"67\n"
-"help.text"
-msgid "Text is entered from the keyboard."
-msgstr "Szöveg beírása a billentyűzetről."
-
-#. T?ZW
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3144768\n"
-"68\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. YA2L
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145659\n"
-"69\n"
-"help.text"
-msgid "Input of non-alpha characters"
-msgstr "Nem alfanumerikus karakterek bevitele"
-
-#. 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 "Nem nyomtatható karakterek bevitele a billentyűzetről, ilyenek például a tabulátorok, valamint a sortörések."
-
-#. #i2A
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159206\n"
-"71\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. a[pu
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150405\n"
-"72\n"
-"help.text"
-msgid "Resize frame"
-msgstr "Keret átméretezése"
-
-#. k`-H
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153972\n"
-"73\n"
-"help.text"
-msgid "Frame is resized with the mouse."
-msgstr "Keret átméretezése az egérrel."
-
-#. PRNz
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3152873\n"
-"74\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. \T5o
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148900\n"
-"75\n"
-"help.text"
-msgid "Move frame"
-msgstr "Keret áthelyezése"
-
-#. [?)-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154767\n"
-"76\n"
-"help.text"
-msgid "Frame is moved with the mouse."
-msgstr "Keret áthelyezése az egérrel."
-
-#. wx{Z
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155914\n"
-"77\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. FE45
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153010\n"
-"78\n"
-"help.text"
-msgid "Before inserting AutoText"
-msgstr "Szövegblokk beszúrása előtt"
-
-#. Z?Ey
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147515\n"
-"79\n"
-"help.text"
-msgid "Before a text block is inserted."
-msgstr "Egy szövegblokk beszúrása előtt."
-
-#. rT5@
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151191\n"
-"80\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. .=)}
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150956\n"
-"81\n"
-"help.text"
-msgid "After inserting AutoText"
-msgstr "Szövegblokk beszúrása után"
-
-#. h5-4
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147502\n"
-"82\n"
-"help.text"
-msgid "After a text block is inserted."
-msgstr "Egy szövegblokk beszúrása után."
-
-#. )wbP
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147555\n"
-"83\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#. IF!D
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3153958\n"
-"5\n"
-"help.text"
-msgid "Macros"
-msgstr "Makrók"
-
-#. 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 "Válassza ki az esemény bekövetkezése esetén futtatandó makrót."
-
-#. 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 "A keretek lehetővé teszik események függvényekhez történő csatolását, így a függvény eldöntheti, hogy a függvény vagy a $[officename] Writer dolgozza fel az eseményt."
-
-#. wDly
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
-"7\n"
-"help.text"
-msgid "Category"
-msgstr "Kategória"
-
-#. !#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\">Megjeleníti a megnyitott $[officename]-dokumentumokat és -alkalmazásokat. Kattintson a hely nevére, ahova menteni kívánja a makrókat.</ahelp>"
-
-#. jzO9
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3149744\n"
-"9\n"
-"help.text"
-msgid "Macro name"
-msgstr "Makró neve"
-
-#. 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\">Megjeleníti a rendelkezésre álló makrókat. Kattintson a kijelölt objektumhoz rendelendő makróra.</ahelp>"
-
-#. =Xlw
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
-"11\n"
-"help.text"
-msgid "Assign"
-msgstr "Hozzárendelés"
-
-#. -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\">Az adott eseményhez a kiválasztott makrót rendeli hozzá.</ahelp> A hozzárendelt makrók bejegyzései az esemény után lesznek beállítva."
-
-#. ;pyE
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
-"15\n"
-"help.text"
-msgid "Remove"
-msgstr "Eltávolítás"
-
-#. ~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\">Eltávolítja a kijelölt elemhez hozzárendelt makrót.</ahelp></variable>"
-
-#. L#[?
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159126\n"
-"85\n"
-"help.text"
-msgid "Macro selection"
-msgstr "Makróválasztás"
-
-#. 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\">Válassza ki a hozzárendelni kívánt makrót.</ahelp>"
-
-#. LWz%
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"tit\n"
-"help.text"
-msgid "Basics"
-msgstr "Alapok"
-
-#. 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 "<bookmark_value>alapok</bookmark_value><bookmark_value>szubrutinok</bookmark_value><bookmark_value>változók;globális és lokális</bookmark_value><bookmark_value>modulok;szubrutinok és függvények</bookmark_value>"
-
-#. *?F^
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3154927\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
-msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Alapok\">Alapok</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 "Ez a szakasz a $[officename] Basickel való munka alapjait mutatja be."
-
-#. 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 "A $[officename] Basic-kód a <emph>sub...end sub</emph> és a <emph>function...end function</emph> szakaszok között megadott szubrutinokra és függvényekre épül. Minden szubrutint vagy függvényt meghívhat más szubrutin vagy függvény. Ha arra törekszik, hogy általános kódot írjon a szubrutinokhoz vagy függvényekhez, akkor valószínűleg azt ismét felhasználhatja más programokban. Lásd még <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Eljárások és függvények\">Eljárások és függvények</link>."
-
-#. 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 "A változók, szubrutinok és függvények elnevezésére vannak korlátozások. Nem használhatja ugyanazt a nevet, mint az ugyanabban a függvénykönyvtárban levő másik modul."
-
-#. UmDj
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150398\n"
-"3\n"
-"help.text"
-msgid "What is a Sub?"
-msgstr "Mi a szubrutin?"
-
-#. 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 "A <emph>Sub</emph>, a <emph>subroutine</emph> (szubrutin) szó angol változatának rövidítése, és a programnak egy bizonyos feladatot elvégző részét jelöli. Szubrutinokkal egy feladat kisebb, önálló eljárásokra bontható. A program feldarabolása eljárásokká és részeljárásokká az olvashatóságot javítja, és csökkenti a hibázás valószínűségét. A szubrutin általában kap néhány bemeneti paramétert, de nem ad vissza értékeket az őt meghívó szubrutinnak vagy függvénynek. Például:"
-
-#. ~se.
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-msgstr "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-
-#. PkL]
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3156282\n"
-"5\n"
-"help.text"
-msgid "What is a Function?"
-msgstr "Mi a függvény?"
-
-#. _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 "A <emph>függvény</emph> lényegében egy szubrutin, amely értéket ad vissza. A függvény egy változódeklaráció jobb oldalán használható, vagy olyan helyeken, ahol általában érték használható, például:"
-
-#. mvq+
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3146985\n"
-"7\n"
-"help.text"
-msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr "MySecondValue = myFunction(MyFirstValue)"
-
-#. ekL5
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3153364\n"
-"8\n"
-"help.text"
-msgid "Global and local variables"
-msgstr "Globális és lokális változók"
-
-#. 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 "A globális változók érvényesek a modulon belüli összes szubrutinra és függvényre. Ezek a modul elején kerülnek deklarálásra, az első szubrutin vagy függvény indulása előtt."
-
-#. 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 "A szubrutinban vagy függvényben deklarált változók csak a szubrutinon vagy függvényen belül érvényesek. Ezek a változók felülírják az ugyanolyan nevű globális és lokális változókat a fölérendelt szubrutinokból vagy függvényekből származó, ugyanolyan nevű változókkal."
-
-#. JP5j
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
-"11\n"
-"help.text"
-msgid "Structuring"
-msgstr "Strukturálás"
-
-#. 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 "Miután a programot eljárásokra és függvényekre bontotta (Sub és Function utasításokkal), ezeket az eljárásokat és függvényeket mentheti fájlokba, más projektekben történő későbbi használatra. A $[officename] Basic támogatja a <link href=\"text/sbasic/shared/01020500.xhp\" name=\"modulokat és programkönyvtárakat\">modulokat és programkönyvtárakat</link>. A szubrutinokat és függvényeket mindig a modulok tartalmazzák. Megadhat globális modulokat, vagy megadhatja őket egy dokumentum részeként. Több modul egy programkönyvtárban egyesíthető."
-
-#. 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 "A <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Makró\">Makró</link> párbeszédablak segítségével átmásolhatja vagy áthelyezheti a szubrutinokat, függvényeket, modulokat és programkönyvtárakat egyik fájlból a másikba."
-
-#. fNo^
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"tit\n"
-"help.text"
-msgid "FindPropertyObject Function [Runtime]"
-msgstr "FindPropertyObject függvény [futásidejű]"
-
-#. \20w
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
-msgstr "<bookmark_value>FindPropertyObject függvény</bookmark_value>"
-
-#. JkFx
-#: 03103900.xhp
-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/03103900.xhp\" name=\"FindPropertyObject függvény [futásidejű]\">FindPropertyObject függvény [futásidejű]</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 "Lehetővé teszi az objektum nevének karakterlánc-paraméterként való felhasználását az objektumok futásidőbeli megcímzésére."
-
-#. RD=b
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "For instance, the command:"
-msgstr "Például a következő parancs:"
-
-#. v](7
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3145610\n"
-"4\n"
-"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MyObj.Prop1.Command = 5"
-
-#. mD[T
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3147265\n"
-"5\n"
-"help.text"
-msgid "corresponds to the following command block:"
-msgstr "parancs az alábbi parancsblokknak felel meg:"
-
-#. v8{;
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3153896\n"
-"6\n"
-"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim Objektumváltozó as Object"
-
-#. OjQB
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148664\n"
-"7\n"
-"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim ObjProp as Object"
-
-#. +bc8
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "Objektumnév As String = \"MyObj\""
-
-#. 7Zm#
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3154365\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "Objektumváltozó = FindObject( Objektumnév As String )"
-
-#. y6,x
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148453\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "Tulajdonságnév As String = \"Prop1\""
-
-#. ;fk/
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150449\n"
-"11\n"
-"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr "ObjProp = FindPropertyObject( Objektumváltozó, Tulajdonságnév As String )"
-
-#. q+97
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3159152\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "ObjProp.Command = 5"
-
-#. 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 "A nevek futásidőbeli dinamikus létrehozására használja a következőt:"
-
-#. 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 "\"TextEdit1\" to TextEdit5\" egy ciklusban öt név létrehozásához."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-
-#. 9XoH
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3147287\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 1lme
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3149560\n"
-"17\n"
-"help.text"
-msgid "FindPropertyObject( ObjVar, PropName As String )"
-msgstr "FindPropertyObject( Objektumváltozó, Tulajdonságnév As String )"
-
-#. sNv)
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
-"18\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Objektumváltozó:</emph> Object (objektum) változó, amelyet futásidőben dinamikusan szeretne definiálni."
-
-#. 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 "<emph>Tulajdonságnév:</emph> Karakterlánc, amely meghatározza a futásidő alatt megcímezni kívánt tulajdonság nevét."
-
-#. gV$E
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"tit\n"
-"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr "On...GoSub utasítás; On...GoTo utasítás [futásidejű]"
-
-#. %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>On...GoSub utasítás</bookmark_value><bookmark_value>On...GoTo utasítás</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 "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub utasítás; On...GoTo utasítás [futásidejű]\">On...GoSub utasítás; On...GoTo utasítás [futásidejű]</link>"
-
-#. ;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 "Egy numerikus kifejezéstől függően elágazik a néhány, programkódban levő, előre meghatározott sor egyikére."
-
-#. d5P6
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. h?,\
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
-msgstr "On N GoSub Címke1[, Címke2[, Címke3[,...]]]"
-
-#. qn_D
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150769\n"
-"5\n"
-"help.text"
-msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr "On NumKifejezés GoTo Címke1[, Címke2[, Címke3[,...]]]"
-
-#. nHg$
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3156215\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>NumKifejezés:</emph> 0 és 255 közötti numerikus kifejezés, amely meghatározza, hogy a program mely sorára kell elágazni. Ha a NumKifejezés 0, akkor az utasítás nem hajtódik végre. Ha a NumKifejezés nagyobb mint 0, akkor a program arra a címkére ugrik, amely a kifejezésnek megfelelő pozíciószámmal rendelkezik (1 = első címke; 2 = második címke)"
-
-#. 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 "<emph>Címke:</emph> A <emph>GoTo</emph> vagy <emph>GoSub</emph> struktúra szerinti célsor."
-
-#. 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 "A <emph>GoTo</emph>- vagy <emph>GoSub</emph>-jelölések érvényesek."
-
-#. ]0KC
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 8~;D
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153948\n"
-"21\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 1 to\" : Return"
-msgstr "sVar =sVar & \" a Sub1-ből\" : Return"
-
-#. ]#Wg
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153708\n"
-"23\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 2 to\" : Return"
-msgstr "sVar =sVar & \" a Sub2-ből\" : Return"
-
-#. )5C6
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150321\n"
-"25\n"
-"help.text"
-msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
-msgstr "sVar =sVar & \" Címke1\": GoTo Vége"
-
-#. QPh=
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3155764\n"
-"27\n"
-"help.text"
-msgid "sVar =sVar & \" Label 2\""
-msgstr "sVar =sVar & \" Címke2\""
-
-#. @h/x
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"tit\n"
-"help.text"
-msgid "String Function [Runtime]"
-msgstr "String függvény [futásidejű]"
-
-#. X7i^
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"bm_id3147291\n"
-"help.text"
-msgid "<bookmark_value>String function</bookmark_value>"
-msgstr "<bookmark_value>String függvény</bookmark_value>"
-
-#. 6uqw
-#: 03120202.xhp
-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/03120202.xhp\" name=\"String függvény [futásidejű]\">String függvény [futásidejű]</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 "Létrehoz egy karakterláncot a megadott karakterből vagy a függvénynek átadott string (karakterlánc) kifejezés első betűje alapján."
-
-#. @PWh
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "String (n As Long, {Kifejezés As Integer | Karakter As String})"
-
-#. MxYH
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 8S)F
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. ([t)
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. (~#]
-#: 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 "<emph>n:</emph> Numerikus kifejezés, amely a karakterláncban visszaadni kívánt karakterek számát jeleníti meg. Az n maximális értéke 65535."
-
-#. %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 "<emph>Kifejezés:</emph> Numerikus kifejezés, amely a karakter ASCII-kódját határozza meg."
-
-#. 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 "<emph>Karakter:</emph> Bármilyen karakter, amelyből a visszaadni kívánt karakterlánc lesz felépítve, vagy bármilyen karakterlánc, amelynek csak az első karaktere lesz felhasználva."
-
-#. %]k_
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Ipz^
-#: 01030100.xhp
-msgctxt ""
-"01030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "IDE Overview"
-msgstr "Az IDE áttekintése"
-
-#. *Re7
-#: 01030100.xhp
-msgctxt ""
-"01030100.xhp\n"
-"hd_id3147291\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
-msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"Az IDE áttekintése\">Az IDE áttekintése</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 "Az IDE <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Makró eszköztára\"><emph>Makró eszköztára</emph></link> különböző ikonokat biztosít a programok teszteléséhez és szerkesztéséhez."
-
-#. %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 "A <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Szerkesztő ablakban\"><emph>Szerkesztő ablakban</emph></link>, közvetlenül a Makró eszköztár alatt szerkesztheti a Basic programkódot. A bal oldali oszloppal lehet töréspontokat beállítani a programkódban."
-
-#. 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 "A <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Figyelés\"><emph>Figyelés ablak</emph></link> (megfigyelő) a Szerkesztőablak alatt található a bal oldalon, és a változók, illetve tömbök tartalmát jeleníti meg egy egylépéses eljárás során."
-
-#. 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 "A jobb oldali <emph>Hívási verem</emph> ablak a szubrutinok és függvények hívási vermével kapcsolatban biztosít információkat a program futásakor."
-
-#. jHbe
-#: 01030100.xhp
-msgctxt ""
-"01030100.xhp\n"
-"par_id3147434\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-
-#. YH4;
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Watch Window"
-msgstr "Figyelés ablak"
-
-#. ~-sj
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3149457\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
-msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Figyelés ablak</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 "A Figyelés ablak lehetővé teszi a változók megfigyelését a program végrehajtása közben. Adja meg a változót a Figyelés szövegmezőben. A változó listához adásához és értékeinek megjelenítéséhez kattintson a <link href=\"text/sbasic/shared/02/11080000.xhp\">Figyelés engedélyezése</link> lehetőségre."
-
-#. %3-s
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
-"4\n"
-"help.text"
-msgid "Watch"
-msgstr "Figyelés"
-
-#. $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 "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Írja be a nyomon követendő változó nevét.</ahelp>"
-
-#. S%y$
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3148645\n"
-"6\n"
-"help.text"
-msgid "Remove Watch"
-msgstr "Figyelés törlése"
-
-#. 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 "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Eltávolítja a kiválasztott változót a figyelt változók listájáról.</ahelp>"
-
-#. 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 "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Ikon</alt></image>"
-
-#. KN[2
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"par_id3154012\n"
-"8\n"
-"help.text"
-msgid "Remove Watch"
-msgstr "Figyelés törlése"
-
-#. Kdk,
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3154491\n"
-"10\n"
-"help.text"
-msgid "Editing the Value of a Watched Variable"
-msgstr "Figyelt változó értékének szerkesztése"
-
-#. 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 "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Megjeleníti a megfigyelt változók listáját. Kattintson rövid szünettel kétszer a bejegyzésre, amelynek értékét szerkeszteni kívánja.</ahelp> A program az új értéket fogja használni a változó értékeként."
-
-#. c890
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Eof Function [Runtime]"
-msgstr "Eof függvény [futásidejű]"
-
-#. cih1
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"bm_id3154598\n"
-"help.text"
-msgid "<bookmark_value>Eof function</bookmark_value>"
-msgstr "<bookmark_value>Eof függvény</bookmark_value>"
-
-#. IhL}
-#: 03020301.xhp
-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/03020301.xhp\" name=\"Eof függvény [futásidejű]\">Eof függvény [futásidejű]</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 "Meghatározza, hogy a fájlmutató elérte-e egy fájl végét."
-
-#. cC?.
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. vX+:
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3147399\n"
-"4\n"
-"help.text"
-msgid "Eof (intexpression As Integer)"
-msgstr "Eof (EgészSzám As Integer)"
-
-#. 3@`_
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. #nsX
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
-#. R^im
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. .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 "<emph>EgészSzám:</emph> Bármilyen integer (egész szám) kifejezés, amely megadja egy megnyitott fájl számát."
-
-#. *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 "Az EOF használatával kiküszöbölheti a fájl vége utáni adatbeviteli hibákat. Ha Input vagy Get utasítással olvas egy fájlból, akkor a fájlmutató a beolvasott bájtok számával lép előrébb. A fájl végének elérésekor az EOF \"True\" (-1) értéket ad vissza."
-
-#. @B/d
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. p+0+
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"A szöveg első sora\""
-
-#. ILr{
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Másik szövegsor\""
-
-#. A{~`
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Strings"
-msgstr "Karakterláncok"
-
-#. 87]|
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"hd_id3156153\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Karakterláncok\">Karakterláncok</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 "Az alábbi függvények és utasítások karakterláncokat értékelnek és adnak vissza."
-
-#. 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 "Karakterlánc segítségével szerkesztheti a szöveget a $[officename] Basic-programokban."
-
-#. r7k!
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Not operátor [futásidejű]"
-
-#. aJ=W
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Not operátor (logikai)</bookmark_value>"
-
-#. f1~+
-#: 03060400.xhp
-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/03060400.xhp\" name=\"Not operátor [futásidejű]\">Not operátor [futásidejű]</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 "Negálja a kifejezést a bitek invertálásával."
-
-#. bq^;
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. -kYc
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3150360\n"
-"4\n"
-"help.text"
-msgid "Result = Not Expression"
-msgstr "Eredmény = Not Kifejezés"
-
-#. 9?Q^
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. `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 "<emph>Eredmény:</emph> Bármilyen numerikus változó, amely a negálás eredményét tárolja."
-
-#. *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>Kifejezés:</emph> Bármilyen negálni kívánt kifejezés."
-
-#. :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 "Egy logikai kifejezés negálásánál a True (igaz) érték False (hamis) értékké változik, a False (hamis) érték pedig True (igaz) értékké változik."
-
-#. 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 "Bitenkénti negálásnál az összes bit invertálódik."
-
-#. QNQ0
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. jF!c
-#: 03060400.xhp
-#, fuzzy
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145749\n"
-"15\n"
-"help.text"
-msgid "vOut = Not vA ' Returns -11"
-msgstr "vOut = Not vA REM -11-et ad vissza"
-
-#. +q^4
-#: 03060400.xhp
-#, fuzzy
-msgctxt ""
-"03060400.xhp\n"
-"par_id3148645\n"
-"16\n"
-"help.text"
-msgid "vOut = Not(vC > vD) ' Returns -1"
-msgstr "vOut = Not(vC > vD) REM -1-et ad vissza"
-
-#. cpAb
-#: 03060400.xhp
-#, fuzzy
-msgctxt ""
-"03060400.xhp\n"
-"par_id3156441\n"
-"17\n"
-"help.text"
-msgid "vOut = Not(vB > vA) ' Returns -1"
-msgstr "vOut = Not(vB > vA) REM -1-et ad vissza"
-
-#. jljT
-#: 03060400.xhp
-#, fuzzy
-msgctxt ""
-"03060400.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "vOut = Not(vA > vB) ' Returns 0"
-msgstr "vOut = Not(vA > vB) REM 0-t ad vissza"
-
-#. yTdB
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sub Statement [Runtime]"
-msgstr "Sub utasítás [futásidejű]"
-
-#. m:l.
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"bm_id3147226\n"
-"help.text"
-msgid "<bookmark_value>Sub statement</bookmark_value>"
-msgstr "<bookmark_value>Sub utasítás</bookmark_value>"
-
-#. Lb7#
-#: 03090409.xhp
-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/03090409.xhp\" name=\"Sub utasítás [futásidejű]\">Sub utasítás [futásidejű]</link>"
-
-#. JoyK
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3153311\n"
-"2\n"
-"help.text"
-msgid "Defines a subroutine."
-msgstr "Definiál egy szubrutint."
-
-#. fHo^
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3149416\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 1w~c
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3147530\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr "utasításblokk"
-
-#. u(Lq
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. riZ8
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3150792\n"
-"10\n"
-"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine ."
-msgstr "<emph>Név:</emph> A szubrutin neve."
-
-#. 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 "<emph> Változónév: </emph>A szubrutinnak átadandó paraméter."
-
-#. ;kA(
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3154908\n"
-"12\n"
-"help.text"
-msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr "<emph>Típus:</emph> Típusdeklarációs kulcsszó."
-
-#. 9ODJ
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. C[M!
-#: 03090409.xhp
-#, fuzzy
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr "REM utasítások"
-
-#. U*3`
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. TXvG
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
-msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Szintaxis\">Szintaxis</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 "Ez a szakasz a $[officename] Basic szintaxisának alapelemeit mutatja be. Részletes leírást a $[officename] Basic-útmutatóban találhat, amely külön áll rendelkezésre."
-
-#. `*=K
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exit Statement [Runtime]"
-msgstr "Exit utasítás [futásidejű]"
-
-#. xAc7
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"bm_id3152924\n"
-"help.text"
-msgid "<bookmark_value>Exit statement</bookmark_value>"
-msgstr "<bookmark_value>Exit utasítás</bookmark_value>"
-
-#. F-9N
-#: 03090412.xhp
-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/03090412.xhp\" name=\"Exit utasítás [futásidejű]\">Exit utasítás [futásidejű]</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 "Kilép egy <emph>Do...Loop</emph>, <emph>For...Next</emph> ciklusból, egy függvényből vagy egy szubrutinból."
-
-#. #wuZ
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. mW@i
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3159157\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr "lásd Paraméterek"
-
-#. 0GXS
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3148943\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. #\cL
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3154760\n"
-"6\n"
-"help.text"
-msgid "<emph>Exit Do</emph>"
-msgstr "<emph>Exit Do</emph>"
-
-#. {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 "Csak a <emph>Do...Loop</emph> utasításon belül használható a ciklusból történő kilépésre. A programvégrehajtás a Loop utasítást követő utasítással folytatódik. Ha a <emph>Do...Loop</emph> utasítások be vannak ágyazva, akkor a vezérlés átadódik a következő magasabb szinten lévő ciklusnak."
-
-#. }kWU
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3150398\n"
-"8\n"
-"help.text"
-msgid "<emph>Exit For</emph>"
-msgstr "<emph>Exit For</emph>"
-
-#. 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 "Csak a <emph>For...Next</emph> cikluson belül használható a ciklusból történő kilépésre. A programvégrehajtás a <emph>Next</emph> utasítást követő első utasítással folytatódik. Beágyazott utasításokban a vezérlés átadódik a következő magasabb szinten lévő ciklusnak."
-
-#. $aB,
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3147229\n"
-"10\n"
-"help.text"
-msgid "<emph>Exit Function</emph>"
-msgstr "<emph>Exit Function</emph>"
-
-#. 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 "Azonnal kilép a <emph>Function</emph> eljárásból. A programvégrehajtás a <emph>Function</emph> hívást követő utasítással folytatódik."
-
-#. @O(k
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3155132\n"
-"12\n"
-"help.text"
-msgid "<emph>Exit Sub</emph>"
-msgstr "<emph>Exit Sub</emph>"
-
-#. 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 "Azonnal kilép a szubrutinból. A programvégrehajtás a <emph>Sub</emph> hívást követő utasítással folytatódik."
-
-#. 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 "Az Exit utasítás nem egy struktúra végét határozza meg, és nem szabad az End utasítással összekeverni."
-
-#. ^3GV
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. =8.K
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153158\n"
-"20\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 to 10 REM Tömb feltöltése tesztadatokkal"
-
-#. cuSu
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153764\n"
-"31\n"
-"help.text"
-msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr "REM A LinSearch TextArray:sList()-et keres egy TextEntry számára:"
-
-#. g:=o
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148995\n"
-"32\n"
-"help.text"
-msgid "' Returns the index of the entry or 0 (Null)"
-msgstr "REM Visszaadja a bejegyzés indexét, vagy a 0 (Null) értéket"
-
-#. .(J;
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM sItem megtalálva"
-
-#. F(Y.
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Put Statement [Runtime]"
-msgstr "Put utasítás [futásidejű]"
-
-#. g4XU
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"bm_id3150360\n"
-"help.text"
-msgid "<bookmark_value>Put statement</bookmark_value>"
-msgstr "<bookmark_value>Put utasítás</bookmark_value>"
-
-#. O`5K
-#: 03020204.xhp
-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/03020204.xhp\" name=\"Put utasítás [futásidejű]\">Put utasítás [futásidejű]</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 "Beír egy rekordot egy relatív fájlba, vagy egy bájtsorozatot egy bináris fájlba."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get utasítás </item></link>"
-
-#. NM0O
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. P3l@
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155132\n"
-"5\n"
-"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr "Put [#] Fájlszám As Integer, [Pozíció], Változó"
-
-#. PS/H
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám:</emph> Bármilyen integer (egész szám) kifejezés, amely meghatározza azt a fájlt, amelybe írni szeretne."
-
-#. 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 "<emph>Pozíció: </emph>Relatív fájlok (véletlen elérésű fájlok) esetén azon rekord száma, amelyet írni szeretne."
-
-#. 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 "Bináris fájlok esetén (Binary elérés) a fájl azon bájtjának helye, amelytől az írást szeretné kezdeni."
-
-#. 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 "<emph>Változó:</emph> A változó neve, amelyet a fájlba szeretne írni."
-
-#. ?|_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 "Megjegyzés a relatív fájlokhoz: Ha a változó tartalma nem felel meg a rekord hosszának, amely meg van adva az <emph>Open</emph> utasítás <emph>Len</emph> paraméterében, akkor az újonnan írt rekord vége és a következő rekord közötti terület kitöltésre kerül a fájl meglévő adataival, amelybe ír."
-
-#. 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 "Megjegyzés a bináris fájlokhoz: A változó tartalma a megadott pozícióba íródik, és a fájlmutató közvetlenül az utolsó bájt utáni helyre fog mutatni. Nem marad terület a rekordok között."
-
-#. I?3@
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. +6s3
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154729\n"
-"16\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant type"
-msgstr "Dim sText As Variant REM Variant típusúnak kell lennie"
-
-#. 2*Oz
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"22\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr "Seek #iNumber,1 REM Az írás kezdésének pozíciója"
-
-#. uY,`
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153711\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Ez a szöveg első sora\" REM Sor kitöltése szöveggel"
-
-#. 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 "Put #iNumber,, \"Ez a szöveg második sora\""
-
-#. /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 "Put #iNumber,, \"Ez a szöveg harmadik sora\""
-
-#. h}3w
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Put #iNumber,,\"Ez egy új szöveg\""
-
-#. 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 "Put #iNumber,20,\"Ez a szöveg a 20. rekordban\""
-
-#. +mnY
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileExists Function [Runtime]"
-msgstr "FileExists függvény [futásidejű]"
-
-#. Lj0M
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"bm_id3148946\n"
-"help.text"
-msgid "<bookmark_value>FileExists function</bookmark_value>"
-msgstr "<bookmark_value>FileExists függvény</bookmark_value>"
-
-#. eXk(
-#: 03020415.xhp
-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/03020415.xhp\" name=\"FileExists függvény [futásidejű]\">FileExists függvény [futásidejű]</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 "Meghatározza, hogy egy fájl vagy könyvtár elérhető-e az adatmédiumon."
-
-#. BY[,
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. \flG
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "FileExists(FileName As String | DirectoryName As String)"
-msgstr "FileExists(Fájlnév As String | Könyvtárnév As String)"
-
-#. J`nQ
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3154126\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. C#o)
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool (logikai)"
-
-#. .L1G
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Fájlnév | Könyvtárnév: Egyértelmű fájlspecifikációt tartalmazó string (karakterlánc) kifejezés. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. Mm7J
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. qali
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr "Programkönyvtárak és modulok szervezése"
-
-#. 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 "<bookmark_value>programkönyvtárak;szervezés</bookmark_value><bookmark_value>modulok;szervezés</bookmark_value><bookmark_value>másolás;modulok</bookmark_value><bookmark_value>programkönyvtárak hozzáadása</bookmark_value><bookmark_value>programkönyvtárak/modulok/párbeszédablakok törlése</bookmark_value><bookmark_value>párbeszédablakok;szervezés</bookmark_value><bookmark_value>áthelyezés;modulok</bookmark_value><bookmark_value>szervezés;modulok/programkönyvtárak</bookmark_value><bookmark_value>modulok és párbeszédablakok átnevezése</bookmark_value>"
-
-#. 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 "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Programkönyvtárak és modulok szervezése</link></variable>"
-
-#. ]aYp
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
-"help.text"
-msgid "Organizing Libraries"
-msgstr "Programkönyvtárak szervezése"
-
-#. OuP%
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
-"help.text"
-msgid "Creating a New Library"
-msgstr "Új programkönyvtár létrehozása"
-
-#. 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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. PL?O
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153726\n"
-"8\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Kattintson a <emph>Programkönyvtárak</emph> lapra."
-
-#. (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 "A <emph>Hely</emph> listából válassza ki, hogy hová szeretné csatolni a programkönyvtárat. Ha a <emph>%PRODUCTNAME Makrók és párbeszédablakok</emph> elemet választja ki, akkor a programkönyvtár a $[officename] alkalmazáshoz fog tartozni, és az összes dokumentumban elérhető lesz. Ha egy dokumentumot választ ki, akkor a programkönyvtár ehhez a dokumentumhoz lesz csatolva, és csak innen érhető el."
-
-#. ;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 "Kattintson az <emph>Új</emph> lehetőségre, és adja meg a nevet az új programkönyvtár létrehozásához."
-
-#. 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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. %|vY
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Kattintson a <emph>Programkönyvtárak</emph> lapra."
-
-#. DEpF
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3145640\n"
-"51\n"
-"help.text"
-msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
-msgstr "A <emph>Hely</emph> listából válassza ki, hogy hová szeretné csatolni a programkönyvtárat. Ha a <emph>%PRODUCTNAME Makrók és párbeszédablakok</emph> elemet választja ki, akkor a programkönyvtár a $[officename] alkalmazáshoz fog tartozni, és az összes dokumentumban elérhető lesz. Ha egy dokumentumot választ ki, akkor a programkönyvtár ehhez a dokumentumhoz lesz csatolva, és csak innen érhető el."
-
-#. Q1RZ
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3154253\n"
-"52\n"
-"help.text"
-msgid "Click <emph>Import...</emph> and select an external library to import."
-msgstr "Kattintson a <emph>Hozzáfűzés</emph> lehetőségre, és válasszon ki egy külső programkönyvtárat, amelyet hozzá akar fűzni."
-
-#. [PfH
-#: 01030400.xhp
-#, fuzzy
-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 "A <emph>Könyvtárak hozzáfűzése</emph> párbeszédablakban válassza ki az összes hozzáfűzendő könyvtárat. A párbeszédablak megjeleníti a kijelölt fájlban lévő összes programkönyvtárat."
-
-#. `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 "Ha a programkönyvtárat hivatkozásként kívánja beszúrni, akkor csak a <emph>Beszúrás hivatkozásként (nem átírható)</emph> mezőt jelölje be. A csak olvasható könyvtárak teljes funkcionalitással rendelkeznek, de nem módosíthatók a Basic IDE szerkesztőjében."
-
-#. 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 "Jelölje be a <emph>Létező könyvtárak cseréje</emph> mezőt, ha azt akarja, hogy az ugyanolyan nevű meglévő programkönyvtárak felülírásra kerüljenek."
-
-#. K-H^
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147004\n"
-"56\n"
-"help.text"
-msgid "Click <emph>OK</emph> to import the library."
-msgstr "A könyvtár hozzáfűzéséhez kattintson az <emph>OK</emph> gombra."
-
-#. }9kR
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3159099\n"
-"17\n"
-"help.text"
-msgid "Export a Library"
-msgstr ""
-
-#. Y02S
-#: 01030400.xhp
-#, fuzzy
-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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. U=g}
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147006\n"
-"71\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Kattintson a <emph>Programkönyvtárak</emph> lapra."
-
-#. $$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
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147010\n"
-"75\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Kattintson az <emph>Eltávolítás</emph> lehetőségre."
-
-#. 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
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147012\n"
-"77\n"
-"help.text"
-msgid "Click <emph>Save</emph> to export the library."
-msgstr "A könyvtár hozzáfűzéséhez kattintson az <emph>OK</emph> gombra."
-
-#. ,,=|
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3159100\n"
-"17\n"
-"help.text"
-msgid "Deleting a Library"
-msgstr "Programkönyvtár törlése"
-
-#. +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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. D08Z
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146808\n"
-"57\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Kattintson a <emph>Programkönyvtárak</emph> lapra."
-
-#. }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 "Válassza ki a törlendő programkönyvtárat a listából."
-
-#. TA!q
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150361\n"
-"20\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Kattintson a <emph>Törlés</emph> gombra."
-
-#. ,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 "A programkönyvtár törlése véglegesen töröl minden meglévő modult a megfelelő eljárásokkal és függvényekkel együtt."
-
-#. 3L1.
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
-"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr "A „Standard” nevű alapértelmezett programkönyvtárat nem törölheti."
-
-#. 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 "Ha hivatkozásként beszúrt programkönyvtárat töröl, akkor csak a hivatkozás kerül törlésre, maga a programkönyvtár nem."
-
-#. iN[6
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
-"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr "Modulok és párbeszédablakok szervezése"
-
-#. 8?ao
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
-"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr "Új modul vagy párbeszédablak létrehozása"
-
-#. 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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. .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 "Kattintson a <emph>Modulok</emph> lapra vagy a <emph>Párbeszédablakok</emph> lapra."
-
-#. 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 "Válassza ki a programkönyvtárat, amelybe a modul beszúrásra kerül, és kattintson az <emph>Új</emph> gombra."
-
-#. 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 "Adja meg a modul vagy párbeszédablak nevét, és kattintson az <emph>OK</emph> gombra."
-
-#. l~Nj
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
-"help.text"
-msgid "Renaming a Module or Dialog"
-msgstr "Modulok vagy párbeszédablakok átnevezése"
-
-#. 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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. 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 "Az átnevezendő modulra kattintson kétszer, szünetet tartva a kattintások között. Írja be az új nevet."
-
-#. (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 "Basic IDE fejlesztői környezetben kattintson jobb egérgombbal a modul vagy a párbeszédablak nevére a képernyő alján található füleken, és írja be az új nevet."
-
-#. 8:An
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
-"help.text"
-msgid "Press Enter to confirm your changes."
-msgstr "Nyomja meg az Entert a változtatások jóváhagyására."
-
-#. Bp+R
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
-"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr "Modulok vagy párbeszédablakok törlése"
-
-#. 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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. 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 "Kattintson a <emph>Modulok</emph> lapra vagy a <emph>Párbeszédablakok</emph> lapra."
-
-#. 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 "A listából válassza ki a törölni kívánt modult. Ha szükséges, az albejegyzések előhívásához kattintson duplán a bejegyzésre."
-
-#. FcC%
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Kattintson a <emph>Törlés</emph> gombra."
-
-#. 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 "Egy modul törlése végleg törli a létező eljárásokat és függvényeket a modulban."
-
-#. 0@-2
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
-"help.text"
-msgid "Organizing Projects among Documents or Templates"
-msgstr "Projektek szervezése dokumentumok és sablonok között"
-
-#. ~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 "Modulok áthelyezése vagy másolása a dokumentumok, sablonok és az alkalmazás között."
-
-#. 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 "Nyisson meg minden olyan dokumentumot vagy sablont, amelyek között áthelyezni vagy másolni szeretné a modulokat és párbeszédablakokat."
-
-#. @]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 "Válassza az <emph>Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</emph> menüparancsot, és kattintson a <emph>Szervező</emph> gombra, vagy kattintson a <emph>Modul kiválasztása</emph> ikonra a Basic IDE szerkesztőjében a <emph>Makrószervező</emph> párbeszédablak megnyitásához."
-
-#. (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 "Egy modul vagy párbeszédablak másik dokumentumba történő áthelyezéséhez kattintson a lista megfelelő objektumára, és húzza át a kívánt helyre. Húzás közben egy vízszintes vonal jelzi az aktuális objektum célpozícióját. Ha az objektumot áthelyezés helyett át akarja másolni, akkor tartsa lenyomva az <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt."
-
-#. eMk|
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"tit\n"
-"help.text"
-msgid "CurDir Function [Runtime]"
-msgstr "CurDir függvény [futásidejű]"
-
-#. uJw/
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"bm_id3153126\n"
-"help.text"
-msgid "<bookmark_value>CurDir function</bookmark_value>"
-msgstr "<bookmark_value>CurDir függvény</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 "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir függvény [futásidejű]</link>"
-
-#. 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 "Visszaad egy olyan Variant típusú karakterláncot , amely a megadott meghajtó aktuális elérési útját mutatja meg."
-
-#. $iX6
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. I:!1
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3153381\n"
-"4\n"
-"help.text"
-msgid "CurDir [(Text As String)]"
-msgstr "CurDir [(Szöveg As String)]"
-
-#. Ej$E
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. OG7l
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. R+,b
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> Egy létező meghajtót megadó tetszőleges string (karakterlánc) kifejezés (az első merevlemez első partíciója például \"C\")."
-
-#. 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 "Ha nincs meghajtó megadva, vagy a meghajtó egy nulla hosszúságú string (karakterlánc) (\"\"), akkor a CurDir az aktuális meghajtó elérési útját adja vissza. A $[officename] Basic hibával tér vissza, ha a meghajtó leírása helytelen, a meghajtó nem létezik, vagy a meghajtó betűjele a CONFIG.SYS fájlban a Lastdrive utasítással megadott betű után van."
-
-#. S?AJ
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "This function is not case-sensitive."
-msgstr "Ez a függvény kis- és nagybetűk között nem tesz különbséget."
-
-#. 8aCU
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3155411\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. nbp_
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Log Function [Runtime]"
-msgstr "Log függvény [futásidejű]"
-
-#. 4z--
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Log function</bookmark_value>"
-msgstr "<bookmark_value>Log függvény</bookmark_value>"
-
-#. O!ZU
-#: 03080202.xhp
-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/03080202.xhp\" name=\"Log függvény [futásidejű]\">Log függvény [futásidejű]</link>"
-
-#. gJAD
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145066\n"
-"2\n"
-"help.text"
-msgid "Returns the natural logarithm of a number."
-msgstr "Visszaadja egy szám természetes alapú logaritmusát."
-
-#. V9I-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. |Ki8
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3154760\n"
-"4\n"
-"help.text"
-msgid "Log (Number)"
-msgstr "Log (Szám)"
-
-#. MW9A
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3149457\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. rx$}
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. @}Zb
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. [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 "<emph>Szám:</emph> Bármilyen numerikus kifejezés, amelynek a természetes alapú logaritmusát szeretné kiszámolni."
-
-#. [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 "A természetes alapú logaritmus alapja az e. Az e egy állandó, amelynek értéke körülbelül 2.718282."
-
-#. \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 "Bármilyen szám (x) bármilyen alapú (n) logaritmusát ki lehet számolni az x szám természetes alapú logaritmusának n szám természetes alapú logaritmusával való osztásával:"
-
-#. MXFO
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145420\n"
-"11\n"
-"help.text"
-msgid "Log n(x) = Log(x) / Log(n)"
-msgstr "Log n(x) = Log(x) / Log(n)"
-
-#. LXj3
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3155131\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Szorzás logaritmussal\""
-
-#. u3Ax
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr "IIf utasítás [futásidejű]"
-
-#. Z`dN
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "<bookmark_value>IIf utasítás</bookmark_value>"
-
-#. G.]I
-#: 03090103.xhp
-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/03090103.xhp\" name=\"IIf utasítás [futásidejű]\">IIf utasítás [futásidejű]</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 "Visszaadja két lehetséges függvényeredmény egyikét, az értékelt kifejezés logikai értékétől függően."
-
-#. |Msl
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. wDDm
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr "IIf (Kifejezés, IgazKifejezés, HamisKifejezés)"
-
-#. ]Vpm
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Kifejezés:</emph> A kiértékelni kívánt kifejezés. Ha a kifejezés értéke <emph>Igaz</emph>, akkor a függvény az IgazKifejezés eredményét adja vissza, ellenkező esetben a HamisKifejezés eredményét."
-
-#. 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 "<emph>IgazKifejezés, HamisKifejezés:</emph> Bármilyen kifejezések, amelyek egyikét a függvény eredményeként kapja vissza, a logikai kiértékeléstől függően."
-
-#. eKDx
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"tit\n"
-"help.text"
-msgid "Switch Function [Runtime]"
-msgstr "Switch függvény [futásidejű]"
-
-#. .3@(
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"bm_id3148554\n"
-"help.text"
-msgid "<bookmark_value>Switch function</bookmark_value>"
-msgstr "<bookmark_value>Switch függvény</bookmark_value>"
-
-#. 3=88
-#: 03090410.xhp
-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/03090410.xhp\" name=\"Switch függvény [futásidejű]\">Switch függvény [futásidejű]</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 "Kiértékeli az egy kifejezésből és az azt követő értékből álló argumentumok listáját. A Switch függvény visszaadja a függvény által kapott kifejezéshez rendelt értéket."
-
-#. R;j,
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Switch (Kifejezés1, Érték1[, Kifejezés2, Érték2[..., Kifejezés_n, Érték_n]])"
-
-#. :E+8
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3149119\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "A <emph>Switch</emph> függvény balról jobbra értékeli ki a kifejezéseket, és visszaadja a függvénykifejezéshez rendelt értéket. Ha a kifejezés és érték nem párként van megadva, akkor futásidejű hiba történik."
-
-#. 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>Kifejezés:</emph> A kiértékelni kívánt kifejezés."
-
-#. 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 "<emph>Érték:</emph> Az az érték, amelyet a kifejezés teljesülése esetén szeretné visszaadni."
-
-#. 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 "A következő példában a <emph>Switch</emph> függvény hozzárendeli a megfelelő nemet a függvény által kapott névhez:"
-
-#. #JHo
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. XFem
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr "sGender = GetGenderIndex( \"John\" )"
-
-#. 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 "GetGenderIndex = Switch(sName = \"Jane\", \"nő\", sName = \"John\", \"férfi\")"
-
-#. xWtf
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"tit\n"
-"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "QBColor függvény [futásidejű]"
-
-#. _;[p
-#: 03010304.xhp
-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/03010304.xhp\" name=\"QBColor függvény [futásidejű]\">QBColor függvény [futásidejű]</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 "Visszaadja egy régebbi, MS-DOS-alapú programozási nyelven keresztül színértékként átadott szín <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link>-színkódját."
-
-#. fsHX
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. R;\S
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
-"4\n"
-"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr "QBColor (SzínSzáma As Integer)"
-
-#. )m7t
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3145172\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. r~G\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. KbV1
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. \;{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 "<emph>SzínSzáma</emph>: Bármilyen integer (egész szám) kifejezés, amely megadja egy régebbi, MS-DOS-alapú programozási rendszerből származó szín értéke."
-
-#. 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 "A <emph>SzínSzáma</emph> paraméterhez az alábbi értékek rendelhetők:"
-
-#. =I;?
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "0 : Black"
-msgstr "0 : Fekete"
-
-#. },S\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146975\n"
-"11\n"
-"help.text"
-msgid "1 : Blue"
-msgstr "1 : Kék"
-
-#. GP_C
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3151116\n"
-"12\n"
-"help.text"
-msgid "2 : Green"
-msgstr "2 : Zöld"
-
-#. Mg{r
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3155412\n"
-"13\n"
-"help.text"
-msgid "3 : Cyan"
-msgstr "3 : Ciánkék"
-
-#. 7]ZD
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3155306\n"
-"14\n"
-"help.text"
-msgid "4 : Red"
-msgstr "4 : Vörös"
-
-#. HlQZ
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3153364\n"
-"15\n"
-"help.text"
-msgid "5 : Magenta"
-msgstr "5 : Bíbor"
-
-#. :${o
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146119\n"
-"16\n"
-"help.text"
-msgid "6 : Yellow"
-msgstr "6 : Sárga"
-
-#. 9KFI
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154730\n"
-"17\n"
-"help.text"
-msgid "7 : White"
-msgstr "7 : Fehér"
-
-#. E4jJ
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3153877\n"
-"18\n"
-"help.text"
-msgid "8 : Gray"
-msgstr "8 : Szürke"
-
-#. 5#s\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3147124\n"
-"19\n"
-"help.text"
-msgid "9 : Light Blue"
-msgstr "9 : Világoskék"
-
-#. K.l,
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3145646\n"
-"20\n"
-"help.text"
-msgid "10 : Light Green"
-msgstr "10 : Világoszöld"
-
-#. bR*(
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3149958\n"
-"21\n"
-"help.text"
-msgid "11 : Light Cyan"
-msgstr "11 : Világos ciánkék"
-
-#. Z.3/
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154943\n"
-"22\n"
-"help.text"
-msgid "12 : Light Red"
-msgstr "12 : Világosvörös"
-
-#. !{[D
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150715\n"
-"23\n"
-"help.text"
-msgid "13 : Light Magenta"
-msgstr "13 : Halvány bíborvörös"
-
-#. bdzd
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146970\n"
-"24\n"
-"help.text"
-msgid "14 : Light Yellow"
-msgstr "14 : Világossárga"
-
-#. p`D#
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150750\n"
-"25\n"
-"help.text"
-msgid "15 : Bright White"
-msgstr "15 : Fényes fehér"
-
-#. {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 "Ez a függvény konvertálja a régebbi, MS-DOS-alapú BASIC-alkalmazások által használt színkódokat. A függvény visszaad egy long integer (hosszú egész szám) értéket, amely a $[officename] IDE termékben használható szín."
-
-#. |597
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"27\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. /*$1
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3149566\n"
-"33\n"
-"help.text"
-msgid "MsgBox stext,0,\"Color \" & iColor"
-msgstr "MsgBox stext,0,\"Szín:\" & iColor"
-
-#. MCTP
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"tit\n"
-"help.text"
-msgid "WeekDay Function [Runtime]"
-msgstr "WeekDay függvény [futásidejű]"
-
-#. U)N@
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>WeekDay function</bookmark_value>"
-msgstr "<bookmark_value>WeekDay függvény</bookmark_value>"
-
-#. \[1l
-#: 03030105.xhp
-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/03030105.xhp\" name=\"WeekDay függvény [futásidejű]\">WeekDay függvény [futásidejű]</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 "Visszaadja a DateSerial vagy DateValue függvény által meghatározott soros dátumértéknek megfelelő hétköznap számát."
-
-#. EGfU
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. %Zp{
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3149655\n"
-"4\n"
-"help.text"
-msgid "WeekDay (Number)"
-msgstr "WeekDay (Szám)"
-
-#. ?1`$
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3148799\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. {F[)
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. f?+Z
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. +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 "<emph>Szám:</emph> Integer (egész szám) kifejezés, amely a hét egy napjának(1-7) kiszámítására használt soros dátumértéket tartalmazza."
-
-#. 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 "Az alábbi példa meghatározza egy dátum megadásánál a hétköznapot a WeekDay függvény segítségével."
-
-#. .g5#
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. w+Y(
-#: 03030105.xhp
-#, fuzzy
-msgctxt ""
-"03030105.xhp\n"
-"par_id3148576\n"
-"13\n"
-"help.text"
-msgid "' Return And display the day of the week"
-msgstr "REM Visszaadja és megjeleníti a hétköznapot"
-
-#. SX7#
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3151117\n"
-"16\n"
-"help.text"
-msgid "sDay=\"Sunday\""
-msgstr "sDay=\"Vasárnap\""
-
-#. :?Uh
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153952\n"
-"18\n"
-"help.text"
-msgid "sDay=\"Monday\""
-msgstr "sDay=\"Hétfő\""
-
-#. l[k*
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153157\n"
-"20\n"
-"help.text"
-msgid "sDay=\"Tuesday\""
-msgstr "sDay=\"Kedd\""
-
-#. +.CF
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154942\n"
-"22\n"
-"help.text"
-msgid "sDay=\"Wednesday\""
-msgstr "sDay=\"Szerda\""
-
-#. (uJb
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3155416\n"
-"24\n"
-"help.text"
-msgid "sDay=\"Thursday\""
-msgstr "sDay=\"Csütörtök\""
-
-#. WZ3:
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154015\n"
-"26\n"
-"help.text"
-msgid "sDay=\"Friday\""
-msgstr "sDay=\"Péntek\""
-
-#. ^.r6
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153707\n"
-"28\n"
-"help.text"
-msgid "sDay=\"Saturday\""
-msgstr "sDay=\"Szombat\""
-
-#. 3:~f
-#: 03030105.xhp
-#, fuzzy
-msgctxt ""
-"03030105.xhp\n"
-"par_id3148993\n"
-"30\n"
-"help.text"
-msgid "MsgBox \"\" + sDay,64,\"Today Is\""
-msgstr "msgbox \"\" + sDay,64,\"A mai nap\""
-
-#. o7kz
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Environ Function [Runtime]"
-msgstr "Environ függvény [futásidejű]"
-
-#. `6?t
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"bm_id3155364\n"
-"help.text"
-msgid "<bookmark_value>Environ function</bookmark_value>"
-msgstr "<bookmark_value>Environ függvény</bookmark_value>"
-
-#. `CPU
-#: 03130800.xhp
-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/03130800.xhp\" name=\"Environ függvény [futásidejű]\">Environ függvény [futásidejű]</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 "Visszaadja a környezeti változó értékét string (karakterlánc) kifejezésként. A környezeti változó az operációs rendszer típusától függ."
-
-#. {plO
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3150670\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. L_au
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3159176\n"
-"5\n"
-"help.text"
-msgid "Environ (Environment As String)"
-msgstr "Environ (Környezet As String)"
-
-#. x(Zn
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3159157\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. lPJF
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3148473\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. $*kl
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3145609\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Környezet: Környezeti változó, amelynek vissza akarja kapni az értékét."
-
-#. ^FcI
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. ,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,\"Az ideiglenes fájlok könyvtára:\""
-
-#. *27t
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr "Fájlbemeneti/-kimeneti függvények"
-
-#. 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 "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"Fájlbemeneti/-kimeneti függvények\">Fájlbemeneti/-kimeneti függvények</link>"
-
-#. W)3#
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error Function [Runtime]"
-msgstr "Error függvény [futásidejű]"
-
-#. J`3j
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Error function</bookmark_value>"
-msgstr "<bookmark_value>Error függvény</bookmark_value>"
-
-#. uUil
-#: 03050300.xhp
-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/03050300.xhp\" name=\"Error függvény [futásidejű]\">Error függvény [futásidejű]</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 "Visszaadja a megadott hibakódhoz tartozó hibaüzenetet."
-
-#. P3U*
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. Id#@
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "Error (Expression)"
-msgstr "Error (Kifejezés)"
-
-#. X]y/
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. *]@p
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. 8)sH
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. ?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 "<emph>Kifejezés:</emph> Bármilyen numerikus kifejezés, amely tartalmazza a visszaadni kívánt hibaüzenet."
-
-#. 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 "Ha nincs paraméter megadva, akkor az Error függvény a program futtatása közben fellépő legutolsó hiba üzenetét adja vissza."
-
-#. Xs$]
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"tit\n"
-"help.text"
-msgid "RmDir Statement [Runtime]"
-msgstr "RmDir utasítás [futásidejű]"
-
-#. m{V6
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "<bookmark_value>RmDir utasítás</bookmark_value>"
-
-#. 4r^E
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir utasítás [futásidejű]\">RmDir utasítás [futásidejű]</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 "Töröl egy létező könyvtárat egy adatmédiumról."
-
-#. [*b!
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 1Fh1
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "RmDir Text As String"
-msgstr "RmDir Szöveg As String"
-
-#. !jBm
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely megadja a törölni kívánt könyvtár elérési útját és nevét. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-
-#. )_((
-#: 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 "Ha az elérési út nincs megadva, akkor az <emph>RmDir utasítás</emph> az aktuális elérési úton keresi a törölni kívánt könyvtárat. Ha itt nem található, akkor egy hibaüzenet jelenik meg."
-
-#. J0+e
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 5unp
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loc Function [Runtime]"
-msgstr "Loc függvény [futásidejű]"
-
-#. (LT+
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"bm_id3148663\n"
-"help.text"
-msgid "<bookmark_value>Loc function</bookmark_value>"
-msgstr "<bookmark_value>Loc függvény</bookmark_value>"
-
-#. Ih^f
-#: 03020302.xhp
-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/03020302.xhp\" name=\"Loc függvény [futásidejű]\">Loc függvény [futásidejű]</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 "Egy megnyitott fájlban az aktuális pozíciót adja vissza."
-
-#. Y(_f
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. dJiE
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3150768\n"
-"4\n"
-"help.text"
-msgid "Loc(FileNumber)"
-msgstr "Loc (Fájlszám)"
-
-#. 9=h;
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3150440\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. ;o;.
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. nJ4!
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám:</emph> Bármilyen numerikus kifejezés, amely tartalmazza a megfelelő fájl Open utasításában megadott fájlszámát."
-
-#. 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 "Ha a Loc függvényt egy véletlen elérésű fájl megnyitására használja, akkor a legutoljára írt, vagy olvasott rekord számát adja vissza."
-
-#. 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 "Szekvenciális fájl esetén a Loc függvény a fájlban levő pozíciót adja meg, 128-cal osztva. Bináris fájloknál a legutoljára olvasott vagy írt bájt pozícióját adja vissza."
-
-#. :+cT
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr "DefErr utasítás [futásidejű]"
-
-#. )$\i
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "<bookmark_value>DefErr utasítás</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 "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr utasítás [futásidejű]</link>"
-
-#. 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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a DefErr utasítás a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. CSP0
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. v-4v
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. 4^va
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. .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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. ^qP=
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. Xl4Y
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> Error (hiba)"
-
-#. nHhz
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. \#If
-#: 03101120.xhp
-#, fuzzy
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. 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 az eErr egy implicit error (hiba) változó"
-
-#. _{Fm
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Imp operátor [futásidejű]"
-
-#. -O$P
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Imp operátor (logikai)</bookmark_value>"
-
-#. |V{n
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp operátor [futásidejű]\">Imp operátor [futásidejű]</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 "Két kifejezés logikai implikációját számolja ki."
-
-#. 6%L+
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. _jB{
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Imp Expression2"
-msgstr "Eredmény = Kifejezés1 Imp Kifejezés2"
-
-#. [HH=
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3151212\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely az implikáció eredményét tárolja."
-
-#. +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 "<emph>Kifejezés1, Kifejezés2:</emph> Bármely kifejezések. amelyeket az Imp operátorral szeretné kiértékelni."
-
-#. ;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 "Ha logikai kifejezéseknél alkalmazza az Imp operátort, akkor False (hamis) értéket csak akkor kaphat, ha az első kifejezés True (igaz), a második kifejezés pedig False (hamis) volt."
-
-#. 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 "Ha bitkifejezéseknél használja az Imp operátort, az eredményből akkor lesz egy bit törölve, ha a megfelelő bit az első kifejezésben be volt állítva, míg a második kifejezésben törölve van."
-
-#. uqRM
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. %-Oe
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3145750\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Imp B > C ' returns -1"
-msgstr "vOut = A > B Imp B > C REM -1-et ad vissza"
-
-#. ud0,
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3156441\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Imp B > C ' returns -1"
-msgstr "vOut = B > A Imp B > C REM -1-et ad vissza"
-
-#. y7Sz
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3152596\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Imp B > D ' returns 0"
-msgstr "vOut = A > B Imp B > D REM 0-t ad vissza"
-
-#. z?Gq
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154942\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Imp B > A) ' returns -1"
-msgstr "vOut = (B > D Imp B > A) REM -1-et ad vissza"
-
-#. %7dJ
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154492\n"
-"19\n"
-"help.text"
-msgid "vOut = B Imp A ' returns -1"
-msgstr "vOut = B Imp A REM -1-et ad vissza"
-
-#. KKSB
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "CVar függvény [futásidejű]"
-
-#. .qLY
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "<bookmark_value>CVar függvény</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 "<link href=\"text/sbasic/shared/03100070.xhp\">CVar függvény [futásidejű]</link>"
-
-#. ~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 "Egy karakterlánc-, vagy numerikus kifejezést egy variant kifejezéssé alakít."
-
-#. )X%G
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. D#-1
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVar(Expression)"
-msgstr "CVar (Kifejezés)"
-
-#. 5l]p
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. f^7Y
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr "Variant."
-
-#. ={M:
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. 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 "Kifejezés: Bármilyen karakterlánc-, vagy numerikus kifejezés, amelyet át szeretnénk alakítani."
-
-#. /H.Y
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Mod operátor [futásidejű]"
-
-#. h4uc
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>MOD operátor (matematikai)</bookmark_value>"
-
-#. tpFQ
-#: 03070600.xhp
-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/03070600.xhp\" name=\"Mod operátor [futásidejű]\">Mod operátor [futásidejű]</link>"
-
-#. Ck2L
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3148686\n"
-"2\n"
-"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Visszaadja egy osztás egész maradékát."
-
-#. R8@z
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. C].}
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Eredmény = Kifejezés1 MOD Kifejezés2"
-
-#. zWL7
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3149657\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. K?.L
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. PyKi
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely a MOD művelet eredményét tárolja."
-
-#. ^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>Kifejezés1, Kifejezés2:</emph> Az osztandó kifejezések."
-
-#. qK0e
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. DAVC
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3161832\n"
-"12\n"
-"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM 0-t ad vissza"
-
-#. W(B?
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3146922\n"
-"13\n"
-"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM 4-et ad vissza"
-
-#. kQ*W
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145273\n"
-"14\n"
-"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM 0-t ad vissza"
-
-#. P_$T
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3150011\n"
-"15\n"
-"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM 2-t ad vissza"
-
-#. X=fb
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3149483\n"
-"16\n"
-"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM 5-öt ad vissza"
-
-#. Q6s)
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3151114\n"
-"17\n"
-"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM 0.5-öt ad vissza"
-
-#. 2r$T
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr "FileCopy utasítás [futásidejű]"
-
-#. 1#A\
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"bm_id3154840\n"
-"help.text"
-msgid "<bookmark_value>FileCopy statement</bookmark_value>"
-msgstr "<bookmark_value>FileCopy utasítás</bookmark_value>"
-
-#. 3DfO
-#: 03020406.xhp
-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/03020406.xhp\" name=\"FileCopy utasítás [futásidejű]\">FileCopy utasítás [futásidejű]</link>"
-
-#. _*#T
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3149497\n"
-"2\n"
-"help.text"
-msgid "Copies a file."
-msgstr "Másol egy fájlt."
-
-#. Soc{
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3147443\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. :s_E
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3146957\n"
-"4\n"
-"help.text"
-msgid "FileCopy TextFrom As String, TextTo As String"
-msgstr "FileCopy Forrásszöveg As String, Célszöveg As String"
-
-#. $U-z
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3153825\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. )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 "<emph>Forrásszöveg:</emph> String (karakterlánc) kifejezés, amely megadja a másolni kívánt fájl nevét. A kifejezés tartalmazhat elhagyható elérésiút- és meghajtó-információkat. Igény szerint <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelöléssel\">URL-jelöléssel</link> is megadhatja az elérési utat."
-
-#. 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 "<emph>Célszöveg:</emph> String (karakterlánc) kifejezés, amely megadja, hová akarja másolni a forrásfájlt. A kifejezés tartalmazhatja a célmeghajtót, az elérési utat és a fájlnevet URL-jelölésben."
-
-#. 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 "A FileCopy utasítás csak olyan fájlok másolására használható, amelyek nincsenek megnyitva."
-
-#. =A3r
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. VlwV
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefInt Statement [Runtime]"
-msgstr "DefInt utasítás [futásidejű]"
-
-#. 7b8!
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefInt statement</bookmark_value>"
-msgstr "<bookmark_value>DefInt utasítás</bookmark_value>"
-
-#. NT~S
-#: 03101500.xhp
-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/03101500.xhp\" name=\"DefInt utasítás [futásidejű]\">DefInt utasítás [futásidejű]</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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. T[4C
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ?|oE
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. t7,x
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. Sn_3
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3154365\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. rN68
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3125863\n"
-"9\n"
-"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr "<emph>DefInt:</emph> Integer (egész szám)"
-
-#. !Ogk
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3154123\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. \Tl@
-#: 03101500.xhp
-#, fuzzy
-msgctxt ""
-"03101500.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types"
-msgstr "REM A változótípusok előtagos megadása"
-
-#. ?7^_
-#: 03101500.xhp
-#, fuzzy
-msgctxt ""
-"03101500.xhp\n"
-"par_id3153728\n"
-"22\n"
-"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
-msgstr "iCount=200 REM az iCount egy implicit integer (egész szám) változó"
-
-#. Gk7X
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Function [Runtime]"
-msgstr "Seek függvény [futásidejű]"
-
-#. %kbY
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"bm_id3154367\n"
-"help.text"
-msgid "<bookmark_value>Seek function</bookmark_value>"
-msgstr "<bookmark_value>Seek függvény </bookmark_value>"
-
-#. 7sT#
-#: 03020304.xhp
-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/03020304.xhp\" name=\"Seek függvény [futásidejű]\">Seek függvény [futásidejű]</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 "Az Open utasítással megnyitott fájlban visszaadja a következő írás vagy olvasás helyét."
-
-#. 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 "Véletlen elérésű fájlok esetén a Seek függvény a következő olvasandó rekord számát adja vissza."
-
-#. 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 "Minden más fájl esetén a függvény a következő elvégzendő művelet bájtpozícióját adja vissza."
-
-#. _\+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 "Lásd még: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-
-#. #=,+
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3152460\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. +0\/
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3145365\n"
-"7\n"
-"help.text"
-msgid "Seek (FileNumber)"
-msgstr "Seek (Fájlszám)"
-
-#. @Q+}
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3148575\n"
-"8\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. JOE@
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3159156\n"
-"9\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. F=1h
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
-"10\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. {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 "<emph>Fájlszám:</emph> Az Open utasításban használt adatcsatornaszám."
-
-#. h_4u
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Minute Function [Runtime]"
-msgstr "Minute függvény [futásidejű]"
-
-#. Bd\*
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"bm_id3155419\n"
-"help.text"
-msgid "<bookmark_value>Minute function</bookmark_value>"
-msgstr "<bookmark_value>Minute függvény</bookmark_value>"
-
-#. QQ^8
-#: 03030202.xhp
-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/03030202.xhp\" name=\"Minute függvény [futásidejű]\">Minute függvény [futásidejű]</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 "Visszaadja a TimeSerial vagy a TimeValue függvény által meghatározott időérték alapján meghatározott óra egy percét."
-
-#. \5a`
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. -$3q
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Minute (Number)"
-msgstr "Minute (Szám)"
-
-#. F55p
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 3-mK
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. l+%6
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3153193\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szám:</emph> Numerikus kifejezés, amely a percérték visszaadásához használt soros időértéket tartalmazza."
-
-#. 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 "Ez a függvény a <emph>TimeSerial</emph> ellentéte. A <emph>TimeSerial</emph> vagy a <emph>TimeValue </emph> függvénnyel létrehozott soros időérték perceit adja vissza. Például a"
-
-#. )dWa
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "Print Minute(TimeSerial(12,30,41))"
-msgstr "Print Minute(TimeSerial(12,30,41))"
-
-#. iOBJ
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3148576\n"
-"11\n"
-"help.text"
-msgid "returns the value 30."
-msgstr "kifejezés a 30 értéket adja vissza."
-
-#. ?RoA
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3150010\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 3.o(
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3159154\n"
-"13\n"
-"help.text"
-msgid "Sub ExampleMinute"
-msgstr "Sub ExampleMinute"
-
-#. n\XY
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
-msgstr "MsgBox \"A jelenlegi perc \"& Minute(Now)& \".\""
-
-#. BVb*
-#: 03030202.xhp
-#, fuzzy
-msgctxt ""
-"03030202.xhp\n"
-"par_id3153726\n"
-"15\n"
-"help.text"
-msgid "end sub"
-msgstr "end sub"
-
-#. *2]C
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Base Statement [Runtime]"
-msgstr "Option Base utasítás [futásidejű]"
-
-#. j^W$
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"bm_id3155805\n"
-"help.text"
-msgid "<bookmark_value>Option Base statement</bookmark_value>"
-msgstr "<bookmark_value>Option Base utasítás</bookmark_value>"
-
-#. *U{-
-#: 03103200.xhp
-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/03103200.xhp\" name=\"Option Base utasítás [futásidejű]\">Option Base utasítás [futásidejű]</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 "A tömbök alapértelmezett alsó határaként a 0-t vagy az 1-et határozza meg."
-
-#. R$18
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. {q!n
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Option Base { 0 | 1}"
-msgstr "Option Base { 0 | 1}"
-
-#. .%Uf
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Ezt az utasítást a modulon belül egy futtatható programkód elé kell elhelyezni."
-
-#. :023
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. g(cb
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sqr Function [Runtime]"
-msgstr "Sqr függvény [futásidejű]"
-
-#. k*k8
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
-msgstr "<bookmark_value>Sqr függvény</bookmark_value>"
-
-#. Wn)x
-#: 03080401.xhp
-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/03080401.xhp\" name=\"Sqr függvény [futásidejű]\">Sqr függvény [futásidejű]</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 "Kiszámolja egy numerikus kifejezés négyzetgyökét."
-
-#. iLvT
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ;%u(
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3149415\n"
-"4\n"
-"help.text"
-msgid "Sqr (Number)"
-msgstr "Sqr (Szám)"
-
-#. Qh_d
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. A[Sa
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Double (dupla pontosságú)"
-
-#. VHkI
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3147265\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. :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 "<emph>Szám:</emph> Bármilyen numerikus kifejezés, amelynek a négyzetgyökét szeretné kiszámolni."
-
-#. 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 "Egy szám négyzetgyöke az a szám, amelyet önmagával megszorozva visszakapja az eredeti számot, például a 36 négyzetgyöke 6."
-
-#. V(aP
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. G#ns
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSystemTicks Function [Runtime]"
-msgstr "GetSystemTicks függvény [futásidejű]"
-
-#. JmsU
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "<bookmark_value>GetSystemTicks függvény</bookmark_value>"
-
-#. f/j-
-#: 03130700.xhp
-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/03130700.xhp\" name=\"GetSystemTicks függvény [futásidejű]\">GetSystemTicks függvény [futásidejű]</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 "Visszaadja az operációs rendszer által biztosított számláló értékét. A függvény segítségével optimalizálhat bizonyos folyamatokat."
-
-#. 1)M[
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Visszatérési érték:"
-
-#. :MmI
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long (hosszú egész)"
-
-#. |vjc
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. kI}O
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3154938\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"Az idő letelt\""
-
-#. ]FSS
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"tit\n"
-"help.text"
-msgid "If...Then...Else Statement [Runtime]"
-msgstr "If...Then...Else utasítás [futásidejű]"
-
-#. N?bi
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "<bookmark_value>If utasítás</bookmark_value>"
-
-#. eD}T
-#: 03090101.xhp
-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/03090101.xhp\" name=\"If...Then...Else utasítás [futásidejű]\">If...Then...Else utasítás [futásidejű]</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 "Egy vagy több utasításblokkot definiál, amelyet egy megadott feltétel True értékénél szeretné futtatni."
-
-#. o,L]
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3146957\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 "Paraméterek:"
-
-#. 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 "Az <emph>If...Then</emph> utasítás az adott feltételtől függően hajtja végre a programblokkokat. Ha a $[officename] Basic egy <emph>If</emph> utasítást talál, akkor megvizsgálja a feltételt. Ha a feltétel igaz, akkor végrehajtja a következő <emph>Else</emph> vagy <emph>ElseIf</emph> utasítás előtt levő utasításokat. Ha a feltétel hamis, és egy <emph>ElseIf</emph> utasítás következik, akkor a $[officename] Basic megvizsgálja a következő feltételt, és ha igaz, akkor végrehajtja a következő utasításokat. Ha hamis, akkor a program a következő <emph>ElseIf</emph> vagy <emph>Else</emph> utasítással folytatódik. Az <emph>Else</emph> után levő utasítások csak akkor kerülnek végrehajtásra, ha a korábban vizsgált egyik feltétel sem volt igaz. Az összes feltétel kiértékelése és a megfelelő utasítások végrehajtása után a program az <emph>EndIf</emph> után utasítással folytatódik."
-
-#. 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 "Több <emph>If...Then</emph> utasítást is egymásba ágyazhat."
-
-#. 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 "Az <emph>Else</emph> és <emph>ElseIf</emph> utasítás elhagyható."
-
-#. 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 "A <emph>GoTo</emph> és <emph>GoSub</emph> utasítás segítségével kiugorhat egy <emph>If...Then</emph> blokkból, de nem ugorhat másik <emph>If...Then</emph> struktúrára."
-
-#. )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 "A következő példa lehetővé teszi egy termék lejárati idejének megadását, és meghatározza, hogy ez a bizonyos határidő lejárt-e már."
-
-#. wJyu
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. +^+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 "sDate = InputBox(\"Adja meg az érvényesség végét (HH.NN.ÉÉÉÉ)\")"
-
-#. *iaE
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3155601\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"The expiration date has passed\""
-msgstr "MsgBox \"Az érvényesség lejárt\""
-
-#. 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 "MsgBox \"Az érvényesség még nem járt le\""
-
-#. bJo#
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3154754\n"
-"25\n"
-"help.text"
-msgid "MsgBox \"The expiration date is today\""
-msgstr "MsgBox \"Ma van az érvényessé vége\""
-
-#. KQy5
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Space Function [Runtime]"
-msgstr "Space függvény [futásidejű]"
-
-#. 4e\A
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
-msgstr "<bookmark_value>Space függvény</bookmark_value>"
-
-#. 4SZO
-#: 03120201.xhp
-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/03120201.xhp\" name=\"Space függvény [futásidejű]\">Space függvény [futásidejű]</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 "Visszaad egy olyan karakterláncot, amely megadott számú szóközből áll."
-
-#. ENzK
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3153394\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. ]rDk
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Space (n As Long)"
-msgstr "Space (n As Long)"
-
-#. [Q9!
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. hP/B
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3149233\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String (karakterlánc)"
-
-#. \I*\
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>n:</emph> Numerikus kifejezés, amely a karakterláncban levő szóközök számát határozza meg. Az n maximális értéke 65535."
-
-#. G-u{
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3154760\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. [ohz
-#: 03120201.xhp
-#, fuzzy
-msgctxt ""
-"03120201.xhp\n"
-"par_id3154216\n"
-"18\n"
-"help.text"
-msgid "MsgBox sOut,0,\"Info:\""
-msgstr "msgBox sOut,0,\"Információ:\""
-
-#. ud2N
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateSerial Function [Runtime]"
-msgstr "DateSerial függvény [futásidejű]"
-
-#. (;mq
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>DateSerial function</bookmark_value>"
-msgstr "<bookmark_value>DateSerial függvény</bookmark_value>"
-
-#. bGR8
-#: 03030101.xhp
-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/03030101.xhp\" name=\"DateSerial függvény [futásidejű]\">DateSerial függvény [futásidejű]</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 "Visszaad egy <emph>Date</emph> (dátum) értéket az adott évhez, hónaphoz vagy naphoz."
-
-#. 6)x+
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 16Aq
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3149670\n"
-"4\n"
-"help.text"
-msgid "DateSerial (year, month, day)"
-msgstr "DateSerial (év, hónap, nap)"
-
-#. YfZR
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. tfLz
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Date (dátum)"
-
-#. Cg}F
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. |#.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 "<emph>Év:</emph> Integer (egész szám) kifejezés, amely az évet jelzi. A 0 és 99 közötti értékek 1900-1999 évekként kerülnek értelmezésre. A tartományon kívül eső évek esetén mind a négy számjegyet meg kell adnia."
-
-#. 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 "<emph>Hónap:</emph> Integer (egész szám) kifejezés, amely az adott év hónapját jelzi. Az elfogadott tartomány 1-12."
-
-#. 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 "<emph>Nap:</emph> Integer (egész szám) kifejezés, amely az adott hónap napját jelzi. Az elfogadott tartomány 1-31, a hónaptól függően. Nincs hibajelzés, ha egy 31 napnál rövidebb hónapnál nem létező napot ad meg."
-
-#. ~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 "A <emph>DateSerial függvény</emph> visszaadja az 1899. december 30. és az adott dátum közötti napok számát. A függvény segítségével kiszámíthatja a két dátum közötti különbséget."
-
-#. 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 "A <emph>DateSerial függvény</emph> Variant adattípust ad vissza 7-es VarType (Dátum) altípussal. Belsőleg ez az érték double (dupla pontosságú) értékként tárolódik, így ha az adott dátum 1.1.1900, akkor a visszaadott érték 2. A negatív értékek az 1899. december 30. előtti dátumoknak felelnek meg."
-
-#. 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 "Ha a megadott dátum az elfogadott tartományon kívül esik, akkor a $[officename] Basic hibaüzenetet ad vissza."
-
-#. 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 "Ha a <emph>DateValue függvényt</emph> dátumot tartalmazó karakterláncként adja meg, akkor a <emph>DateSerial függvény</emph> a paramétereket (év, hónap, nap) külön numerikus kifejezésként számítja ki."
-
-#. Kka:
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. }C@a
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr "msgbox lDate REM 23476-ot ad vissza"
-
-#. Zova
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
-msgstr "msgbox sDate REM 04/09/1964-et ad vissza"
-
-#. Bb:\
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Statement [Runtime]"
-msgstr "Seek utasítás [futásidejű]"
-
-#. *]FY
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "<bookmark_value>Seek utasítás </bookmark_value>"
-
-#. gPX9
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3159413\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek utasítás [futásidejű]\">Seek utasítás [futásidejű]</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 "Az Open utasítással megnyitott fájlban beállítja a következő írás vagy olvasás helyét."
-
-#. 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 "Közvetlen elérésű fájlok esetén a Seek utasítás a következő elérendő rekord számát adja vissza."
-
-#. (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 "Minden más fájl esetén a Seek utasítás a következő elvégzendő művelet bájtpozícióját adja vissza."
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-
-#. vf6q
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. JWE*
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145273\n"
-"7\n"
-"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
-msgstr "Seek[#Fájlszám], Pozíció (As Long)"
-
-#. S.k*
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3154321\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám:</emph> Az Open utasításban használt adatcsatornaszám."
-
-#. (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 "<emph>Pozíció: </emph>A következő írás vagy olvasás pozíciója. A pozíció egy 1 és 2147483647 közötti szám lehet. A fájl típusának megfelelően a pozíció a rekord számát (Random módban megnyitott fájlok) vagy a bájtpozíciót (Binary, Output, Append vagy Input módban megnyitott fájlok) jelzi. A fájl első bájtja az 1. pozíció, a második bájt a 2. pozíció és így tovább."
-
-#. [MY-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeValue Function [Runtime]"
-msgstr "TimeValue függvény [futásidejű]"
-
-#. PsO_
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"bm_id3149670\n"
-"help.text"
-msgid "<bookmark_value>TimeValue function</bookmark_value>"
-msgstr "<bookmark_value>TimeValue függvény</bookmark_value>"
-
-#. BlQX
-#: 03030206.xhp
-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/03030206.xhp\" name=\"TimeValue függvény [futásidejű]\">TimeValue függvény [futásidejű]</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 "Kiszámít egy soros időértéket a megadott órából, percből és másodpercből - karakterláncként átadott paraméterek -, amelyek az időt egy numerikus értékként ábrázolják. Az érték segítségével kiszámítható az idők közötti különbség."
-
-#. )8tS
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 1fr:
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156282\n"
-"4\n"
-"help.text"
-msgid "TimeValue (Text As String)"
-msgstr "TimeValue (Szöveg As String)"
-
-#. mmV6
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3153969\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. GY0]
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Date (dátum)"
-
-#. B2h+
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely tartalmazza az \"ÓÓ:PP:MM\" formátumban kiszámítani kívánt értéket."
-
-#. 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 "Használja a TimeValue függvényt bármely idő normál számértékké való átalakításához, így akár időkülönbségeket is kiszámolhat."
-
-#. 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 "Ez a TimeValue függvény Variant típust ad vissza (VarType 7 - Date (dátum)), és az értéket egy 0 és 0.9999999999 közötti double (dupla pontosságú) számként tárolja el."
-
-#. 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 "A DateSerial és a DateValue függvénnyel ellentétben, ahol a soros dátumértékek egy rögzített dátumhoz viszonyított napok száma, a TimeValue függvény által visszaadott értékekkel számításokat is lehet végezni, de viszont nem lehet őket megbecsülni."
-
-#. 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 "A TimeSerial függvényben egyedi paramétereket adhat át (óra, perc, másodperc) külön numerikus kifejezésekként. A TimeValue függvénynek egy időt tartalmazó karakterláncot adhat át paraméterként."
-
-#. Q)]1
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. zM_r
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr "a1 = \"kezdési idő\""
-
-#. 2oKl
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr "b1 = \"befejezési idő\""
-
-#. rmLY
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr "c1 = \"teljes idő\""
-
-#. Z.y=
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"tit\n"
-"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "StrComp függvény [futásidejű]"
-
-#. CC\x
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "<bookmark_value>StrComp függvény</bookmark_value>"
-
-#. @MLN
-#: 03120403.xhp
-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/03120403.xhp\" name=\"StrComp függvény [futásidejű]\">StrComp függvény [futásidejű]</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 "Összehasonlít két karakterláncot, és egy olyan integer (egész szám) értéket ad vissza, amely az összehasonlítás eredményét jeleníti meg."
-
-#. |X$;
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 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 (Szöveg1 As String, Szöveg2 As String[, Összehasonlítás])"
-
-#. KfS*
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3147574\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. $5X4
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. O}wp
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Paraméter:"
-
-#. QH#C
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3153061\n"
-"8\n"
-"help.text"
-msgid "<emph>Text1:</emph> Any string expression"
-msgstr "<emph>Szöveg1:</emph> Bármilyen string (karakterlánc) kifejezés."
-
-#. SY/P
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3147560\n"
-"9\n"
-"help.text"
-msgid "<emph>Text2:</emph> Any string expression"
-msgstr "<emph>Szöveg2:</emph> Bármilyen string (karakterlánc) kifejezés."
-
-#. 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>Összehasonlítás:</emph> Ez az opcionális paraméter beállítja az összehasonlítási módszert. Ha az Összehasonlítás = 1, akkor a karakterlánc-összehasonlítás megkülönbözteti a kis- és nagybetűket. Ha az Összehasonlítás = 0, akkor nem tesz különbséget a nagy- és kisbetűk között."
-
-#. jbv%
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
-"help.text"
-msgid "Return value"
-msgstr "Visszatérési érték"
-
-#. jeqN
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
-"27\n"
-"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "Ha a Szöveg1 < Szöveg2, a függvény -1-et ad vissza."
-
-#. w9pI
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
-"28\n"
-"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "Ha a Szöveg1 = Szöveg2, a függvény 0-t ad vissza."
-
-#. yp$4
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
-"29\n"
-"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "Ha a Szöveg1 > Szöveg2, a függvény 1-t ad vissza."
-
-#. bG*e
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. Uoks
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Len függvény [futásidejű]"
-
-#. c.3*
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"bm_id3154136\n"
-"help.text"
-msgid "<bookmark_value>Len function</bookmark_value>"
-msgstr "<bookmark_value>Len függvény</bookmark_value>"
-
-#. +ZMF
-#: 03120402.xhp
-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/03120402.xhp\" name=\"Len függvény [futásidejű]\">Len függvény [futásidejű]</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 "Visszaadja az egy karakterláncban előforduló karakterek számát, vagy az egy változó tárolására használt bájtok számát."
-
-#. @qQd
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. \hI]
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Len (Text As String)"
-msgstr "Len (Szöveg As String)"
-
-#. $[PH
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. /jNM
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long (hosszú egész)"
-
-#. a8p6
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>Szöveg:</emph> Bármilyen string (karakterlánc) kifejezés vagy egy másik típusú változó."
-
-#. olSh
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3153360\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 9-et ad vissza"
-
-#. hsi1
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr "Wait utasítás [futásidejű]"
-
-#. kck9
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"bm_id3154136\n"
-"help.text"
-msgid "<bookmark_value>Wait statement</bookmark_value>"
-msgstr "<bookmark_value>Wait utasítás</bookmark_value>"
-
-#. 0+Np
-#: 03130600.xhp
-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/03130600.xhp\" name=\"Wait utasítás [futásidejű]\">Wait utasítás [futásidejű]</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 "Felfüggeszti a program futtatását az ezredmásodpercben megadott ideig."
-
-#. !Ef:
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 2eYY
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Wait millisec"
-msgstr "Wait ezredmásodperc"
-
-#. a#sq
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3148943\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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>ezredmásodperc:</emph> Numerikus kifejezés, amely a program futtatása előtt kivárandó időtartamot (ezredmásodpercben) tartalmazza."
-
-#. E)gJ
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. /=$e
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3156214\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"Az idő letelt\""
-
-#. XIQ;
-#: 03010300.xhp
-msgctxt ""
-"03010300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Color Functions"
-msgstr "Színfüggvények"
-
-#. P410
-#: 03010300.xhp
-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/03010300.xhp\" name=\"Színfüggvények\">Színfüggvények</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 "Ez a szakasz a színek meghatározására használt futásidejű függvényeket írja le."
-
-#. AmO,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetGuiType Function [Runtime]"
-msgstr "GetGuiType Function függvény [futásidejű]"
-
-#. bl~d
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetGuiType function</bookmark_value>"
-msgstr "<bookmark_value>GetGuiType függvény </bookmark_value>"
-
-#. Eh@c
-#: 03132100.xhp
-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/03132100.xhp\" name=\"GetGuiType függvény [futásidejű]\">GetGuiType függvény [futásidejű]</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 "Visszaad egy numerikus értéket, amely azonosítja a grafikus felhasználói felületet."
-
-#. 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 "Ez a futásidejű függvény csak az előző verziókhoz való kompatibilitáshoz biztosított. A visszatérési érték nincs megadva ügyfél-kiszolgáló környezetekben."
-
-#. ?+CP
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3154894\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. @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 "Visszatérési érték:"
-
-#. ;]ge
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3153748\n"
-"7\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. e)M,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3149177\n"
-"8\n"
-"help.text"
-msgid "Return values:"
-msgstr "Visszatérési értékek:"
-
-#. 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 "Példa:"
-
-#. F2{f
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Err Function [Runtime]"
-msgstr "Err függvény [futásidejű]"
-
-#. :SH}
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"bm_id3156343\n"
-"help.text"
-msgid "<bookmark_value>Err function</bookmark_value>"
-msgstr "<bookmark_value>Err függvény</bookmark_value>"
-
-#. lqLh
-#: 03050200.xhp
-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/03050200.xhp\" name=\"Err függvény [futásidejű]\">Err függvény [futásidejű]</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 "Visszaadja a program futtatása közben fellépő hibát azonosító hibakódot."
-
-#. 9Z~W
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. lxdF
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3154123\n"
-"4\n"
-"help.text"
-msgid "Err"
-msgstr "Err"
-
-#. d/(7
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3147229\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. ,dy5
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3150869\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
-
-#. 7./6
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3153193\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "Az Err függvényt a hibakezelő rutinok esetén használja a hibák meghatározására és javítására."
-
-#. OiQ;
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3147317\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. AT:4
-#: 03050200.xhp
-#, fuzzy
-msgctxt ""
-"03050200.xhp\n"
-"par_id3147426\n"
-"11\n"
-"help.text"
-msgid "On Error Goto ErrorHandler REM Set up error handler"
-msgstr "on error goto ErrorHandler REM Hibakezelő beállítása"
-
-#. ~\gy
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3149481\n"
-"14\n"
-"help.text"
-msgid "REM Error occurs due to non-existent file"
-msgstr "REM A hibát egy nem létező fájl okozza"
-
-#. 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 "MsgBox \"Hiba\" & err & \": \" & Error$ + chr(13) + \"A következő sorban : \" + Erl + chr(13) + Now , 16 ,\"Hiba történt\""
-
-#. H92G
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"tit\n"
-"help.text"
-msgid "FindObject Function [Runtime]"
-msgstr "FindObject függvény [futásidejű]"
-
-#. l~kA
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"bm_id3145136\n"
-"help.text"
-msgid "<bookmark_value>FindObject function</bookmark_value>"
-msgstr "<bookmark_value>FindObject függvény</bookmark_value>"
-
-#. ;@tc
-#: 03103800.xhp
-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/03103800.xhp\" name=\"FindObject függvény [futásidejű]\">FindObject függvény [futásidejű]</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 "Lehetővé teszi, hogy egy objektumot a futásidő alatt az objektum neveként megadott karakterláncként címezzen meg."
-
-#. C=)n
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150669\n"
-"3\n"
-"help.text"
-msgid "For example, the following command:"
-msgstr "Például a következő parancs:"
-
-#. 7|dd
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3148473\n"
-"4\n"
-"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MyObj.Prop1.Command = 5"
-
-#. z}9d
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3156023\n"
-"5\n"
-"help.text"
-msgid "corresponds to the command block:"
-msgstr "az alábbi parancsblokknak felel meg:"
-
-#. q\f?
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3153896\n"
-"6\n"
-"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim Objektumváltozó as Object"
-
-#. *-#Y
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154760\n"
-"7\n"
-"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim ObjProp as Object"
-
-#. 9kw%
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3145069\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "Objektumnév As String = \"MyObj\""
-
-#. 5MFi
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154939\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "Objektumváltozó = FindObject( Objektumnév As String )"
-
-#. n/;m
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150793\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "Tulajdonságnév As String = \"Prop1\""
-
-#. DR@*
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154141\n"
-"11\n"
-"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr "ObjProp = FindPropertyObject( Objektumváltozó, Tulajdonságnév As String )"
-
-#. 5l1~
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3156424\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "ObjProp.Command = 5"
-
-#. 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 "Ez lehetővé teszi nevek dinamikus létrehozását futás közben. Például:"
-
-#. 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 "\"TextEdit1\" to TextEdit5\" egy ciklusban öt vezérlőelemnév létrehozásához"
-
-#. 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 "Lásd még: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-
-#. Sq4_
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"hd_id3150868\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. -Dr{
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3151042\n"
-"17\n"
-"help.text"
-msgid "FindObject( ObjName As String )"
-msgstr "FindObject( Objektumnév As String )"
-
-#. +i2+
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"hd_id3159254\n"
-"18\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Objektumnév: </emph>Karakterlánc, amely a futásidő alatt megcímezni kívánt objektum nevét adja meg."
-
-#. X1SM
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Lof Function [Runtime]"
-msgstr "Lof függvény [futásidejű]"
-
-#. N+%!
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Lof function</bookmark_value>"
-msgstr "<bookmark_value>Lof függvény</bookmark_value>"
-
-#. bLJ=
-#: 03020303.xhp
-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/03020303.xhp\" name=\"Lof függvény [futásidejű]\">Lof függvény [futásidejű]</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 "Egy megnyitott fájl méretét adja vissza bájtban."
-
-#. dOb_
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. CG`}
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150359\n"
-"4\n"
-"help.text"
-msgid "Lof (FileNumber)"
-msgstr "Lof (FileNumber)"
-
-#. |PP#
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
-#. 8#Jz
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
-#. ;|I)
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Fájlszám:</emph> Bármilyen numerikus kifejezés, amely tartalmazza az Open utasításában megadott fájlszámot."
-
-#. $/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 "A nem megnyitott fájl méretének lekérdezéséhez használja a <emph>FileLen</emph> függvényt."
-
-#. ;O~]
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 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 "Dim sText As Variant REM Variant típusúnak kell lennie"
-
-#. CMs=
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"19\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Indítási pozíció"
-
-#. 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 "Put #iNumber,, \"Ez a szöveg első sora\" REM Kitöltés szöveggel"
-
-#. #)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 "Put #iNumber,, \"Ez a szöveg második sora\""
-
-#. :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 "Put #iNumber,, \"Ez a szöveg harmadik sora\""
-
-#. *%(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 "Put #iNumber,,\"Ez egy új szövegsor\""
-
-#. 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 "Put #iNumber,20,\"Ez a szöveg a 20. rekordban\""
-
-#. D^Pt
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Statement [Runtime]"
-msgstr "Call utasítás [futásidejű]"
-
-#. Mb!h
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>Call statement</bookmark_value>"
-msgstr "<bookmark_value>Call utasítás</bookmark_value>"
-
-#. pNxW
-#: 03090401.xhp
-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/03090401.xhp\" name=\"Call utasítás [futásidejű]\">Call utasítás [futásidejű]</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 "A program vezérlését egy szubrutinnak, egy függvénynek vagy egy DLL-eljárásnak adja át."
-
-#. 6b7_
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. S:MD
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "[Call] Name [Parameter]"
-msgstr "[Call] Név [Paraméter]"
-
-#. wm!w
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Név:</emph> A meghívandó szubrutin, függvény vagy DLL neve"
-
-#. 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 "<emph>Paraméter:</emph> Az eljárásnak átadni kívánt paraméterek. A paraméterek típusa és száma a végrehajtott rutintól függ."
-
-#. 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 "A kulcsszó elhagyható az eljárás meghívásakor. Ha kifejezésként egy függvény kerül végrehajtásra, akkor az utasításban a paramétereket zárójelek közé kell rakni. DLL meghívásakor először meg kell adni azt az <emph>Declare utasítással</emph>."
-
-#. |%|f
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. L4H-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Beep Statement [Runtime]"
-msgstr "Beep utasítás [futásidejű]"
-
-#. x@2f
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"bm_id3143284\n"
-"help.text"
-msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "<bookmark_value>Beep utasítás</bookmark_value>"
-
-#. 5:6a
-#: 03130100.xhp
-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/03130100.xhp\" name=\"Beep utasítás [futásidejű]\">Beep utasítás [futásidejű]</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 "Egy hangot játszik le a számítógép hangszóróján keresztül. A hang rendszerfüggő, és a hangerő, illetve a hangmagasság nem módosítható."
-
-#. @5\F
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. N,m-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"par_id3147291\n"
-"4\n"
-"help.text"
-msgid "Beep"
-msgstr "Beep"
-
-#. \jd`
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 2Xt}
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefCur Statement [Runtime]"
-msgstr "DefCur utasítás [futásidejű]"
-
-#. O:Fv
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"bm_id9555345\n"
-"help.text"
-msgid "<bookmark_value>DefCur statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur utasítást</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 "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur utasítás [futásidejű]</link>"
-
-#. $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 "Ha nem volt megadva típusdeklarációs karakter vagy kulcsszó, akkor a DefCur utasítás a betűtartomány alapján fogja beállítani a változók alapértelmezett adattípusát."
-
-#. :*3[
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. (iOC
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Karaktertartomány1[, Karaktertartomány2[,...]]"
-
-#. _ZX\
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
-#. 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 "<emph>Karaktertartomány:</emph> Betűk, amelyek megadják a változók azon tartományát, amelyeknek az alapértelmezett adattípusát meg szeretné adni."
-
-#. 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 "<emph>xxx:</emph> Kulcsszó, amely meghatározza az alapértelmezett változótípust:"
-
-#. D^*{
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Kulcsszó:</emph> Alapértelmezett változótípus"
-
-#. -A3K
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "<emph>DefCur:</emph> Currency (pénznem)"
-
-#. (!8V
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. lY@;
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM A változótípusok előtagos megadása:"
-
-#. 2OZW
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "cCur=Currency REM cCur is an implicit currency variable"
-msgstr "cCurr=Currency REM a cCur egy implicit currency (pénznem) változó"
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared/01.po b/source/hu/helpcontent2/source/text/sbasic/shared/01.po
index e8a97a49f59..01a7114e814 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/hu/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-03-25 12:16+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Programkönyvtár hozzáfűzése"
-#. .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>programkönyvtárak; hozzáadás</bookmark_value><bookmark_value>beszúrás;Basic-programkönyvtárak</bookmark_value>"
-#. CN={
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Append libraries"
msgstr "Programkönyvtár hozzáfűzése"
-#. \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=\".\">Keresse meg a <item type=\"productname\">%PRODUCTNAME</item> Basic-programkönyvtárat, amelyet hozzá akar adni az aktuális listához, majd kattintson a Megnyitás gombra.</ahelp>"
-#. b4dU
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "File name:"
msgstr "Fájlnév:"
-#. =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\">Adja meg a nevét vagy az útvonalát annak a programkönyvtárnak, amelyet hozzá akar fűzni.</ahelp> Kiválaszthat egy könyvtárat a listából is."
-#. a5g^
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. \0}K
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Insert as reference (read-only)"
msgstr "Beszúrás hivatkozásként (csak olvasható)"
-#. =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\">Hozzáadja a kijelölt programkönyvtárat csak olvasható fájlként. A könyvtár mindig újra betöltődik a <item type=\"productname\">%PRODUCTNAME</item> indításakor.</ahelp>"
-#. )%r6
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Replace existing libraries"
msgstr "Létező könyvtárak cseréje"
-#. 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\">Lecserél egy programkönyvtárat, amelynek az aktuális programkönyvtárral azonos a neve.</ahelp>"
-#. XC4I
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Change Password"
msgstr "Jelszó módosítása"
-#. !7=R
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Change Password"
msgstr "Jelszó módosítása"
-#. 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\">Jelszóval védi a kijelölt programkönyvtárat.</ahelp> Megadhat egy új jelszót, vagy megváltoztathatja az aktuális jelszót."
-#. =zh;
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Old password"
msgstr "Régi jelszó"
-#. C1w5
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "Password"
msgstr "Jelszó"
-#. 6n)3
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -182,7 +165,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_OLD_PASSWD\">Adja meg a kijelölt programkönyvtár jelszavát.</ahelp>"
-#. M!3.
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -192,7 +174,6 @@ msgctxt ""
msgid "New password"
msgstr "Új jelszó"
-#. [cDa
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "Password"
msgstr "Jelszó"
-#. WE4$
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -212,7 +192,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\">Írja be a kijelölt könyvtár új jelszavát.</ahelp>"
-#. k\py
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -222,7 +201,6 @@ msgctxt ""
msgid "Confirm"
msgstr "Megerősítés"
-#. `;zs
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -232,7 +210,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_REPEAT_PASSWD\">Ismételje meg az új jelszót a kijelölt programkönyvtárhoz.</ahelp>"
-#. 8r@,
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -241,7 +218,6 @@ msgctxt ""
msgid "Macro"
msgstr "Makró"
-#. Xh^g
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
msgstr "<bookmark_value>makrók; Basic IDE</bookmark_value><bookmark_value>Basic IDE; makrók</bookmark_value>"
-#. )|q9
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "Macro"
msgstr "Makró"
-#. b%8b
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -270,7 +244,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=\".\">Megnyitja a <emph>Makró</emph> párbeszédablakot, ahol $[officename] Basic-makrókat hozhat létre, szerkeszthet, szervezhet és futtathat.</ahelp></variable>"
-#. Uo4h
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Macro name"
msgstr "Makró neve"
-#. Y\X3
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -290,7 +262,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"
@@ -300,7 +271,6 @@ msgctxt ""
msgid "Macro from / Save macro in"
msgstr "Makró forrása / Makró mentése"
-#. cD%?
#: 06130000.xhp
#, fuzzy
msgctxt ""
@@ -311,7 +281,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\">Felsorolja a programkönyvtárakat és modulokat, amelyekben megnyithatja vagy mentheti a makrókat. A makró adott dokumentummal való mentéséhez nyissa meg a dokumentumot, majd a párbeszédablakot.</ahelp>"
-#. R\Zh
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -321,7 +290,6 @@ msgctxt ""
msgid "Run / Save"
msgstr "Futtatás / Mentés"
-#. TP0A
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -331,7 +299,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"
@@ -341,7 +308,6 @@ msgctxt ""
msgid "Assign"
msgstr "Hozzárendelés"
-#. QfDY
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -351,7 +317,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"
@@ -361,7 +326,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. @MCI
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -371,7 +335,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
msgstr "<ahelp hid=\".\">Elindítja a $[officename] Basic szerkesztőjét, majd megnyitja szerkesztésre a kijelölt makrót.</ahelp>"
-#. QLOo
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -381,7 +344,6 @@ msgctxt ""
msgid "New/Delete"
msgstr "Új/Törlés"
-#. J0Ge
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -391,7 +353,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"
@@ -401,7 +362,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 "Új makró létrehozásához válassza a „Standard” modult a <emph>Makró forrása</emph> listából, majd kattintson az <emph>Új</emph> gombra."
-#. J9uX
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -411,7 +371,6 @@ msgctxt ""
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
msgstr "A makró törléséhez válassza ki azt, majd kattintson a <emph>Törlés</emph> lehetőségre."
-#. }[Zm
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -421,7 +380,6 @@ msgctxt ""
msgid "Organizer"
msgstr "Szervező"
-#. DbJ(
#: 06130000.xhp
#, fuzzy
msgctxt ""
@@ -432,7 +390,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\">Megnyitja a <emph>Makrószervező</emph> párbeszédablakot, ahol makrómodulokat, párbeszédablakokat és programkönyvtárakat lehet hozzáadni, szerkeszteni, valamint a meglévőket törölni.</ahelp>"
-#. =Obx
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -442,7 +399,6 @@ msgctxt ""
msgid "Module/Dialog"
msgstr "Modul/párbeszédablak"
-#. 171!
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -452,7 +408,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Felsorolja a meglévő makrókat és párbeszédablakokat.</ahelp>"
-#. v4Tn
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -462,7 +417,6 @@ msgctxt ""
msgid "You can drag-and-drop a module or a dialog between libraries."
msgstr "A „fogd és vidd” módszerrel átviheti a modulokat vagy a párbeszédablakokat a programkönyvtárak között."
-#. I_3s
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -472,7 +426,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 "Párbeszédablak vagy modul másolásához tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt a „fogd és vidd” művelet közben."
-#. or6H
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -482,7 +435,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. kzU*
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -492,7 +444,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\">Szerkesztésre megnyitja a kijelölt makrót vagy párbeszédablakot.</ahelp>"
-#. !W)e
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -502,7 +453,6 @@ msgctxt ""
msgid "New"
msgstr "Új"
-#. N50+
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -512,7 +462,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Új modult hoz létre.</ahelp>"
-#. NH\4
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -522,7 +471,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialog.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Új párbeszédablakot hoz létre.</ahelp>"
-#. 7Qm,
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -532,7 +480,6 @@ msgctxt ""
msgid "Libraries tab page"
msgstr "Programkönyvtárak lap"
-#. A9*a
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -542,7 +489,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lets you manage the macro libraries.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lehetővé teszi a makrókönyvtárak kezelését.</ahelp>"
-#. #9[q
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -552,7 +498,6 @@ msgctxt ""
msgid "Location"
msgstr "Hely"
-#. M@Y7
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -562,7 +507,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 "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Jelölje ki a kezelni kívánt makrókönyvtárakat tartalmazó helyet.</ahelp>"
-#. oQ{[
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -572,7 +516,6 @@ msgctxt ""
msgid "Library"
msgstr "Programkönyvtár"
-#. z?zj
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -582,7 +525,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Felsorolja a kijelölt helyen található makrókönyvtárakat.</ahelp>"
-#. hC!7
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -592,7 +534,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. MC\D
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -602,7 +543,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\">A kijelölt programkönyvtár szerkesztéséhez megnyitja a $[officename] Basic-szerkesztőt.</ahelp>"
-#. rF:C
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -612,7 +552,6 @@ msgctxt ""
msgid "Password"
msgstr "Jelszó"
-#. `L:r
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -622,7 +561,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 "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">A kiválasztott programkönyvtárhoz <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"jelszó\">jelszót</link> rendel hozzá, vagy módosítja a jelszót.</ahelp> A „Standard” programkönyvtárhoz nem rendelhető jelszó."
-#. ^WNj
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -632,7 +570,6 @@ msgctxt ""
msgid "New"
msgstr "Új"
-#. sII{
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -642,7 +579,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Új programkönyvtárat készít.</ahelp>"
-#. JUE+
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -652,7 +588,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. 2:^^
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -662,7 +597,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 "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Adja meg az új modul, párbeszédablak vagy programkönyvtár nevét.</ahelp>"
-#. 7n@i
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -672,7 +606,6 @@ msgctxt ""
msgid "Append"
msgstr "Hozzáfűzés"
-#. (a+o
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared/02.po b/source/hu/helpcontent2/source/text/sbasic/shared/02.po
index 9d0f59d0861..cee4bc67d62 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/hu/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-07-28 12:38+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\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 "Forrás mentése másként"
-#. 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=\"Forrás mentése másként\">Forrás mentése másként</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 "<ahelp hid=\".uno:SaveBasicAs\">Menti a kijelölt Basic-makró forráskódját.</ahelp>"
-#. GF%#
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -53,7 +49,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_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Ikon</alt></image>"
-#. rA6P
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Save Source As"
msgstr "Forrás mentése másként"
-#. m7Y?
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "Insert Source Text"
msgstr "Forrásszöveg beszúrása"
-#. Bu_S
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -82,7 +75,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=\"Forrásszöveg beszúrása\">Forrásszöveg beszúrása</link>"
-#. [3]_
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
msgstr "<ahelp hid=\".uno:LoadBasic\">Megnyitja a Basic-forrásszöveget a Basic IDE ablakban.</ahelp>"
-#. ~3ry
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -102,7 +93,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 "Vigye a kurzort a kód azon helyére, ahova be kívánja szúrni a forrásszöveget, majd kattintson a <emph>Forrásszöveg beszúrása</emph> ikonra. Keresse meg a Basic-forrásszöveget tartalmazó fájlt, amelyet be kíván szúrni, majd kattintson a <emph>Megnyitás</emph> gombra."
-#. )$k8
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -111,7 +101,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_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Ikon</alt></image>"
-#. ?kcg
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -121,7 +110,6 @@ msgctxt ""
msgid "Insert source text"
msgstr "Forrásszöveg beszúrása"
-#. NBtE
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Export Dialog"
msgstr "Párbeszédablak exportálása"
-#. Y}%o
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Párbeszédablak exportálása\">Párbeszédablak exportálása</link>"
-#. fs7k
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
msgstr "<ahelp hid=\".\">A párbeszédablak-szerkesztőben ez a parancs egy „Mentés másként” párbeszédablakot hív meg az aktuális BASIC-párbeszédablak mentéséhez.</ahelp>"
-#. Y?m_
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -159,7 +144,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_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Ikon</alt></image>"
-#. zh\b
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Export Dialog"
msgstr "Párbeszédablak exportálása"
-#. WFFz
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "Stop"
msgstr "Leállítás"
-#. ]Rnn
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
msgstr "<bookmark_value>makrók; leállítás</bookmark_value><bookmark_value>programleállások</bookmark_value><bookmark_value>makrók leállítása</bookmark_value>"
-#. #Xn3
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -197,7 +178,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=\"Leállítás\">Leállítás</link>"
-#. ,RUK
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -207,7 +187,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\">Leállítja az aktuális makró futását.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> Megnyomhatja a Shift+Ctrl+Q billentyűkombinációt is.</defaultinline></switchinline>"
-#. PJV#
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -216,7 +195,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_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Ikon</alt></image>"
-#. B)rU
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -226,7 +204,6 @@ msgctxt ""
msgid "Stop"
msgstr "Leállítás"
-#. Fe+=
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "Macros"
msgstr "Makrók"
-#. YZ-k
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -245,7 +221,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=\"Makrók\">Makrók</link>"
-#. #EUt
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Megnyitja a <emph>Makró</emph> párbeszédablakot.</ahelp>"
-#. SEmZ
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -264,7 +238,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\">Ikon</alt></image>"
-#. ]=U2
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -274,7 +247,6 @@ msgctxt ""
msgid "Macros"
msgstr "Makrók"
-#. OW3h
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Step Out"
msgstr "Kilépés"
-#. [hZ^
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -293,7 +264,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=\"Kilépés\">Kilépés</link>"
-#. 2]mk
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -303,7 +273,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\">Az aktuális makró előző eljárására ugrik vissza.</ahelp>"
-#. rLK?
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -312,7 +281,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\">Ikon</alt></image>"
-#. T~f{
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Step Out"
msgstr "Kilépés"
-#. ]H~@
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -331,7 +298,6 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Zárójelek keresése"
-#. cDWq
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -341,7 +307,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=\"Zárójelek keresése\">Zárójelek keresése</link>"
-#. ysdF
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -351,7 +316,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\">Kijelöli a két összetartozó zárójel közé zárt szöveget. Vigye a szövegkurzort egy kezdő vagy záró zárójel elé, majd kattintson az ikonra.</ahelp>"
-#. .Y3+
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -360,7 +324,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\">Ikon</alt></image>"
-#. qU^Q
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -370,7 +333,6 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Zárójelek keresése"
-#. SW_#
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -379,7 +341,6 @@ msgctxt ""
msgid "Modules"
msgstr "Modulok"
-#. BD$!
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -389,7 +350,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=\"Modulok\">Modulok</link>"
-#. W55,
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -399,7 +359,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\">Kattintson ide a <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Makrószervező\"><emph>Makrószervező</emph></link> párbeszédablak megnyitásához.</ahelp>"
-#. mZ(*
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -408,7 +367,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\">Ikon</alt></image>"
-#. :Sm8
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -418,7 +376,6 @@ msgctxt ""
msgid "Modules"
msgstr "Modulok"
-#. D^@5
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -427,7 +384,6 @@ msgctxt ""
msgid "Procedure Step"
msgstr "Léptetés az eljárásban"
-#. 7gar
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -437,7 +393,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=\"Eljárásnyi léptetés\">Eljárásnyi léptetés</link>"
-#. )05)
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -447,7 +402,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOver\">Futtatja a makrót, és leállítja a következő eljárás után.</ahelp>"
-#. K!:j
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -457,7 +411,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 "A hibák elhárítása érdekében a parancsot használhatja a <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Figyelés\">Figyelés</link> paranccsal együtt."
-#. 0Jfs
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -466,7 +419,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_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Ikon</alt></image>"
-#. Wf7j
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -476,7 +428,6 @@ msgctxt ""
msgid "Procedure Step"
msgstr "Léptetés az eljárásban"
-#. -00G
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -486,7 +437,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=\"Egységnyi léptetés\">Egységnyi léptetés</link>"
-#. WB=B
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -495,7 +445,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr "Objektumkatalógus"
-#. b?y.
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -505,7 +454,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=\"Objektumkatalógus\">Objektumkatalógus</link>"
-#. 2m$_
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -515,7 +463,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\">Megnyitja az <emph>Objektumok</emph> párbeszédablakot, amelyen Basic-objektumokat lehet megtekinteni.</ahelp>"
-#. kK0K
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -525,7 +472,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 "A függvény vagy szubrutin nevére való dupla kattintással töltheti be a függvényt vagy eljárást tartalmazó modult, és pozicionálhatja a kurzort. Kattintson a modul vagy párbeszédablak nevére, majd a <emph>Megjelenítés</emph> ikonra a modul vagy párbeszédablak betöltéséhez és megjelenítéséhez."
-#. Y\y/
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -534,7 +480,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\">Ikon</alt></image>"
-#. P6dB
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -544,7 +489,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr "Objektumkatalógus"
-#. JC8D
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -554,7 +498,6 @@ msgctxt ""
msgid "Show"
msgstr "Megjelenítés"
-#. c!rX
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -564,7 +507,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\">Egy kiválasztott objektum forrásszövegét vagy párbeszédablakát jeleníti meg.</ahelp>"
-#. `6Kh
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -573,7 +515,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\">Ikon</alt></image>"
-#. Lk\=
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -583,7 +524,6 @@ msgctxt ""
msgid "Show"
msgstr "Megjelenítés"
-#. !zr*
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -593,7 +533,6 @@ msgctxt ""
msgid "Window Area"
msgstr "Ablakterület"
-#. V!s\
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -603,7 +542,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\">Hierarchikus nézetben jeleníti meg az aktuális $[officename] makrókönyvtárakat, modulokat és párbeszédablakokat. Egy elem tartalmának megjelenítéséhez az ablakban kattintson duplán az elem nevére, vagy válassza ki a nevét, és kattintson a <emph>Megjelenítés</emph> ikonra.</ahelp>"
-#. 9L8N
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -612,7 +550,6 @@ msgctxt ""
msgid "Breakpoint"
msgstr "Töréspont"
-#. Y)ps
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -622,7 +559,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=\"Töréspont\">Töréspont</link>"
-#. 8P@J
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -632,7 +568,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Töréspontot szúr be a programsorba.</ahelp>"
-#. ~`E+
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -642,7 +577,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 "A töréspont a kurzorpozícióban lesz beszúrva. A töréspont segítségével a program a hiba bekövetkezése előtt megszakítható. Ezután elháríthatja a program hibáit, ha <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Egy lépéses\">Egy lépéses</link> módban futtatja a hiba bekövetkezéséig. A <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Figyelés\">Figyelés</link> ikon segítségével ellenőrizheti a megfelelő változók tartalmát."
-#. 6GL\
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -651,7 +585,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_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Ikon</alt></image>"
-#. ^|Vc
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -661,7 +594,6 @@ msgctxt ""
msgid "Breakpoint"
msgstr "Töréspont"
-#. |iJW
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -670,7 +602,6 @@ msgctxt ""
msgid "Compile"
msgstr "Fordítás"
-#. KA@m
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -680,7 +611,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=\"Fordítás\">Fordítás</link>"
-#. vnA-
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -690,7 +620,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\">Lefordítja a Basic-makrót.</ahelp> A makrót a változtatások után, vagy ha egységnyi vagy eljárásnyi léptetéseket tartalmaz, le kell fordítani."
-#. ye/I
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -699,7 +628,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\">Ikon</alt></image>"
-#. O,\{
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -709,7 +637,6 @@ msgctxt ""
msgid "Compile"
msgstr "Fordítás"
-#. Uk)m
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -718,7 +645,6 @@ msgctxt ""
msgid "Insert Controls"
msgstr "Vezérlőelemek beszúrása"
-#. Oorh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -727,7 +653,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 "<bookmark_value>vezérlőelemek; a párbeszédablak szerkesztőben</bookmark_value><bookmark_value>gomb-vezérlőelem a párbeszédablak-szerkesztőben</bookmark_value><bookmark_value>ikon-vezérlőelem</bookmark_value><bookmark_value>gombok; vezérlőelemek</bookmark_value><bookmark_value>kép-vezérlőelem</bookmark_value><bookmark_value>jelölőnégyzet-vezérlőelem</bookmark_value><bookmark_value>rádiógomb-vezérlőelem</bookmark_value><bookmark_value>választókapcsoló-vezérlőelem</bookmark_value><bookmark_value>rögzítettszöveg-vezérlőelem</bookmark_value><bookmark_value>címkemező-vezérlőelem</bookmark_value><bookmark_value>szerkesztés; vezérlőelemek</bookmark_value><bookmark_value>szövegmezők; vezérlőelemek</bookmark_value><bookmark_value>listák; vezérlőelemek</bookmark_value><bookmark_value>kombináltlista-vezérlőelem</bookmark_value><bookmark_value>görgetősáv-vezérlőelem</bookmark_value><bookmark_value>vízszintesgörgetősáv-vezérlőelem</bookmark_value><bookmark_value>függőlegesgörgetősáv-vezérlőelem</bookmark_value><bookmark_value>csoportpanel-vezérlőelem</bookmark_value><bookmark_value>folyamatjelző-vezérlőelem</bookmark_value><bookmark_value>rögzítettvonal-vezérlőelem</bookmark_value><bookmark_value>vízszintesvonal-vezérlőelem</bookmark_value><bookmark_value>vonal-vezérlőelem</bookmark_value><bookmark_value>függőlegesvonal-vezérlőelem</bookmark_value><bookmark_value>dátummező-vezérlőelem</bookmark_value><bookmark_value>időmező-vezérlőelem</bookmark_value><bookmark_value>számmező-vezérlőelem</bookmark_value><bookmark_value>pénznemmező-vezérlőelem</bookmark_value><bookmark_value>formázottmező-vezérlőelem</bookmark_value><bookmark_value>maszkoltmező-vezérlőelem</bookmark_value><bookmark_value>maszkoltmező-vezérlőelem</bookmark_value><bookmark_value>fájlkiválasztás-vezérlőelem</bookmark_value><bookmark_value>kiválasztási lehetőségek vezérlőelemekhez</bookmark_value><bookmark_value>tesztüzemmód-vezérlőelem</bookmark_value>"
-#. !=5/
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -737,7 +662,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=\"Vezérlőelemek beszúrása\">Vezérlőelemek beszúrása</link>"
-#. 3=)m
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -747,7 +671,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
msgstr "<ahelp hid=\".uno:ChooseControls\">Megnyitja az <emph>Eszközök</emph> panelt.</ahelp>"
-#. -U8M
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -756,7 +679,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\">Ikon</alt></image>"
-#. d^%%
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -766,7 +688,6 @@ msgctxt ""
msgid "Insert Controls"
msgstr "Vezérlőelemek beszúrása"
-#. Il%s
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -776,7 +697,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 "Szerkesztési módban kattintson duplán a vezérlőelemekre a <link href=\"text/sbasic/shared/01170100.xhp\" name=\"tulajdonság-párbeszédablak\">tulajdonság-párbeszédablak</link> megnyitásához."
-#. HDS1
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -786,7 +706,6 @@ msgctxt ""
msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
msgstr "Szerkesztési módban kattinthat jobb gombbal is a vezérlőelemeken, és választhatja a Kivágás, Másolás vagy Beillesztés parancsot."
-#. .wq5
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -796,7 +715,6 @@ msgctxt ""
msgid "Button"
msgstr "Gomb"
-#. :]jW
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -805,7 +723,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\">Ikon</alt></image>"
-#. ;HU;
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -815,7 +732,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\">Parancsgombot ad hozzá.</ahelp> A parancsgombbal parancsokat hajthat végre bizonyos események - például egérkattintás - hatására."
-#. PK+K
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -825,7 +741,6 @@ msgctxt ""
msgid "If you want, you can add text or a graphic to the button."
msgstr "Ha szeretné, szöveget vagy képet adhat a gombhoz."
-#. (PH8
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -835,7 +750,6 @@ msgctxt ""
msgid "Image Control"
msgstr "Kép-vezérlőelem"
-#. TPm9
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -844,7 +758,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\">Ikon</alt></image>"
-#. W)3L
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -854,7 +767,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertImageControl\">Képet tartalmazó vezérlőelemet hoz létre.</ahelp>"
-#. .cg!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -864,7 +776,6 @@ msgctxt ""
msgid "Check Box"
msgstr "Jelölőnégyzet"
-#. K3jr
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -873,7 +784,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\">Ikon</alt></image>"
-#. HegK
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -883,7 +793,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\">Hozzáad egy jelölőnégyzetet, amellyel ki-/bekapcsolhatók az egyes funkciók.</ahelp>"
-#. ?jng
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -893,7 +802,6 @@ msgctxt ""
msgid "Option Button"
msgstr "Rádiógomb"
-#. 5?=R
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -902,7 +810,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\">Ikon</alt></image>"
-#. TbnB
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -912,7 +819,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\">Olyan gombot ad hozzá, amelynél a felhasználó több beállításból választhat.</ahelp> A csoportosított rádiógomboknak egymást követő bejárásisorrend-indexszel kell rendelkezniük. Ezeket általában egy csoportpanel veszi körül. Ha két rádiógombcsoporttal rendelkezik, akkor be kell szúrnia egy bejárásisorrend-indexet a két csoport bejárásisorrend-indexszámai közé a csoportkereten."
-#. DgqV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -922,7 +828,6 @@ msgctxt ""
msgid "Label Field"
msgstr "Címkemező"
-#. r)Hh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -931,7 +836,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\">Ikon</alt></image>"
-#. _k!L
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -941,7 +845,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\">Szövegcímkék megjelenítésére használható mezőt hoz létre.</ahelp> Ezekben a mezőkben csak előre megadott szöveg jeleníthető meg, és nem szövegbevitelre valók."
-#. ).Z!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -951,7 +854,6 @@ msgctxt ""
msgid "Text Box"
msgstr "Szövegmező"
-#. QVSC
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -960,7 +862,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\">Ikon</alt></image>"
-#. g!tI
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -970,7 +871,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertEdit\">Beviteli mezőt ad hozzá, amelybe szöveget lehet beírni és szerkeszteni.</ahelp>"
-#. VOOz
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -980,7 +880,6 @@ msgctxt ""
msgid "List Box"
msgstr "Lista"
-#. VZmD
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -989,7 +888,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\">Ikon</alt></image>"
-#. uS*\
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -999,7 +897,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\">Olyan mezőt ad hozzá, amelyben egy listából lehet egy bejegyzést kiválasztani.</ahelp>"
-#. o_e5
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1009,7 +906,6 @@ msgctxt ""
msgid "Combo Box"
msgstr "Kombinált lista"
-#. a7M9
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1018,7 +914,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\">Ikon</alt></image>"
-#. 3a\(
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1028,7 +923,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\">Kombinált listát ad hozzá. Egy kombinált lista egy egysoros lista, amelyre a felhasználó rákattinthat, majd kiválaszthat a listából egy bejegyzést.</ahelp> Szükség szerint „csak olvashatóvá” teheti a kombinált lista bejegyzéseit."
-#. (u;0
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1038,7 +932,6 @@ msgctxt ""
msgid "Horizontal Scrollbar"
msgstr "Vízszintes görgetősáv"
-#. ]:VC
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1047,7 +940,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\">Ikon</alt></image>"
-#. 1-j?
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1057,7 +949,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HScrollbar\">Vízszintes görgetősávot ad hozzá a párbeszédablakhoz.</ahelp>"
-#. l;Z)
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1067,7 +958,6 @@ msgctxt ""
msgid "Vertical Scrollbar"
msgstr "Függőleges görgetősáv"
-#. 2wm]
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1076,7 +966,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\">Ikon</alt></image>"
-#. m~^-
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1086,7 +975,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VScrollbar\">Függőleges görgetősávot ad hozzá a párbeszédablakhoz.</ahelp>"
-#. oQZR
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1096,7 +984,6 @@ msgctxt ""
msgid "Group Box"
msgstr "Csoportpanel"
-#. L|mA
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1105,7 +992,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\">Ikon</alt></image>"
-#. Tx#.
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1115,7 +1001,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\">Keretet ad hozzá, amelyben csoportosíthatja a hasonló vezérlőelemeket, például a rádiógombokat.</ahelp>"
-#. Ykm!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1125,7 +1010,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 "Rádiógombok két külön csoportjának meghatározásakor győződjön meg arról, hogy a csoportkeret bejárási sorrendjének indexe a két csoport bejárási sorrendjének indexe között van."
-#. *FXh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1135,7 +1019,6 @@ msgctxt ""
msgid "Progress Bar"
msgstr "Folyamatjelző"
-#. ^b7i
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1144,7 +1027,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\">Ikon</alt></image>"
-#. G\C=
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1154,7 +1036,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:ProgressBar\">Egy folyamatjelzőt ad hozzá a párbeszédablakhoz.</ahelp>"
-#. VvkD
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1164,7 +1045,6 @@ msgctxt ""
msgid "Horizontal Line"
msgstr "Vízszintes vonal"
-#. g4p$
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1173,7 +1053,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\">Ikon</alt></image>"
-#. U!WE
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1183,7 +1062,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HFixedLine\">Vízszintes vonalat ad hozzá a párbeszédablakhoz.</ahelp>"
-#. K6mZ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1193,7 +1071,6 @@ msgctxt ""
msgid "Vertical Line"
msgstr "Függőleges vonal"
-#. !:NJ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1202,7 +1079,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\">Ikon</alt></image>"
-#. 3$]:
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1212,7 +1088,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VFixedLine\">Függőleges vonalat ad hozzá a párbeszédablakhoz.</ahelp>"
-#. fswV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1222,7 +1097,6 @@ msgctxt ""
msgid "Date Field"
msgstr "Dátummező"
-#. TW[=
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1231,7 +1105,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\">Ikon</alt></image>"
-#. b=Gk
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1241,7 +1114,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
msgstr "<ahelp hid=\".uno:AddDateField\">Dátummezőt szúr be.</ahelp>"
-#. /99x
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1251,7 +1123,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 "Ha egy „legördülő” tulajdonságot rendel a dátummezőhöz, akkor a felhasználó legördítheti a naptárat a dátum kiválasztásához."
-#. Qcxc
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1261,7 +1132,6 @@ msgctxt ""
msgid "Time Field"
msgstr "Időmező"
-#. I0WV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1270,7 +1140,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\">Ikon</alt></image>"
-#. KlEF
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1280,7 +1149,6 @@ msgctxt ""
msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Időmezőt ad hozzá.</ahelp>"
-#. #y3Q
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1290,7 +1158,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr "Számmező"
-#. %V[,
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1299,7 +1166,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\">Ikon</alt></image>"
-#. mR;+
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1309,7 +1175,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertNumericField\">Számmezőt ad hozzá.</ahelp>"
-#. L5os
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1319,7 +1184,6 @@ msgctxt ""
msgid "Currency Field"
msgstr "Pénznemmező"
-#. }Ws}
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1328,7 +1192,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\">Ikon</alt></image>"
-#. w+T1
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1338,7 +1201,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertCurrencyField\">Hozzáad egy pénznemmezőt.</ahelp>"
-#. 6qW?
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1348,7 +1210,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr "Formázott mező"
-#. *WP]
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1357,7 +1218,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\">Ikon</alt></image>"
-#. +DIO
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1367,7 +1227,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\">Formázott szövegmezőt hoz létre, amelyben a bevitel és a megjelenítés formátuma, valamint a határoló értékek meghatározhatók.</ahelp>"
-#. [kT*
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1377,7 +1236,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr "Maszkolt mező"
-#. jHsm
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1386,7 +1244,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\">Ikon</alt></image>"
-#. %`4N
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1396,7 +1253,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 "<ahelp hid=\".uno:InsertPatternField\">Maszkolt mezőt ad hozzá.</ahelp> A maszkolt mező egy bementi maszkból és egy kifejezésmaszkból áll. A bemeneti maszk meghatározza, hogy milyen felhasználói adatok írhatók be. A kifejezésmaszk meghatározza a maszkolt mező állapotát, ha az űrlap be van töltve."
-#. 426M
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1406,7 +1262,6 @@ msgctxt ""
msgid "File Selection"
msgstr "Fájlválasztás"
-#. @4Tq
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1415,7 +1270,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\">Ikon</alt></image>"
-#. ,r^N
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1425,7 +1279,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertFileControl\">Hozzáad egy fájlválasztó párbeszédablakot megnyitó gombot.</ahelp>"
-#. fWcI
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1435,7 +1288,6 @@ msgctxt ""
msgid "Select"
msgstr "Kiválasztás"
-#. qh%=
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1444,7 +1296,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\">Ikon</alt></image>"
-#. ))/`
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1454,7 +1305,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=\".\">Aktiválja vagy letiltja a Kijelölési módot. Ebben a módban kiválaszthatja a vezérlőelemeket egy párbeszédablakban, így szerkesztheti azokat.</ahelp>"
-#. E;`\
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1464,7 +1314,6 @@ msgctxt ""
msgid "Properties"
msgstr "Tulajdonságok"
-#. 64W:
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1473,7 +1322,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\">Ikon</alt></image>"
-#. =O1R
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1483,7 +1331,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\">Megnyit egy párbeszédablakot, amelyen a kijelölt vezérlőelem <link href=\"text/sbasic/shared/01170100.xhp\" name=\"tulajdonságait\">tulajdonságait</link> lehet szerkeszteni.</ahelp>"
-#. `d,p
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1493,7 +1340,6 @@ msgctxt ""
msgid "Activate Test Mode"
msgstr "Tesztüzemmód bekapcsolása"
-#. dM;`
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1502,7 +1348,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\">Ikon</alt></image>"
-#. ;e7Z
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1512,7 +1357,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\">Elindítja a tesztmódot. A tesztmódból kilépéshez használja a párbeszédablak bezáró ikonját.</ahelp>"
-#. \EjX
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1521,7 +1365,6 @@ msgctxt ""
msgid "Manage Language"
msgstr "Nyelv kezelése"
-#. XsrJ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1530,7 +1373,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 "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Nyelv kezelése ikon</alt></image>"
-#. nDI$
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1539,7 +1381,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 "<ahelp hid=\".uno:ManageLanguage\">Megnyit egy <link href=\"text/sbasic/guide/translation.xhp\">párbeszédablakot</link>, amelyen engedélyezheti vagy kezelheti a párbeszédablak erőforrásait több nyelv támogatása céljából.</ahelp>"
-#. )+wE
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1548,7 +1389,6 @@ msgctxt ""
msgid "Tree Control"
msgstr "Fa vezérlőelem"
-#. z%l3
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1557,7 +1397,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 "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Nyelv kezelése ikon</alt></image>"
-#. #6Mu
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1566,7 +1405,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 "<ahelp hid=\".\">Hozzáad egy favezérlőelemet, amely hierarchikus listát jelenít meg. A listát a programból töltheti fel, API-hívások (XtreeControl) használatával.</ahelp>"
-#. .-9]
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1575,7 +1413,6 @@ msgctxt ""
msgid "Library"
msgstr "Programkönyvtár"
-#. .m9V
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1585,7 +1422,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=\"Programkönyvtár\">Programkönyvtár</link>"
-#. 5b6$
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1595,7 +1431,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\">Válassza ki a szerkeszteni kívánt programkönyvtárat.</ahelp> A kiválasztott programkönyvtár első modulja a Basic IDE-ben megjelenik."
-#. 0o2V
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1604,7 +1439,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\">Programkönyvtár lista</alt></image>"
-#. G7cZ
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1614,7 +1448,6 @@ msgctxt ""
msgid "Library List Box"
msgstr "Programkönyvtár lista"
-#. )g^4
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1623,7 +1456,6 @@ msgctxt ""
msgid "Import Dialog"
msgstr "Párbeszédablak importálása"
-#. oq!V
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1633,7 +1465,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Párbeszédablak importálása\">Párbeszédablak importálása</link>"
-#. X3#{
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1643,7 +1474,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
msgstr "<ahelp hid=\".\">Egy „Megnyitás” párbeszédablakot hív meg egy BASIC-párbeszédablakfájl importálásához.</ahelp>"
-#. 2*:B
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1652,7 +1482,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 "Ha az importált párbeszédablak neve már létezik a könyvtárban, akkor egy üzenetablak jelenik meg az importált párbeszédablak átnevezéséről. Az egyik lehetőség a párbeszédablak átnevezése a következő szabad „automatikus” névre, mintha új párbeszédablakot hozna létre. A másik lehetőség a meglévő párbeszédablak lecserélése az importált párbeszédablakra. Ha a Mégse gombra kattint, akkor nem történik meg az importálás."
-#. ,x~*
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1661,7 +1490,6 @@ msgctxt ""
msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
msgstr "A párbeszédablak honosítási adatokat is tartalmazhat. A párbeszédablak importálásakor a párbeszédablakok honosítási állapotában eltérések jöhetnek létre."
-#. EYUv
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1670,7 +1498,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 "Ha a könyvtárban több nyelv támogatott, mint az importált párbeszédablakban, vagy ha az importált párbeszédablak egyáltalán nincs honosítva, akkor a többletnyelvek hozzá lesznek adva az importált párbeszédablakhoz a párbeszédablak alapértelmezett nyelvének karakterláncait felhasználva."
-#. QwN`
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1679,7 +1506,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 "Ha az importált párbeszédablakban több nyelv támogatott, mint a könyvtárban, vagy ha a könyvtár egyáltalán nincs honosítva, akkor egy üzenetablak fog megjelenni Hozzáadás, Kihagyás és Mégse gombokkal."
-#. ?lwp
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1688,7 +1514,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 "Hozzáadás: Az importált párbeszédablak további nyelvei hozzá lesznek adva a meglévő párbeszédablakokhoz. A könyvtár alapértelmezett nyelvének erőforrásai lesznek az új nyelvekhez használva. Ugyanaz történik, mintha kézzel adná hozzá ezeket a nyelveket."
-#. tv1V
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1697,7 +1522,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 "Kihagyás: A könyvtár nyelvi beállításai változatlanok maradnak. Az importált párbeszédablak kihagyott nyelveken levő erőforrásai nem másolódnak be a könyvtárba, de megmaradnak az importált párbeszédablak forrásfájljaiban."
-#. `+K}
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1706,7 +1530,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_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Ikon</alt></image>"
-#. SPk$
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1716,7 +1539,6 @@ msgctxt ""
msgid "Import Dialog"
msgstr "Párbeszédablak importálása"
-#. f8n[
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1725,7 +1547,6 @@ msgctxt ""
msgid "Single Step"
msgstr "Egységnyi léptetés"
-#. =,O*
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1735,7 +1556,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=\"Egységnyi léptetés\">Egységnyi léptetés</link>"
-#. u@gg
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1745,7 +1565,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepInto\">Futtatja a makrót, és leállítja a következő parancs után.</ahelp>"
-#. MsIW
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1755,7 +1574,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 "A hibák elhárítása érdekében a parancsot használhatja a <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Figyelés\">Figyelés</link> paranccsal együtt."
-#. 2ARI
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1764,7 +1582,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_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Ikon</alt></image>"
-#. )n/o
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1774,7 +1591,6 @@ msgctxt ""
msgid "Single Step"
msgstr "Egységnyi léptetés"
-#. Tdn_
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1784,7 +1600,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=\"Eljárásnyi léptetés\">Eljárásnyi léptetés</link>"
-#. \S,v
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1793,7 +1608,6 @@ msgctxt ""
msgid "Run"
msgstr "Futtatás"
-#. [k\D
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1803,7 +1617,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=\"Futtatás\">Futtatás</link>"
-#. J79~
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1813,7 +1626,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
msgstr "<ahelp hid=\".uno:RunBasic\">Futtatja az aktuális modul első makróját.</ahelp>"
-#. 7`Na
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1822,7 +1634,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\">Ikon</alt></image>"
-#. R\\7
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1832,7 +1643,6 @@ msgctxt ""
msgid "Run"
msgstr "Futtatás"
-#. aTFB
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1841,7 +1651,6 @@ msgctxt ""
msgid "Enable Watch"
msgstr "Figyelés engedélyezése"
-#. aUF@
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1851,7 +1660,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=\"Figyelés engedélyezése\">Figyelés engedélyezése</link>"
-#. :N`U
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1861,7 +1669,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\">A makró változóinak megjelenítéséhez kattintson erre az ikonra. A változók tartalma külön ablakban jelenik meg.</ahelp>"
-#. RJQ7
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1871,7 +1678,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 "A kiválasztáshoz kattintson a változó nevére, majd a <emph>Figyelés engedélyezése</emph> ikonra. A változóhoz rendelt érték a neve mellett jelenik meg. Ez az érték mindig frissítődik."
-#. (K01
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1880,7 +1686,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\">Ikon</alt></image>"
-#. DgVG
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1890,7 +1695,6 @@ msgctxt ""
msgid "Enable Watch"
msgstr "Figyelés engedélyezése"
-#. H2T[
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1900,7 +1704,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 "A változófigyelő eltávolításához válassza ki a változót a Figyelő ablakban, majd kattintson a <emph>Figyelés törlése</emph> ikonra."
-#. }5yB
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1909,7 +1712,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Töréspontok kezelése"
-#. ^_n9
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1919,7 +1721,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=\"Töréspontok kezelése\">Töréspontok kezelése</link>"
-#. Ng)^
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1929,7 +1730,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
msgstr "<ahelp hid=\".\">A töréspontok kezelésére meghív egy párbeszédablakot.</ahelp>"
-#. D+5.
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1938,7 +1738,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.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Ikon</alt></image>"
-#. k/,B
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1948,7 +1747,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Töréspontok kezelése"
-#. JlBc
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/scalc.po b/source/hu/helpcontent2/source/text/scalc.po
index d47cf286299..8f0981850f4 100644
--- a/source/hu/helpcontent2/source/text/scalc.po
+++ b/source/hu/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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: 2012-01-21 23:39+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.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 "Állapotsor"
-#. ?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=\"Állapotsor\">Állapotsor</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 "Az <emph>Állapotsor</emph> az aktuális munkalapra vonatkozó információkat jeleníti meg."
-#. An|1
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Digital Signature"
msgstr "Digitális aláírás"
-#. 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ásd még: <link href=\"text/shared/guide/digital_signatures.xhp\">Digitális aláírások</link>."
-#. ]^#L
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Data"
msgstr "Adatok"
-#. 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=\"Adatok\">Adatok</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 "<ahelp hid=\".\">Az aktuális munkalap adatainak szerkesztéséhez használja az <emph>Adatok</emph> menü parancsait. Meghatározhat tartományokat, az adatokat rendezheti és szűrheti, újraszámíthatja az eredményeket, az adatokhoz vázlatot készíthet, illetve kimutatástáblát hozhat létre.</ahelp>"
-#. 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=\"Tartomány definiálása\">Tartomány definiálása</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=\"Tartomány kijelölése\">Tartomány kijelölése</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=\"Rendezés\">Rendezés</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=\"Részösszegek\">Részösszegek</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=\"Érvényesség\">Érvényesség</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=\"Többszörös műveletek\">Többszörös műveletek</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 "<link href=\"text/scalc/01/text2columns.xhp\">Szöveget oszlopokba</link>"
-#. 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=\"Összesítés\">Összesítés</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=\"Tartomány frissítése\">Tartomány frissítése</link>"
-#. YL}+
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Tools"
msgstr "Eszközök"
-#. 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=\"Eszközök\">Eszközök</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 "<ahelp hid=\".\">Az <emph>Eszközök</emph> menü tartalmazza a helyesírás-ellenőrzésre, a munkalap-hivatkozások követésére, a hibák felderítésére, illetve az esetek meghatározására szolgáló parancsokat.</ahelp>"
-#. 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 "Ezenkívül makrókat is készíthet, és azokat dokumentumokhoz rendelheti hozzá, valamint beállíthatja az eszköztárak, a menük és a billentyűk kinézetét, illetve megadhatja a $[officename]-alkalmazások alapértelmezett beállításait."
-#. K+]$
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Célértékkeresés\">Célértékkeresés</link>"
-#. x|-l
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Esetek\">Esetek</link>"
-#. 5#1e
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Automatikus javítás\">Automatikus javítás beállításai</link>"
-#. +SI%
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Testreszabás\">Testreszabás</link>"
-#. t.#m
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -268,7 +242,6 @@ msgctxt ""
msgid "$[officename] Calc Features"
msgstr "A $[officename] Calc funkciói"
-#. H4e^
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -278,7 +251,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=\"A $[officename] Calc funkciói\">A $[officename] Calc funkciói</link></variable>"
-#. :JhF
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -288,7 +260,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 "A $[officename] Calc egy táblázatkezelő alkalmazás, amelynek segítségével adatokat kezelhet, elemezhet, illetve azokon számításokat végezhet. Ezenkívül Microsoft Excel-táblázatokat is importálhat, illetve módosíthat."
-#. t_d^
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Calculations"
msgstr "Számítások"
-#. UXP_
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -308,7 +278,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 "A $[officename] Calc különböző <link href=\"text/scalc/01/04060100.xhp\" name=\"függvényeket\">függvényeket</link> biztosít, például statisztikai és banki függvényeket, amelyek segítségével az adatokon összetett számításokat végző képleteket hozhat létre."
-#. o,yq
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -318,7 +287,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 "A képletek létrehozásához használhatja a <link href=\"text/scalc/01/04060000.xhp\" name=\"Tündéreket\">Függvénytündért</link> is."
-#. pG$k
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -328,7 +296,6 @@ msgctxt ""
msgid "What-If Calculations"
msgstr "„Mi történik akkor, ha ...” típusú számítások"
-#. `\\r
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -338,7 +305,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 "Egy érdekes funkció az, hogy ha egy több tényezőből álló számítás egyik tényezőjét módosítja, akkor a változás az eredményben azonnal megjelenik. Például megnézheti, hogy egy kölcsönösszeg-számításban levő időtartam módosítása milyen hatással van a kamatlábakra és a törlesztőrészletekre. Ezenfelül előre definiált esetek segítségével nagyobb táblázatokat is kezelhet."
-#. jpCj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -348,7 +314,6 @@ msgctxt ""
msgid "Database Functions"
msgstr "Adatbázis-függvények"
-#. YBoo
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -358,7 +323,6 @@ msgctxt ""
msgid "Use spreadsheets to arrange, store, and filter your data."
msgstr "A táblázatokat adatok elrendezésére, tárolására és szűrésére használhatja."
-#. CAEb
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -368,7 +332,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 "A $[officename] Calc lehetővé teszi a táblázatok „fogd és vidd” módszerrel történő, adatbázisokból való beillesztését, valamint a munkafüzeteket adatforrásként való felhasználását körlevél $[officename] Writer programban való írásához."
-#. f@fj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -378,7 +341,6 @@ msgctxt ""
msgid "Arranging Data"
msgstr "Adatok elrendezése"
-#. \S_D
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -388,7 +350,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 "Néhány egérkattintással újraszervezheti a munkafüzetet, elrejthet vagy megjeleníthet egyes adattartományokat, speciális feltételek alapján formázhat tartományokat, vagy gyorsan ki tud számítani rész- és végösszegeket."
-#. z;ki
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -398,7 +359,6 @@ msgctxt ""
msgid "Dynamic Charts"
msgstr "Dinamikus diagramok"
-#. U5=Z
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
msgstr "A $[officename] Calc lehetővé teszi a munkafüzetadatok dinamikus diagramban történő megjelenítését, amelyek automatikusan frissülnek az adatok módosulásakor."
-#. U3BR
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "Opening and Saving Microsoft Files"
msgstr "Microsoft-fájlok megnyitása és mentése"
-#. vobx
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -428,7 +386,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 "A $[officename]-szűrők segítségével átalakíthatja az Excel-fájlokat, illetve ezekkel számos más <link href=\"text/shared/00/00000020.xhp\" name=\"formátumban\">formátumban</link> is megnyithat, illetve menthet fájlokat."
-#. y0IT
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -437,7 +394,6 @@ msgctxt ""
msgid "Text Formatting Bar"
msgstr "Szövegformázás eszköztár"
-#. -2b(
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -447,7 +403,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=\"Szövegformázás eszköztár\">Szövegformázás eszköztár</link>"
-#. eDO~
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -457,7 +412,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\">A <emph>Szövegformázás</emph> eszköztár, amely akkor jelenik meg, amikor szövegobjektumok, például szövegkeret- vagy rajzobjektumok fölé viszi az egérmutatót, formázási és igazítási parancsokat tartalmaz.</ahelp>"
-#. 2~:z
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -467,7 +421,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Betűszín\">Betűszín</link>"
-#. P(ik
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -477,7 +430,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Sorköz: 1\">Sorköz: 1</link>"
-#. t0jW
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -487,7 +439,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/05030100.xhp\" name=\"Sorköz: 1,5\">Sorköz: 1,5</link>"
-#. W-$f
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -497,7 +448,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Sorköz: 2\">Sorköz: 2</link>"
-#. N_`s
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -507,7 +457,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Balra igazítás\">Balra igazítás</link>"
-#. Y8d%
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -517,7 +466,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Középre\">Középre</link>"
-#. `huN
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -527,7 +475,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Jobbra igazítás\">Jobbra igazítás</link>"
-#. =t5u
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -537,7 +484,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Sorkizárás\">Sorkizárás</link>"
-#. QPU9
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -547,7 +493,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Felső index\">Felső index</link>"
-#. @c^R
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -557,7 +502,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Alsó index\">Alsó index</link>"
-#. ]4m4
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -567,7 +511,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Karakter\">Karakter</link>"
-#. =GPZ
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -577,7 +520,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Bekezdés\">Bekezdés</link>"
-#. nG=N
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -586,7 +528,6 @@ msgctxt ""
msgid "Drawing Object Properties Bar"
msgstr "Rajzobjektum tulajdonságai eszköztár"
-#. rl;a
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -596,7 +537,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Rajzobjektum tulajdonságai eszköztár\">Rajzobjektum tulajdonságai eszköztár</link>"
-#. Oo0\
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -606,7 +546,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 "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">A munkalapon kiválasztott objektumhoz tartozó <emph>Rajzobjektum tulajdonságai</emph> eszköztár formázási és igazítási parancsokat tartalmaz.</ahelp>"
-#. BX,d
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -616,7 +555,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=\"Vonalstílus\">Vonalstílus</link>"
-#. H!$C
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -626,7 +564,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Vonalvastagság\">Vonalvastagság</link>"
-#. xr5b
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -636,7 +573,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=\"Vonal színe\">Vonal színe</link>"
-#. 3`N%
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -646,7 +582,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Háttérszín\">Háttérszín</link>"
-#. 51A$
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -655,7 +590,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. Kq9M
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -665,7 +599,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Beszúrás\">Beszúrás</link>"
-#. #HGE
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -675,7 +608,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 "<ahelp hid=\".\">A Beszúrás menü az új elemek beszúrására használatos parancsokat tartalmazza, mint például a cellák, sorok, munkalapok és cellanevek beszúrása az aktuális munkalapba.</ahelp>"
-#. ;t_d
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -685,7 +617,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cellák\">Cellák</link>"
-#. Hm-_
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -695,7 +626,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Munkalap\">Munkalap</link>"
-#. d%gd
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -705,7 +635,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=\"Különleges karakter\">Különleges karakter</link>"
-#. /G;8
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -715,7 +644,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hiperhivatkozás\">Hiperhivatkozás</link>"
-#. X_o2
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -725,7 +653,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Függvény\">Függvény</link>"
-#. !=!N
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -735,7 +662,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=\"Függvénylista\">Függvénylista</link>"
-#. amE`
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -745,7 +671,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Megjegyzés\">Megjegyzés</link>"
-#. a4E`
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -755,7 +680,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagram\">Diagram</link>"
-#. JP9/
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -764,7 +688,6 @@ msgctxt ""
msgid "Inserts a chart."
msgstr "Beszúr egy diagramot."
-#. c1+l
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -774,7 +697,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=\"Úszó keret\">Úszó keret</link>"
-#. TxB%
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -783,7 +705,6 @@ msgctxt ""
msgid "Tools Bar"
msgstr "Eszközök eszköztár"
-#. 3}9_
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -793,7 +714,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Eszközök eszköztár\">Eszközök eszköztár</link>"
-#. }7Oj
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -803,7 +723,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\">Az Eszközök eszköztárral a leggyakrabban használt parancsokat érheti el.</ahelp>"
-#. ?W0c
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -812,7 +731,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Vezérlőelemek\">Vezérlőelemek</link>"
-#. aF?^
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -822,7 +740,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Témaválasztás\">Témaválasztás</link>"
-#. ~=3v
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -831,7 +748,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Irányított szűrő\">Irányított szűrő</link>"
-#. iSoT
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -840,7 +756,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
msgstr "<link href=\"text/scalc/01/12090100.xhp\">Indítás</link>"
-#. mH,K
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -849,7 +764,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=\"Euróátváltó\">Euróátváltó</link>"
-#. 5`[Y
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -858,7 +772,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\">Meghatározás</link>"
-#. ;`-!
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -867,7 +780,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Célértékkeresés\">Célértékkeresés</link>"
-#. 2Qne
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -876,7 +788,6 @@ msgctxt ""
msgid "Format"
msgstr "Formátum"
-#. Mv4=
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -886,7 +797,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Formátum\">Formátum</link>"
-#. 8V/1
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -896,7 +806,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\">A <emph>Formátum</emph> menü a kijelölt cellák, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objektumok\">objektumok</link> és cellatartalmak formázására szolgáló parancsokat tartalmazza.</ahelp>"
-#. a{?4
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -906,7 +815,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cellák\">Cellák</link>"
-#. V1RD
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -916,7 +824,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Oldal\">Oldal</link>"
-#. t*oI
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -926,7 +833,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Karakter\">Karakter</link>"
-#. Pto\
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -936,7 +842,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Bekezdés\">Bekezdés</link>"
-#. +N/e
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -946,7 +851,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Automatikus formázás\">Automatikus formázás</link>"
-#. IP-n
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -956,7 +860,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=\"Feltételes formázás\">Feltételes formázás</link>"
-#. n/6X
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -966,7 +869,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Vezérlőelem\">Vezérlőelem</link>"
-#. ;EV.
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -976,7 +878,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Űrlap\">Űrlap</link>"
-#. 55S8
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -985,7 +886,6 @@ msgctxt ""
msgid "Window"
msgstr "Ablak"
-#. %yCI
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -995,7 +895,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Ablak\">Ablak</link>"
-#. m4nb
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -1005,7 +904,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
msgstr "<ahelp hid=\".uno:WindowList\">A dokumentumablakok kezeléséhez és megjelenítéséhez szükséges parancsokat tartalmazza.</ahelp>"
-#. =4re
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1014,7 +912,6 @@ msgctxt ""
msgid "Page Preview Bar"
msgstr "Nyomtatási kép eszköztár"
-#. ug8\
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1024,7 +921,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=\"Nyomtatási kép eszköztár\">Nyomtatási kép eszköztár</link>"
-#. lM(\
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1034,7 +930,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\">A <emph>Nyomtatási kép</emph> eszköztár a <emph>Fájl - Nyomtatási kép</emph> lehetőség kiválasztásával jelenik meg.</ahelp>"
-#. (E;-
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1044,7 +939,6 @@ msgctxt ""
msgid "Full Screen"
msgstr "Teljes képernyő"
-#. B5(:
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1053,7 +947,6 @@ msgctxt ""
msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
msgstr "Megjeleníti vagy elrejti a menüket és eszköztárakat. A teljes képernyős módból való kilépéshez kattintson a <emph>Teljes képernyő be/ki</emph> gombra."
-#. [)Yt
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1063,7 +956,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=\"Oldal formázása\">Oldal formázása</link>"
-#. Lbp0
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1073,7 +965,6 @@ msgctxt ""
msgid "Margins"
msgstr "Margók"
-#. G|\w
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1082,7 +973,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 "Megjeleníti vagy elrejti a margókat az oldalon. A margókat egérrel áthúzhatja, vagy beállíthatja az <emph>Oldalstílus</emph> párbeszédablak <emph>Oldal</emph> lapján."
-#. r;,N
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1092,7 +982,6 @@ msgctxt ""
msgid "Scaling Factor"
msgstr "Méretezési faktor"
-#. 3WUn
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1101,7 +990,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 "Ez a vezérlőelem a kinyomtatott munkafüzet méretezését állítja be. A méretezési faktor az <emph>Oldalstílus</emph> párbeszédablak <emph>Munkalap</emph> lapján is beállítható."
-#. FngN
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1111,7 +999,6 @@ msgctxt ""
msgid "Close Preview"
msgstr "Előnézet bezárása"
-#. .l?3
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1120,7 +1007,6 @@ msgctxt ""
msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
msgstr "Az előnézet bezárásához kattintson az <emph>Előnézet bezárása</emph> gombra."
-#. Bb3m
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1129,7 +1015,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. ;!39
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1139,7 +1024,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Nézet\">Nézet</link>"
-#. D0|i
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1149,7 +1033,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
msgstr "<ahelp hid=\".\">Ez a menü a dokumentum a képernyőn való megjelenítését szabályozó parancsokat tartalmazza.</ahelp>"
-#. 7Bqn
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1158,7 +1041,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normál"
-#. =M@F
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1167,7 +1049,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
msgstr "<ahelp hid=\".\">Megjeleníti a munkalap normál nézetét.</ahelp>"
-#. _Yl`
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1177,7 +1058,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Nagyítás\">Nagyítás</link>"
-#. gsc:
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1186,7 +1066,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. K944
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1196,7 +1075,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Szerkesztés\">Szerkesztés</link>"
-#. 9,bY
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1206,7 +1084,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr "<ahelp hid=\".\">Ez a menü az aktuális dokumentum tartalmának szerkesztésére vonatkozó parancsokat tartalmazza.</ahelp>"
-#. LGG:
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1216,7 +1093,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=\"Irányított beillesztés\">Irányított beillesztés</link>"
-#. IsO[
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1226,7 +1102,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=\"Dokumentumok összehasonlítása\">Dokumentumok összehasonlítása</link>"
-#. -J\*
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1236,7 +1111,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=\"Keresés és csere\">Keresés és csere</link>"
-#. GArZ
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1246,7 +1120,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=\"Élőfej és élőláb\">Élőfej és élőláb</link>"
-#. Zxts
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1256,7 +1129,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=\"Tartalom törlése\">Tartalom törlése</link>"
-#. *hV,
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1266,7 +1138,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=\"Cellák törlése\">Cellák törlése</link>"
-#. Uc_l
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1276,7 +1147,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Hivatkozások\">Hivatkozások</link>"
-#. KltG
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1286,7 +1156,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Interaktív kép\">Interaktív kép</link>"
-#. ExHP
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1295,7 +1164,6 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "Formázás eszköztár"
-#. k9Mk
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1305,7 +1173,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formázás eszköztár\">Formázás eszköztár</link>"
-#. l(?7
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1315,7 +1182,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\">A <emph>Formázás</emph> eszköztár alapvető eszközöket tartalmaz a kézi formázások alkalmazásához.</ahelp>"
-#. /ew2
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1325,7 +1191,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Betűszín\">Betűszín</link>"
-#. %sT+
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1335,7 +1200,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=\"Balra igazítás\">Balra igazítás</link>"
-#. 6z.C
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1345,7 +1209,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=\"Vízszintesen középre igazított\">Vízszintesen középre igazított</link>"
-#. 5fdM
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1355,7 +1218,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=\"Jobbra igazítás\">Jobbra igazítás</link>"
-#. `I$C
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1365,7 +1227,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Sorkizárás\">Sorkizárás</link>"
-#. PsW5
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1375,7 +1236,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=\"Felülre igazítás\">Felülre igazítás</link>"
-#. gIH(
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1385,7 +1245,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=\"Függőlegesen középre igazítás\">Függőlegesen középre igazítás</link>"
-#. !IwA
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1395,7 +1254,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=\"Alulra igazítás\">Alulra igazítás</link>"
-#. YmpL
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1404,7 +1262,6 @@ msgctxt ""
msgid "Number Format : Date"
msgstr "Számformátum : Dátum"
-#. sEe.
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1413,7 +1270,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt cellákra a dátumformátumot alkalmazza.</ahelp>"
-#. }VJQ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1422,7 +1278,6 @@ msgctxt ""
msgid "Number Format: Exponential"
msgstr "Számformátum : Exponenciális"
-#. !c06
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1431,7 +1286,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt cellákra az exponenciális formátumot alkalmazza.</ahelp>"
-#. p27,
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1440,7 +1294,6 @@ msgctxt ""
msgid "Additional icons"
msgstr "További ikonok"
-#. *(!1
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1449,7 +1302,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 "Ha a <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link>-támogatás engedélyezve van, további két ikon látható."
-#. f,eh
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1458,7 +1310,6 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Balról jobbra"
-#. `G|#
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1467,7 +1318,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 "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">balról jobbra ikon</alt></image>"
-#. ,^Od
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1476,7 +1326,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
msgstr "<ahelp hid=\".uno:ParaLeftToRight\">A szöveg balról jobbra haladva vihető be.</ahelp>"
-#. IOMq
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1485,7 +1334,6 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Jobbról balra"
-#. ]_8^
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1494,7 +1342,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 "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">jobbról balra ikon</alt></image>"
-#. O5(^
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1503,7 +1350,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\">A komplex megjelenítésű szövegekben a szövegek bevitele jobbról balra haladva történik.</ahelp>"
-#. :Vuh
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1512,7 +1358,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A cella tartalmát balra igazítja.</ahelp>"
-#. :oKH
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1521,7 +1366,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A cella tartalmát jobbra igazítja.</ahelp>"
-#. ;iar
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1530,7 +1374,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A cella tartalmát vízszintesen középre igazítja.</ahelp>"
-#. qYmO
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1539,7 +1382,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A cella tartalmát a cella bal és jobb széléhez igazítja.</ahelp>"
-#. 1r0%
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1548,7 +1390,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Calc Help"
msgstr "Üdvözöljük a $[officename] Calc Súgójában"
-#. nH=N
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1558,7 +1399,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Calc Help"
msgstr "Üdvözöljük a $[officename] Calc Súgójában"
-#. uffg
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1568,7 +1408,6 @@ msgctxt ""
msgid "How to Work With $[officename] Calc"
msgstr "A $[officename] Calc használata"
-#. +O;]
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1578,7 +1417,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Függvények kategória szerinti felsorolása\">Függvények kategória szerinti felsorolása</link>"
-#. 6=g#
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1588,7 +1426,6 @@ msgctxt ""
msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr "$[officename] Calc menük, eszköztárak és billentyűk"
-#. p3Y6
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1598,7 +1435,6 @@ msgctxt ""
msgid "Help about the Help"
msgstr "A Súgó használata"
-#. MO6?
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1607,7 +1443,6 @@ msgctxt ""
msgid "Menus"
msgstr "Menük"
-#. 9.ES
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1617,7 +1452,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=\"Menük\">Menük</link></variable>"
-#. tquf
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1627,7 +1461,6 @@ msgctxt ""
msgid "The following menu commands are available for spreadsheets."
msgstr "Az alábbi menüparancsok érhetőek el munkafüzetek esetén."
-#. ]O/]
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
@@ -1636,7 +1469,6 @@ msgctxt ""
msgid "Formula Bar"
msgstr "Képlet eszköztár"
-#. o(*a
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
@@ -1646,7 +1478,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Képlet eszköztár\">Képlet eszköztár</link>"
-#. G,pG
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
@@ -1656,7 +1487,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Ez az eszköztár a képletek bevitelét segíti.</ahelp>"
-#. qp0T
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1665,7 +1495,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "Eszköztárak"
-#. Y$D6
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1675,7 +1504,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=\"Eszköztárak\">Eszköztárak</link></variable>"
-#. 9%]]
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1685,7 +1513,6 @@ msgctxt ""
msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
msgstr "Ez az almenü felsorolja a munkafüzetekben rendelkezésre álló eszköztárakat.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-#. D,cp
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1694,7 +1521,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. whj]
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1704,7 +1530,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Fájl\">Fájl</link>"
-#. IpkS
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1714,7 +1539,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
msgstr "<ahelp hid=\".\">Ezek a parancsok az aktuális dokumentumra érvényesek; például új dokumentum megnyitása vagy az alkalmazás bezárása.</ahelp>"
-#. ~bP(
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1724,7 +1548,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Megnyitás\">Megnyitás</link>"
-#. nLGu
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1734,7 +1557,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=\"Mentés másként\">Mentés másként</link>"
-#. m(sz
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1744,7 +1566,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Verziók\">Verziók</link>"
-#. WmV7
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1754,7 +1575,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Tulajdonságok\">Tulajdonságok</link>"
-#. *N$G
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1764,7 +1584,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Nyomtatás\">Nyomtatás</link>"
-#. qLus
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1774,7 +1593,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=\"Nyomtató beállítása\">Nyomtató beállítása</link>"
-#. L1i_
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -1783,7 +1601,6 @@ msgctxt ""
msgid "Picture Bar"
msgstr "Kép eszköztár"
-#. 0k6J
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -1793,7 +1610,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Kép eszköztár\">Kép eszköztár</link>"
-#. ick9
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/scalc/00.po b/source/hu/helpcontent2/source/text/scalc/00.po
index 54c7cbe390f..ae34ae5fd11 100644
--- a/source/hu/helpcontent2/source/text/scalc/00.po
+++ b/source/hu/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: 2012-07-14 10:15+0200\n"
"Last-Translator: Gábor <kelemeng@gnome.hu>\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 "Ablak menü"
-#. @l#5
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Window Menu"
msgstr "Ablak menü"
-#. 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\">Válassza az <emph>Ablak - Felosztás</emph> menüparancsot.</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\">Válassza az <emph>Ablak - Rögzítés</emph> menüparancsot.</variable>"
-#. UNTD
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Data Menu"
msgstr "Adatok menü"
-#. ;o)Y
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Data Menu"
msgstr "Adatok menü"
-#. 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 "<variable id=\"text2columns\">Válassza az <emph>Adatok - Szöveget oszlopokba</emph> menüparancsot.</variable>"
-#. 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\">Válassza az <emph>Adatok - Tartomány definiálása</emph> menüparancsot.</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\">Válassza az <emph>Adatok - Tartomány kijelölése</emph> menüparancsot.</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\">Válassza az <emph>Adatok - Rendezés</emph> menüparancsot.</variable>"
-#. 8#D|
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
msgstr "Válassza az <emph>Adatok - Rendezés - Rendezési feltételek</emph> fület."
-#. sBbC
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "On Standard bar, click"
msgstr "A Standard eszköztáron kattintson a következőre:"
-#. 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\">Ikon</alt></image>"
-#. $sCd
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "Rendezés növekvő sorrendben"
-#. 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\">Ikon</alt></image>"
-#. RQ+1
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr "Rendezés csökkenő sorrendben"
-#. zUIt
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
msgstr "<variable id=\"dnstot\">Válassza az <emph>Adatok - Rendezés - Beállítások</emph> fület. </variable>"
-#. xoa7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -190,7 +172,6 @@ msgctxt ""
msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
msgstr "<variable id=\"dnftr\">Válassza az <emph>Adatok - Szűrő</emph> menüparancsot.</variable>"
-#. rgU6
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -200,7 +181,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
msgstr "Válassza az <emph>Adatok - Szűrő - Automatikus szűrő</emph> menüparancsot."
-#. jDL/
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -210,7 +190,6 @@ msgctxt ""
msgid "On Tools bar or Table Data bar, click"
msgstr "Az Eszközök vagy a Táblaadat eszköztáron kattintson a következőre:"
-#. 8TnS
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -219,7 +198,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\">Ikon</alt></image>"
-#. 6wp6
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Automatikus szűrő"
-#. 6J0:
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
msgstr "<variable id=\"dnfspz\">Válassza az <emph>Adatok - Szűrő - Irányított szűrő</emph> menüparancsot.</variable>"
-#. oEjJ
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
msgstr "Válassza az <emph>Adatok - Szűrő - Általános szűrő - Több beállítás >></emph> gombot."
-#. =H]U
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
msgstr "Válassza az <emph>Adatok - Szűrő - Irányított szűrő - Részletek >></emph> gombot."
-#. 3RE#
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
msgstr "Válassza az <emph>Adatok - Szűrő - Szűrő eltávolítása</emph> menüparancsot."
-#. NL[I
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
msgstr "Az Adattábla eszköztáron kattintson a <emph>Szűrő/rendezés eltávolítása</emph> lehetőségre."
-#. gV:u
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -288,7 +260,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\">Ikon</alt></image>"
-#. ~L,7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Remove Filter/Sort"
msgstr "Szűrő/rendezés eltávolítása"
-#. G\8`
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
msgstr "<variable id=\"dnaftas\">Válassza az <emph>Adatok - Szűrő - Automatikus szűrő elrejtése</emph> menüparancsot.</variable>"
-#. NAdQ
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -318,7 +287,6 @@ msgctxt ""
msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
msgstr "<variable id=\"dntegs\">Válassza az <emph>Adatok - Részösszegek</emph> menüparancsot.</variable>"
-#. *j.I
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -328,7 +296,6 @@ msgctxt ""
msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
msgstr "<variable id=\"dntezd\">Válassza az <emph>Adatok - Részösszegek - Első, Második vagy Harmadik csoport</emph> fület. </variable>"
-#. =0o(
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -338,7 +305,6 @@ msgctxt ""
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
msgstr "<variable id=\"dntopi\">Válassza az <emph>Adatok - Részösszegek - Beállítások</emph> fület. </variable>"
-#. 2E4E
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -348,7 +314,6 @@ msgctxt ""
msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
msgstr "<variable id=\"datengueltig\">Válassza az <emph>Adatok - Érvényesség</emph> menüparancsot.</variable>"
-#. :,?t
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -358,7 +323,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr "<variable id=\"datengueltigwerte\">Válassza az <emph>Adatok - Érvényesség - Feltételek</emph> fület. </variable>"
-#. 4rb^
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -368,7 +332,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr "<variable id=\"datengueltigeingabe\">Válassza az <emph>Adatok - Érvényesség - Segédszöveg</emph> fület. </variable>"
-#. *,n#
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -378,7 +341,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr "<variable id=\"datengueltigfehler\">Válassza az <emph>Adatok - Érvényesség - Figyelmeztetés hibára</emph> fület. </variable>"
-#. 1s|:
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -388,7 +350,6 @@ msgctxt ""
msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
msgstr "<variable id=\"dnmfo\">Válassza az <emph>Adatok - Többszörös műveletek</emph> menüparancsot.</variable>"
-#. ;C/L
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -398,7 +359,6 @@ msgctxt ""
msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
msgstr "<variable id=\"dnksd\">Válassza az <emph>Adatok - Összesítés</emph> menüparancsot.</variable>"
-#. pMb?
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
msgstr "<variable id=\"dngld\">Válassza az <emph>Adatok - Csoportosítás és vázlat</emph> menüparancsot.</variable>"
-#. A4B5
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
msgstr "<variable id=\"dngda\">Válassza az <emph>Adatok - Csoportosítás és vázlat - Részletek elrejtése</emph> menüparancsot.</variable>"
-#. DUOo
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -428,7 +386,6 @@ msgctxt ""
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
msgstr "<variable id=\"dngde\">Válassza az <emph>Adatok - Csoportosítás és vázlat - Részletek</emph> menüparancsot.</variable>"
-#. Z;s}
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr "Válassza az <emph>Adatok - Csoportosítás és vázlat - Csoportosítás</emph> menüparancsot."
-#. g9Wm
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -448,7 +404,6 @@ msgctxt ""
msgid "F12"
msgstr "F12"
-#. f#3$
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -458,7 +413,6 @@ msgctxt ""
msgid "On <emph>Tools</emph> bar, click"
msgstr "Az <emph>Eszközök</emph> eszköztáron kattintson a következőre:"
-#. _fJr
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -467,7 +421,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\">Ikon</alt></image>"
-#. #bgs
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -477,7 +430,6 @@ msgctxt ""
msgid "Group"
msgstr "Csoportosítás"
-#. O-~Y
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -487,7 +439,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
msgstr "Válassza az <emph>Adatok - Csoportosítás és vázlat - Csoport szétbontása</emph> menüparancsot."
-#. d/BO
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -497,7 +448,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-#. so_9
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -507,7 +457,6 @@ msgctxt ""
msgid "On <emph>Tools</emph> bar, click"
msgstr "Az <emph>Eszközök</emph> eszköztáron kattintson a következőre:"
-#. g$#7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -516,7 +465,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\">Ikon</alt></image>"
-#. -Q!,
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -526,7 +474,6 @@ msgctxt ""
msgid "Ungroup"
msgstr "Csoport szétbontása"
-#. D9yU
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -536,7 +483,6 @@ msgctxt ""
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr "<variable id=\"dnglagl\">Válassza az <emph>Adatok - Csoportosítás és vázlat - Automatikus vázlat</emph> menüparancsot.</variable>"
-#. o`u;
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -546,7 +492,6 @@ msgctxt ""
msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
msgstr "<variable id=\"dnglef\">Válassza az <emph>Adatok - Csoportosítás és vázlat - Eltávolítás</emph> menüparancsot.</variable>"
-#. slNR
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -555,7 +500,6 @@ msgctxt ""
msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
msgstr "<variable id=\"dngdrill\">Válassza az <emph>Adatok - Csoportosítás és vázlat - Részletek</emph> menüparancsot (egyes kimutatástáblákhoz) </variable>"
-#. :M`i
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -565,7 +509,6 @@ msgctxt ""
msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndtpt\">Válassza az <emph>Adatok - Kimutatástábla</emph> menüparancsot.</variable>"
-#. g6T(
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -575,7 +518,6 @@ msgctxt ""
msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
msgstr "<variable id=\"dndpa\">Válassza az <emph>Adatok - Kimutatástábla - Létrehozás</emph> menüparancsot.</variable>"
-#. eiV?
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -585,7 +527,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\">Válassza az <emph>Adatok - Kimutatástábla - Létrehozás</emph> menüparancsot, majd a Forrás kijelölése párbeszédablakban válassza <emph>A $[officename] bejegyzett adatforrása</emph> beállítást. </variable>"
-#. +QIS
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -595,7 +536,6 @@ msgctxt ""
msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
msgstr "Válassza az <emph>Adatok - Kimutatástábla - Létrehozás</emph> menüparancsot, majd a Forrás kijelölése párbeszédablakban válassza az <emph>Aktuális kijelölés</emph> beállítást."
-#. 67Id
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -605,7 +545,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 "Válassza az <emph>Adatok - Kimutatástábla - Létrehozás</emph> menüparancsot, majd a Forrás kijelölése párbeszédablakban válassza <emph>A $[officename] bejegyzett adatforrása</emph> lehetőséget, és kattintson az <emph>OK</emph> gombra az <emph>Adatforrás kiválasztása</emph> párbeszédablak megjelenítéséhez."
-#. Mr.H
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -615,7 +554,6 @@ msgctxt ""
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
msgstr "<variable id=\"dndpak\">Válassza az <emph>Adatok - Kimutatástábla - Frissítés</emph> menüparancsot.</variable>"
-#. 26r^
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -625,7 +563,6 @@ msgctxt ""
msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
msgstr "<variable id=\"dndploe\">Válassza az <emph>Adatok - Kimutatástábla - Törlés</emph> menüparancsot.</variable>"
-#. gA9I
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -635,7 +572,6 @@ msgctxt ""
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
msgstr "<variable id=\"dndakt\">Válassza az <emph>Adatok - Tartomány frissítése</emph> menüparancsot.</variable>"
-#. k2o*
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -644,7 +580,6 @@ msgctxt ""
msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
msgstr "<variable id=\"grouping\">Válassza az <emph>Adatok - Csoportosítás és vázlat - Csoportosítás</emph> menüparancsot.</variable>"
-#. Sj%-
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -653,7 +588,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "Formátum menü"
-#. /_ii
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -663,7 +597,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "Formátum menü"
-#. Ye{j
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -673,7 +606,6 @@ msgctxt ""
msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
msgstr "<variable id=\"fozelle\">Válassza a <emph>Formátum - Cellák</emph> menüparancsot.</variable>"
-#. 1Rqp
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -683,7 +615,6 @@ msgctxt ""
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr "<variable id=\"fozelstz\">Válassza a <emph>Formátum - Cellák - Cellavédelem</emph> fület. </variable>"
-#. /.33
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -693,7 +624,6 @@ msgctxt ""
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
msgstr "<variable id=\"fozei\">Válassza a <emph>Formátum - Sor</emph> menüparancsot.</variable>"
-#. ~7Wo
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -703,7 +633,6 @@ msgctxt ""
msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
msgstr "<variable id=\"fozeiophoe\">Válassza a <emph>Formátum - Sor - Optimális magasság</emph> menüparancsot.</variable>"
-#. Z%@Z
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -713,7 +642,6 @@ msgctxt ""
msgid "Choose <emph>Format - Row - Hide</emph>"
msgstr "Válassza a <emph>Formátum - Sor - Elrejtés</emph> menüparancsot."
-#. !s(r
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -723,7 +651,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Hide</emph>"
msgstr "Válassza a <emph>Formátum - Oszlop - Elrejtés</emph> menüparancsot."
-#. YIK=
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -733,7 +660,6 @@ msgctxt ""
msgid "Choose <emph>Format - Sheet - Hide</emph>"
msgstr "Válassza a <emph>Formátum - Munkalap - Elrejtés</emph> menüparancsot."
-#. #idk
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -743,7 +669,6 @@ msgctxt ""
msgid "Choose <emph>Format - Row - Show</emph>"
msgstr "Válassza a <emph>Formátum - Sor - Megjelenítés</emph> menüparancsot."
-#. cj,D
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -753,7 +678,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Show</emph>"
msgstr "Válassza a <emph>Formátum - Oszlop - Megjelenítés</emph> menüparancsot."
-#. cJ13
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -763,7 +687,6 @@ msgctxt ""
msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
msgstr "<variable id=\"fospa\">Válassza a <emph>Formátum - Oszlop</emph> menüparancsot.</variable>"
-#. W@Z0
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -773,7 +696,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
msgstr "Válassza a <emph>Formátum - Oszlop - Optimális szélesség</emph> menüparancsot."
-#. DLTx
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -783,7 +705,6 @@ msgctxt ""
msgid "Double-click right column separator in column headers"
msgstr "Kattintson duplán az oszlopok fejléceiben található jobb oldali oszlop-elválasztóra."
-#. aB7/
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -793,7 +714,6 @@ msgctxt ""
msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
msgstr "<variable id=\"fot\">Válassza a <emph>Formátum - Munkalap</emph> menüparancsot.</variable>"
-#. }3]`
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -803,7 +723,6 @@ msgctxt ""
msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
msgstr "<variable id=\"fotu\">Válassza a <emph>Formátum - Munkalap - Átnevezés</emph> menüparancsot.</variable>"
-#. +@gC
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -813,7 +732,6 @@ msgctxt ""
msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
msgstr "<variable id=\"fotenb\">Válassza a <emph>Formátum - Munkalap - Megjelenítés</emph> menüparancsot.</variable>"
-#. u.;w
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -822,7 +740,6 @@ msgctxt ""
msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
msgstr "<variable id=\"foste\">Válassza a <emph>Formátum - Oldal</emph> menüparancsot.</variable>"
-#. G_rh
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -832,7 +749,6 @@ msgctxt ""
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
msgstr "<variable id=\"fostel\">Válassza a <emph>Formátum - Oldal - Munkalap</emph> fület. </variable>"
-#. D;sc
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -842,7 +758,6 @@ msgctxt ""
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
msgstr "<variable id=\"fodrbe\">Válassza a <emph>Formátum - Nyomtatási tartomány</emph> menüparancsot.</variable>"
-#. =-j\
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -852,7 +767,6 @@ msgctxt ""
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
msgstr "<variable id=\"fodrfe\">Válassza a <emph>Formátum - Nyomtatási tartomány - Meghatározás</emph> menüparancsot.</variable>"
-#. 7^yS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -862,7 +776,6 @@ msgctxt ""
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
msgstr "<variable id=\"fodrhin\">Válassza a <emph>Formátum - Nyomtatási tartomány - Hozzáadás</emph> menüparancsot.</variable>"
-#. +{C^
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -872,7 +785,6 @@ msgctxt ""
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
msgstr "<variable id=\"fodbah\">Válassza a <emph>Formátum - Nyomtatási tartomány - Eltávolítás</emph> menüparancsot.</variable>"
-#. V8ib
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -882,7 +794,6 @@ msgctxt ""
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
msgstr "<variable id=\"fodbbe\">Válassza a <emph>Formátum - Nyomtatási tartomány - Szerkesztés</emph> menüparancsot.</variable>"
-#. gaR-
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -892,7 +803,6 @@ msgctxt ""
msgid "Choose <emph>Format - AutoFormat</emph>"
msgstr "Válassza a <emph>Formátum - Automatikus formázás</emph> menüparancsot."
-#. E)b+
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -902,7 +812,6 @@ msgctxt ""
msgid "On the Tools bar, click"
msgstr "Az Eszközök eszköztáron kattintson az alábbi ikonra:"
-#. A3[3
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -911,7 +820,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\">Ikon</alt></image>"
-#. ~W\I
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -921,7 +829,6 @@ msgctxt ""
msgid "AutoFormat"
msgstr "Automatikus formázás"
-#. ixYZ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -931,7 +838,6 @@ msgctxt ""
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr "<variable id=\"bedingte\">Válassza a <emph>Formátum - Feltételes formázás</emph> menüparancsot.</variable>"
-#. s_F\
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -940,7 +846,6 @@ msgctxt ""
msgid "Insert Menu"
msgstr "Beszúrás menü"
-#. aX:O
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -950,7 +855,6 @@ msgctxt ""
msgid "Insert Menu"
msgstr "Beszúrás menü"
-#. dg]o
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -960,7 +864,6 @@ msgctxt ""
msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
msgstr "<variable id=\"eimaum\">Válassza a <emph>Beszúrás - Töréspont</emph> menüparancsot.</variable>"
-#. -:0c
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -970,7 +873,6 @@ msgctxt ""
msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
msgstr "<variable id=\"eimaumze\">Válassza a <emph>Beszúrás - Töréspont - Sortörés</emph> menüparancsot.</variable>"
-#. j$4R
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -980,7 +882,6 @@ msgctxt ""
msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
msgstr "<variable id=\"eimaumsp\">Válassza a <emph>Beszúrás - Töréspont - Oszloptörés</emph> menüparancsot.</variable>"
-#. 67cT
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -990,7 +891,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Cells</emph>"
msgstr "Válassza a <emph>Beszúrás - Cellák</emph> menüparancsot."
-#. IXVn
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1000,7 +900,6 @@ msgctxt ""
msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
msgstr "Nyissa meg a <emph>Cellák beszúrása</emph> eszköztárat az Eszközök eszköztárból:"
-#. l67|
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1009,7 +908,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_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Ikon</alt></image>"
-#. ?mkp
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1019,7 +917,6 @@ msgctxt ""
msgid "Insert Cells"
msgstr "Cellák beszúrása"
-#. 3Eh+
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1028,7 +925,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\">Ikon</alt></image>"
-#. pr]!
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1038,7 +934,6 @@ msgctxt ""
msgid "Insert Cells Down"
msgstr "Cellák beszúrása lefelé"
-#. =(n1
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1047,7 +942,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\">Ikon</alt></image>"
-#. PF1C
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1057,7 +951,6 @@ msgctxt ""
msgid "Insert Cells Right"
msgstr "Cellák beszúrása jobbra"
-#. 9i9%
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1066,7 +959,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\">Ikon</alt></image>"
-#. 5A4i
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1076,7 +968,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "Sorok beszúrása"
-#. 77Kf
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1085,7 +976,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\">Ikon</alt></image>"
-#. MxfX
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1095,7 +985,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Oszlopok beszúrása"
-#. IpVE
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1105,7 +994,6 @@ msgctxt ""
msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
msgstr "<variable id=\"eizei\">Válassza a <emph>Beszúrás - Sorok</emph> menüparancsot.</variable>"
-#. 86R`
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1115,7 +1003,6 @@ msgctxt ""
msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
msgstr "<variable id=\"eispa\">Válassza a <emph>Beszúrás - Oszlopok</emph> menüparancsot.</variable>"
-#. F[Io
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1125,7 +1012,6 @@ msgctxt ""
msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
msgstr "<variable id=\"eitab\">Válassza a <emph>Beszúrás - Munkalap</emph> menüparancsot.</variable>"
-#. ?dja
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1134,7 +1020,6 @@ msgctxt ""
msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
msgstr "<variable id=\"eitabfile\">Válassza a <emph>Beszúrás - Munkalap fájlból</emph> menüparancsot.</variable>"
-#. pfW;
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1144,7 +1029,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Function</emph>"
msgstr "Válassza a <emph>Beszúrás - Függvény</emph> menüparancsot."
-#. u^p.
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1154,7 +1038,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-#. bB^S
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1164,7 +1047,6 @@ msgctxt ""
msgid "On <emph>Formula Bar</emph>, click"
msgstr "A <emph>Képlet eszköztáron</emph> kattintson a következőre:"
-#. O@He
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1173,7 +1055,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\">Ikon</alt></image>"
-#. eQ;P
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1183,7 +1064,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "Függvénytündér"
-#. (ftC
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1193,7 +1073,6 @@ msgctxt ""
msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
msgstr "<variable id=\"eikada\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Adatbázis</emph> lehetőséget.</variable>"
-#. l^0(
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1203,7 +1082,6 @@ msgctxt ""
msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
msgstr "<variable id=\"eikadaze\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Dátum és idő</emph> lehetőséget.</variable>"
-#. hIwc
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1213,7 +1091,6 @@ msgctxt ""
msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
msgstr "<variable id=\"eikafi\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Pénzügyi</emph> lehetőséget.</variable>"
-#. !0p8
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1223,7 +1100,6 @@ msgctxt ""
msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
msgstr "<variable id=\"eikain\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Információ</emph> lehetőséget.</variable>"
-#. sy^H
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1233,7 +1109,6 @@ msgctxt ""
msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
msgstr "<variable id=\"eikalo\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Logikai</emph> lehetőséget.</variable>"
-#. )B^,
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1243,7 +1118,6 @@ msgctxt ""
msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
msgstr "<variable id=\"eikama\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Matematikai</emph> lehetőséget.</variable>"
-#. !.2q
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1253,7 +1127,6 @@ msgctxt ""
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
msgstr "<variable id=\"eikamatrix\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Tömb</emph> lehetőséget.</variable>"
-#. rPve
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1263,7 +1136,6 @@ msgctxt ""
msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
msgstr "<variable id=\"eikasta\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Statisztikai</emph> lehetőséget.</variable>"
-#. NnfJ
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1273,7 +1145,6 @@ msgctxt ""
msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
msgstr "<variable id=\"eikatext\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Szöveg</emph> lehetőséget.</variable>"
-#. P{pi
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1283,7 +1154,6 @@ msgctxt ""
msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
msgstr "<variable id=\"efefft\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Munkafüzet</emph> lehetőséget.</variable>"
-#. gY/;
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1293,7 +1163,6 @@ msgctxt ""
msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addin\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Kiegészítő</emph> lehetőséget.</variable>"
-#. 6=\,
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1303,7 +1172,6 @@ msgctxt ""
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\">Válassza a <emph>Beszúrás - Függvény</emph> - Kategória: <emph>Kiegészítő</emph> lehetőséget.</variable>"
-#. B1cI
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1313,7 +1181,6 @@ msgctxt ""
msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
msgstr "<variable id=\"funktionsliste\">Válassza a <emph>Beszúrás - Függvénylista</emph> menüparancsot.</variable>"
-#. *MEy
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1323,7 +1190,6 @@ msgctxt ""
msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
msgstr "<variable id=\"einamen\">Válassza a <emph>Beszúrás - Nevek</emph> menüparancsot.</variable>"
-#. A{04
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1333,7 +1199,6 @@ msgctxt ""
msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
msgstr "<variable id=\"eiextdata\">Válassza a <emph>Beszúrás - Hivatkozás külső adatra</emph> menüparancsot.</variable>"
-#. ORCG
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1343,7 +1208,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Names - Define</emph>"
msgstr "Válassza a <emph>Beszúrás - Nevek - Megadás</emph> menüparancsot."
-#. m^`J
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1353,7 +1217,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-#. )Yo.
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1363,7 +1226,6 @@ msgctxt ""
msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
msgstr "<variable id=\"einaei\">Válassza a <emph>Beszúrás - Nevek - Beszúrás</emph> menüparancsot.</variable>"
-#. t~nH
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1373,7 +1235,6 @@ msgctxt ""
msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
msgstr "<variable id=\"einaueb\">Válassza a <emph>Beszúrás - Nevek - Létrehozás</emph> menüparancsot.</variable>"
-#. Brvg
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1383,7 +1244,6 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\">Válassza a <emph>Beszúrás - Nevek - Címkék</emph> menüparancsot.</variable>"
-#. %;qZ
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1392,7 +1252,6 @@ msgctxt ""
msgid "View Menu"
msgstr "Nézet menü"
-#. n62C
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1402,7 +1261,6 @@ msgctxt ""
msgid "View Menu"
msgstr "Nézet menü"
-#. ^x;(
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1412,7 +1270,6 @@ msgctxt ""
msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
msgstr "<variable id=\"aspze\">Válassza a <emph>Nézet - Oszlop- és sorfejlécek</emph> menüparancsot.</variable>"
-#. s`(z
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1422,7 +1279,6 @@ msgctxt ""
msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
msgstr "<variable id=\"awehe\">Válassza a <emph>Nézet - Értékkiemelés</emph> menüparancsot.</variable>"
-#. 6D#n
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1432,7 +1288,6 @@ msgctxt ""
msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
msgstr "<variable id=\"rechenleiste\">Válassza a <emph>Nézet - Eszköztárak - Képlet eszköztár</emph> menüparancsot.</variable>"
-#. BW?#
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1442,7 +1297,6 @@ msgctxt ""
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
msgstr "<variable id=\"seumvo\">Válassza a <emph>Nézet - Oldaltörés előnézete</emph> menüparancsot.</variable>"
-#. +9f6
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1451,7 +1305,6 @@ msgctxt ""
msgid "Tools Menu"
msgstr "Eszközök menü"
-#. d|:s
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1461,7 +1314,6 @@ msgctxt ""
msgid "Tools Menu"
msgstr "Eszközök menü"
-#. oiIq
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1471,7 +1323,6 @@ msgctxt ""
msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
msgstr "<variable id=\"exdektv\">Válassza az <emph>Eszközök - Detektív</emph> menüparancsot.</variable>"
-#. 1u_t
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1481,7 +1332,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
msgstr "Válassza az <emph>Eszközök - Detektív - Előzmények felderítése</emph> menüparancsot."
-#. *h7$
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1491,7 +1341,6 @@ msgctxt ""
msgid "Shift+F7"
msgstr "Shift+F7"
-#. ,3PU
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1501,7 +1350,6 @@ msgctxt ""
msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
msgstr "<variable id=\"silbentrennungc\">Válassza az <emph>Eszközök - Nyelv - Elválasztás</emph> menüparancsot.</variable>"
-#. :]Pl
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1511,7 +1359,6 @@ msgctxt ""
msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
msgstr "<variable id=\"exdvore\">Válassza az <emph>Eszközök - Detektív - Előzmények eltávolítása</emph> menüparancsot.</variable>"
-#. C9sy
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1521,7 +1368,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
msgstr "Válassza az <emph>Eszközök - Detektív - Függőségek felderítése</emph> menüparancsot."
-#. 4fQ-
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1531,7 +1377,6 @@ msgctxt ""
msgid "Shift+F5"
msgstr "Shift+F5"
-#. N@yh
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1541,7 +1386,6 @@ msgctxt ""
msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
msgstr "<variable id=\"exdszne\">Válassza az <emph>Eszközök - Detektív - Függőségek eltávolítása</emph> menüparancsot.</variable>"
-#. 4[c@
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1551,7 +1395,6 @@ msgctxt ""
msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
msgstr "<variable id=\"exdase\">Válassza az <emph>Eszközök - Detektív - Minden felderítés eltávolítása</emph> menüparancsot.</variable>"
-#. Wa9S
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1561,7 +1404,6 @@ msgctxt ""
msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
msgstr "<variable id=\"exdszfe\">Válassza az <emph>Eszközök - Detektív - Hiba felderítése</emph> menüparancsot.</variable>"
-#. SEF:
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1571,7 +1413,6 @@ msgctxt ""
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
msgstr "<variable id=\"fuellmodus\">Válassza az <emph>Eszközök - Detektív - Kitöltési mód</emph> menüparancsot.</variable>"
-#. EY1M
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1581,7 +1422,6 @@ msgctxt ""
msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
msgstr "<variable id=\"dateneinkreisen\">Válassza az <emph>Eszközök - Detektív - Érvénytelen adatok megjelölése</emph> menüparancsot.</variable>"
-#. NW5)
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1591,7 +1431,6 @@ msgctxt ""
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
msgstr "<variable id=\"spurenaktualisieren\">Válassza az <emph>Eszközök - Detektív - Felderítések frissítése</emph> menüparancsot.</variable>"
-#. 4B=D
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1601,7 +1440,6 @@ msgctxt ""
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
msgstr "<variable id=\"automatisch\">Válassza az <emph>Eszközök - Detektív - Automatikus frissítés</emph> menüparancsot.</variable>"
-#. zS5z
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1611,7 +1449,6 @@ msgctxt ""
msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
msgstr "<variable id=\"exzws\">Válassza az <emph>Eszközök - Célértékkeresés</emph> menüparancsot.</variable>"
-#. 9dak
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1620,7 +1457,6 @@ msgctxt ""
msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
msgstr "<variable id=\"solver\">Válassza az Eszközök - Megoldó menüparancsot.</variable>"
-#. 00qI
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1629,7 +1465,6 @@ msgctxt ""
msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
msgstr "<variable id=\"solver_options\">Válassza az Eszközök - Megoldó menüparancsot, majd kattintson a Beállítások gombra.</variable>"
-#. Kg56
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1639,7 +1474,6 @@ msgctxt ""
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
msgstr "<variable id=\"exsze\">Válassza az <emph>Eszközök - Esetek</emph> menüparancsot.</variable>"
-#. *[le
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1649,7 +1483,6 @@ msgctxt ""
msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
msgstr "<variable id=\"exdos\">Válassza az <emph>Eszközök - Dokumentum védelme</emph> menüparancsot.</variable>"
-#. T#lL
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1659,7 +1492,6 @@ msgctxt ""
msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
msgstr "<variable id=\"exdst\">Válassza az <emph>Eszközök - Dokumentum védelme - Munkalap</emph> menüparancsot.</variable>"
-#. GM$X
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1669,7 +1501,6 @@ msgctxt ""
msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
msgstr "<variable id=\"exdsd\">Válassza az <emph>Eszközök - Dokumentum védelme - Dokumentum</emph> menüparancsot.</variable>"
-#. ,J^R
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1679,7 +1510,6 @@ msgctxt ""
msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
msgstr "<variable id=\"zellinhalte\">Válassza az <emph>Eszközök - Cellatartalom</emph> menüparancsot.</variable>"
-#. O57m
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1689,7 +1519,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
msgstr "Válassza az <emph>Eszközök - Cellatartalom - Újraszámítás</emph> menüparancsot."
-#. y]eB
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1699,7 +1528,6 @@ msgctxt ""
msgid "F9"
msgstr "F9"
-#. *I5/
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1709,7 +1537,6 @@ msgctxt ""
msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
msgstr "<variable id=\"exatmb\">Válassza az <emph>Eszközök - Cellatartalom - Automatikus számítás</emph> menüparancsot.</variable>"
-#. .Uai
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1719,7 +1546,6 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr "<variable id=\"autoeingabe\">Válassza az <emph>Eszközök - Cellatartalom - Automatikus bevitel</emph> menüparancsot.</variable>"
-#. c15k
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1728,7 +1554,6 @@ msgctxt ""
msgid "To access this function..."
msgstr "Ennek a funkciónak az eléréséhez..."
-#. Ya[K
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1738,7 +1563,6 @@ msgctxt ""
msgid "<variable id=\"wie\">To access this function... </variable>"
msgstr "<variable id=\"wie\">Ennek a funkciónak az eléréséhez...</variable>"
-#. CTE7
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1747,7 +1571,6 @@ msgctxt ""
msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
msgstr "<variable id=\"moreontop\">További leírás az oldal tetején található.</variable>"
-#. u\5L
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1756,7 +1579,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 "<variable id=\"optional\">A %PRODUCTNAME Calc függvényeinél az „opcionális” paramétereket nem kötelező megadni, ha nem követi azokat további paraméter. Ha például egy négy paramétert elfogadó függvénynél az utolsó kettő „opcionális”, akkor a 4. vagy a 3. és 4. paramétert nem kötelező megadni, de csak a 3. elhagyása nem lehetséges. </variable>"
-#. nhr%
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1765,7 +1587,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 "<variable id=\"codes\">A 127-nél nagyobb kódok a rendszer karaktertáblázatától függenek (például ISO-8859-1, ISO-8859-2, Windows-1252, Windows-1250), és ezért nem biztos, hogy átvihetők.</variable>"
-#. qn-9
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1774,7 +1595,6 @@ msgctxt ""
msgid "Edit Menu"
msgstr "Szerkesztés menü"
-#. Dm:%
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1784,7 +1604,6 @@ msgctxt ""
msgid "Edit Menu"
msgstr "Szerkesztés menü"
-#. bMB1
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1794,7 +1613,6 @@ msgctxt ""
msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
msgstr "<variable id=\"kopffuss\">Válassza a <emph>Szerkesztés - Élőfej és élőláb</emph> menüparancsot.</variable>"
-#. DT_R
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1804,7 +1622,6 @@ msgctxt ""
msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
msgstr "<variable id=\"bkopfzeile\">Válassza a <emph>Szerkesztés - Élőfej és élőláb - Élőfej/Élőláb </emph> fület.</variable>"
-#. loXu
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1814,7 +1631,6 @@ msgctxt ""
msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
msgstr "<variable id=\"bausfullen\">Válassza a <emph>Szerkesztés - Kitöltés</emph> menüparancsot.</variable>"
-#. `/-d
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1824,7 +1640,6 @@ msgctxt ""
msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
msgstr "<variable id=\"bausunten\">Válassza a <emph>Szerkesztés - Kitöltés - Le</emph> menüparancsot.</variable>"
-#. a_6Q
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1834,7 +1649,6 @@ msgctxt ""
msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
msgstr "<variable id=\"bausrechts\">Válassza a <emph>Szerkesztés - Kitöltés - Jobbra</emph> menüparancsot.</variable>"
-#. Kyj.
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1844,7 +1658,6 @@ msgctxt ""
msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
msgstr "<variable id=\"bausoben\">Válassza a <emph>Szerkesztés - Kitöltés - Fel</emph> menüparancsot.</variable>"
-#. d3DK
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1854,7 +1667,6 @@ msgctxt ""
msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
msgstr "<variable id=\"bauslinks\">Válassza a <emph>Szerkesztés - Kitöltés - Balra</emph> menüparancsot.</variable>"
-#. V,qL
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1864,7 +1676,6 @@ msgctxt ""
msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
msgstr "<variable id=\"baustab\">Válassza a <emph>Szerkesztés - Kitöltés - Munkalap</emph> menüparancsot.</variable>"
-#. j,uR
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1874,7 +1685,6 @@ msgctxt ""
msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
msgstr "<variable id=\"bausreihe\">Válassza a <emph>Szerkesztés - Kitöltés - Sorozatok</emph> menüparancsot.</variable>"
-#. F}HZ
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1884,7 +1694,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Delete Contents</emph>"
msgstr "Válassza a <emph>Szerkesztés - Tartalom törlése</emph> menüparancsot."
-#. 2f]Y
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1894,7 +1703,6 @@ msgctxt ""
msgid "Backspace"
msgstr "Backspace"
-#. vYP%
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1904,7 +1712,6 @@ msgctxt ""
msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
msgstr "<variable id=\"bzelo\">Válassza a <emph>Szerkesztés - Cellák törlése</emph> menüparancsot.</variable>"
-#. WA]R
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1914,7 +1721,6 @@ msgctxt ""
msgid "Choose <emph>Edit – Sheet - Delete</emph>"
msgstr "Válassza a <emph>Szerkesztés - Munkalap - Törlés</emph> menüparancsot."
-#. tRoj
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1924,7 +1730,6 @@ msgctxt ""
msgid "Open context menu for a sheet tab"
msgstr "Nyissa meg a munkalapfül helyi menüjét."
-#. qh1b
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1934,7 +1739,6 @@ msgctxt ""
msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
msgstr "Válassza a <emph>Szerkesztés - Munkalap - Áthelyezés/másolás</emph> menüparancsot."
-#. (K;T
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1944,7 +1748,6 @@ msgctxt ""
msgid "Open context menu for a sheet tab"
msgstr "Nyissa meg a munkalapfül helyi menüjét."
-#. 78Ae
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1954,7 +1757,6 @@ msgctxt ""
msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
msgstr "<variable id=\"bmaumloe\">Válassza a <emph>Szerkesztés - Töréspont törlése</emph> menüparancsot.</variable>"
-#. }VH9
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1964,7 +1766,6 @@ msgctxt ""
msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
msgstr "<variable id=\"bzeilum\">Válassza a <emph>Szerkesztés - Töréspont törlése - Sortörés</emph> menüparancsot.</variable>"
-#. 6ae`
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/scalc/01.po b/source/hu/helpcontent2/source/text/scalc/01.po
index 7ea17683d7d..076773eea59 100644
--- a/source/hu/helpcontent2/source/text/scalc/01.po
+++ b/source/hu/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-15 01:31+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot 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 "Hivatkozás külső adatra"
-#. 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\">Keresse meg a beszúrandó adatokat tartalmazó fájlt.</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=\"Külső adatok\">Hivatkozás külső adatokra</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\">Adatokat szúr be hivatkozásként egy HTML-, Calc- vagy Excel-fájlból az aktuális munkalapba. Az adatoknak egy névvel ellátott tartományban kell lenniük.</ahelp>"
-#. =859
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "URL of external data source."
msgstr "Külső adatforrás URL-je"
-#. 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 "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Írja be annak a fájlnak az URL-jét, amely a beszúrandó adatokat tartalmazza, majd nyomja meg az Enter billentyűt.</ahelp>"
-#. )R`2
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Available tables/ranges"
msgstr "Rendelkezésre álló táblázatok/tartományok"
-#. 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 "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Válassza ki a beszúrandó táblát vagy adattartományt.</ahelp>"
-#. laKi
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Update every"
msgstr "Frissítés"
-#. 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 "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Írja be azt az időtartamot, ami a dokumentumban lévő külső adatok frissítései között eltelik.</ahelp>"
-#. C6?=
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "MINUTE"
msgstr "PERC"
-#. -^KR
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "<bookmark_value>MINUTE function</bookmark_value>"
msgstr "<bookmark_value>PERC függvény</bookmark_value><bookmark_value>MINUTE függvény, lásd: PERC függvény</bookmark_value>"
-#. ~mNL
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -142,7 +129,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\">PERC</link></variable>"
-#. [l#*
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -152,7 +138,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 "<ahelp hid=\"HID_FUNC_MINUTE\">Egy belső időérték perceit számítja ki.</ahelp> A perc egy 0 és 59 közötti szám."
-#. Mcxu
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. (eMS
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "MINUTE(Number)"
msgstr "PERC(szám)"
-#. =;Sc
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -182,7 +165,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 "A <emph>szám</emph> egy időérték, amelyre vonatkozóan a percek számát meg kívánja kapni."
-#. mb:f
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -192,7 +174,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. p:bx
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
msgstr "A <item type=\"input\">=PERC(8,999)</item> az 58 értéket adja vissza"
-#. dy#.
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -212,7 +192,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
msgstr "A <item type=\"input\">=PERC(8,9999)</item> az 59 értéket adja vissza"
-#. ]KX1
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -222,7 +201,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
msgstr "A <item type=\"input\">=PERC(MOST())</item> visszaadja az aktuális percértéket."
-#. rV:w
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -231,7 +209,6 @@ msgctxt ""
msgid "Page Preview"
msgstr "Nyomtatási kép"
-#. 5l=F
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
msgstr "<link href=\"text/scalc/01/01120000.xhp\">Nyomtatási kép</link>"
-#. Hak7
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
msgstr "<ahelp hid=\".uno:PrintPreview\">Az oldal nyomtatási képét jeleníti meg vagy zárja be.</ahelp>"
-#. =XAh
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -258,7 +233,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 "A <emph>Nyomtatási kép eszköztár</emph> ikonjainak használatával végiggörgetheti a dokumentum oldalait, vagy kinyomtathatja a dokumentumot."
-#. }DY5
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -267,7 +241,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"
@@ -276,7 +249,6 @@ msgctxt ""
msgid "You cannot edit your document while you are in the page preview."
msgstr "A dokumentum nem szerkeszthető a nyomtatási kép megtekintése közben."
-#. k(Sy
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -285,7 +257,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the page preview, click the <emph>Close Preview</emph> button.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A nyomtatási képből való kilépéshez kattintson az <emph>Előnézet bezárása</emph> gombra.</ahelp>"
-#. e$RS
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -294,7 +265,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Nyomtatási kép eszköztár\">Nyomtatási kép eszköztár</link>"
-#. 39Th
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. _oe!
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -312,7 +281,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>rendezés; beállítások adatbázis-tartományokhoz</bookmark_value><bookmark_value>rendezés;ázsiai nyelvek</bookmark_value><bookmark_value>ázsiai nyelvek;rendezés</bookmark_value><bookmark_value>telefonkönyv rendezési szabályai</bookmark_value><bookmark_value>természetes rendezési algoritmus</bookmark_value>"
-#. 8gK}
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Beállítások\">Beállítások</link>"
-#. cm2V
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
msgstr "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> További rendezési beállításokat ad meg.</ahelp>"
-#. Yd(:
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "Case Sensitivity"
msgstr "Kis- és nagybetűk megkülönböztetése"
-#. G^pd
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -352,7 +317,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE\"> A rendezésben előre kerülnek a nagybetűk, és utánuk következnek a kisbetűk. Ázsiai nyelvek esetén ez egy másik eljárás alapján kerül végrehajtásra.</ahelp>"
-#. **Qs
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -361,7 +325,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 "Megjegyzés Ázsiai nyelvekhez: Válassza a <emph>Kis- és nagybetűk megkülönböztetése</emph> lehetőséget a többszintű szétválogatás alkalmazásához. A többszintű leválogatás során a program először a bejegyzések legegyszerűbb formáit hasonlítja össze, figyelmen kívül hagyva az eseteket és a mellékjeleket. Ha azonosak, akkor a mellékjelek figyelembe lesznek véve a második szintű összehasonlításnál. Ha továbbra is azonosak, az esetek, a karakterszélességek és a japán kanában lévő eltérések kerülnek összehasonlításra a harmadik szinten."
-#. _,YN
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -371,7 +334,6 @@ msgctxt ""
msgid "Range contains column/row labels"
msgstr "A tartományok oszlop-/sorcímkéket tartalmaznak"
-#. lyff
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -381,7 +343,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL\">Kihagyja a rendezésből a kijelölés első sorát vagy oszlopát.</ahelp> A jelölőnégyzet nevét, illetve funkcióját a párbeszédablak alján található <emph>Irány</emph> beállítás szabja meg."
-#. !/$e
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -392,7 +353,6 @@ msgctxt ""
msgid "Include formats"
msgstr "Formátummal együtt"
-#. ,Dqn
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -402,7 +362,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\"> Megőrzi az aktuális cellaformázást.</ahelp>"
-#. }49$
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -411,7 +370,6 @@ msgctxt ""
msgid "Enable natural sort"
msgstr "Természetes rendezési sorrend"
-#. rE(#
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -420,7 +378,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_NATURALSORT\">A természetes rendezési sorrend egy rendezési algoritmus, amely a szöveges előtaggal rendelkező számokat rendezi a számok értéke szerint ahelyett, hogy a hagyományos karakterlánc szerinti rendezést alkalmazná.</ahelp> Például vegyük alapul a egy olyan sorozatot, mint az A1, A2, A3, A4, A5, A6, ..., A19, A20, A21 értékekből álló sorozat. Amikor ezeket az értékeket külön-külön elhelyezzük cellákban és sorba rendezzük a hagyományos módon, a sorrend a következő lesz: A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. Noha az így előállított sorozat érthető azok számára, akik értik a a háttérben meghúzódó rendezési algoritmus működési elvét, a nagy többség az ilyen működést teljesen furcsának vagy egyenesen helytelennek véli. A természetes rendezési sorrend bekapcsolásával az értékek, mint a fenti példában vázolt helyzetben is, „helyes” sorrendbe lesznek rendezve, ez általában kényelmesebbé teszi a rendezési műveleteket."
-#. x2`R
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -430,7 +387,6 @@ msgctxt ""
msgid "Copy sort results to:"
msgstr "A rendezés eredményét ide másolja:"
-#. ?;^Z
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -440,7 +396,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT\"> A rendezett listát a megadott cellatartományba másolja.</ahelp>"
-#. R^:,
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -450,7 +405,6 @@ msgctxt ""
msgid "Sort results"
msgstr "Rendezés eredménye"
-#. :AAm
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -460,7 +414,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 "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA\">Jelöljön ki egy olyan, névvel ellátott <link href=\"text/scalc/01/12010000.xhp\" name=\"cellatartományt\">cellatartományt</link>, amelyben meg kívánja jeleníteni a rendezett listát, vagy írjon be egy cellatartományt a beviteli mezőbe.</ahelp>"
-#. w!C(
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -470,7 +423,6 @@ msgctxt ""
msgid "Sort results"
msgstr "Rendezés eredménye"
-#. O-ia
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -480,7 +432,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 "<ahelp hid=\"SC:EDIT:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA\"> Írja be a cellatartományt, ahol a rendezett listát meg szeretné jeleníteni, vagy válasszon a listából névvel ellátott tartományt.</ahelp>"
-#. zyZB
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -490,7 +441,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "Egyéni rendezési sorrend"
-#. Gx/-
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -500,7 +450,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER\"> Kattintson ide, és válassza ki a kívánt egyéni rendezési módot.</ahelp>"
-#. Gt1J
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -510,7 +459,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "Egyéni rendezési sorrend"
-#. 3FT%
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -520,7 +468,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 "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER\">Jelölje ki az alkalmazni kívánt egyéni rendezési sorrendet. Egyéni rendezési sorrend megadásához válassza az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Rendezett listák\">%PRODUCTNAME Calc - Rendezett listák</link> lehetőséget.</ahelp>"
-#. -.fx
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -530,7 +477,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. n*y+
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -540,7 +486,6 @@ msgctxt ""
msgid "Language"
msgstr "Nyelv"
-#. 85/q
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -550,7 +495,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Select the language for the sorting rules.</ahelp>"
msgstr "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Válassza ki a rendezési szabály nyelvét.</ahelp>"
-#. .F;_
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -561,7 +505,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. :r?_
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -571,7 +514,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 "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_ALGORITHM\">Válasszon egy rendezési lehetőséget a megadott nyelvhez.</ahelp> Például válassza a \"telefonkönyv\" beállítást, hogy a német nyelv esetében az umlautos karakterek is részt vegyenek a rendezésben."
-#. =viP
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -582,7 +524,6 @@ msgctxt ""
msgid "Direction"
msgstr "Irány"
-#. dP))
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -592,7 +533,6 @@ msgctxt ""
msgid "Top to Bottom (Sort Rows)"
msgstr "Felülről lefelé (sorok rendezése)"
-#. BeT/
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -602,7 +542,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 "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN\"> A sorokat a kijelölt terület aktív oszlopaiban szereplő értékek szerint rendezi.</ahelp>"
-#. asPV
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -612,7 +551,6 @@ msgctxt ""
msgid "Left to Right (Sort Columns)"
msgstr "Balról jobbra (oszlopok rendezése)"
-#. l#*i
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -622,7 +560,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 "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT\"> Az oszlopokat a kijelölt terület aktív soraiban szereplő értékek szerint rendezi.</ahelp>"
-#. -6JV
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -633,7 +570,6 @@ msgctxt ""
msgid "Data area"
msgstr "Adatterület"
-#. kJBY
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -643,7 +579,6 @@ msgctxt ""
msgid "Displays the cell range that you want to sort."
msgstr "Megjeleníti a rendezni kívánt cellatartományt."
-#. Db]B
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -652,7 +587,6 @@ msgctxt ""
msgid "Refresh Range"
msgstr "Tartomány frissítése"
-#. !^_S
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -661,7 +595,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
msgstr "<bookmark_value>adatbázis-tartományok; frissítés</bookmark_value>"
-#. n?E@
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -671,7 +604,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=\"Tartomány frissítése\">Tartomány frissítése</link>"
-#. !I(f
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -681,7 +613,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 "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Frissíti a külső adatbázisból beszúrt adattartományt. A munkalapbeli adatok a külső adatbázisban levő értékekre frissülnek.</ahelp></variable>"
-#. Sm(4
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -690,7 +621,6 @@ msgctxt ""
msgid "Hide AutoFilter"
msgstr "Automatikus szűrő elrejtése"
-#. [\!H
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -699,7 +629,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
msgstr "<bookmark_value>adatbázis-tartományok; automatikus szűrő elrejtése</bookmark_value>"
-#. dm*/
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -709,7 +638,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=\"Automatikus szűrő elrejtése\">Automatikus szűrő elrejtése</link>"
-#. n;QZ
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -719,7 +647,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Elrejti az automatikus szűrő gombjait a kijelölt cellatartományban.</ahelp>"
-#. noNP
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -728,7 +655,6 @@ msgctxt ""
msgid "Insert Sheet"
msgstr "Munkalap beszúrása"
-#. GCi5
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -737,7 +663,6 @@ msgctxt ""
msgid "<bookmark_value>sheets;creating</bookmark_value>"
msgstr "<bookmark_value>munkalapok;létrehozás</bookmark_value>"
-#. 6YO[
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -747,7 +672,6 @@ msgctxt ""
msgid "Insert Sheet"
msgstr "Munkalap beszúrása"
-#. 5Ro*
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -757,7 +681,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\">Új munkalap beszúrásához használt beállításokat ad meg.</ahelp> Létrehozhat új munkalapot, illetve fájlból beszúrhat egy már létező munkalapot.</variable>"
-#. !/:r
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -767,7 +690,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. |YCT
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -777,7 +699,6 @@ msgctxt ""
msgid "Specifies where the new sheet is to be inserted into your document."
msgstr "Megadja az új munkalap beszúrásának pozícióját a dokumentumban."
-#. WNB6
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -787,7 +708,6 @@ msgctxt ""
msgid "Before current sheet"
msgstr "Jelenlegi munkalap elé"
-#. `E8X
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -797,7 +717,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\">Egy új munkalapot szúr be a jelenlegi munkalap elé.</ahelp>"
-#. rZoI
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -807,7 +726,6 @@ msgctxt ""
msgid "After current sheet"
msgstr "Jelenlegi munkalap mögé"
-#. xsa;
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -817,7 +735,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\">Egy új munkalapot szúr be a jelenlegi munkalap mögé.</ahelp>"
-#. L??V
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -827,7 +744,6 @@ msgctxt ""
msgid "Sheet"
msgstr "Munkalap"
-#. D;3$
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -837,7 +753,6 @@ msgctxt ""
msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
msgstr "Megadja, hogy új vagy létező munkalapot szúrjon-e be a dokumentumba."
-#. r;U+
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -847,7 +762,6 @@ msgctxt ""
msgid "New sheet"
msgstr "Új munkalap"
-#. r%y,
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -857,7 +771,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 "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Új munkalapot hoz létre. Adja meg a munkalap nevét a <emph>Név</emph> mezőben. Az engedélyezett karakterek a betűk, a számok, a szóköz és az aláhúzáskarakter.</ahelp>"
-#. N6U[
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -867,7 +780,6 @@ msgctxt ""
msgid "No. of sheets"
msgstr "Hány munkalapot"
-#. #4rf
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -877,7 +789,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\">Megadja a létrehozandó munkalapok számát.</ahelp>"
-#. KWT_
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -887,7 +798,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. VA@l
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -897,7 +807,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Megadja az új munkalap nevét.</ahelp>"
-#. bJR-
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -907,7 +816,6 @@ msgctxt ""
msgid "From File"
msgstr "Fájlból"
-#. .YdN
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -917,7 +825,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\">Egy létező fájlból beszúr egy munkalapot az aktuális dokumentumba.</ahelp>"
-#. _4dL
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -927,7 +834,6 @@ msgctxt ""
msgid "Browse"
msgstr "Tallózás"
-#. XhN2
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -937,7 +843,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\">Megnyit egy fájlválasztó párbeszédablakot.</ahelp>"
-#. jR:5
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -947,7 +852,6 @@ msgctxt ""
msgid "Available Sheets"
msgstr "Elérhető munkalapok"
-#. f#6`
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -957,7 +861,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\">Ha kijelölt egy fájlt a <emph>Tallózás</emph> gombbal, az abban lévő munkalapok megjelennek a listában. A fájl elérési útja megjelenik az alatta lévő mezőben. Válassza ki a beszúrni kívánt munkalapot a listáról.</ahelp>"
-#. .wP]
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -967,7 +870,6 @@ msgctxt ""
msgid "Link"
msgstr "Hivatkozás"
-#. *#Hu
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -977,7 +879,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\">Jelölje be, ha a munkalapot nem másolatként, hanem hivatkozásként akarja beszúrni. A hivatkozásokat lehet frissíteni, hogy mindig az aktuális tartalmat mutassák.</ahelp>"
-#. +?HC
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -986,7 +887,6 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "Munkalap védelme"
-#. Inp6
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -996,7 +896,6 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "Munkalap védelme"
-#. fTi?
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1006,7 +905,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 "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Megakadályozza az aktuális munkalap celláinak módosítását.</ahelp></variable> A <emph>Munkalap védelme</emph> párbeszédablak megnyitásához válassza az <emph>Eszközök - Dokumentum védelme - Munkalap</emph> lehetőséget, majd állítsa be a munkalapvédelmet jelszó használatával vagy anélkül."
-#. Ad^k
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1016,7 +914,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 "A cellák további módosításának megakadályozásához a <emph>Védett</emph> jelölőnégyzetet be kell jelölni a <link href=\"text/scalc/01/05020600.xhp\" name=\"Formátum - Cellák - Cellavédelem\"><emph>Formátum - Cellák - Cellavédelem</emph></link> oldalon vagy a <emph>Cellák formázása</emph> helyi menüben."
-#. tka+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1026,7 +923,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 "Nem védett cellákat, illetve cellatartományokat az <emph>Eszközök - Dokumentum védelme - Munkalap</emph> és a <emph>Formátum - Cellák - Cellavédelem</emph> menük segítségével állíthat be egy védett munkalapon:"
-#. !#5\
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1036,7 +932,6 @@ msgctxt ""
msgid "Select the cells that will be unprotected"
msgstr "Jelölje ki azokat a cellákat, amelyekben meg szeretné szüntetni a védelmet."
-#. a]fW
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1046,7 +941,6 @@ msgctxt ""
msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
msgstr "Válassza a <emph>Formátum - Cellák - Cellavédelem</emph> lehetőséget. Törölje a <emph>Védett</emph> jelölőnégyzet jelölését, majd kattintson az <emph>OK</emph> gombra."
-#. SH5b
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1056,7 +950,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 "Aktiválja a munkalapvédelmet az <emph>Eszközök - Dokumentum védelme - Munkalap</emph> menüben. Azonnal életbe lépve csak az első lépésben kijelölt cellatartomány szerkeszthető."
-#. BDHR
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1066,7 +959,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 "Ha a későbbiek folyamán egy nem védett területet védetté kíván tenni, akkor először jelölje ki a tartományt. Ezután a <emph>Formátum - Cellák - Cellavédelem</emph> oldalon jelölje be a <emph>Védett</emph> jelölőnégyzetet. Végül válassza az <emph>Eszközök - Dokumentum védelme - Munkalap</emph> menüt. Az előzőleg még szerkeszthető tartomány most már védett."
-#. Zl~3
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1076,7 +968,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 "A munkalapvédelem a képernyő alján található munkalapcímkék előugró menüit is érinti. A <emph>Törlés</emph> és az <emph>Átnevezés</emph> parancs nem érhető el."
-#. 8dZ\
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1086,7 +977,6 @@ msgctxt ""
msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
msgstr "Ha egy munkalap védett, nem módosíthat vagy törölhet Cellastílusokat."
-#. Y|5:
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1096,7 +986,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 "A védett munkalapok, illetve cellatartományok mindaddig nem módosíthatók, amíg e védelmet le nem tiltja. A védelem letiltásához válassza az <emph>Eszközök - Dokumentum védelme - Munkalap</emph> parancsot. Ha nincs beállítva jelszó, akkor a munkalapvédelem azonnal kikapcsolásra kerül. Ha a munkalap jelszóvédelemmel volt ellátva, akkor megnyílik a <emph>Munkalapvédelem megszüntetése</emph> párbeszédablak, amelyben meg kell adnia a jelszót."
-#. a3|+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1106,7 +995,6 @@ msgctxt ""
msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
msgstr "A mentést követően a védett munkalapokat kizárólag a <emph>Fájl - Mentés másként</emph> parancs segítségével tudja újra menteni."
-#. FYEm
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1116,7 +1004,6 @@ msgctxt ""
msgid "Password (optional)"
msgstr "Jelszó (opcionális)"
-#. /%d+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1126,7 +1013,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
msgstr "<ahelp hid=\".uno:Protect\">Lehetővé teszi egy jelszó megadását ahhoz, hogy megvédje a munkalapot a jogosulatlan módosításoktól.</ahelp>"
-#. )n/C
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1136,7 +1022,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 "Munkájának teljes védelmét az <emph>Eszközök - Dokumentum védelme</emph> menüben található két lehetőség együttes használatával érheti el, beleértve a jelszóvédelmet is. A dokumentum megnyitásának letiltásához a <emph>Mentés</emph> párbeszédablakban jelölje be a <emph>Mentés jelszóval</emph> jelölőnégyzetet, mielőtt a <emph>Mentés</emph> gombra kattintana."
-#. -JE8
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1145,7 +1030,6 @@ msgctxt ""
msgid "Trace Dependents"
msgstr "Függőségek felderítése"
-#. npdN
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1154,7 +1038,6 @@ msgctxt ""
msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
msgstr "<bookmark_value>cellák; függőségek felderítése</bookmark_value>"
-#. #c4v
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1164,7 +1047,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Függőségek felderítése\">Függőségek felderítése</link>"
-#. ]SS,
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1174,7 +1056,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 "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Felderítésnyilakat rajzol az aktív cellához azokból a képletekből, amelyek az aktív cella értékén alapulnak.</ahelp>"
-#. /7n]
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1184,7 +1065,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 "Az összes olyan cellának a területe, amelyet együtt használ az aktív cella képletével, egy kék kerettel kerül kiemelésre."
-#. e^:o
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1194,7 +1074,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 "A funkció szintenként működik. Ha például az előzmények (vagy függőségek) felderítésének egy szintjét már megjelenítette, akkor a <emph>Függőségek felderítése</emph> funkció újbóli aktiválásakor megjelenik a következő függőségi szint."
-#. `%/w
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1203,7 +1082,6 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "Többszörös műveletek"
-#. noO9
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1213,7 +1091,6 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "Többszörös műveletek"
-#. fccg
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1223,7 +1100,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 "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Ugyanazt a képletet alkalmazza különböző cellákra, eltérő paraméterértékekkel.</ahelp></variable>"
-#. p+Z2
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1233,7 +1109,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 "A <emph>Sor</emph> vagy az <emph>Oszlop</emph> mezőknek hivatkozást kell tartalmazniuk a kijelölt tartomány első cellájára."
-#. }fjc
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1243,7 +1118,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 "Ha Microsoft Excelbe többszörös műveleteket tartalmazó táblázatot exportál, akkor a képletet tartalmazó cellák helye az adattartományhoz képest teljesen meghatározott kell legyen."
-#. 3\*@
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1253,7 +1127,6 @@ msgctxt ""
msgid "Defaults"
msgstr "Alapértelmezettek"
-#. p]Z^
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1263,7 +1136,6 @@ msgctxt ""
msgid "Formulas"
msgstr "Képletek"
-#. W*q;
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1273,7 +1145,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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Adja meg a többszörös műveletben használni kívánt képleteket tartalmazó cellák cellahivatkozását.</ahelp>"
-#. guHC
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1283,7 +1154,6 @@ msgctxt ""
msgid "Row"
msgstr "Sor"
-#. $~]p
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1293,7 +1163,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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Írja be az adattábla sorainak változójaként használni kívánt beviteli cella hivatkozását.</ahelp>"
-#. 3VcJ
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1303,7 +1172,6 @@ msgctxt ""
msgid "Column"
msgstr "Oszlop"
-#. I\8/
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1313,7 +1181,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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Írja be az adattábla oszlopainak változójaként használni kívánt beviteli cella hivatkozását.</ahelp>"
-#. $S#A
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1322,7 +1189,6 @@ msgctxt ""
msgid "TODAY"
msgstr "MA"
-#. wm5a
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1331,7 +1197,6 @@ msgctxt ""
msgid "<bookmark_value>TODAY function</bookmark_value>"
msgstr "<bookmark_value>MA függvény</bookmark_value><bookmark_value>TODAY függvény, lásd: MA függvény</bookmark_value>"
-#. 1DU2
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1341,7 +1206,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\">MA</link></variable>"
-#. ]($[
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1351,7 +1215,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 "<ahelp hid=\"HID_FUNC_HEUTE\">A rendszer dátumát adja eredményül.</ahelp> Az érték frissül, ha újból megnyitja a dokumentumot, vagy módosítja a dokumentum értékeit."
-#. Vt.A
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1361,7 +1224,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 1VYg
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1371,7 +1233,6 @@ msgctxt ""
msgid "TODAY()"
msgstr "MA()"
-#. wPIN
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1381,7 +1242,6 @@ msgctxt ""
msgid "TODAY is a function without arguments."
msgstr "A MA függvény nem rendelkezik argumentummal."
-#. ,$VW
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1391,7 +1251,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ~Rh-
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1401,7 +1260,6 @@ msgctxt ""
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr "A <item type=\"input\">MA()</item> visszaadja a számítógép aktuális rendszerdátumát."
-#. wthR
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1410,7 +1268,6 @@ msgctxt ""
msgid "Financial Functions Part One"
msgstr "Pénzügyi függvények - első rész"
-#. 1\BA
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1419,7 +1276,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 "<bookmark_value>pénzügyi függvények</bookmark_value><bookmark_value>függvények; pénzügyi függvények</bookmark_value><bookmark_value>Függvénytündér; pénzügyi</bookmark_value><bookmark_value>amortizáció, lásd még: értékcsökkenés</bookmark_value>"
-#. I5ps
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1429,7 +1285,6 @@ msgctxt ""
msgid "Financial Functions Part One"
msgstr "Pénzügyi függvények - első rész"
-#. 7QG#
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1439,7 +1294,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\">A kategória a <item type=\"productname\">%PRODUCTNAME</item> Calc pénzügyi függvényeit tartalmazza. </variable>"
-#. @*+,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1448,7 +1302,6 @@ msgctxt ""
msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
msgstr "<bookmark_value>AMORDEGRC függvény</bookmark_value><bookmark_value>értékcsökkenések;degresszív amortizációk</bookmark_value>"
-#. r$G4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1458,7 +1311,6 @@ msgctxt ""
msgid "AMORDEGRC"
msgstr "AMORDEGRC"
-#. Rr!o
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1468,7 +1320,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 "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Degresszív amortizációként kiszámítja egy elszámolási időszak értékcsökkenésének mértékét.</ahelp> Az AMORLINC függvénytől eltérően ez az értékcsökkenési élettartamtól független értékcsökkenési együtthatót használ."
-#. OC55
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1478,7 +1329,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 8`l,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1488,7 +1338,6 @@ msgctxt ""
msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORDEGRC(költség; vásárlás_dátuma; első_időszak; maradványérték; időszak; százalék; alap)"
-#. .\84
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1498,7 +1347,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the acquisition costs."
msgstr "A <emph>költség</emph> a beszerzési költségek."
-#. #uKI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1508,7 +1356,6 @@ msgctxt ""
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "A <emph>vásárlás_dátuma</emph> a beszerzés dátuma."
-#. 1)vG
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1518,7 +1365,6 @@ msgctxt ""
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "Az <emph>első_időszak</emph> az első kifizetési időszak végének dátuma."
-#. ^E-5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1528,7 +1374,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "A <emph>maradványérték</emph> a tőkeeszköz maradványértéke az értékcsökkenési időtartam végén."
-#. 1lBc
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1538,7 +1383,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "Az <emph>időszak</emph> a kérdéses kifizetési időszak."
-#. zXhT
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1548,7 +1392,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "A <emph>százalék</emph> az értékcsökkenés százalékos mértéke."
-#. ,5a4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1557,7 +1400,6 @@ msgctxt ""
msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
msgstr "<bookmark_value>AMORLINC függvény</bookmark_value><bookmark_value>értékcsökkenések;lineáris amortizációk</bookmark_value>"
-#. =(RL
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1567,7 +1409,6 @@ msgctxt ""
msgid "AMORLINC"
msgstr "AMORLINC"
-#. MW^S
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1577,7 +1418,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 "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Az értékcsökkenés mértékét egy könyvelési időszakra lineáris amortizációként számítja ki. Ha egy állóeszközt az elszámolási időszak során vásárol, akkor az értékcsökkenés arányos része kerül figyelembe vételre.</ahelp>"
-#. :lQY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1587,7 +1427,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. `-8J
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1597,7 +1436,6 @@ msgctxt ""
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORLINC(költség; vásárlás_dátuma; első_időszak; maradványérték; időszak; százalék; alap)"
-#. lXZF
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1607,7 +1445,6 @@ msgctxt ""
msgid "<emph>Cost</emph> means the acquisition costs."
msgstr "A <emph>költség</emph> a beszerzési költségek."
-#. kl9m
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1617,7 +1454,6 @@ msgctxt ""
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "A <emph>vásárlás_dátuma</emph> a beszerzés dátuma."
-#. cj,V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1627,7 +1463,6 @@ msgctxt ""
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "Az <emph>első_időszak</emph> az első kifizetési időszak végének dátuma."
-#. \c85
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1637,7 +1472,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "A <emph>maradványérték</emph> a tőkeeszköz maradványértéke az értékcsökkenési időtartam végén."
-#. A~03
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1647,7 +1481,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "Az <emph>időszak</emph> a kérdéses kifizetési időszak."
-#. 8gE+
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1657,7 +1490,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "A <emph>százalék</emph> az értékcsökkenés százalékos mértéke."
-#. .w{T
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1666,7 +1498,6 @@ msgctxt ""
msgid "<bookmark_value>ACCRINT function</bookmark_value>"
msgstr "<bookmark_value>ACCRINT függvény</bookmark_value>"
-#. \$:(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1676,7 +1507,6 @@ msgctxt ""
msgid "ACCRINT"
msgstr "ACCRINT"
-#. C:9A
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1685,7 +1515,6 @@ msgctxt ""
msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
msgstr "<bookmark_value>felhalmozott kamat; periodikus kifizetés</bookmark_value>"
-#. xdh!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1695,7 +1524,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Egy értékpapír felhalmozott kamatát rendszeres fizetés esetére számítja ki.</ahelp>"
-#. xp-.
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1705,7 +1533,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. dc@f
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1715,7 +1542,6 @@ msgctxt ""
msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
msgstr "ACCRINT(kibocsátás; első_kamat; kifizetés; kamatláb; névérték; gyakoriság; alap)"
-#. 8\TV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1725,7 +1551,6 @@ msgctxt ""
msgid "<emph>Issue</emph> is the issue date of the security."
msgstr "A <emph>kibocsátás</emph> az értékpapír kibocsátásának dátuma."
-#. K1ay
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1735,7 +1560,6 @@ msgctxt ""
msgid "<emph>FirstInterest</emph> is the first interest date of the security."
msgstr "Az <emph>első_kamat</emph> az értékpapír első kamatfizetési dátuma."
-#. n6hk
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1745,7 +1569,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
msgstr "A <emph>kifizetés</emph> az a dátum, ameddig a kamatfelhalmozódást ki kell számolni."
-#. /pZV
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -1756,7 +1579,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr "A <emph>kamatláb</emph> az évi nominális kamatláb (szelvény kamatlába)."
-#. =ys1
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1766,7 +1588,6 @@ msgctxt ""
msgid "<emph>Par</emph> is the par value of the security."
msgstr "A <emph>névérték</emph> az értékpapír névértéke."
-#. gY.;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1776,7 +1597,6 @@ msgctxt ""
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-#. 0Ev`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1786,7 +1606,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. JpK?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1796,7 +1615,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 "Egy értékpapírt 2001. 02. 28-án bocsátanak ki. Az első kamat 2001. 08. 31-én esedékes. A kifizetés dátuma 2001. 05. 01. A kamatláb 0,1, azaz 10%, és a névérték 1000 pénzegység. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). A számítás alapjául az USA módszer (0) szolgál. Mennyi kamat halmozódott fel?"
-#. :l*K
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1806,7 +1624,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 "Az <item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0,1;1000;2;0)</item> eredménye 16,94444."
-#. G*JF
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1815,7 +1632,6 @@ msgctxt ""
msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
msgstr "<bookmark_value>ACCRINTM függvény</bookmark_value><bookmark_value>felhalmozott kamat;egyösszegű kifizetés</bookmark_value>"
-#. N9.;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1825,7 +1641,6 @@ msgctxt ""
msgid "ACCRINTM"
msgstr "ACCRINTM"
-#. Na,;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1835,7 +1650,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 "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Egy értékpapír felhalmozott kamatát a lejáratkor történő egy összegbeni kifizetésre számítja ki.</ahelp>"
-#. ![r/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1845,7 +1659,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 2j\k
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1855,7 +1668,6 @@ msgctxt ""
msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
msgstr "ACCRINT(kibocsátás; kifizetés; kamatláb; névérték; alap)"
-#. Q)\%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1865,7 +1677,6 @@ msgctxt ""
msgid "<emph>Issue</emph> is the issue date of the security."
msgstr "A <emph>kibocsátás</emph> az értékpapír kibocsátásának dátuma."
-#. Yog@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1875,7 +1686,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
msgstr "A <emph>kifizetés</emph> az a dátum, ameddig a kamatfelhalmozódást ki kell számolni."
-#. u~1b
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1885,7 +1695,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
msgstr "A <emph>kamatláb</emph> az évi nominális kamatláb (szelvény kamatlába)."
-#. `?X8
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1895,7 +1704,6 @@ msgctxt ""
msgid "<emph>Par</emph> is the par value of the security."
msgstr "A <emph>névérték</emph> az értékpapír névértéke."
-#. c8[,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1905,7 +1713,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Z2!`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1915,7 +1722,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 "Egy értékpapírt kibocsátanak 2001. április 1-jén. Az esedékesség dátuma 2001. június 15. A kamatláb 0,1, azaz 10%, és a névérték 1000 pénzegység. A napos/éves számítás alapját a napi egyenleg képezi (3). Mennyi kamat halmozódott fel?"
-#. gf!~
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1925,7 +1731,6 @@ msgctxt ""
msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
msgstr "Az <item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0,1;1000;3)</item> eredménye 20,54795."
-#. X}ik
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1934,7 +1739,6 @@ msgctxt ""
msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
msgstr "<bookmark_value>RECEIVED függvény</bookmark_value><bookmark_value>rögzített kamatozású értékpapírokra kifizetett összeg</bookmark_value>"
-#. 7*4!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1944,7 +1748,6 @@ msgctxt ""
msgid "RECEIVED"
msgstr "RECEIVED"
-#. 1b\Q
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1954,7 +1757,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 "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Rögzített kamatú értékpapírra bármely adott időpontban fizetett kamatot számítja ki.</ahelp>"
-#. e4V{
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1964,7 +1766,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. $q15
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1974,7 +1775,6 @@ msgctxt ""
msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgstr "RECEIVED(\"kifizetés\"; \"esedékesség\"; befektetés; leszámítolás; alap)"
-#. ~A_l
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1984,7 +1784,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-#. GNI-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1994,7 +1793,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-#. YzM,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2004,7 +1802,6 @@ msgctxt ""
msgid "<emph>Investment</emph> is the purchase sum."
msgstr "A <emph>befektetés</emph> a vásárlás összege."
-#. 2J_U
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2015,7 +1812,6 @@ msgctxt ""
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr "A <emph>leszámítolás</emph> az értékpapír beszerzési árának diszkont rátája (leszámítolási százaléka)."
-#. ;$Yn
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2025,7 +1821,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 6rFu
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2035,7 +1830,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 "Kifizetés dátuma: 1999. február 15., esedékesség dátuma: 1999. május 15., befektetés összege: 1000 pénzegység, leszámítolás: 5,75 százalék, alap: napi egyenleg/360 = 2."
-#. 3Xk6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2045,7 +1839,6 @@ msgctxt ""
msgid "The amount received on the maturity date is calculated as follows:"
msgstr "Az esedékesség napján a megkapott összeg az alábbi módon számolható ki:"
-#. (E2#
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2055,7 +1848,6 @@ msgctxt ""
msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
msgstr "A <item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0,0575;2)</item> eredményül 1014,420266-ot ad."
-#. 5mI*
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2064,7 +1856,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>MÉ függvény</bookmark_value><bookmark_value>PV függvény, lásd: MÉ függvény</bookmark_value><bookmark_value>jelenérték</bookmark_value><bookmark_value>számítás; jelenérték</bookmark_value>"
-#. m`g)
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2074,7 +1865,6 @@ msgctxt ""
msgid "PV"
msgstr "MÉ"
-#. {vFT
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2084,7 +1874,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BW\">Kiszámítja egy befektetés rendszeres időszakonként történő kifizetéséből származó jelenértékét.</ahelp>"
-#. %6(t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2094,7 +1883,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 "A függvény segítségével kiszámíthatja azt az összeget, amelyre - a mai napon, fix kamatozással befektetve, egy meghatározott számú időszak múlva - egy adott összeget (annuitást) kap kézhez. Ezen kívül meghatározhatja, hogy mennyi pénz maradjon az időszak letelte után. Azt is meghatározza, hogy az összeg az egyes időszakok elején vagy pedig végén kerüljön kifizetésre."
-#. %]V(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2104,7 +1892,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 "Az értékeket megadhatja szám, kifejezés vagy cellahivatkozás formájában. Ha például az éves kamatláb 8%, de időszakként hónapot kíván használni, akkor a <emph>kamatláb</emph> értékét 8%/12 alakban adja meg. A <item type=\"productname\">%PRODUCTNAME</item> Calc automatikusan kiszámítja a megfelelő tényezőt."
-#. d;8V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2114,7 +1901,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. GOZ\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2124,7 +1910,6 @@ msgctxt ""
msgid "PV(Rate; NPer; Pmt; FV; Type)"
msgstr "MÉ(kamatláb; időszakok_száma; részlet; jövőérték; típus)"
-#. T`]H
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2134,7 +1919,6 @@ msgctxt ""
msgid "<emph>Rate</emph> defines the interest rate per period."
msgstr "A <emph>kamatláb</emph> az időszakra érvényes kamatlábat határozza meg."
-#. -J_A
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2145,7 +1929,6 @@ msgctxt ""
msgid "<emph>NPer</emph> is the total number of periods (payment period)."
msgstr "Az <emph>időszakok_száma</emph> az időszakok összesített száma (kifizetési időszak)."
-#. T[z]
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2155,7 +1938,6 @@ msgctxt ""
msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr "A <emph>részlet</emph> az időszakonként esedékes törlesztőrészletek száma."
-#. F\``
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2165,7 +1947,6 @@ msgctxt ""
msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
msgstr "A <emph>jövőérték</emph> (opcionális) meghatározza az utolsó törlesztőrészlet befizetését követően fennmaradó jövőértéket."
-#. KvVY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2175,7 +1956,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 <emph>típus</emph> (opcionális) a törlesztések esedékességét jelöli. A típus = 1 az időszak eleji, a típus = 0 (alapértelmezett) pedig az időszak végi esedékességet jelöli."
-#. a$95
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2184,7 +1964,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"
@@ -2194,7 +1973,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. )t#a
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2204,7 +1982,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 "Mi a befektetés jelenértéke akkor, ha havonta 500 pénzegység kerül kifizetésre és az éves kamatláb 8%? A fizetési időszak 48 hónap, és a törlesztőidőszak végén 20000 pénzegységnek szükséges megmaradnia."
-#. kcoo
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2214,7 +1991,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 "<item type=\"input\">=MÉ(8%/12;48;500;20000)</item> = -35019,37 pénzegység. A meghatározott feltételek mellett 35019,37 pénzegységet szükséges a mai napon letétbe helyeznie akkor, ha 48 hónapon keresztül havi 500 pénzegységet kíván kézhez kapni oly módon, hogy a végén 20000 pénzegység marad. Az egyeztetés megmutatja, hogy 48 x 500 pénzegység + 20000 pénzegység = 44000 pénzegység. A különbség az érték, illetve a letétbe helyezett 35000 pénzegység között maga a kifizetett kamat."
-#. fk1I
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2224,7 +2000,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 "Ha értékek helyett a képletben hivatkozásokat ad meg, akkor tetszőleges számú „ha-akkor” példahelyzetre elvégezheti a számításokat. Tartsa szem előtt: ha állandókra hivatkozik, akkor azt abszolút hivatkozásként kell megtennie. A függvény ilyen és ehhez hasonló felhasználására példákat az értékcsökkenés függvényeknél talál."
-#. Y1:q
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2233,7 +2008,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 "<bookmark_value>számítás; értékcsökkenés</bookmark_value><bookmark_value>SYD függvény</bookmark_value><bookmark_value>értékcsökkenés; számtani csökkenés</bookmark_value><bookmark_value>számtani csökkenés értékcsökkenés</bookmark_value>"
-#. EX64
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2243,7 +2017,6 @@ msgctxt ""
msgid "SYD"
msgstr "SYD"
-#. 0]jM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2253,7 +2026,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DIA\">Kiszámítja a számtani értékcsökkenés sebességét.</ahelp>"
-#. N6FW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2263,7 +2035,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 "A függvény segítségével kiszámíthatja egy tárgyieszköz teljes értékcsökkenési idejének egy adott időszakára eső értékcsökkenés mértékét. A számtani csökkenésű értékcsökkenési arány az értékcsökkenés mértékét az egyik időszakról a következőre egy adott összeggel csökkenti."
-#. b$}d
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2273,7 +2044,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 2\#;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2283,7 +2053,6 @@ msgctxt ""
msgid "SYD(Cost; Salvage; Life; Period)"
msgstr "SYD(költség; maradványérték; leírási_idő; időszak)"
-#. G#8X
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2293,7 +2062,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "A <emph>költség</emph> az eszköz kezdeti ára."
-#. %pSx
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2303,7 +2071,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
msgstr "A <emph>maradványérték</emph> az eszköz értéke az értékcsökkenés után."
-#. D~eo
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2313,7 +2080,6 @@ msgctxt ""
msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
msgstr "A <emph>leírási_idő</emph> az az időtartam, amennyi idő alatt az eszköz leírása megtörténik."
-#. \AJe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2323,7 +2089,6 @@ msgctxt ""
msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
msgstr "Az <emph>időszak</emph> meghatározza, hogy az értékcsökkenést mely időszakra kívánja kiszámítani."
-#. A;KY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2333,7 +2098,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. `i_-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2343,7 +2107,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 "Egy eredetileg 50 000 pénzegység árú videorendszerre kívánja az éves értékcsökkenést meghatározni a következő 5 év során. A maradványérték legyen 10 000 pénzegység. Az értékcsökkenést az első évre vonatkozóan kívánja meghatározni."
-#. lZ$N
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2353,7 +2116,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 "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13333,33 pénzegység. Az első évben az értékcsökkenés mértéke 13333,33 pénzegység."
-#. =c6%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2363,7 +2125,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 "Az egyes időszakokra eső értékcsökkenés alakulását a legkönnyebben egy értékcsökkenési táblázat megadásával tekintheti át. Ha a <item type=\"productname\">%PRODUCTNAME</item> Calc programban rendelkezésre álló különböző értékcsökkenési képleteket egymás mellett adja meg, akkor összehasonlíthatja, hogy az értékcsökkenés melyik formája a legmegfelelőbb. A táblázatot az alábbiak szerint adja meg:"
-#. rL)0
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2374,7 +2135,6 @@ msgctxt ""
msgid "<emph>A</emph>"
msgstr "<emph>A</emph>"
-#. GXc*
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2385,7 +2145,6 @@ msgctxt ""
msgid "<emph>B</emph>"
msgstr "<emph>B</emph>"
-#. 4$P,
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2396,7 +2155,6 @@ msgctxt ""
msgid "<emph>C</emph>"
msgstr "<emph>C</emph>"
-#. BQgN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2406,7 +2164,6 @@ msgctxt ""
msgid "<emph>D</emph>"
msgstr "<emph>D</emph>"
-#. @16!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2416,7 +2173,6 @@ msgctxt ""
msgid "<emph>E</emph>"
msgstr "<emph>E</emph>"
-#. rrCO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2426,7 +2182,6 @@ msgctxt ""
msgid "1"
msgstr "1"
-#. eB=4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2436,7 +2191,6 @@ msgctxt ""
msgid "<item type=\"input\">Initial Cost</item>"
msgstr "<item type=\"input\">Kezdeti költség</item>"
-#. !R-(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2446,7 +2200,6 @@ msgctxt ""
msgid "<item type=\"input\">Salvage Value</item>"
msgstr "<item type=\"input\">Maradványérték</item>"
-#. bLUQ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2456,7 +2209,6 @@ msgctxt ""
msgid "<item type=\"input\">Useful Life</item>"
msgstr "<item type=\"input\">Hasznos élettartam</item>"
-#. R@o-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2466,7 +2218,6 @@ msgctxt ""
msgid "<item type=\"input\">Time Period</item>"
msgstr "<item type=\"input\">Időperiódus</item>"
-#. ZD2_
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2476,7 +2227,6 @@ msgctxt ""
msgid "<item type=\"input\">Deprec. SYD</item>"
msgstr "<item type=\"input\">É.cs. SYD</item>"
-#. /W^[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2486,7 +2236,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. ,G((
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2496,7 +2245,6 @@ msgctxt ""
msgid "<item type=\"input\">50,000 currency units</item>"
msgstr "<item type=\"input\">50 000 pénzegység</item>"
-#. =;.9
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2506,7 +2254,6 @@ msgctxt ""
msgid "<item type=\"input\">10,000 currency units</item>"
msgstr "<item type=\"input\">10 000 pénzegység</item>"
-#. A0!p
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2516,7 +2263,6 @@ msgctxt ""
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
-#. Cy-A
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2527,7 +2273,6 @@ msgctxt ""
msgid "<item type=\"input\">1</item>"
msgstr "<item type=\"input\">1</item>"
-#. P_qN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2537,7 +2282,6 @@ msgctxt ""
msgid "<item type=\"input\">13,333.33 currency units</item>"
msgstr "<item type=\"input\">13 333,33 pénzegység</item>"
-#. __,K
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2547,7 +2291,6 @@ msgctxt ""
msgid "3"
msgstr "3"
-#. nX5{
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2558,7 +2301,6 @@ msgctxt ""
msgid "<item type=\"input\">2</item>"
msgstr "<item type=\"input\">2</item>"
-#. ^$J?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2568,7 +2310,6 @@ msgctxt ""
msgid "<item type=\"input\">10,666.67 currency units</item>"
msgstr "<item type=\"input\">10 666,67 pénzegység</item>"
-#. ,Vis
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2578,7 +2319,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. _eUq
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2589,7 +2329,6 @@ msgctxt ""
msgid "<item type=\"input\">3</item>"
msgstr "<item type=\"input\">3</item>"
-#. oeV[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2599,7 +2338,6 @@ msgctxt ""
msgid "<item type=\"input\">8,000.00 currency units</item>"
msgstr "<item type=\"input\">8 000,00 pénzegység</item>"
-#. O@6/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2609,7 +2347,6 @@ msgctxt ""
msgid "5"
msgstr "5"
-#. p5)F
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2620,7 +2357,6 @@ msgctxt ""
msgid "<item type=\"input\">4</item>"
msgstr "<item type=\"input\">4</item>"
-#. V-fz
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2630,7 +2366,6 @@ msgctxt ""
msgid "<item type=\"input\">5,333.33 currency units</item>"
msgstr "<item type=\"input\">5 333,33 pénzegység</item>"
-#. g.o(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2640,7 +2375,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. /(mH
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2650,7 +2384,6 @@ msgctxt ""
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
-#. xyG;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2660,7 +2393,6 @@ msgctxt ""
msgid "<item type=\"input\">2,666.67 currency units</item>"
msgstr "<item type=\"input\">2 666,67 pénzegység</item>"
-#. `H[1
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2670,7 +2402,6 @@ msgctxt ""
msgid "7"
msgstr "7"
-#. G^_z
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2681,7 +2412,6 @@ msgctxt ""
msgid "<item type=\"input\">6</item>"
msgstr "<item type=\"input\">6</item>"
-#. .hLP
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2691,7 +2421,6 @@ msgctxt ""
msgid "<item type=\"input\">0.00 currency units</item>"
msgstr "<item type=\"input\">0,00 pénzegység</item>"
-#. zg$v
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2701,7 +2430,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. hQd3
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2712,7 +2440,6 @@ msgctxt ""
msgid "<item type=\"input\">7</item>"
msgstr "<item type=\"input\">7</item>"
-#. |led
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2722,7 +2449,6 @@ msgctxt ""
msgid "9"
msgstr "9"
-#. RWJ%
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2733,7 +2459,6 @@ msgctxt ""
msgid "<item type=\"input\">8</item>"
msgstr "<item type=\"input\">8</item>"
-#. Lu3H
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2743,7 +2468,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. f#E[
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2754,7 +2478,6 @@ msgctxt ""
msgid "<item type=\"input\">9</item>"
msgstr "<item type=\"input\">9</item>"
-#. @$)Y
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2764,7 +2487,6 @@ msgctxt ""
msgid "11"
msgstr "11"
-#. @p.{
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2775,7 +2497,6 @@ msgctxt ""
msgid "<item type=\"input\">10</item>"
msgstr "<item type=\"input\">10</item>"
-#. jQlr
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2785,7 +2506,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. i,0U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2795,7 +2515,6 @@ msgctxt ""
msgid "13"
msgstr "13"
-#. \H1t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2805,7 +2524,6 @@ msgctxt ""
msgid "<item type=\"input\">>0</item>"
msgstr "<item type=\"input\">>0</item>"
-#. _UZm
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2815,7 +2533,6 @@ msgctxt ""
msgid "<item type=\"input\">Total</item>"
msgstr "<item type=\"input\">Összeg</item>"
-#. CR-V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2825,7 +2542,6 @@ msgctxt ""
msgid "<item type=\"input\">40,000.00 currency units</item>"
msgstr "<item type=\"input\">40 000,00 pénzegység</item>"
-#. Lc?B
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2835,7 +2551,6 @@ msgctxt ""
msgid "The formula in E2 is as follows:"
msgstr "A képlet az E2-ben a következő:"
-#. =E:Z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2845,7 +2560,6 @@ msgctxt ""
msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
msgstr "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
-#. S:aE
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2855,7 +2569,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 "Ezt a képletet másolja be az E oszlopba E11-ig (válassza ki az E2-t, majd húzza le a cella bal alsó sarkát az egérrel)."
-#. \o(F
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2865,7 +2578,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 "Az E13 cella tartalmazza azon képletet, amely az értékcsökkenési összegek összesített értékét ellenőrzi. A képlet a SZUMHA függvényt alkalmazza, mivel az E8:E11 tartományban található negatív értékeket nem szabad figyelembe venni. A >0 feltételt az A13 cella tartalmazza. Az E13 cellában megadott képlet a következő:"
-#. %UQ7
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2875,7 +2587,6 @@ msgctxt ""
msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
msgstr "<item type=\"input\">=SZUMHA(E2:E11;A13)</item>"
-#. 2CcL
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2885,7 +2596,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 "Most nézze meg az értékcsökkenést 10 periódusra, vagy 1 pénzegységnyi maradványértékre, vagy adjon meg más kezdeti költséget, és így tovább..."
-#. ;oxa
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2894,7 +2604,6 @@ msgctxt ""
msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
msgstr "<bookmark_value>DISC függvény</bookmark_value><bookmark_value>kedvezmények</bookmark_value><bookmark_value>árengedmények</bookmark_value>"
-#. 5bnr
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2904,7 +2613,6 @@ msgctxt ""
msgid "DISC"
msgstr "DISC"
-#. \*eA
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2914,7 +2622,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Egy értékpapír leszámítolási (értékcsökkenési) értékét számítja ki százalékban.</ahelp>"
-#. .X*5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2924,7 +2631,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. R*WI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2934,7 +2640,6 @@ msgctxt ""
msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgstr "DISC(\"kifizetés\"; \"esedékesség\"; ár; visszaváltás; alap)"
-#. .OW:
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2944,7 +2649,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-#. -+Ru
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2954,7 +2658,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-#. R^Wx
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2964,7 +2667,6 @@ msgctxt ""
msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
msgstr "Az <emph>ár</emph> az értékpapír ára 100 egységnyi névértékre vonatkoztatva."
-#. ]R%U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2974,7 +2676,6 @@ msgctxt ""
msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-#. l:=\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2984,7 +2685,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. L;mS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2994,7 +2694,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 "Egy értékpapírt 2001. január 25-én vásárol meg, az esedékesség dátuma 2001. november 15. Az ár (vásárlási ár) 97, a visszaváltási érték 100. A napi elszámolással (3. bázis) milyen magas a kifizetés (leszámítolás)?"
-#. I@jX
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3004,7 +2703,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 "A <item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> eredményül 0,0372-et, vagyis 3,72%-ot ad."
-#. QTD6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3013,7 +2711,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 függvény</bookmark_value><bookmark_value>Microsoft Excel-függvények</bookmark_value><bookmark_value>időtartamok;rögzített kamatozású értékpapírok</bookmark_value>"
-#. mmXB
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3023,7 +2720,6 @@ msgctxt ""
msgid "DURATION_ADD"
msgstr "DURATION_ADD"
-#. IIAg
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3033,7 +2729,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Kiszámítja a fix kamatozású értékpapír időtartamát években.</ahelp>"
-#. ~,TK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3043,7 +2738,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. l/NM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3053,7 +2747,6 @@ msgctxt ""
msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
msgstr "DURATION_ADD(\"kifizetés\"; \"esedékesség\"; kamatláb; hozam; gyakoriság; alap)"
-#. jXBs
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3063,7 +2756,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-#. +CPb
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3073,7 +2765,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-#. @0U6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3083,7 +2774,6 @@ msgctxt ""
msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
msgstr "A <emph>kamatláb</emph> a szelvény évi kamatlába (a kamatfizetés nominális rátája)."
-#. 9(f@
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -3094,7 +2784,6 @@ msgctxt ""
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "A <emph>hozam</emph> az értékpapír éves hozama."
-#. n!}5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3104,7 +2793,6 @@ msgctxt ""
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-#. oo5*
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3114,7 +2802,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. \]aV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3124,7 +2811,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 "Egy értékpapírt 2001. január 1-jén vásárol, az esedékesség dátuma 2006. január 1-je. A befektetés kamatfizetési rátája 8%. A hozam 9,0%-os. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával milyen hosszú az időtartam?"
-#. cZUK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3134,7 +2820,6 @@ msgctxt ""
msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
msgstr "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0,08;0,09;2;3)</item>"
-#. fh~n
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3143,7 +2828,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 "<bookmark_value>éves nettó kamatláb</bookmark_value><bookmark_value>számítás; éves nettó kamatláb</bookmark_value><bookmark_value>nettó éves kamatláb</bookmark_value><bookmark_value>EFFECTIVE függvény</bookmark_value>"
-#. -@V2
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3153,7 +2837,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr "EFFECTIVE"
-#. ddI;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3163,7 +2846,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Kiszámítja egy névleges kamatlábhoz tartozó éves kamatláb nettó értékét.</ahelp>"
-#. 0Bxj
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3173,7 +2855,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 névleges kamat a számítási időszak végén esedékes kamatösszeget jelöli. Az effektív kamat a kifizetések számával nő. Más szóval, a kamat gyakran a számítási időszak végét megelőzően (havi vagy negyedéves) részletek formájában kerül kifizetésre."
-#. PUf%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3183,7 +2864,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. uj$c
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3193,7 +2873,6 @@ msgctxt ""
msgid "EFFECTIVE(Nom; P)"
msgstr "EFFECTIVE(névleges_kamat; időszakok_száma)"
-#. sI18
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3203,7 +2882,6 @@ msgctxt ""
msgid "<emph>Nom</emph> is the nominal interest."
msgstr "A <emph>névleges_kamat</emph> a névleges kamat."
-#. iKAO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3213,7 +2891,6 @@ msgctxt ""
msgid "<emph>P</emph> is the number of interest payment periods per year."
msgstr "Az <emph>időszakok_száma</emph> az évente esedékes kamatkifizetési időszakok száma."
-#. 0epW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3223,7 +2900,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ;f86
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3233,7 +2909,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 "Ha az évi névleges kamatláb 9,75%, és négy kamatszámítási periódus van meghatározva, mekkora a tényleges kamatláb (effektív kamatláb)?"
-#. [CGO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3243,7 +2918,6 @@ msgctxt ""
msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
msgstr "<item type=\"input\">=EFFECTIVE(9,75%;4)</item> = 10,11% – az éves effektív kamatláb ezért 10,11%."
-#. :XdW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3252,7 +2926,6 @@ msgctxt ""
msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
msgstr "<bookmark_value>effektív kamatlábak</bookmark_value><bookmark_value>EFFECT_ADD függvény</bookmark_value>"
-#. )\E?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3262,7 +2935,6 @@ msgctxt ""
msgid "EFFECT_ADD"
msgstr "EFFECT_ADD"
-#. i9Mi
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3272,7 +2944,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 "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Az effektív éves kamatlábat számítja ki a névleges kamatláb és az évenkénti kamatfizetések száma alapján.</ahelp>"
-#. US8W
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3282,7 +2953,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. JV%e
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3292,7 +2962,6 @@ msgctxt ""
msgid "EFFECT_ADD(NominalRate; NPerY)"
msgstr "EFFECT_ADD(névleges_kamat; időszakok_száma)"
-#. S}1]
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3302,7 +2971,6 @@ msgctxt ""
msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
msgstr "A <emph>névleges_kamat</emph> az éves névleges kamatláb."
-#. 7(fZ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3312,7 +2980,6 @@ msgctxt ""
msgid "<emph>NPerY </emph>is the number of interest payments per year."
msgstr "Az <emph>időszakok_száma</emph> a kamatkifizetések évenkénti időszakainak száma."
-#. {[Ri
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3322,7 +2989,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 4pIi
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3332,7 +2998,6 @@ msgctxt ""
msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
msgstr "Mekkora az 5,25% éves névleges kamatozású, negyedévenként fizető értékpapír effektív éves kamatlába?"
-#. o\6Y
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3342,7 +3007,6 @@ msgctxt ""
msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
msgstr "Az <item type=\"input\">=EFFECT_ADD(0,0525;4)</item> függvény visszatérési értéke 0,053543 vagy 5.3543%."
-#. e9@.
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3351,7 +3015,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 "<bookmark_value>számítás, számtani csökkenésű értékcsökkenés</bookmark_value><bookmark_value>számtani csökkenésű értékcsökkenés</bookmark_value><bookmark_value>értékcsökkenések;számtani csökkenésű</bookmark_value><bookmark_value>KCSA függvény</bookmark_value><bookmark_value>DDB függvény, lásd: KCSA függvény</bookmark_value>"
-#. YWE(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3361,7 +3024,6 @@ msgctxt ""
msgid "DDB"
msgstr "KCSA"
-#. %!`t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3371,7 +3033,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 "<ahelp hid=\"HID_FUNC_GDA\">Egy tárgyi eszköz értékcsökkenését számítja ki adott időszakra, az évek számjegyösszegével dolgozó módszer alapján.</ahelp>"
-#. xyW/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3381,7 +3042,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 "Az értékcsökkenés ezen formáját akkor használja, ha - a lineáris amortizációval szemben - magasabb kezdeti értékcsökkenéssel kíván számolni. Az amortizációs érték minden egyes időszakkal csökken. A módszer rendszerint az olyan eszközök esetében kerül felhasználásra, amelyek értékvesztesége magasabb röviddel a vásárlás után (például, gépjárművek, számítógépek). Fontos megjegyezni, hogy ezen számítási típus használatával a leltári érték sosem éri el a nulla értéket."
-#. (v63
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3391,7 +3051,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ^oSK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3401,7 +3060,6 @@ msgctxt ""
msgid "DDB(Cost; Salvage; Life; Period; Factor)"
msgstr "KCSA(költség; maradványérték; leírási_idő; időszak; faktor)"
-#. =6WI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3411,7 +3069,6 @@ msgctxt ""
msgid "<emph>Cost</emph> fixes the initial cost of an asset."
msgstr "A <emph>költség</emph> rögzíti az eszköz kezdeti árát."
-#. +FAM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3421,7 +3078,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
msgstr "A <emph>maradványérték</emph> rögzíti az eszköz értékét az élettartam végén."
-#. ^![5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3431,7 +3087,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 "A <emph>leírási_idő</emph> azon időszakok (például évek vagy hónapok) száma, amelyek meghatározzák az eszköz felhasználási idejét."
-#. Cg7W
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3441,7 +3096,6 @@ msgctxt ""
msgid "<emph>Period</emph> states the period for which the value is to be calculated."
msgstr "Az <emph>időszak</emph> meghatározza, hogy az értéket mely időszakra kívánja kiszámítani."
-#. /xo3
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3451,7 +3105,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 "A <emph>faktor</emph> (opcionális) az amortizáció csökkenésének faktora. Ha nem ad meg értéket, akkor az alapértelmezett faktor 2."
-#. M{Le
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3461,7 +3114,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Y?Sd
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3471,7 +3123,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 "Egy eredetileg 75 000 pénzegység értékű számítógéprendszerre kívánja az 5 év alatt havonta bekövetkező értékcsökkenést meghatározni. Az értékcsökkenés végén az érték legyen 1 pénzegység. A faktor 2."
-#. soHN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3481,7 +3132,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 "<item type=\"input\">=KCSA(75000;1;60;12;2) </item>= 1721,81 pénzegység. Tehát a vásárlás napját követő tizenkettedik hónapban számított kétszeres mértékű amortizáció 1721,81 pénzegység."
-#. O*T\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3490,7 +3140,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 "<bookmark_value>számítás; mértani csökkenésű értékcsökkenés</bookmark_value><bookmark_value>mértani csökkenésű értékcsökkenés</bookmark_value><bookmark_value>értékcsökkenések;mértani csökkenésű</bookmark_value><bookmark_value>KCS2 függvény</bookmark_value><bookmark_value>DB függvény, lásd: KCS2 függvény</bookmark_value>"
-#. %Ikt
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3500,7 +3149,6 @@ msgctxt ""
msgid "DB"
msgstr "KCS2"
-#. t_N@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3510,7 +3158,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 "<ahelp hid=\"HID_FUNC_GDA2\">Egy tárgyi eszköz értékcsökkenését számítja ki egy adott időszakra vonatkozóan a progresszív leírási modell alkalmazásával.</ahelp>"
-#. MWFb
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3520,7 +3167,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 "Az értékcsökkenés ezen formáját akkor használja, ha - a lineáris amortizációval szemben - az amortizáció kezdetekor magasabb értékcsökkenéssel kíván számolni. Az értékcsökkenés minden egyes amortizációs időszak során a kezdeti értékből addig már levont amortizációval csökken."
-#. r4H9
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3530,7 +3176,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ~}oe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3540,7 +3185,6 @@ msgctxt ""
msgid "DB(Cost; Salvage; Life; Period; Month)"
msgstr "KCS2(költség; maradványérték; leírási_idő; időszak; hónap)"
-#. 5$n?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3550,7 +3194,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "A <emph>költség</emph> az eszköz kezdeti ára."
-#. ,;Hm
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -3561,7 +3204,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr "A <emph>maradványérték</emph> az eszköz értéke az értékcsökkenés végén."
-#. 6-?+
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3571,7 +3213,6 @@ msgctxt ""
msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
msgstr "A <emph>leírási_idő</emph> azon időszak, amely során az eszköz elértéktelenedik."
-#. 3X(U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3581,7 +3222,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 "Az <emph>időszak</emph> az egyes időszakok hossza. Az időszak hosszát, illetve az értékcsökkenés időtartamát azonos dátumegységben kell megadni."
-#. RRGl
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3591,7 +3231,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 "A <emph>hónap</emph> (opcionális) a hónapok száma az értékcsökkenés első évében. Ha nem adja meg, akkor a függvény alapértelmezés szerint a 12 értéket használja."
-#. fksJ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3601,7 +3240,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Q1ta
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3611,7 +3249,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 "Egy eredetileg 25 000 pénzegység értékű számítógéprendszerre kívánja a 3 éves időtartam alatt bekövetkező értékcsökkenést meghatározni. A maradványérték legyen 1000 pénzegység. Egy időszak 30 napból áll."
-#. \^n8
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3621,7 +3258,6 @@ msgctxt ""
msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
msgstr "<item type=\"input\">=KCS2(25000;1000;36;1;6)</item> = 1075,00 pénzegység."
-#. ZzOv
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3631,7 +3267,6 @@ msgctxt ""
msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
msgstr "A számítógéprendszer rögzített csökkenésű értékcsökkenése 1075,00 pénzegység."
-#. _Tmw
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3640,7 +3275,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 "<bookmark_value>BMR függvény</bookmark_value><bookmark_value>IRR függvény, lásd: BMR függvény</bookmark_value><bookmark_value>számítás;belső megtérülési ráta, rendszeres kifizetések</bookmark_value><bookmark_value>belső megtérülési ráta;rendszeres kifizetések</bookmark_value>"
-#. moxf
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3650,7 +3284,6 @@ msgctxt ""
msgid "IRR"
msgstr "BMR"
-#. ~8]~
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3660,7 +3293,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 "<ahelp hid=\"HID_FUNC_IKV\">Kiszámítja egy befektetés belső megtérülési rátáját.</ahelp> Az értékek rendszeres időközű pénzáramlási értékeket jelölnek, amelyek között legalább egy negatívnak (kifizetés), és legalább egy pozitívnak (bevétel) kell lennie."
-#. u^rP
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3670,7 +3302,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. u,f-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3680,7 +3311,6 @@ msgctxt ""
msgid "IRR(Values; Guess)"
msgstr "BMR(értékek; becslés)"
-#. bupc
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3690,7 +3320,6 @@ msgctxt ""
msgid "<emph>Values</emph> represents an array containing the values."
msgstr "Az <emph>értékek</emph> az értékeket tartalmazó tömb."
-#. GM,/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3700,7 +3329,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 "A <emph>becslés</emph> (opcionális) a becsült érték. A belső megtérülési érték számítása során a függvény iterációs módszert használ. Ha csupán néhány értéket tud megadni, akkor tanácsos egy kezdeti becslést megadni ahhoz, hogy az iterációt lehetővé tegye."
-#. i]q`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3710,7 +3338,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. p0Vv
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3720,7 +3347,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 "Feltéve, hogy a cellák A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> és A4=<item type=\"input\">1000</item>, a <item type=\"input\">=BMR(A1:A4)</item> képlet a 11,33% eredményt adja vissza."
-#. {g)4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3729,7 +3355,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 "<bookmark_value>számítás; változatlan törlesztési részletfizetések kamatszintje</bookmark_value><bookmark_value>változatlan törlesztési részletfizetések kamatszintje</bookmark_value><bookmark_value>LRÉSZLETKAMAT függvény</bookmark_value><bookmark_value>ISPMT függvény, lásd: LRÉSZLETKAMAT függvény</bookmark_value>"
-#. G9nS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3739,7 +3364,6 @@ msgctxt ""
msgid "ISPMT"
msgstr "LRÉSZLETKAMAT"
-#. k;r?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3749,7 +3373,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">A változatlan törlesztési részletfizetések kamatszintjét számítja ki.</ahelp>"
-#. SqG`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3759,7 +3382,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. lLr5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3769,7 +3391,6 @@ msgctxt ""
msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgstr "LRÉSZLETKAMAT(kamatláb; időszak; időszakok_száma; befektetés)"
-#. ]G#Z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3779,7 +3400,6 @@ msgctxt ""
msgid "<emph>Rate</emph> sets the periodic interest rate."
msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-#. 741_
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3789,7 +3409,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the number of installments for calculation of interest."
msgstr "Az <emph>időszak</emph> a kamatszámításhoz használt részletfizetések száma."
-#. ^(fn
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3799,7 +3418,6 @@ msgctxt ""
msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
msgstr "Az <emph>időszakok_száma</emph> a törlesztési időszakok összes száma."
-#. pg-I
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3809,7 +3427,6 @@ msgctxt ""
msgid "<emph>Invest</emph> is the amount of the investment."
msgstr "A <emph>befektetés</emph> a befektetés összege."
-#. dFrU
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3819,7 +3436,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. O+s=
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3829,7 +3445,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 "A két éves futamidejű, havi törlesztésű, évi 12% kamatozású, 120 000 pénzegység összegű hitel másfél év utáni kamatszintje érdekli."
-#. {=KQ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3839,7 +3454,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 "<item type=\"input\">=LRÉSZLETKAMAT(1%;18;24;120000)</item> = -300 pénzegység. 1,5 év után a havi kamat 300 pénzegység értéket ér el."
-#. diGS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3849,7 +3463,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=\"Pénzügyi függvények - második rész\">Pénzügyi függvények - második rész</link>"
-#. Roe2
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3859,7 +3472,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=\"Pénzügyi függvények - harmadik rész\">Pénzügyi függvények - harmadik rész</link>"
-#. Z:J+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3868,7 +3480,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr "Kiegészítő függvények; Műszaki függvények listája - második rész"
-#. iW/n
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3877,7 +3488,6 @@ msgctxt ""
msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
msgstr "<bookmark_value>imaginárius számok műszaki függvényekben</bookmark_value><bookmark_value>komplex számok műszaki függvényekben</bookmark_value>"
-#. dP]@
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3887,7 +3497,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr "Kiegészítő függvények; Műszaki függvények listája - második rész"
-#. K9pt
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3897,7 +3506,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=\"Statisztika kategória\">Statisztika kategória</link>"
-#. |EZT
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3907,7 +3515,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=\"Műszaki függvények - első rész\">Műszaki függvények - első rész</link>"
-#. Jdb}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3917,7 +3524,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=\"Vissza az Áttekintéshez\">Vissza az Áttekintéshez</link>"
-#. YW3S
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3926,7 +3532,6 @@ msgctxt ""
msgid "<bookmark_value>IMABS function</bookmark_value>"
msgstr "<bookmark_value>IMABS függvény</bookmark_value>"
-#. yr4F
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3936,7 +3541,6 @@ msgctxt ""
msgid "IMABS"
msgstr "IMABS"
-#. c}7B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3946,7 +3550,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\">Az eredmény egy komplex szám abszolút értéke.</ahelp>"
-#. ZJnF
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3956,7 +3559,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. tF(H
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3966,7 +3568,6 @@ msgctxt ""
msgid "IMABS(\"ComplexNumber\")"
msgstr "IMABS(\"komplex_szám\")"
-#. Pbj$
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3976,7 +3577,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 "A <variable id=\"complex\"><emph>komplex_szám</emph> a komplex szám, amelyet „x+yi” vagy „x+yj” formában kell megadni.</variable>"
-#. 47dA
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3986,7 +3586,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. xDjT
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3996,7 +3595,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
msgstr "Az <item type=\"input\">=IMABS(\"5+12j\")</item> a 13 értéket adja vissza."
-#. .v\a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4005,7 +3603,6 @@ msgctxt ""
msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
msgstr "<bookmark_value>IMAGINARY függvény</bookmark_value>"
-#. _{du
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4015,7 +3612,6 @@ msgctxt ""
msgid "IMAGINARY"
msgstr "IMAGINARY"
-#. f|kj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4025,7 +3621,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\">Az eredmény egy komplex szám képzetes együtthatója.</ahelp>"
-#. .K@E
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4035,7 +3630,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ``OR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4045,7 +3639,6 @@ msgctxt ""
msgid "IMAGINARY(\"ComplexNumber\")"
msgstr "IMAGINARY(\"komplex_szám\")"
-#. p+0l
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4055,7 +3648,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 4pmW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4065,7 +3657,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
msgstr "Az <item type=\"input\">=IMAGINARY(\"4+3j\")</item> a 3 értéket adja vissza."
-#. .Xk|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4074,7 +3665,6 @@ msgctxt ""
msgid "<bookmark_value>IMPOWER function</bookmark_value>"
msgstr "<bookmark_value>IMPOWER függvény</bookmark_value>"
-#. N;+R
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4084,7 +3674,6 @@ msgctxt ""
msgid "IMPOWER"
msgstr "IMPOWER"
-#. ^,Ii
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4094,7 +3683,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\">Az eredmény a komplex szám egész kitevős hatványa.</ahelp>"
-#. ru1v
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4104,7 +3692,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. X0:n
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4114,7 +3701,6 @@ msgctxt ""
msgid "IMPOWER(\"ComplexNumber\"; Number)"
msgstr "IMPOWER(\"komplex_szám\"; szám)"
-#. l[jL
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4124,7 +3710,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the exponent."
msgstr "A <emph>szám</emph> a kitevő."
-#. [jZm
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4134,7 +3719,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 8sJW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4144,7 +3728,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
msgstr "Az <item type=\"input\">=IMPOWER(\"2+3i\";2)</item> a -5+12i értéket adja vissza."
-#. =$,4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4153,7 +3736,6 @@ msgctxt ""
msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
msgstr "<bookmark_value>IMARGUMENT függvény</bookmark_value>"
-#. P@dE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4163,7 +3745,6 @@ msgctxt ""
msgid "IMARGUMENT"
msgstr "IMARGUMENT"
-#. fBXH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4173,7 +3754,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\">Az eredmény egy komplex szám argumentuma (a fí szög).</ahelp>"
-#. [:aj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4183,7 +3763,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. XkL:
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4193,7 +3772,6 @@ msgctxt ""
msgid "IMARGUMENT(\"ComplexNumber\")"
msgstr "IMARGUMENT(\"komplex_szám\")"
-#. +%4]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4203,7 +3781,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. /Uh0
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4213,7 +3790,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
msgstr "Az <item type=\"input\">=IMARGUMENT(\"3+4j\")</item> a 0,927295 értéket adja vissza."
-#. ?%5,
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4222,7 +3798,6 @@ msgctxt ""
msgid "<bookmark_value>IMCOS function</bookmark_value>"
msgstr "<bookmark_value>IMCOS függvény</bookmark_value>"
-#. aN^x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4232,7 +3807,6 @@ msgctxt ""
msgid "IMCOS"
msgstr "IMCOS"
-#. ak:N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4242,7 +3816,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\">Az eredmény egy komplex szám koszinusza.</ahelp>"
-#. |\J~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4252,7 +3825,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ;YK6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4262,7 +3834,6 @@ msgctxt ""
msgid "IMCOS(\"ComplexNumber\")"
msgstr "IMCOS(\"komplex_szám\")"
-#. vE8E
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4272,7 +3843,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ST,k
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4282,7 +3852,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
msgstr "Az <item type=\"input\">=IMCOS(\"3+4j\")</item> eredményül -27,03-3,85i értéket ad (kerekítve)."
-#. ?SN`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4291,7 +3860,6 @@ msgctxt ""
msgid "<bookmark_value>IMDIV function</bookmark_value>"
msgstr "<bookmark_value>IMDIV függvény</bookmark_value>"
-#. ^uW6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4301,7 +3869,6 @@ msgctxt ""
msgid "IMDIV"
msgstr "IMDIV"
-#. ok;C
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4311,7 +3878,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\">Az eredmény két komplex szám hányadosa.</ahelp>"
-#. Ir6=
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4321,7 +3887,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. d.mw
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4331,7 +3896,6 @@ msgctxt ""
msgid "IMDIV(\"Numerator\"; \"Denominator\")"
msgstr "IMDIV(\"számláló\"; \"nevező\")"
-#. eVGm
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4341,7 +3905,6 @@ msgctxt ""
msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
msgstr "A <emph>számláló</emph> és a <emph>nevező</emph> komplex számok, amelyeket „x+yi” vagy „x+yj” formában kell megadni."
-#. KdFy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4351,7 +3914,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. =X,{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4361,7 +3923,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
msgstr "Az <item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> eredményül 5+12i értéket ad."
-#. .N=v
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4370,7 +3931,6 @@ msgctxt ""
msgid "<bookmark_value>IMEXP function</bookmark_value>"
msgstr "<bookmark_value>IMEXP függvény</bookmark_value>"
-#. C,e]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4380,7 +3940,6 @@ msgctxt ""
msgid "IMEXP"
msgstr "IMEXP"
-#. Ns_|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4390,7 +3949,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\">Az eredmény az e (a természetes logaritmus alapja) a komplex szám által meghatározott hatványon.</ahelp> Az e állandó értéke megközelítőleg 2,71828182845904."
-#. =la?
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4400,7 +3958,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. aA,g
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4410,7 +3967,6 @@ msgctxt ""
msgid "IMEXP(\"ComplexNumber\")"
msgstr "IMEXP(\"komplex_szám\")"
-#. JA;u
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4420,7 +3976,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. krfb
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4430,7 +3985,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
msgstr "Az <item type=\"input\">=IMEXP(\"1+j\")</item> eredményül 1,47+2,29j értéket ad (kerekítve)."
-#. R9Y4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4439,7 +3993,6 @@ msgctxt ""
msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
msgstr "<bookmark_value>IMCONJUGATE függvény</bookmark_value>"
-#. (d^s
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4449,7 +4002,6 @@ msgctxt ""
msgid "IMCONJUGATE"
msgstr "IMCONJUGATE"
-#. 5UYj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4459,7 +4011,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\">Az eredmény a komplex szám komplex konjugáltja.</ahelp>"
-#. lab)
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4469,7 +4020,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 22-V
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4479,7 +4029,6 @@ msgctxt ""
msgid "IMCONJUGATE(\"ComplexNumber\")"
msgstr "IMCONJUGATE(\"komplex_szám\")"
-#. ;m14
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4489,7 +4038,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ~P#o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4499,7 +4047,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
msgstr "Az <item type=\"input\">=IMCONJUGATE(\"1+j\")</item> az 1-j értéket adja vissza."
-#. %|E^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4508,7 +4055,6 @@ msgctxt ""
msgid "<bookmark_value>IMLN function</bookmark_value>"
msgstr "<bookmark_value>IMLN függvény</bookmark_value>"
-#. hIk0
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4518,7 +4064,6 @@ msgctxt ""
msgid "IMLN"
msgstr "IMLN"
-#. 8@Us
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4528,7 +4073,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\">Az eredmény a komplex szám természetes logaritmusa.</ahelp> Az e állandó értéke megközelítőleg 2,71828182845904."
-#. 9G0y
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4538,7 +4082,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. zTJy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4548,7 +4091,6 @@ msgctxt ""
msgid "IMLN(\"ComplexNumber\")"
msgstr "IMLN(\"komplex_szám\")"
-#. ,j8k
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4558,7 +4100,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Ydkk
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4568,7 +4109,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
msgstr "Az <item type=\"input\">=IMLN(\"1+j\")</item> eredményül 0,35+0,79j értéket ad (kerekítve)."
-#. =2|m
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4577,7 +4117,6 @@ msgctxt ""
msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
msgstr "<bookmark_value>IMLOG10 függvény</bookmark_value>"
-#. Ga:t
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4587,7 +4126,6 @@ msgctxt ""
msgid "IMLOG10"
msgstr "IMLOG10"
-#. +^su
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4597,7 +4135,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\">Az eredmény a komplex szám tízes alapú logaritmusa.</ahelp>"
-#. .S-8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4607,7 +4144,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. #0nW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4617,7 +4153,6 @@ msgctxt ""
msgid "IMLOG10(\"ComplexNumber\")"
msgstr "IMLOG10(\"komplex_szám\")"
-#. GK(\
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4627,7 +4162,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. x!}l
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4637,7 +4171,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
msgstr "Az <item type=\"input\">=IMLOG10(\"1+j\")</item> eredményül 0,15+0,34j értéket ad (kerekítve)."
-#. @,de
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4646,7 +4179,6 @@ msgctxt ""
msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
msgstr "<bookmark_value>IMLOG2 függvény</bookmark_value>"
-#. d_#4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4656,7 +4188,6 @@ msgctxt ""
msgid "IMLOG2"
msgstr "IMLOG2"
-#. GLT_
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4666,7 +4197,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\">Az eredmény egy komplex szám kettes alapú logaritmusa.</ahelp>"
-#. pSL[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4676,7 +4206,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. B(ex
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4686,7 +4215,6 @@ msgctxt ""
msgid "IMLOG2(\"ComplexNumber\")"
msgstr "IMLOG2(\"komplex_szám\")"
-#. vF(~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4696,7 +4224,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. +?4D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4706,7 +4233,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
msgstr "Az <item type=\"input\">=IMLOG2(\"1+j\")</item> eredményül 0,50+1,13j értéket ad (kerekítve)."
-#. b2W[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4715,7 +4241,6 @@ msgctxt ""
msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
msgstr "<bookmark_value>IMPRODUCT függvény</bookmark_value>"
-#. ZQeP
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4725,7 +4250,6 @@ msgctxt ""
msgid "IMPRODUCT"
msgstr "IMPRODUCT"
-#. r,w!
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4735,7 +4259,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\">Az eredmény legfeljebb 29 darab komplex szám szorzata.</ahelp>"
-#. DTu}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4745,7 +4268,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. `0XR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4755,7 +4277,6 @@ msgctxt ""
msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgstr "IMPRODUCT(\"komplex_szám\"; \"komplex_szám_1\"; ...)"
-#. {#{|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4765,7 +4286,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Q.:B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4775,7 +4295,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
msgstr "Az <item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> a 27+11j értéket adja vissza."
-#. i;Rd
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4784,7 +4303,6 @@ msgctxt ""
msgid "<bookmark_value>IMREAL function</bookmark_value>"
msgstr "<bookmark_value>IMREAL függvény</bookmark_value>"
-#. c;-c
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4794,7 +4312,6 @@ msgctxt ""
msgid "IMREAL"
msgstr "IMREAL"
-#. 5$EU
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4804,7 +4321,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\">Az eredmény egy komplex szám valós együtthatója.</ahelp>"
-#. [LO^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4814,7 +4330,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ?*r`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4824,7 +4339,6 @@ msgctxt ""
msgid "IMREAL(\"ComplexNumber\")"
msgstr "IMREAL(\"komplex_szám\")"
-#. }I_#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4834,7 +4348,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. xg8A
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4844,7 +4357,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
msgstr "Az <item type=\"input\">=IMREAL(\"1+3j\")</item> az 1 értéket adja vissza."
-#. NqFi
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4853,7 +4365,6 @@ msgctxt ""
msgid "<bookmark_value>IMSIN function</bookmark_value>"
msgstr "<bookmark_value>IMSIN függvény</bookmark_value>"
-#. !gJ;
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4863,7 +4374,6 @@ msgctxt ""
msgid "IMSIN"
msgstr "IMSIN"
-#. rZqN
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4873,7 +4383,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\">Az eredmény egy komplex szám szinusza.</ahelp>"
-#. }pI^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4883,7 +4392,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. .)dY
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4893,7 +4401,6 @@ msgctxt ""
msgid "IMSIN(\"ComplexNumber\")"
msgstr "IMSIN(\"komplex_szám\")"
-#. !Rac
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4903,7 +4410,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. *v[p
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4913,7 +4419,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
msgstr "Az <item type=\"input\">=IMSIN(\"3+4j\")</item> eredményül 3,85+27,02j értéket ad (kerekítve)."
-#. R4q#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4922,7 +4427,6 @@ msgctxt ""
msgid "<bookmark_value>IMSUB function</bookmark_value>"
msgstr "<bookmark_value>IMSUB függvény</bookmark_value>"
-#. X07e
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4932,7 +4436,6 @@ msgctxt ""
msgid "IMSUB"
msgstr "IMSUB"
-#. `hfp
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4942,7 +4445,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\">Az eredmény két komplex szám különbsége.</ahelp>"
-#. N0*)
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4952,7 +4454,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. `\am
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4962,7 +4463,6 @@ msgctxt ""
msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgstr "IMSUB(\"komplex_szám_1\"; \"komplex_szám_2\")"
-#. zyu1
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4972,7 +4472,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ,t[[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4982,7 +4481,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
msgstr "Az <item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> eredményül 8+j értéket ad."
-#. ^I`7
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4991,7 +4489,6 @@ msgctxt ""
msgid "<bookmark_value>IMSUM function</bookmark_value>"
msgstr "<bookmark_value>IMSUM függvény</bookmark_value>"
-#. T9j+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5001,7 +4498,6 @@ msgctxt ""
msgid "IMSUM"
msgstr "IMSUM"
-#. HQhC
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5011,7 +4507,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\">Az eredmény legfeljebb 29 darab komplex szám összege.</ahelp>"
-#. ?9KF
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5021,7 +4516,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ?mWo
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5031,7 +4525,6 @@ msgctxt ""
msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgstr "IMSUM(\"komplex_szám_1\"; \"komplex_szám_2\"; ...)"
-#. 4Kh7
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5041,7 +4534,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 2!.}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5051,7 +4543,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
msgstr "Az <item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> eredményül 18+7j értéket ad."
-#. R_!G
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5060,7 +4551,6 @@ msgctxt ""
msgid "<bookmark_value>IMSQRT function</bookmark_value>"
msgstr "<bookmark_value>IMSQRT függvény</bookmark_value>"
-#. ngD_
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5070,7 +4560,6 @@ msgctxt ""
msgid "IMSQRT"
msgstr "IMSQRT"
-#. c=_#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5080,7 +4569,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\">Az eredmény egy komplex szám négyzetgyöke.</ahelp>"
-#. (fze
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5090,7 +4578,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 8mXE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5100,7 +4587,6 @@ msgctxt ""
msgid "IMSQRT(\"ComplexNumber\")"
msgstr "IMSQRT(\"komplex_szám\")"
-#. kmH4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5110,7 +4596,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 3/W#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5120,7 +4605,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
msgstr "Az <item type=\"input\">=IMSQRT(\"3+4i\")</item> a 2+1i értéket adja vissza."
-#. .[-x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5129,7 +4613,6 @@ msgctxt ""
msgid "<bookmark_value>COMPLEX function</bookmark_value>"
msgstr "<bookmark_value>COMPLEX függvény</bookmark_value>"
-#. u*FR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5139,7 +4622,6 @@ msgctxt ""
msgid "COMPLEX"
msgstr "COMPLEX"
-#. !I7]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5149,7 +4631,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\">Az eredmény egy komplex szám, amelyet a valós és a képzetes együtthatóból állít elő.</ahelp>"
-#. d+C2
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5159,7 +4640,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ?n\o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5169,7 +4649,6 @@ msgctxt ""
msgid "COMPLEX(RealNum; INum; Suffix)"
msgstr "COMPLEX(valós szám; képzetes rész; képzetes egység)"
-#. g0N%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5179,7 +4658,6 @@ msgctxt ""
msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
msgstr "A <emph>valós szám</emph> a komplex szám valós része."
-#. DB^W
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5189,7 +4667,6 @@ msgctxt ""
msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
msgstr "A <emph>képzetes rész</emph> a komplex szám képzetes része."
-#. nXY5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5199,7 +4676,6 @@ msgctxt ""
msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
msgstr "A <emph>képzetes egység</emph> két lehetőség közül az egyik lehet: „i” vagy „j”."
-#. IF5N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5209,7 +4685,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. VAJv
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5219,7 +4694,6 @@ msgctxt ""
msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
msgstr "A <item type=\"input\">=COMPLEX(3;4;\"j\")</item> képlet eredménye a 3+4j érték."
-#. !Qa8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5228,7 +4702,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
msgstr "<bookmark_value>OCT2BIN függvény</bookmark_value><bookmark_value>átalakítás;oktális számokat bináris számokra</bookmark_value>"
-#. 5Co{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5238,7 +4711,6 @@ msgctxt ""
msgid "OCT2BIN"
msgstr "OCT2BIN"
-#. /koO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5248,7 +4720,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\">Az eredmény a megadott oktális szám bináris alakja.</ahelp>"
-#. #PEK
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5258,7 +4729,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. W6Ik
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5268,7 +4738,6 @@ msgctxt ""
msgid "OCT2BIN(Number; Places)"
msgstr "OCT2BIN(szám; helyi_értékek)"
-#. s#LX
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5278,7 +4747,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 "A <emph>szám</emph> egy oktális szám. A szám legfeljebb 10 helyi értékből állhat. A legszignifikánsabb bit az előjelbit, az értéket a többi bit adja eredményül. Negatív számot kettes komplemens képzésével lehet beírni."
-#. -!YD
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5288,7 +4756,6 @@ msgctxt ""
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-#. rH{w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5298,7 +4765,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Ta.K
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5308,7 +4774,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
msgstr "Az <item type=\"input\">=OCT2BIN(3;3)</item> képlet eredménye a 011 érték."
-#. J|^^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5317,7 +4782,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
msgstr "<bookmark_value>OCT2DEC függvény</bookmark_value><bookmark_value>átalakítás;oktális számokat decimális számokra</bookmark_value>"
-#. ;p+9
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5327,7 +4791,6 @@ msgctxt ""
msgid "OCT2DEC"
msgstr "OCT2DEC"
-#. Q9,F
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5337,7 +4800,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\">Az eredmény a megadott oktális szám decimális alakja.</ahelp>"
-#. `vLO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5347,7 +4809,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. paw.
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5357,7 +4818,6 @@ msgctxt ""
msgid "OCT2DEC(Number)"
msgstr "OCT2DEC(szám)"
-#. 3y[a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5367,7 +4827,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 "A <emph>szám</emph> egy oktális szám. A szám legfeljebb 10 helyi értékből állhat. A legszignifikánsabb bit az előjelbit, az értéket a többi bit adja eredményül. Negatív számot kettes komplemens képzésével lehet beírni."
-#. uR3[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5377,7 +4836,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. aT6~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5387,7 +4845,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
msgstr "Az <item type=\"input\">=OCT2DEC(144)</item> képlet eredménye a 100-as érték."
-#. v02G
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5396,7 +4853,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
msgstr "<bookmark_value>OCT2HEX függvény</bookmark_value><bookmark_value>átalakítás;oktális számokat hexadecimális számokra</bookmark_value>"
-#. WHV+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5406,7 +4862,6 @@ msgctxt ""
msgid "OCT2HEX"
msgstr "OCT2HEX"
-#. ^Vsb
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5416,7 +4871,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\"> Az eredmény a megadott oktális szám hexadecimális alakja.</ahelp>"
-#. _q=f
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5426,7 +4880,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. W!k\
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5436,7 +4889,6 @@ msgctxt ""
msgid "OCT2HEX(Number; Places)"
msgstr "OCT2HEX(szám; helyi_értékek)"
-#. D=iE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5446,7 +4898,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 "A <emph>szám</emph> egy oktális szám. A szám legfeljebb 10 helyi értékből állhat. A legszignifikánsabb bit az előjelbit, az értéket a többi bit adja eredményül. Negatív számot kettes komplemens képzésével lehet beírni."
-#. CU%x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5456,7 +4907,6 @@ msgctxt ""
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-#. -\AS
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5466,7 +4916,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. :??o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5476,7 +4925,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "Az <item type=\"input\">=OCT2HEX(144;4)</item> képlet eredménye 0064."
-#. Oxe5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5485,7 +4933,6 @@ msgctxt ""
msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
msgstr "<bookmark_value>CONVERT_ADD függvény</bookmark_value>"
-#. bF`i
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5495,7 +4942,6 @@ msgctxt ""
msgid "CONVERT_ADD"
msgstr "CONVERT_ADD"
-#. 8lar
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5505,7 +4951,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 "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Adott mértékegységbeli mennyiséget más mértékegységűre vált át.</ahelp> A mértékegységeket közvetlenül, idézőjelek között vagy hivatkozásként adja meg. Ha mértékegységet ír be egy cellába, annak meg kell felelnie a következő lista egyik elemének (a kis- és nagybetűk különböznek). Ha például egy kis l betűt (liter) akar beírni egy cellába, írjon be egy aposztrófot (') és közvetlenül utána az l betűt."
-#. /CZy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5515,7 +4960,6 @@ msgctxt ""
msgid "Property"
msgstr "Tulajdonság"
-#. !IU[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5525,7 +4969,6 @@ msgctxt ""
msgid "Units"
msgstr "Egységek"
-#. OMR(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5535,7 +4978,6 @@ msgctxt ""
msgid "Weight"
msgstr "Tömeg"
-#. |03L
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5545,7 +4987,6 @@ msgctxt ""
msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
msgstr "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-#. h6.j
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5555,7 +4996,6 @@ msgctxt ""
msgid "Length"
msgstr "Hossz"
-#. ))Ac
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5565,7 +5005,6 @@ msgctxt ""
msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
msgstr "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-#. o@Ae
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5575,7 +5014,6 @@ msgctxt ""
msgid "Time"
msgstr "Idő"
-#. rxtc
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5585,7 +5023,6 @@ msgctxt ""
msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgstr "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-#. ,2\Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5595,7 +5032,6 @@ msgctxt ""
msgid "Pressure"
msgstr "Nyomás"
-#. Y)9h
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5605,7 +5041,6 @@ msgctxt ""
msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
msgstr "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-#. jpbH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5615,7 +5050,6 @@ msgctxt ""
msgid "Force"
msgstr "Erő"
-#. OS=Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5625,7 +5059,6 @@ msgctxt ""
msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
msgstr "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-#. SFT/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5635,7 +5068,6 @@ msgctxt ""
msgid "Energy"
msgstr "Energia"
-#. ;?$9
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5645,7 +5077,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 "<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"
-#. g^s4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5655,7 +5086,6 @@ msgctxt ""
msgid "Power"
msgstr "Teljesítmény"
-#. ls/T
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5665,7 +5095,6 @@ msgctxt ""
msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgstr "<emph>W</emph>, <emph>w</emph>, HP, PS"
-#. B}10
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5675,7 +5104,6 @@ msgctxt ""
msgid "Field strength"
msgstr "Térerősség"
-#. ;trl
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5685,7 +5113,6 @@ msgctxt ""
msgid "<emph>T</emph>, <emph>ga</emph>"
msgstr "<emph>T</emph>, <emph>ga</emph>"
-#. iA}M
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5695,7 +5122,6 @@ msgctxt ""
msgid "Temperature"
msgstr "Hőmérséklet"
-#. }}.-
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5705,7 +5131,6 @@ msgctxt ""
msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
msgstr "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-#. CwZZ
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5715,7 +5140,6 @@ msgctxt ""
msgid "Volume"
msgstr "Térfogat"
-#. ai=Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5725,7 +5149,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 "<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"
-#. V%6T
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5735,7 +5158,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. Ou^e
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5745,7 +5167,6 @@ msgctxt ""
msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
msgstr "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-#. fa9a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5755,7 +5176,6 @@ msgctxt ""
msgid "Speed"
msgstr "Sebesség"
-#. 1,g6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5765,7 +5185,6 @@ msgctxt ""
msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgstr "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-#. T4!i
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5775,7 +5194,6 @@ msgctxt ""
msgid "Information"
msgstr "Információ"
-#. +3_[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5785,7 +5203,6 @@ msgctxt ""
msgid "<emph>bit</emph>, <emph>byte</emph>"
msgstr "<emph>bit</emph>, <emph>byte</emph>"
-#. WM,+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5795,7 +5212,6 @@ msgctxt ""
msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
msgstr "A <emph>félkövérrel</emph> szedett mértékegységeket megelőzheti egy karakter előtag a következő listából:"
-#. /4GN
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5805,7 +5221,6 @@ msgctxt ""
msgid "Prefix"
msgstr "Előtag"
-#. 2Kh,
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5814,7 +5229,6 @@ msgctxt ""
msgid "Multiplier"
msgstr "Szorzó"
-#. Zh6D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5823,7 +5237,6 @@ msgctxt ""
msgid "Y (yotta)"
msgstr "Y (jotta)"
-#. _M\3
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5832,7 +5245,6 @@ msgctxt ""
msgid "10^24"
msgstr "10^24"
-#. 5fPf
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5841,7 +5253,6 @@ msgctxt ""
msgid "Z (zetta)"
msgstr "Z (zetta)"
-#. c2S|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5850,7 +5261,6 @@ msgctxt ""
msgid "10^21"
msgstr "10^21"
-#. KFj(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5859,7 +5269,6 @@ msgctxt ""
msgid "E (exa)"
msgstr "E (exa)"
-#. +C$w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5868,7 +5277,6 @@ msgctxt ""
msgid "10^18"
msgstr "10^18"
-#. ?w[`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5877,7 +5285,6 @@ msgctxt ""
msgid "P (peta)"
msgstr "P (peta)"
-#. ufpO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5886,7 +5293,6 @@ msgctxt ""
msgid "10^15"
msgstr "10^15"
-#. ,2kG
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5895,7 +5301,6 @@ msgctxt ""
msgid "T (tera)"
msgstr "T (tera)"
-#. gjd?
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5904,7 +5309,6 @@ msgctxt ""
msgid "10^12"
msgstr "10^12"
-#. ]X#N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5913,7 +5317,6 @@ msgctxt ""
msgid "G (giga)"
msgstr "G (giga)"
-#. ;F2Y
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5922,7 +5325,6 @@ msgctxt ""
msgid "10^9"
msgstr "10^9"
-#. ^(w#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5931,7 +5333,6 @@ msgctxt ""
msgid "M (mega)"
msgstr "M (mega)"
-#. }1Ir
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5940,7 +5341,6 @@ msgctxt ""
msgid "10^6"
msgstr "10^6"
-#. :I50
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5949,7 +5349,6 @@ msgctxt ""
msgid "k (kilo)"
msgstr "k (kilo)"
-#. oU3N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5958,7 +5357,6 @@ msgctxt ""
msgid "10^3"
msgstr "10^3"
-#. fJhr
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5967,7 +5365,6 @@ msgctxt ""
msgid "h (hecto)"
msgstr "h (hekto)"
-#. P.cu
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5976,7 +5373,6 @@ msgctxt ""
msgid "10^2"
msgstr "10^2"
-#. 5`1D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5985,7 +5381,6 @@ msgctxt ""
msgid "e (deca)"
msgstr "e (deka)"
-#. IQ1(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5994,7 +5389,6 @@ msgctxt ""
msgid "10^1"
msgstr "10^1"
-#. V^]8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6003,7 +5397,6 @@ msgctxt ""
msgid "d (deci)"
msgstr "d (deci)"
-#. zQvg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6012,7 +5405,6 @@ msgctxt ""
msgid "10^-1"
msgstr "10^-1"
-#. 6:^.
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6021,7 +5413,6 @@ msgctxt ""
msgid "c (centi)"
msgstr "c (centi)"
-#. /dJ/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6030,7 +5421,6 @@ msgctxt ""
msgid "10^-2"
msgstr "10^-2"
-#. #umi
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6039,7 +5429,6 @@ msgctxt ""
msgid "m (milli)"
msgstr "m (milli)"
-#. :A_{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6048,7 +5437,6 @@ msgctxt ""
msgid "10^-3"
msgstr "10^-3"
-#. Qz+j
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6057,7 +5445,6 @@ msgctxt ""
msgid "u (micro)"
msgstr "u (mikro)"
-#. =5]X
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6066,7 +5453,6 @@ msgctxt ""
msgid "10^-6"
msgstr "10^-6"
-#. _f5[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6075,7 +5461,6 @@ msgctxt ""
msgid "n (nano)"
msgstr "n (nano)"
-#. bh|Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6084,7 +5469,6 @@ msgctxt ""
msgid "10^-9"
msgstr "10^-9"
-#. M=KH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6093,7 +5477,6 @@ msgctxt ""
msgid "p (pico)"
msgstr "p (piko)"
-#. F]OI
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6102,7 +5485,6 @@ msgctxt ""
msgid "10^-12"
msgstr "10^-12"
-#. 79A%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6111,7 +5493,6 @@ msgctxt ""
msgid "f (femto)"
msgstr "f (femto)"
-#. )mK=
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6120,7 +5501,6 @@ msgctxt ""
msgid "10^-15"
msgstr "10^-15"
-#. Z4g!
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6129,7 +5509,6 @@ msgctxt ""
msgid "a (atto)"
msgstr "a (atto)"
-#. mt2U
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6138,7 +5517,6 @@ msgctxt ""
msgid "10^-18"
msgstr "10^-18"
-#. @o;S
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6147,7 +5525,6 @@ msgctxt ""
msgid "z (zepto)"
msgstr "z (zepto)"
-#. 6c#B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6156,7 +5533,6 @@ msgctxt ""
msgid "10^-21"
msgstr "10^-21"
-#. W]6z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6165,7 +5541,6 @@ msgctxt ""
msgid "y (yocto)"
msgstr "y (jokto)"
-#. RvLO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6174,7 +5549,6 @@ msgctxt ""
msgid "10^-24"
msgstr "10^-24"
-#. ,1Tx
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6183,7 +5557,6 @@ msgctxt ""
msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
msgstr "Az információ egységei, a „bit” és a „byte” elé az IEC 60027-2 / IEEE 1541 szabvány szerinti előtagok is járulhatnak:"
-#. z.j`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6192,7 +5565,6 @@ msgctxt ""
msgid "ki kibi 1024"
msgstr "ki kibi 1024"
-#. I!{B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6201,7 +5573,6 @@ msgctxt ""
msgid "Mi mebi 1048576"
msgstr "Mi mebi 1048576"
-#. z!-H
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6210,7 +5581,6 @@ msgctxt ""
msgid "Gi gibi 1073741824"
msgstr "Gi gibi 1073741824"
-#. TsMM
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6219,7 +5589,6 @@ msgctxt ""
msgid "Ti tebi 1099511627776"
msgstr "Ti tebi 1099511627776"
-#. a+z/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6228,7 +5597,6 @@ msgctxt ""
msgid "Pi pebi 1125899906842620"
msgstr "Pi pebi 1125899906842620"
-#. NZX}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6237,7 +5605,6 @@ msgctxt ""
msgid "Ei exbi 1152921504606850000"
msgstr "Ei exbi 1152921504606850000"
-#. .C5P
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6246,7 +5613,6 @@ msgctxt ""
msgid "Zi zebi 1180591620717410000000"
msgstr "Zi zebi 1180591620717410000000"
-#. =Yde
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6255,7 +5621,6 @@ msgctxt ""
msgid "Yi yobi 1208925819614630000000000"
msgstr "Yi yobi 1208925819614630000000000"
-#. .;X[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6265,7 +5630,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. UL[:
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6275,7 +5639,6 @@ msgctxt ""
msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
msgstr "CONVERT_ADD(szám; \"ebből\"; \"ebbe\")"
-#. ABdH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6285,7 +5648,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the number to be converted."
msgstr "A <emph>szám</emph> a konvertálandó szám."
-#. *sy5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6295,7 +5657,6 @@ msgctxt ""
msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
msgstr "Az <emph>ebből</emph> az a mértékegység, amelyből az átalakítás során konvertál."
-#. D~!/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6305,7 +5666,6 @@ msgctxt ""
msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
msgstr "Az <emph>ebbe</emph> az a mértékegység, amelybe az átalakítás során konvertál. A két mértékegységnek azonos típusba kell tartoznia."
-#. Z)xx
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6315,7 +5675,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. k8ZZ
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6325,7 +5684,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 "A <item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\")</item> eredményül – két tizedesjegyre kerekítve – 10,14-et ad. 10 HP = 10,14 PS."
-#. PoqM
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6335,7 +5693,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 "A <item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\")</item> eredményül – két tizedesjegyre kerekítve – 6,21-et ad. 10 km = 6,21 mérföld. A k a 10³ tényezőre vonatkozó, megengedett előtagkarakter."
-#. ~UAK
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6344,7 +5701,6 @@ msgctxt ""
msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
msgstr "<bookmark_value>FACTDOUBLE függvény</bookmark_value><bookmark_value>faktoriális;kettesével növekvő számok</bookmark_value>"
-#. 7-aR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6354,7 +5710,6 @@ msgctxt ""
msgid "FACTDOUBLE"
msgstr "FACTDOUBLE"
-#. n}:w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6364,7 +5719,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Kiszámítja a szám dupla faktoriálisát.</ahelp>"
-#. aRge
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6374,7 +5728,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ;^,]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6384,7 +5737,6 @@ msgctxt ""
msgid "FACTDOUBLE(Number)"
msgstr "FACTDOUBLE(szám)"
-#. gRz^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6394,7 +5746,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 "Kiszámítja a <emph>szám!!-t</emph>, azaz a <emph>szám</emph> dupla faktoriálisát, ahol a <emph>szám</emph> nagyobb vagy egyenlő, mint nulla."
-#. b,GG
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6403,7 +5754,6 @@ msgctxt ""
msgid "For even numbers FACTDOUBLE(n) returns:"
msgstr "Páros számokra a FACTDOUBLE(n) eredménye:"
-#. V3VO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6412,7 +5762,6 @@ msgctxt ""
msgid "2*4*6*8* ... *n"
msgstr "2*4*6*8* ... *n"
-#. A(_X
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6421,7 +5770,6 @@ msgctxt ""
msgid "For odd numbers FACTDOUBLE(n) returns:"
msgstr "Páratlan számokra a FACTDOUBLE(n) eredménye:"
-#. 1h9%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6430,7 +5778,6 @@ msgctxt ""
msgid "1*3*5*7* ... *n"
msgstr "1*3*5*7* ... *n"
-#. Gn=2
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6439,7 +5786,6 @@ msgctxt ""
msgid "FACTDOUBLE(0) returns 1 by definition."
msgstr "A FACTDOUBLE(0) definíció szerint 1-et ad vissza."
-#. wazA
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6449,7 +5795,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. V!73
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6458,7 +5803,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
msgstr "A <item type=\"input\">=FACTDOUBLE(5)</item> eredménye 15."
-#. FPLH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6468,7 +5812,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
msgstr "A <item type=\"input\">=FACTDOUBLE(6)</item> eredménye 48."
-#. N,^$
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6477,7 +5820,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
msgstr "A <item type=\"input\">=FACTDOUBLE(0)</item> eredménye 1."
-#. ]yA\
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6486,7 +5828,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. 0#X4
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6495,7 +5836,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. -gM\
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6504,7 +5844,6 @@ msgctxt ""
msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
msgstr "A <link href=\"text/scalc/01/solver.xhp\">Megoldó</link> Beállítások párbeszédablaka használható egyes beállítások módosítására."
-#. (fsu
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6513,7 +5852,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 "<ahelp hid=\".\" visibility=\"hidden\">Válasszon ki egy megoldóprogramot. A listamező nem működik, ha csak egy megoldóprogram van telepítve. A megoldóprogramok kiterjesztésként telepíthetők.</ahelp>"
-#. ]Tyr
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6522,7 +5860,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az aktuális megoldó konfigurálása.</ahelp>"
-#. uYrq
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6531,7 +5868,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 "<ahelp hid=\".\" visibility=\"hidden\">Ha a Beállítások listamezőben lévő aktuális tétel engedélyezi egy érték módosítását, rákattinthat a Szerkesztés gombra. Egy párbeszédablak nyílik meg, ahol módosíthatja az értéket.</ahelp>"
-#. RATU
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6540,7 +5876,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Érték beírása vagy módosítása.</ahelp>"
-#. Xlzq
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6549,7 +5884,6 @@ msgctxt ""
msgid "Use the Options dialog to configure the current solver engine."
msgstr "A Beállítások párbeszédablak használatával konfigurálhatja az aktuális megoldóprogramot."
-#. gPHa
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6558,7 +5892,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 "Telepíthet több megoldóprogramot kiterjesztésként, ha rendelkezésre állnak. Nyissa meg az Eszközök - Kiterjesztéskezelőt, és a kiterjesztések kereséséhez nyissa meg a Kiterjesztések weboldalt."
-#. /Iui
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6567,7 +5900,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 "A listamezőben válassza ki a használandó és konfigurálandó megoldóprogramot. A listamező nem működik, ha csak egy megoldóprogram van telepítve."
-#. O#FW
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6576,7 +5908,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 "A Beállítások mezőben ellenőrizze az aktuális célértékkereső művelethez használandó beállításokat. Ha az aktuális beállításhoz különböző értékek adhatók meg, akkor a Szerkesztés gomb használható. A Szerkesztés gomb megnyomásakor megjelenő párbeszédablakban módosíthatja az értéket."
-#. .d2]
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6585,7 +5916,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 "A módosítások elfogadásához és a <link href=\"text/scalc/01/solver.xhp\">Megoldó</link> párbeszédablakba való visszatéréshez kattintson az OK gombra."
-#. GEc#
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6594,7 +5924,6 @@ msgctxt ""
msgid "Add"
msgstr "Hozzáadás"
-#. QD2P
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6604,7 +5933,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Hozzáadás\">Hozzáadás</link>"
-#. -u9*
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6614,7 +5942,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr "<ahelp hid=\".uno:AddPrintArea\">Hozzáadja az aktuális kijelölést a megadott nyomtatási területhez.</ahelp>"
-#. %tLG
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6623,7 +5950,6 @@ msgctxt ""
msgid "Styles and Formatting"
msgstr "Stílusok és formázás"
-#. TSmh
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6632,7 +5958,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>Stílussegéd, lásd a Stílusok és formázás ablakot</bookmark_value><bookmark_value>Stílusok és formázás ablak</bookmark_value><bookmark_value>formátumok;Stílusok és formázás ablak</bookmark_value><bookmark_value>formázás;Stílusok és formázás ablak</bookmark_value><bookmark_value>festékes doboz stílusok alkalmazásához</bookmark_value>"
-#. (cTK
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6642,7 +5967,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=\"Stílusok és formázás\">Stílusok és formázás</link>"
-#. xlQ=
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6652,7 +5976,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 "A Stílusok és formázás ablakban stílusokat rendelhet objektumokhoz és szövegszakaszokhoz. Stílusokat frissíthet, már létező Stílusokat módosíthat, illetve létrehozhat új Stílusokat."
-#. PA9%
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6662,7 +5985,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 "A Stílusok és formázás <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dokkolható ablak\">dokkolható ablak</link> nyitva maradhat a dokumentum szerkesztése során."
-#. Kr@m
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6672,7 +5994,6 @@ msgctxt ""
msgid "How to apply a cell style:"
msgstr "Cellastílus alkalmazása:"
-#. :A/X
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6682,7 +6003,6 @@ msgctxt ""
msgid "Select the cell or cell range."
msgstr "Jelölje ki a cellát vagy a cellatartományt."
-#. jZT^
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6692,7 +6012,6 @@ msgctxt ""
msgid "Double-click the style in the Styles and Formatting window."
msgstr "Kattintson duplán a stílusra a Stílusok és formázás ablakban."
-#. S.qt
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6702,7 +6021,6 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Cellastílusok"
-#. 1Ih_
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6712,7 +6030,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\">Megjeleníti a <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"közvetett cellaformázáshoz\">közvetett cellaformázáshoz</link> használható cellastílusok listáját.</ahelp>"
-#. X`SF
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6721,7 +6038,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.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Ikon</alt></image>"
-#. =57p
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6731,7 +6047,6 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Cellastílusok"
-#. EUvs
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6741,7 +6056,6 @@ msgctxt ""
msgid "Page Styles"
msgstr "Oldalstílusok"
-#. )gk:
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6751,7 +6065,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
msgstr "<ahelp hid=\".uno:PageStyle\">Megjeleníti a közvetett oldalformázásához használható oldalstílusokat.</ahelp>"
-#. jCFp
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6760,7 +6073,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.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Ikon</alt></image>"
-#. fM(3
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6770,7 +6082,6 @@ msgctxt ""
msgid "Page Styles"
msgstr "Oldalstílusok"
-#. Id%4
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6780,7 +6091,6 @@ msgctxt ""
msgid "Fill Format Mode"
msgstr "Kitöltés formátummal"
-#. ?rGb
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6790,7 +6100,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 "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">A Kitöltés formátummal funkciót ki-, illetve bekapcsolja. A festékes doboz segítségével hozzárendelheti a Stílusok és formázás ablakban kijelölt Stílust.</ahelp>"
-#. oXV\
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6799,7 +6108,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.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Ikon</alt></image>"
-#. @FQ:
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6809,7 +6117,6 @@ msgctxt ""
msgid "Fill Format Mode"
msgstr "Kitöltés formátummal"
-#. n0{=
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6819,7 +6126,6 @@ msgctxt ""
msgid "How to apply a new style with the paint can:"
msgstr "Egy új stílus alkalmazása a festékes doboz segítségével:"
-#. dfE8
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6829,7 +6135,6 @@ msgctxt ""
msgid "Select the desired style from the Styles and Formatting window."
msgstr "Válassza ki a kívánt stílust a Stílusok és formázás ablakban."
-#. N0}T
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6839,7 +6144,6 @@ msgctxt ""
msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr "Kattintson a <emph>Kitöltés formátummal</emph> ikonra."
-#. #`p$
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6849,7 +6153,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 "Kattintson egy formázni kívánt cellára, vagy az egész tartomány formázásához húzzon egy kijelölést az egérrel a tartomány felett. Ismételje meg ezt a műveletet a többi cellára és tartományra."
-#. oM^o
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6859,7 +6162,6 @@ msgctxt ""
msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
msgstr "Kattintson ismét a <emph>Kitöltés formátummal</emph> lehetőségre a kilépéshez."
-#. #DB-
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6869,7 +6171,6 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Új stílus a kijelölés alapján"
-#. 0~78
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6879,7 +6180,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 "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Létrehoz egy új stílust a kijelölt objektum formázása alapján.</ahelp> Rendeljen nevet a stílushoz a <link href=\"text/shared/01/05140100.xhp\" name=\"Stílus létrehozása\">Stílus létrehozása</link> párbeszédablakban."
-#. 4E-.
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6888,7 +6188,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_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Ikon</alt></image>"
-#. $9cJ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6898,7 +6197,6 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Új stílus a kijelölés alapján"
-#. Ei!D
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6908,7 +6206,6 @@ msgctxt ""
msgid "Update Style"
msgstr "Stílus frissítése"
-#. lXLT
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6918,7 +6215,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\">A Stílusok és formázás ablakban kiválasztott stílus frissítése a kijelölt objektum formázási beállításaival.</ahelp>"
-#. m$D?
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6927,7 +6223,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.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Ikon</alt></image>"
-#. 3z1F
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6937,7 +6232,6 @@ msgctxt ""
msgid "Update Style"
msgstr "Stílus frissítése"
-#. Gmp.
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6946,7 +6240,6 @@ msgctxt ""
msgid "Style List"
msgstr "Stíluslista"
-#. PVr@
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6955,7 +6248,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\">Megjeleníti a kijelölt stíluskategóriába tartozó stílusok listáját.</ahelp>"
-#. ^!rg
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6964,7 +6256,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 "A <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"helyi menüből\">helyi menüből</link> parancsokat választhat új stílus létrehozásához, egy egyéni stílus törléséhez, illetve egy kijelölt stílus módosításához."
-#. =(qI
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6974,7 +6265,6 @@ msgctxt ""
msgid "Style Groups"
msgstr "Stíluscsoportok"
-#. N{sQ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6984,7 +6274,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Felsorolja az elérhető stíluscsoportokat.</ahelp>"
-#. Pz,8
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -6993,7 +6282,6 @@ msgctxt ""
msgid "Creating Names"
msgstr "Nevek létrehozása"
-#. ]es#
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7002,7 +6290,6 @@ msgctxt ""
msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
msgstr "<bookmark_value>cellatartományok;nevek automatikus létrehozása</bookmark_value><bookmark_value>nevek; cellatartományokhoz</bookmark_value>"
-#. G6JW
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7012,7 +6299,6 @@ msgctxt ""
msgid "Creating Names"
msgstr "Nevek létrehozása"
-#. TX+3
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7022,7 +6308,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\">Lehetővé teszi több cellatartomány automatikus elnevezését.</ahelp></variable>"
-#. Wlle
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7032,7 +6317,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 "Jelölje ki azt a területet, amely az összes megnevezni kívánt tartományt magában foglalja. Ezután válassza a <emph>Beszúrás - Nevek - Létrehozás</emph> lehetőséget. Ez megnyitja a <emph>Nevek létrehozása</emph> párbeszédablakot, ahol kiválaszthatja a kívánt elnevezési beállításokat."
-#. ]4+?
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7042,7 +6326,6 @@ msgctxt ""
msgid "Create names from"
msgstr "Nevek létrehozása a következőből:"
-#. oJxl
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7052,7 +6335,6 @@ msgctxt ""
msgid "Defines which part of the spreadsheet is to be used for creating the name."
msgstr "Meghatározza, hogy a táblázat melyik részét használja nevek létrehozására."
-#. ]e)G
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7062,7 +6344,6 @@ msgctxt ""
msgid "Top row"
msgstr "Felső sor"
-#. Nu,c
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7072,7 +6353,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Tartományneveket hoz létre a kijelölt tartomány fejlécsorából.</ahelp> Minden oszlop kap egy különálló nevet és cellahivatkozást."
-#. ]f3A
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7082,7 +6362,6 @@ msgctxt ""
msgid "Left Column"
msgstr "Bal oldali oszlop"
-#. 3(7g
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7092,7 +6371,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Tartományneveket hoz létre a kijelölt munkalaptartomány első oszlopának bejegyzéseiből.</ahelp> Minden oszlop kap egy különálló nevet és cellahivatkozást."
-#. ;w]C
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7102,7 +6380,6 @@ msgctxt ""
msgid "Bottom row"
msgstr "Alsó sor"
-#. 8Gi5
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7112,7 +6389,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Tartományneveket hoz létre a kijelölt munkalaptartomány utolsó sorának bejegyzéseiből.</ahelp> Minden oszlop kap egy különálló nevet és cellahivatkozást."
-#. x*Q4
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7122,7 +6398,6 @@ msgctxt ""
msgid "Right Column"
msgstr "Jobb oldali oszlop"
-#. ;jq|
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7132,7 +6407,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Tartományneveket hoz létre a kijelölt munkalaptartomány utolsó oszlopának bejegyzéseiből.</ahelp> Minden oszlop kap egy különálló nevet és cellahivatkozást."
-#. H;lm
#: 02170000.xhp
#, fuzzy
msgctxt ""
@@ -7142,7 +6416,6 @@ msgctxt ""
msgid "Delete Sheet"
msgstr "Munkalap törlése"
-#. Qmmk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7151,7 +6424,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
msgstr "<bookmark_value>munkafüzetek; törlés</bookmark_value><bookmark_value>munkalapok; törlés</bookmark_value><bookmark_value>törlés; munkafüzetek</bookmark_value>"
-#. j8@!
#: 02170000.xhp
#, fuzzy
msgctxt ""
@@ -7162,7 +6434,6 @@ msgctxt ""
msgid "Delete Sheet"
msgstr "Munkalap törlése"
-#. ?w3]
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7172,7 +6443,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\">Jóváhagyást követően törli az aktuális munkalapot.</ahelp></variable>"
-#. i7qp
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7182,7 +6452,6 @@ msgctxt ""
msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
msgstr "Ha a <emph>Szerkesztés - Változások követése - Változások követése</emph> parancs aktív, akkor a munkalapok nem törölhetők."
-#. Ib[_
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7192,7 +6461,6 @@ msgctxt ""
msgid "Yes"
msgstr "Igen"
-#. ixgk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7202,7 +6470,6 @@ msgctxt ""
msgid "Deletes the current sheet."
msgstr "Törli az aktuális munkalapot."
-#. 2E-d
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7212,7 +6479,6 @@ msgctxt ""
msgid "No"
msgstr "Nem"
-#. 5g6Q
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7222,7 +6488,6 @@ msgctxt ""
msgid "Cancels the dialog. No delete is performed."
msgstr "Elveti a párbeszédablakot. Törlés nem kerül végrehajtásra."
-#. e;Z0
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7231,7 +6496,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. H8;K
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7240,7 +6504,6 @@ msgctxt ""
msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
msgstr "<bookmark_value>részösszegek; rendezés beállításai</bookmark_value>"
-#. GKt]
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7250,7 +6513,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Beállítások\">Beállítások</link>"
-#. %HYN
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7260,7 +6522,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Adja meg a részösszegek kiszámításához és megjelenítéséhez szükséges beállításokat.</ahelp>"
-#. A4L0
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7270,7 +6531,6 @@ msgctxt ""
msgid "Page break between groups"
msgstr "Oldaltörés a csoportok között"
-#. U{hV
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7280,7 +6540,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Minden részösszegzett adatcsoport után új oldalt kezd.</ahelp>"
-#. o7v}
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7290,7 +6549,6 @@ msgctxt ""
msgid "Case sensitive"
msgstr "Kis- és nagybetűk megkülönböztetése"
-#. R;IQ
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7300,7 +6558,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Az adatfelirat kis- és nagybetűinek megváltoztatásakor újraszámítja a részösszegeket.</ahelp>"
-#. #:oS
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7310,7 +6567,6 @@ msgctxt ""
msgid "Pre-sort area according to groups"
msgstr "Előrendezi a területet a csoportoknak megfelelően"
-#. H33o
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7320,7 +6576,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorba rendezi az egyes csoport lapok <emph>Csoportosítási szempont</emph> mezőjében megadott területet a kijelölt oszlopoknak megfelelően.</ahelp>"
-#. 9S.~
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7330,7 +6585,6 @@ msgctxt ""
msgid "Sort"
msgstr "Rendezés"
-#. vJKo
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7341,7 +6595,6 @@ msgctxt ""
msgid "Include formats"
msgstr "Formátummal együtt"
-#. q:@M
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7351,7 +6604,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Rendezésnél figyelembe veszi a formázást.</ahelp>"
-#. d6a,
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7362,7 +6614,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "Egyéni rendezési sorrend"
-#. hW+h
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7372,7 +6623,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 "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Egyéni rendezési sorrendet használ, amelyet a Beállítások párbeszédablakban a <emph>%PRODUCTNAME Calc - Rendezett listák</emph> panelen adott meg.</ahelp>"
-#. _rFe
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7382,7 +6632,6 @@ msgctxt ""
msgid "Ascending"
msgstr "Növekvő"
-#. F)Ad
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7392,7 +6641,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 "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">A rendezés a legalacsonyabb értékkel kezdődik. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az Eszközök - Beállítások - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-#. oxcm
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7402,7 +6650,6 @@ msgctxt ""
msgid "Descending"
msgstr "Csökkenő"
-#. V\jb
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7412,7 +6659,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 "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">A rendezés a legmagasabb értékkel kezdődik. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az Eszközök - Beállítások - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-#. r!TU
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7421,7 +6667,6 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "Kiegészítők programozása a $[officename] Calc programban"
-#. f07|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7430,7 +6675,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>programozás; kiegészítők</bookmark_value><bookmark_value>megosztott programkönyvtárak; programozás</bookmark_value><bookmark_value>külső DLL-függvények</bookmark_value><bookmark_value>függvények; $[officename] Calc kiegészítő DLL</bookmark_value><bookmark_value>kiegészítők; programozáshoz</bookmark_value>"
-#. ]=|@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7440,7 +6684,6 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "Kiegészítők programozása a $[officename] Calc programban"
-#. 0h//
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7450,7 +6693,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 "A Calc kiegészítőkkel való bővítésének az alábbiakban ismertetett módszere elavult. Az illesztőfelületek a továbbiakban is érvényesek és támogatottak azért, hogy biztosítsák a kompatibilitást a létező kiegészítőkkel, azonban az új kiegészítők programozásához tanácsos az új <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API-függvényeket\">API-függvényeket</link> használni."
-#. PX9%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7460,7 +6702,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 "A $[officename] Calc programot kiegészítők segítségével bővítheti, amelyek a táblázatok kezeléséhez további függvényeket biztosító külső programmodulok. Ezek felsorolását a <emph>Függvénytündér</emph> <emph>Kiegészítő</emph> kategóriája tartalmazza. Ha saját kiegészítőt kíván programozni, akkor az alábbiakból megtudhatja, hogy a <switchinline select=\"sys\"><caseinline select=\"UNIX\">Megosztott programkönyvtárnak</caseinline><defaultinline>külső DLL programkönyvtárnak</defaultinline></switchinline> mely függvényeket szükséges exportálnia ahhoz, hogy a kiegészítő sikeresen csatolható legyen."
-#. qE7_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7470,7 +6711,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 "A $[officename] a beállítások között megadható Kiegészítők mappában keres egy megfelelő <switchinline select=\"sys\"><caseinline select=\"UNIX\">megosztott programkönyvtárat</caseinline><defaultinline>DLL-t</defaultinline></switchinline>. Ahhoz, hogy a $[officename] felismerje, a <switchinline select=\"sys\"><caseinline select=\"UNIX\">megosztott programkönyvtárnak</caseinline><defaultinline>DLL-nek</defaultinline></switchinline> bizonyos tulajdonságokkal kell rendelkeznie, amint azt az alábbiak tartalmazzák. Az itt közölt információk segítségével létrehozhatja saját kiegészítőit a $[officename] Calc <emph>Függvénytündére</emph> számára."
-#. HTB9
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7480,7 +6720,6 @@ msgctxt ""
msgid "The Add-In Concept"
msgstr "A Kiegészítő fogalma"
-#. 12.b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7490,7 +6729,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 "Minden egyes beépülő programkönyvtár számos függvényt kínál. Bizonyos függvények adminisztrációs célokat szolgálnak. A saját függvényeknek majdnem akármilyen nevet adhat. Ennek ellenére a paraméterek átadásánál be kell tartani pár szabályt. A pontos elnevezési, illetve hívási egyezmények platformfüggőek."
-#. /.c;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7500,7 +6738,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\">A megosztott programkönyvtár</caseinline><defaultinline>Az AddIn DLL</defaultinline></switchinline> függvényei"
-#. 4KJZ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7510,7 +6747,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 "Minimálisan a <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link>, illetve a <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> adminisztrációs függvényeknek létezniük kell. Ezek segítségével meghatározhatók a függvények, a paramétertípusok, illetve a visszatérési értékek. Visszatérési értékként a dupla pontosságú, illetve a karakterlánc típusok támogatottak. Paraméterként még a <link href=\"text/scalc/01/04060112.xhp\" name=\"Dupla pontosságú tömb\">Dupla pontosságú tömb</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"Karakterlánc-tömb\">Karakterlánc-tömb</link> és <link href=\"text/scalc/01/04060112.xhp\" name=\"Cellatömb\">Cellatömb</link> cellaterület támogatott."
-#. epi_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7520,7 +6756,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 "A paraméterek hivatkozások segítségével kerülnek átadásra. Ennek megfelelően az értékek módosítása alapvetően lehetséges. Ezt azonban a $[officename] Calc nem támogatja, mivel a munkafüzeteken belül nem értelmezhető."
-#. OG)d
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7530,7 +6765,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 "A programkönyvtárak futás közben újrabetölthetők, illetve tartalmuk - az adminisztrációs függvények segítségével - elemezhető. Minden egyes függvényre vonatkozóan rendelkezésre állnak a paraméterek típusára és számára, belső és külső függvényneveire, illetve az adminisztrációs számára vonatkozó információk."
-#. JPh:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7540,7 +6774,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 "A függvények egyidejűleg kerülnek meghívásra, eredményüket azonnal visszaadják. Valós idejű függvények (aszinkron függvények) használata is lehetséges, azonban ezek - összetettségük miatt - részletesen nem kerülnek leírásra."
-#. %0.J
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7550,7 +6783,6 @@ msgctxt ""
msgid "General information about the interface"
msgstr "Általános információ a felületről"
-#. -j#p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7560,7 +6792,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 "Maximum 16 paramétere lehet egy olyan Kiegészítő függvénynek, amelyet a $[officename] Calc programhoz csatol: egy ezek közül a függvény visszatérési értéke, és maximum 15 bemeneti paraméter."
-#. D6Q*
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7570,7 +6801,6 @@ msgctxt ""
msgid "The data types are defined as follows:"
msgstr "Az adattípusok a következők lehetnek:"
-#. 7[R#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7580,7 +6810,6 @@ msgctxt ""
msgid "<emph>Data types</emph>"
msgstr "<emph>Adattípusok</emph>"
-#. .Vi.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7590,7 +6819,6 @@ msgctxt ""
msgid "<emph>Definition</emph>"
msgstr "<emph>Meghatározás</emph>"
-#. V+3!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7600,7 +6828,6 @@ msgctxt ""
msgid "CALLTYPE"
msgstr "CALLTYPE"
-#. Pzi:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7610,7 +6837,6 @@ msgctxt ""
msgid "Under Windows: FAR PASCAL (_far _pascal)"
msgstr "Windows rendszeren: FAR PASCAL (_far _pascal)"
-#. T)%D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7620,7 +6846,6 @@ msgctxt ""
msgid "Other: default (operating system specific default)"
msgstr "Egyéb: alapértelmezett (operációs rendszer által meghatározott alapértelmezett)"
-#. {u8x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7630,7 +6855,6 @@ msgctxt ""
msgid "USHORT"
msgstr "USHORT"
-#. ku,@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7640,7 +6864,6 @@ msgctxt ""
msgid "2 Byte unsigned Integer"
msgstr "2 bájtos előjel nélküli egész szám"
-#. [#o}
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7650,7 +6873,6 @@ msgctxt ""
msgid "DOUBLE"
msgstr "DOUBLE"
-#. Od^3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7660,7 +6882,6 @@ msgctxt ""
msgid "8 byte platform-dependent format"
msgstr "8 bájtos platformfüggő formátum"
-#. v4kn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7670,7 +6891,6 @@ msgctxt ""
msgid "Paramtype"
msgstr "Paramtype"
-#. J[t7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7680,7 +6900,6 @@ msgctxt ""
msgid "Platform-dependent like int"
msgstr "Platformfüggő, mint az int (egész) típus"
-#. ]Jmz
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7690,7 +6909,6 @@ msgctxt ""
msgid "PTR_DOUBLE =0 pointer to a double"
msgstr "PTR_DOUBLE =0 DOUBLE típusra mutató mutató"
-#. d\d;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7700,7 +6918,6 @@ msgctxt ""
msgid "PTR_STRING =1 pointer to a zero-terminated string"
msgstr "PTR_STRING =1 nullával végződő karakterláncra mutató mutató"
-#. pT9k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7710,7 +6927,6 @@ msgctxt ""
msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
msgstr "PTR_DOUBLE_ARR =2 DOUBLE típusú tömbre mutató mutató"
-#. 0Ci?
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7720,7 +6936,6 @@ msgctxt ""
msgid "PTR_STRING_ARR =3 pointer to a string array"
msgstr "PTR_STRING_ARR =3 karaktertömbre mutató mutató."
-#. );D8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7730,7 +6945,6 @@ msgctxt ""
msgid "PTR_CELL_ARR =4 pointer to a cell array"
msgstr "PTR_CELL_ARR =4 cellatömbre mutató mutató"
-#. *.4r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7740,7 +6954,6 @@ msgctxt ""
msgid "NONE =5"
msgstr "NONE =5"
-#. *}c#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7750,7 +6963,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Megosztott programkönyvtár</caseinline><defaultinline>DLL</defaultinline></switchinline>-függvények"
-#. S4Rn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7760,7 +6972,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 "Az alábbiakban azon függvények leírását találja, amelyek a <switchinline select=\"sys\"><caseinline select=\"UNIX\">megosztott programkönyvtár</caseinline><defaultinline>külső DLL</defaultinline></switchinline> helyen kerülnek meghívásra."
-#. FiKx
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7770,7 +6981,6 @@ msgctxt ""
msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
msgstr "Minden egyes <switchinline select=\"sys\"><caseinline select=\"UNIX\">megosztott programkönyvtár</caseinline><defaultinline>DLL</defaultinline></switchinline>-függvényre az alábbiak vonatkoznak:"
-#. h+|/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7780,7 +6990,6 @@ msgctxt ""
msgid "void CALLTYPE fn(out, in1, in2, ...)"
msgstr "void CALLTYPE fv(kimenet, bemenet1, bemenet2, ...)"
-#. ,tb,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7790,7 +6999,6 @@ msgctxt ""
msgid "Output: Resulting value"
msgstr "Kimenet: Visszaadott érték"
-#. *7on
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7800,7 +7008,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 "Bemenet: Tetszőleges számú típus (double&, char*, double*, char**, Cellaterület), ahol a <link href=\"text/scalc/01/04060112.xhp\" name=\"Cellaterület\">Cellaterület</link> dupla pontosságú tömb, karakterlánc-tömb vagy cellaterület-tömb típusú tömb."
-#. SLns
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7810,7 +7017,6 @@ msgctxt ""
msgid "GetFunctionCount()"
msgstr "GetFunctionCount()"
-#. !A-T
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7820,7 +7026,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 "Eredményül a hivatkozási paraméter kezelési függvényein kívül található függvények számát adja. Minden függvény rendelkezik egy egyedi azonosító számmal 0 és nCount-1 között. Erre a számra a <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> és a <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> függvénynek lesz szüksége később."
-#. w;R_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7830,7 +7035,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>Szintaxis</emph>"
-#. {D9q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7840,7 +7044,6 @@ msgctxt ""
msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
-#. )Pss
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7850,7 +7053,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>Paraméter</emph>"
-#. _)5W
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7860,7 +7062,6 @@ msgctxt ""
msgid "USHORT &nCount:"
msgstr "USHORT &nCount:"
-#. XL\g
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7870,7 +7071,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 "Kimenet: Változóhivatkozás, amely a kiegészítő függvények számát tartalmazza. Például: Ha a kiegészítő 5 függvényt tartalmaz a $[officename] Calc számára, akkor az nCount=5."
-#. yZ:4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7880,7 +7080,6 @@ msgctxt ""
msgid "GetFunctionData()"
msgstr "GetFunctionData()"
-#. K2nJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7890,7 +7089,6 @@ msgctxt ""
msgid "Determines all the important information about an Add-In function."
msgstr "Meghatározza egy Kiegészítő függvény összes fontos információját."
-#. [I`-
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7900,7 +7098,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>Szintaxis</emph>"
-#. _zz3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7910,7 +7107,6 @@ msgctxt ""
msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
-#. )^.P
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7920,7 +7116,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>Paraméter</emph>"
-#. (t.v
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7930,7 +7125,6 @@ msgctxt ""
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
-#. )Fq6
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7940,7 +7134,6 @@ msgctxt ""
msgid "Input: Function number between 0 and nCount-1, inclusively."
msgstr "Bemenet: Függvény száma 0 és nCount-1 között, nCount-1-et beleértve."
-#. ;:0r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7950,7 +7143,6 @@ msgctxt ""
msgid "char* pFuncName:"
msgstr "char* pFuncName:"
-#. 0pxr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7960,7 +7152,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 "Kimenet: A programozó által látható függvénynév, amint az elnevezésre került a <switchinline select=\"sys\"><caseinline select=\"UNIX\">megosztott programkönyvtárban</caseinline><defaultinline>DLL-ben</defaultinline></switchinline>. A név nem határozza meg a <emph>Függvénytündérben</emph> használt nevet."
-#. i(i4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7970,7 +7161,6 @@ msgctxt ""
msgid "USHORT& nParamCount:"
msgstr "USHORT& nParamCount:"
-#. ?C#E
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7980,7 +7170,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 "Kimenet: A kiegészítő függvény paramétereinek száma. A számnak 0-nál nagyobbnak kell lennie, mivel mindig létezik eredmény-érték. A legnagyobb érték 16."
-#. qJ$`
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7990,7 +7179,6 @@ msgctxt ""
msgid "Paramtype* peType:"
msgstr "Paramtype* peType:"
-#. HBX!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8000,7 +7188,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 "Kimenet: Egy pontosan 16 változóból álló Paramtype típusú tömböt jelölő mutató. Az első nParamCount bejegyzések a megfelelő típusú paraméterrel kerülnek kitöltésre."
-#. 7gZ,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8010,7 +7197,6 @@ msgctxt ""
msgid "char* pInternalName:"
msgstr "char* pInternalName:"
-#. *R\g
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8020,7 +7206,6 @@ msgctxt ""
msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
msgstr "Kimenet: A felhasználó által látható függvénynév, amint az megjelenik a <emph>Függvénytündérben</emph>. Tartalmazhat ékezeteket."
-#. VgFb
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8030,7 +7215,6 @@ msgctxt ""
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr "A pFuncName és a pInternalName paraméterek karaktertömbök, amelyek 256-os méretűek a $[officename] Calc programban."
-#. ^Kjm
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8040,7 +7224,6 @@ msgctxt ""
msgid "GetParameterDescription()"
msgstr "GetParameterDescription()"
-#. n~v6
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8050,7 +7233,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 "A kiegészítő függvények, illetve azok paramétereinek rövid leírását adja. A függvény ezen kívül használható a <emph>Függvénytündér</emph> elemben található függvény-, illetve paraméterleírások megjelenítésére."
-#. \RJ?
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8060,7 +7242,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>Szintaxis</emph>"
-#. orb/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8070,7 +7251,6 @@ msgctxt ""
msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
-#. Z{19
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8080,7 +7260,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>Paraméter</emph>"
-#. bOOu
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8090,7 +7269,6 @@ msgctxt ""
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
-#. =A-K
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8100,7 +7278,6 @@ msgctxt ""
msgid "Input: Number of the function in the library; between 0 and nCount-1."
msgstr "Bemenet: A programkönyvtárban levő függvény száma 0 és nCount-1 között."
-#. xm`1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8110,7 +7287,6 @@ msgctxt ""
msgid "USHORT& nParam:"
msgstr "USHORT& nParam:"
-#. /kUh
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8120,7 +7296,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 "Bemenet: Jelzi, hogy melyik paraméterről nyújt leírást; a paraméterek 1-től kezdődnek. Ha az nParam 0, akkor magát a leírást a pDesc-nek kell tartalmaznia, ebben az esetben, a pName semmilyen jelentéssel nem bír."
-#. 9m`Q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8130,7 +7305,6 @@ msgctxt ""
msgid "char* pName:"
msgstr "char* pName:"
-#. {8\r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8140,7 +7314,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 "Kimenet: A paraméter nevét vagy típusát veszi fel, például a „Szám”, ”Karakterlánc” vagy „Dátum” stb. szót. A $[officename] Calc programban char[256]-ként van megvalósítva."
-#. ?f8r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8150,7 +7323,6 @@ msgctxt ""
msgid "char* pDesc:"
msgstr "char* pDesc:"
-#. hjz+
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8160,7 +7332,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 "Kimenet: A paraméter leírását tartalmazza, például „Érték, amellyel az univerzumot számolja”. A $[officename] Calc programban char[256]-ként van megvalósítva."
-#. @LnV
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8170,7 +7341,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 "A pName és a pDesc karaktertömbök, amelyek a $[officename] Calc programban 256 eleműek lehetnek. Ne feledje, hogy a <emph>Függvénytündérben</emph> rendelkezésre álló hely korlátozott, és a 256 karakter nem tölthető ki teljesen."
-#. o!{-
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8180,7 +7350,6 @@ msgctxt ""
msgid "Cell areas"
msgstr "Cellaterületek"
-#. SrC.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8190,7 +7359,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 "Az alábbi táblázatok azokról az adatstruktúrákról tartalmaznak információkat, amelyeket egy külső programmodulnak kell biztosítania ahhoz, hogy átadhassa a cellaterületeket. A $[officename] Calc az adattípustól függően különbséget tesz három különböző tömb között."
-#. 9gO~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8200,7 +7368,6 @@ msgctxt ""
msgid "Double Array"
msgstr "Dupla pontosságú tömb"
-#. 2Nl[
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8210,7 +7377,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 "Paraméterként a Szám/Dupla pontosságú típusú értékeket tartalmazó cellaterületek adhatók át. A $[officename] Calc programban a dupla pontosságú tömbök az alábbiak szerint kerülnek meghatározásra:"
-#. B3if
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8220,7 +7386,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>Eltolás</emph>"
-#. -u,r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8230,7 +7395,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>Név</emph>"
-#. jvQ)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8240,7 +7404,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Leírás</emph>"
-#. H%)_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8250,7 +7413,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. ?=~l
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8260,7 +7422,6 @@ msgctxt ""
msgid "Col1"
msgstr "Col1"
-#. sfDe
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8270,7 +7431,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "A cellaterület bal felső sarkában található oszlop száma; a számozás 0-tól indul."
-#. i_97
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8280,7 +7440,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. s^T[
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8290,7 +7449,6 @@ msgctxt ""
msgid "Row1"
msgstr "Row1"
-#. N3|:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8300,7 +7458,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "A cellaterület bal felső sarkában található sor száma; a számozás 0-tól indul."
-#. 8Z}9
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8310,7 +7467,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. e\;#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8320,7 +7476,6 @@ msgctxt ""
msgid "Tab1"
msgstr "Tab1"
-#. TX4%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8330,7 +7485,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "A táblázat száma a cellaterület bal felső sarkában; a számozás 0-tól indul."
-#. )ab!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8340,7 +7494,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. })Wh
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8350,7 +7503,6 @@ msgctxt ""
msgid "Col2"
msgstr "Col2"
-#. {Pal
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8360,7 +7512,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "A cellaterület jobb alsó sarkában található oszlop száma; a számozás 0-tól indul."
-#. 4Bp#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8370,7 +7521,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. /ftp
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8380,7 +7530,6 @@ msgctxt ""
msgid "Row2"
msgstr "Row2"
-#. 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 "A cellaterület jobb alsó sarkában található sor száma; a számozás 0-tól indul."
-#. 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 "Tab2"
-#. 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 "A táblázat száma a cellaterület jobb alsó sarkában; a számozás 0-tól indul."
-#. 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 "Count"
-#. 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 "A következő elemek száma. Az üres cellák nem számítanak, illetve nem kerülnek átadásra."
-#. 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 "Col"
-#. 0E5|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8480,7 +7620,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "Az elem oszlopszáma. A számozás 0-tól indul."
-#. 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 "Row"
-#. pa54
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8510,7 +7647,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "Az elem sorának száma; a számozás 0-tól indul."
-#. [!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 "Tab"
-#. 8T/b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8540,7 +7674,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "Az elem táblázatszáma; a számozás 0-tól indul."
-#. [_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 "Error"
-#. 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 "Hibaszám, ahol a 0 érték a „nincs hiba”. Ha az elem egy cellaképletből származik, akkor az értéket a képlet határozza meg."
-#. 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 "Value"
-#. dh(a
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8600,7 +7728,6 @@ msgctxt ""
msgid "8 byte IEEE variable of type double/floating point"
msgstr "8 bájtos dupla pontosságú/lebegőpontos IEEE-változó"
-#. 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 "Következő elem"
-#. {n3}
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8640,7 +7764,6 @@ msgctxt ""
msgid "String Array"
msgstr "Karaktertömb"
-#. =~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 "Olyan cellaterület, amely Szöveg adattípussal rendelkező értékeket tartalmaz, és karakterlánc-tömbként kerül átadásra. A $[officename] Calc programban a karakterlánc-tömbök az alábbiak szerint kerülnek meghatározásra:"
-#. ^[Q|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8660,7 +7782,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>Eltolás</emph>"
-#. *;0x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8670,7 +7791,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>Név</emph>"
-#. #!I7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8680,7 +7800,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Leírás</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 "Col1"
-#. 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 "A cellaterület bal felső sarkában található oszlop száma; a számozás 0-tól indul."
-#. 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 "Row1"
-#. 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 "A cellaterület bal felső sarkában található sor száma; a számozás 0-tól indul."
-#. 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 "Tab1"
-#. 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 "A táblázat száma a cellaterület bal felső sarkában; a számozás 0-tól indul."
-#. =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 "Col2"
-#. .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 "A cellaterület jobb alsó sarkában található oszlop száma; a számozás 0-tól indul."
-#. |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 "Row2"
-#. 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 "A cellaterület jobb alsó sarkában található sor száma; a számozás 0-tól indul."
-#. [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 "Tab2"
-#. @^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 "A táblázat száma a cellaterület jobb alsó sarkában; a számozás 0-tól indul."
-#. -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 "Count"
-#. #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 "A következő elemek száma. Az üres cellák nem számítanak, illetve nem kerülnek átadásra."
-#. +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 "Col"
-#. JG#I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8920,7 +8016,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "Az elem oszlopszáma. A számozás 0-tól indul."
-#. 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 "Row"
-#. G99P
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8950,7 +8043,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "Az elem sorának száma; a számozás 0-tól indul."
-#. 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 "Tab"
-#. hnr,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8980,7 +8070,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "Az elem táblázatszáma; a számozás 0-tól indul."
-#. !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 "Error"
-#. 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 "Hibaszám, ahol a 0 érték a „nincs hiba”. Ha az elem egy cellaképletből származik, akkor az értéket a képlet határozza meg."
-#. 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 "A következő karakterlánc hossza, beleértve a lezáró nulla bájtot. Ha a lezáró nulla bájttal együtt számított hossz páratlan értéket ad, akkor egy második nulla bájt is hozzáadásra kerül a karakterlánchoz annak érdekében, hogy az érték páros legyen. Ennek megfelelően a Len paraméter a ((StrLen+2)&~1) képlet segítségével kerül kiszámításra."
-#. |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 "String"
-#. 3(BM
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9070,7 +8151,6 @@ msgctxt ""
msgid "String with closing zero byte"
msgstr "Karakterlánc 0-s lezáró bájttal"
-#. :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 "Következő elem"
-#. @H/t
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9110,7 +8187,6 @@ msgctxt ""
msgid "Cell Array"
msgstr "Cellatömb"
-#. 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 "A cellatömbök segítségével hívhatók meg szöveget, illetve számokat tartalmazó cellaterületek. A $[officename] Calc programban a cellatömbök az alábbiak szerint kerülnek meghatározásra:"
-#. _yc7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9130,7 +8205,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>Eltolás</emph>"
-#. TijD
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9140,7 +8214,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>Név</emph>"
-#. @B6+
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9150,7 +8223,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Leírás</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 "Col1"
-#. 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 "A cellaterület bal felső sarkában található oszlop száma; a számozás 0-tól indul."
-#. 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 "Row1"
-#. 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 "A cellaterület bal felső sarkában található sor száma; a számozás 0-tól indul."
-#. {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 "Tab1"
-#. 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 "A táblázat száma a cellaterület bal felső sarkában; a számozás 0-tól indul."
-#. ~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 "Col2"
-#. 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 "A cellaterület jobb alsó sarkában található oszlop száma; a számozás 0-tól indul."
-#. 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 "Row2"
-#. ;+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 "A cellaterület jobb alsó sarkában található sor száma; a számozás 0-tól indul."
-#. 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 "Tab2"
-#. (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 "A táblázat száma a cellaterület jobb alsó sarkában; a számozás 0-tól indul."
-#. 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 "Count"
-#. 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 "A következő elemek száma. Az üres cellák nem számítanak, illetve nem kerülnek átadásra."
-#. 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 "Col"
-#. +YB4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9390,7 +8439,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "Az elem oszlopszáma. A számozás 0-tól indul."
-#. :^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 "Row"
-#. K[1q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9420,7 +8466,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "Az elem sorának száma; a számozás 0-tól indul."
-#. 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 "Tab"
-#. =d5p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9450,7 +8493,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "Az elem táblázatszáma; a számozás 0-tól indul."
-#. 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 "Error"
-#. 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 "Hibaszám, ahol a 0 érték a „nincs hiba”. Ha az elem egy cellaképletből származik, akkor az értéket a képlet határozza meg."
-#. 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 "Type"
-#. SZ?]
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9510,7 +8547,6 @@ msgctxt ""
msgid "Type of cell content, 0 == Double, 1 == String"
msgstr "A cella tartalmának típusa, 0 == Dupla, 1 == Karakterlánc"
-#. \)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 "Value vagy 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 "Ha type == 0: 8 bájtos dupla pontosságú/lebegőpontos IEEE-változó"
-#. 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 "Ha type == 1: A következő karakterlánc hossza, beleértve a lezáró nulla bájtot. Ha a lezáró nulla bájttal együtt számított hossz páratlan értéket ad, akkor egy második nulla bájt is hozzáadásra kerül a karakterlánchoz annak érdekében, hogy az érték páros legyen. Ennek megfelelően a Len paraméter a ((StrLen+2)&~1) képlet segítségével kerül kiszámításra."
-#. {LyP
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9560,7 +8592,6 @@ msgctxt ""
msgid "26 if type==1"
msgstr "26 ha type==1"
-#. a=]|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9570,7 +8601,6 @@ msgctxt ""
msgid "String"
msgstr "String"
-#. @2%E
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9580,7 +8610,6 @@ msgctxt ""
msgid "If type == 1: String with closing zero byte"
msgstr "Ha type == 1: Karakterlánc 0-s lezáró bájttal"
-#. :#*h
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9590,7 +8619,6 @@ msgctxt ""
msgid "32 or 26+Len"
msgstr "32 vagy 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 "Következő elem"
-#. W.-Z
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9619,7 +8645,6 @@ msgctxt ""
msgid "Statistical Functions Part Four"
msgstr "Statisztikai függvények - negyedik rész"
-#. @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=\"Statisztikai függvények - negyedik rész\">Statisztikai függvények - negyedik rész</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 függvény</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\">Az argumentumlista legnagyobb értékét adja eredményül.</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 "A függvény eredménye 0, ha nincs megadva számérték, és ha a cellareferenciaként megadott cellatartományokban nem történt hiba. A szöveges cellákat a MIN() és a MAX() függvények figyelmen kívül hagyják. A MIN2() és a MAX2() függvények eredménye 0, ha nincs érték (szám vagy szöveg) megadva, és nem történik hiba. A MIN() vagy a MAX() függvényben karakterláncot használva – például MIN(\"karakterlánc\") – hibát kap."
-#. h%f*
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9677,7 +8697,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. Tkh1
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9687,7 +8706,6 @@ msgctxt ""
msgid "MAX(Number1; Number2; ...Number30)"
msgstr "MAX (szám_1; szám_2; ...szám_30)"
-#. I/$L
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -9698,7 +8716,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "A <emph>szám_1; szám_2; ...; szám_30</emph> numerikus értékek vagy tartományok."
-#. hHHp
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9708,7 +8725,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 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 "A <item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> képlet eredménye a lista legnagyobb értéke."
-#. 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 "A <item type=\"input\">=MAX(A1:B100)</item> képlet eredménye a lista legnagyobb értéke."
-#. wVN{
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9737,7 +8751,6 @@ msgctxt ""
msgid "<bookmark_value>MAXA function</bookmark_value>"
msgstr "<bookmark_value>MAX2 függvény</bookmark_value><bookmark_value>MAXA függvény, lásd: MAX2 függvény</bookmark_value>"
-#. Zva\
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9747,7 +8760,6 @@ msgctxt ""
msgid "MAXA"
msgstr "MAX2"
-#. 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\">Az argumentumlista legnagyobb értékét adja eredményül. A MAX függvénnyel szemben, itt szöveget is megadhat. A szöveg értéke 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 "A MIN2() és a MAX2() függvények eredménye 0, ha nincs érték (szám vagy szöveg) megadva, és nem történik hiba."
-#. \5N@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9776,7 +8786,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. WFLu
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9786,7 +8795,6 @@ msgctxt ""
msgid "MAXA(Value1; Value2; ... Value30)"
msgstr "MAX2(érték_1; érték_2; ... érték_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 "Az <emph>érték_1; érték_2; ...érték_30</emph> értékek vagy tartományok. A szöveg értéke 0."
-#. 8dcR
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9806,7 +8813,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 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 "A <item type=\"input\">=MAX2(A1;A2;A3;50;100;200;\"szöveg\")</item> képlet eredménye a lista legnagyobb értéke."
-#. 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 "A <item type=\"input\">=MAX2(A1:B100)</item> képlet eredménye a lista legnagyobb értéke."
-#. /nRB
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9835,7 +8839,6 @@ msgctxt ""
msgid "<bookmark_value>MEDIAN function</bookmark_value>"
msgstr "<bookmark_value>MEDIÁN függvény</bookmark_value><bookmark_value>MEDIAN függvény, lásd: MEDIÁN függvény</bookmark_value>"
-#. U9T_
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9845,7 +8848,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr "MEDIÁN"
-#. 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 "<ahelp hid=\"HID_FUNC_MEDIAN\">Kiszámítja a számhalmaz középső értékét. Páratlan számú értéket tartalmazó halmazban a középső érték a halmaz közepén elhelyezkedő érték. Páros számú értéket tartalmazó halmazban a középső érték a halmaz közepén elhelyezkedő két érték átlaga.</ahelp>"
-#. )eb:
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9865,7 +8866,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. !c1a
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9875,7 +8875,6 @@ msgctxt ""
msgid "MEDIAN(Number1; Number2; ...Number30)"
msgstr "MEDIÁN(szám_1; szám_2; ...szám_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 "A <emph>szám_1; szám_2; ...szám_30</emph> egy mintát képviselő numerikus értékek vagy tartományok. Az egyes számokat hivatkozásokkal is helyettesítheti."
-#. 9P;G
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9895,7 +8893,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 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 "páratlan szám esetén: a <item type=\"input\">=MEDIÁN(1;5;9;20;21)</item> értéke 9, mert ez a középső érték."
-#. 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 "páros szám esetén: a <item type=\"input\">=MEDIÁN(1;5;9;20)</item> a két középső érték, az 5 és a 9 átlagát adja eredményül, tehát a 7-et."
-#. k$d^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9924,7 +8919,6 @@ msgctxt ""
msgid "<bookmark_value>MIN function</bookmark_value>"
msgstr "<bookmark_value>MIN függvény</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\">Az argumentumlista legkisebb értékét adja eredményül.</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 "A függvény eredménye 0, ha nincs megadva számérték, és ha a cellareferenciaként megadott cellatartományokban nem történt hiba. A szöveges cellákat a MIN() és a MAX() függvények figyelmen kívül hagyják. A MIN2() és a MAX2() függvények eredménye 0, ha nincs érték (szám vagy szöveg) megadva, és nem történik hiba. A MIN() vagy a MAX() függvényben karakterláncot használva – például MIN(\"karakterlánc\") – hibát kap."
-#. JUVS
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9963,7 +8954,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. utYF
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9973,7 +8963,6 @@ msgctxt ""
msgid "MIN(Number1; Number2; ...Number30)"
msgstr "MIN(szám_1; szám_2; ...szám_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 "A <emph>szám_1; szám_2; ...szám_30</emph> numerikus értékek vagy tartományok."
-#. #Ic!
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9993,7 +8981,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 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 "A <item type=\"input\">=MIN(A1:B100)</item> képlet eredménye a lista legkisebb értéke."
-#. d*$4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10012,7 +8998,6 @@ msgctxt ""
msgid "<bookmark_value>MINA function</bookmark_value>"
msgstr "<bookmark_value>MIN2 függvény</bookmark_value><bookmark_value>MINA függvény, lásd: MIN2 függvény</bookmark_value>"
-#. 0Gy$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10022,7 +9007,6 @@ msgctxt ""
msgid "MINA"
msgstr "MIN2"
-#. 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\">Az argumentumlista legkisebb értékét adja eredményül. Itt szöveget is megadhat. A szöveg értéke 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 "A MIN2() és a MAX2() függvények eredménye 0, ha nincs érték (szám vagy szöveg) megadva, és nem történik hiba."
-#. q(U5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10051,7 +9033,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ;F+A
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10061,7 +9042,6 @@ msgctxt ""
msgid "MINA(Value1; Value2; ... Value30)"
msgstr "MIN2(érték_1; érték_2; ...érték_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 "Az <emph>érték_1; érték_2; ...érték_30</emph> értékek vagy tartományok. A szöveg értéke 0."
-#. [JI$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10081,7 +9060,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. snBh
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10091,7 +9069,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
msgstr "A <item type=\"input\">=MIN2(1;\"szöveg\";20)</item> eredménye 0."
-#. 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 "A <item type=\"input\">=MIN2(A1:B100)</item> képlet eredménye a lista legkisebb értéke."
-#. !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>ÁTL.ELTÉRÉS függvény</bookmark_value><bookmark_value>AVEDEV függvény, lásd: ÁTL.ELTÉRÉS függvény</bookmark_value><bookmark_value>átlagok;statisztikai függvények</bookmark_value>"
-#. 1E8p
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10120,7 +9095,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr "ÁTL.ELTÉRÉS"
-#. 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 "<ahelp hid=\"HID_FUNC_MITTELABW\">Az adatpontok középértéktől való abszolút eltérésének átlagát adja eredményül.</ahelp> Az adathalmaz szétosztását mutatja."
-#. 4@RB
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10140,7 +9113,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 3a[6
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10150,7 +9122,6 @@ msgctxt ""
msgid "AVEDEV(Number1; Number2; ...Number30)"
msgstr "ÁTL.ELTÉRÉS(szám_1; szám_2; ...szám_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 "A <emph>szám_1; szám_2;...szám_30</emph> egy mintát képviselő numerikus értékek vagy tartományok. Az egyes számokat hivatkozásokkal is helyettesítheti."
-#. {qIP
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10170,7 +9140,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. GIVz
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10180,7 +9149,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
msgstr "<item type=\"input\">=ÁTL.ELTÉRÉS(A1:A50)</item>"
-#. Dk:4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10189,7 +9157,6 @@ msgctxt ""
msgid "<bookmark_value>AVERAGE function</bookmark_value>"
msgstr "<bookmark_value>ÁTLAG függvény</bookmark_value><bookmark_value>AVERAGE függvény, lásd: ÁTLAG függvény</bookmark_value>"
-#. (MXx
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10199,7 +9166,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr "ÁTLAG"
-#. 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\">Az argumentumok átlagát adja eredményül.</ahelp>"
-#. ,B+Q
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10219,7 +9184,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. )p?t
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10229,7 +9193,6 @@ msgctxt ""
msgid "AVERAGE(Number1; Number2; ...Number30)"
msgstr "ÁTLAG(szám_1; szám_2; ...szám_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 "A <emph>szám_1; szám_2; ...szám_30</emph> numerikus értékek vagy tartományok."
-#. GIb6
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10249,7 +9211,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. t1F8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10259,7 +9220,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
msgstr "<item type=\"input\">=ÁTLAG(A1:A50)</item>"
-#. SH)u
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10268,7 +9228,6 @@ msgctxt ""
msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
msgstr "<bookmark_value>ÁTLAGA függvény</bookmark_value><bookmark_value>AVERAGEA függvény, lásd: ÁTLAGA függvény</bookmark_value>"
-#. ^ImW
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10278,7 +9237,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr "ÁTLAGA"
-#. 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\">Az argumentumok átlagát adja eredményül. Egy szöveg értéke 0.</ahelp>"
-#. RY8o
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10298,7 +9255,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. PzAJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10308,7 +9264,6 @@ msgctxt ""
msgid "AVERAGEA(Value1; Value2; ... Value30)"
msgstr "ÁTLAGA(érték1; érték2; ...érték_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 "Az <emph>érték_1; érték_2; ...; érték_30</emph> értékek vagy tartományok. A szöveg értéke 0."
-#. 8[6}
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10328,7 +9282,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. yH@,
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10338,7 +9291,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
msgstr "<item type=\"input\">=ÁTLAGA(A1:A50)</item>"
-#. 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>MÓDUSZ függvény</bookmark_value><bookmark_value>MODE függvény, lásd: MÓDUSZ függvény</bookmark_value><bookmark_value>leggyakoribb érték</bookmark_value>"
-#. mD\T
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10357,7 +9308,6 @@ msgctxt ""
msgid "MODE"
msgstr "MÓDUSZ"
-#. 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 "<ahelp hid=\"HID_FUNC_MODALWERT\">Kiszámítja az adathalmazban leggyakrabban előforduló értéket.</ahelp> Ha több, egyező gyakorisággal rendelkező érték létezik, akkor a függvény eredményül a legkisebbet adja. Hiba történik, ha egy érték sem jelenik meg legalább kétszer."
-#. }TY*
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10377,7 +9326,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. uwSI
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10387,7 +9335,6 @@ msgctxt ""
msgid "MODE(Number1; Number2; ...Number30)"
msgstr "MÓDUSZ(szám_1; szám_2; ...szám_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 "A <emph>szám_1; szám_2; ...szám_30</emph> numerikus értékek vagy tartományok."
-#. mw5k
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10407,7 +9353,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. B.6h
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10417,7 +9362,6 @@ msgctxt ""
msgid "<item type=\"input\">=MODE(A1:A50)</item>"
msgstr "<item type=\"input\">=MÓDUSZ(A1:A50)</item>"
-#. 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>NEGBINOM.ELOSZL függvény</bookmark_value><bookmark_value>NEGBINOMDIST függvény, lásd: NEGBINOM.ELOSZL függvény</bookmark_value><bookmark_value>negatív binomiális eloszlás</bookmark_value>"
-#. l[W.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10436,7 +9379,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr "NEGBINOM.ELOSZL"
-#. 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\">Kiszámítja a negatív binomiális eloszlást.</ahelp>"
-#. aAUV
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10456,7 +9397,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. z#_y
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10466,7 +9406,6 @@ msgctxt ""
msgid "NEGBINOMDIST(X; R; SP)"
msgstr "NEGBINOM.ELOSZL(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 "Az <emph>x</emph> a sikertelen próbákra eredményül adott értéket jelöli."
-#. 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 "Az <emph>r</emph> a sikeres próbákra eredményül adott értéket jelöli."
-#. ]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 "Az <emph>sp</emph> egy kísérlet sikerességének valószínűsége."
-#. JDCk
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10506,7 +9442,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 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 "A <item type=\"input\">=NEGBINOM.ELOSZL(1;1;0,5)</item> képlet eredménye 0,25."
-#. \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>INVERZ.NORM függvény</bookmark_value><bookmark_value>NORMINV függvény, lásd: INVERZ.NORM függvény</bookmark_value><bookmark_value>normál eloszlás;inverze</bookmark_value>"
-#. JArK
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10535,7 +9468,6 @@ msgctxt ""
msgid "NORMINV"
msgstr "INVERZ.NORM"
-#. 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\">A normál kumulatív eloszlás inverzét számítja ki.</ahelp>"
-#. lEwk
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10555,7 +9486,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 6/cb
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10565,7 +9495,6 @@ msgctxt ""
msgid "NORMINV(Number; Mean; StDev)"
msgstr "INVERZ.NORM(szám; középérték; szórás)"
-#. 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 "A <emph>szám</emph> az inverz normál eloszlás meghatározása során használt valószínűségi érték."
-#. )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 "A <emph>középérték</emph> a normál eloszlás középértékét jelöli."
-#. %#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 "A <emph>szórás</emph> a normál eloszlás szórását jelöli."
-#. qPqe
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10605,7 +9531,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 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 "A <item type=\"input\">=INVERZ.NORM(0,9;63;5)</item> eredményül 69,41-et ad. Ha egy átlagos tojás 63 g tömegű, és az adatok szórása 5, akkor 90% annak valószínűsége, hogy a tojás nem nehezebb 69,41 grammnál."
-#. (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>NORM.ELOSZL függvény</bookmark_value><bookmark_value>NORMDIST függvény, lásd: NORM.ELOSZL függvény</bookmark_value><bookmark_value>sűrűségfüggvény</bookmark_value>"
-#. WVj[
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10634,7 +9557,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr "NORM.ELOSZL"
-#. .@]@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10644,7 +9566,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">A normál kumulatív eloszlás sűrűségfüggvényét számítja ki.</ahelp>"
-#. ogU(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10654,7 +9575,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. P55%
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10664,7 +9584,6 @@ msgctxt ""
msgid "NORMDIST(Number; Mean; StDev; C)"
msgstr "NORM.ELOSZL(szám; középérték; szórás; c)"
-#. Dh|G
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10674,7 +9593,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr "A <emph>szám</emph> azon érték, amely alapján a normál eloszlást ki kívánja számítani."
-#. CKC;
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10684,7 +9602,6 @@ msgctxt ""
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "A <emph>középérték</emph> az eloszlás középértéke."
-#. r2*=
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -10695,7 +9612,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "A <emph>szórás</emph> az eloszlás szórását jelöli."
-#. Q12M
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10705,7 +9621,6 @@ msgctxt ""
msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
msgstr "A <emph>c</emph> opcionális. A <emph>c</emph> = 0 a sűrűségfüggvényt számítja ki; a <emph>c</emph> = 1 az eloszlást számítja ki."
-#. Kl?N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10715,7 +9630,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 1re]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10725,7 +9639,6 @@ msgctxt ""
msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
msgstr "A <item type=\"input\">=NORM.ELOSZL(70;63;5;0)</item> képlet eredménye 0,03."
-#. W}Uo
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10735,7 +9648,6 @@ msgctxt ""
msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
msgstr "A <item type=\"input\">=NORM.ELOSZL(70;63;5;1)</item> képlet eredménye 0,92."
-#. 8]OH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10744,7 +9656,6 @@ msgctxt ""
msgid "<bookmark_value>PEARSON function</bookmark_value>"
msgstr "<bookmark_value>PEARSON függvény</bookmark_value>"
-#. Ur.E
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10754,7 +9665,6 @@ msgctxt ""
msgid "PEARSON"
msgstr "PEARSON"
-#. ,Swr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10764,7 +9674,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">Kiszámítja a Pearson-féle korrelációs együtthatót.</ahelp>"
-#. hk\=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10774,7 +9683,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. =D]e
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10784,7 +9692,6 @@ msgctxt ""
msgid "PEARSON(Data1; Data2)"
msgstr "PEARSON(adatok_1; adatok_2)"
-#. #!LL
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10794,7 +9701,6 @@ msgctxt ""
msgid "<emph>Data1</emph> represents the array of the first data set."
msgstr "Az <emph>adatok_1</emph> az első adathalmaz tömbjét jelöli."
-#. qjkA
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10804,7 +9710,6 @@ msgctxt ""
msgid "<emph>Data2</emph> represents the array of the second data set."
msgstr "Az <emph>adatok_2</emph> a második adathalmaz tömbjét jelöli."
-#. c.2.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10814,7 +9719,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. |M,Q
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10824,7 +9728,6 @@ msgctxt ""
msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
msgstr "A <item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> függvény a két adathalmaz Pearson-féle korrelációs együtthatóját adja eredményül."
-#. nrds
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10833,7 +9736,6 @@ msgctxt ""
msgid "<bookmark_value>PHI function</bookmark_value>"
msgstr "<bookmark_value>PHI függvény</bookmark_value>"
-#. A_O0
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10843,7 +9745,6 @@ msgctxt ""
msgid "PHI"
msgstr "PHI"
-#. e=kf
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10853,7 +9754,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\">Kiszámítja a standardizált normál eloszlás függvényének értékeit.</ahelp>"
-#. [,Is
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10863,7 +9763,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. (Bl8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10873,7 +9772,6 @@ msgctxt ""
msgid "PHI(Number)"
msgstr "PHI(szám)"
-#. #$hr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10883,7 +9781,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
msgstr "A <emph>szám</emph> azon érték, amely alapján a standardizált normál eloszlás kiszámításra kerül."
-#. avo-
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10893,7 +9790,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. $Td,
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10903,7 +9799,6 @@ msgctxt ""
msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
msgstr "<item type=\"input\">=PHI(2,25) </item>= 0,03"
-#. _$_$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10913,7 +9808,6 @@ msgctxt ""
msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
msgstr "<item type=\"input\">=PHI(-2,25) </item>= 0,03"
-#. gBJ^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10923,7 +9817,6 @@ msgctxt ""
msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
msgstr "<item type=\"input\">=PHI(0) </item>= 0,4"
-#. `JbH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10932,7 +9825,6 @@ msgctxt ""
msgid "<bookmark_value>POISSON function</bookmark_value>"
msgstr "<bookmark_value>POISSON függvény</bookmark_value>"
-#. B.ZL
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10942,7 +9834,6 @@ msgctxt ""
msgid "POISSON"
msgstr "POISSON"
-#. 0k]E
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10952,7 +9843,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Kiszámítja a Poisson-eloszlást.</ahelp>"
-#. Z76i
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10962,7 +9852,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. Ns7^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10972,7 +9861,6 @@ msgctxt ""
msgid "POISSON(Number; Mean; C)"
msgstr "POISSON(szám; középérték; c)"
-#. ;*O7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10982,7 +9870,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "A <emph>szám</emph> azon értéket jelöli, amely alapján a Poisson-eloszlás kiszámításra kerül."
-#. 39Y)
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10992,7 +9879,6 @@ msgctxt ""
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "A <emph>középérték</emph> a Poisson-eloszlás középső értéke."
-#. nC8+
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11002,7 +9888,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 "A <emph>c</emph> (opcionális) = 0 vagy HAMIS a sűrűségfüggvényt számítja ki; a <emph>c</emph> = 1 vagy IGAZ az eloszlást számítja ki. Ha nincs megadva, akkor az Igaz alapértelmezett érték lesz a dokumentumba mentve a többi programmal és a %PRODUCTNAME régebbi verzióival való kompatibilitás érdekében."
-#. J2C!
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11012,7 +9897,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. O{co
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11022,7 +9906,6 @@ msgctxt ""
msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
msgstr "A <item type=\"input\">=POISSON(60;50;1)</item> képlet eredménye 0,93."
-#. qmbT
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11031,7 +9914,6 @@ msgctxt ""
msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
msgstr "<bookmark_value>PERCENTILIS függvény</bookmark_value><bookmark_value>PERCENTILE függvény, lásd: PERCENTILIS függvény</bookmark_value>"
-#. qC=N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11041,7 +9923,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr "PERCENTILIS"
-#. e{j2
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11051,7 +9932,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 "<ahelp hid=\"HID_FUNC_QUANTIL\">Egy tömb adatértékeinek alfa-százalékosztályát adja eredményül.</ahelp> A százalékosztály eredményül az adatsorozatra vonatkozó skálaértéket adja, amely az adatsorozat legkisebb értékétől (alfa=0) a legnagyobbig (alfa=1) terjed. <item type=\"literal\">alfa</item> = 25% esetén a százalékosztály az első kvartilist jelenti, <item type=\"literal\">alfa</item> = 50% esetén pedig a középső értéket (MEDIÁN)."
-#. $u?h
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11061,7 +9941,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. Ns8(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11071,7 +9950,6 @@ msgctxt ""
msgid "PERCENTILE(Data; Alpha)"
msgstr "PERCENTILIS(adatok; alfa)"
-#. 7mwm
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11081,7 +9959,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data."
msgstr "Az <emph>adatok</emph> az adatokat tartalmazó tömböt jelöli."
-#. Wa`c
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11091,7 +9968,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "Az <emph>alfa</emph> a skála százalékát jelöli 0-1 között."
-#. MHn7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11101,7 +9977,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 4St7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11111,7 +9986,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 "A <item type=\"input\">=PERCENTILIS(A1:A50;0,1)</item> függvény az adathalmaz azon értékét adja, ami az A1:A50 cellákban levő teljes skála 10%-ával egyenlő."
-#. aV]P
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11120,7 +9994,6 @@ msgctxt ""
msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
msgstr "<bookmark_value>SZÁZALÉKRANG függvény</bookmark_value><bookmark_value>PERCENTRANK függvény, lásd: SZÁZALÉKRANG függvény</bookmark_value>"
-#. b@`V
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11130,7 +10003,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr "SZÁZALÉKRANG"
-#. \cep
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11140,7 +10012,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\">Egy mintában egy érték százalékos rangját számítja ki.</ahelp>"
-#. 3Y$]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11150,7 +10021,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. nIi_
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11160,7 +10030,6 @@ msgctxt ""
msgid "PERCENTRANK(Data; Value)"
msgstr "SZÁZALÉKRANG(adatok; érték)"
-#. ni!U
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11170,7 +10039,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "Az <emph>adatok</emph> a mintában található adatokat tartalmazó tömböt jelöli."
-#. 6.}F
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11180,7 +10048,6 @@ msgctxt ""
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "Az <emph>érték</emph> az az érték, amelynek százalékos rangját meg kívánja határozni."
-#. T/P]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11190,7 +10057,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. mq5]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11200,7 +10066,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 "A <item type=\"input\">=SZÁZALÉKRANG(A1:A50;50)</item> eredményül az 50 százalékos rangját adja az A1:A50 tartományban található összes érték teljes tartományában. Ha az 50 a teljes tartományon kívül esik, akkor hibaüzenet jelenik meg."
-#. $T@9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11209,7 +10074,6 @@ msgctxt ""
msgid "<bookmark_value>QUARTILE function</bookmark_value>"
msgstr "<bookmark_value>KVARTILIS függvény</bookmark_value><bookmark_value>QUARTILE függvény, lásd: KVARTILIS függvény</bookmark_value>"
-#. M^/9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11219,7 +10083,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr "KVARTILIS"
-#. |wHH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11229,7 +10092,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Kiszámítja egy adathalmaz kvartilisét.</ahelp>"
-#. ;ZXr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11239,7 +10101,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. D]@C
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11249,7 +10110,6 @@ msgctxt ""
msgid "QUARTILE(Data; Type)"
msgstr "KVARTILIS(adatok; típus)"
-#. )Je9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11259,7 +10119,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "Az <emph>adatok</emph> a mintában található adatokat tartalmazó tömböt jelöli."
-#. W[j(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11269,7 +10128,6 @@ msgctxt ""
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "A <emph>típus</emph> a kvartilis típusa. (0 = MIN, 1 = 25%, 2 = 50% (MEDIÁN), 3 = 75% és 4 = MAX.)"
-#. )Ac9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11279,7 +10137,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 2pTa
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11289,7 +10146,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 "A <item type=\"input\">=KVARTILIS(A1:A50;2)</item> képlet azt az értéket adja meg, ami az A1:A50 cellák legkisebb és legnagyobb értékeinek 50%-ával van összhangban."
-#. h:`q
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11298,7 +10154,6 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "Operátorok a $[officename] Calc programban"
-#. BX?a
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11307,7 +10162,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 "<bookmark_value>képletek; operátorok</bookmark_value><bookmark_value>operátorok; képletfüggvények</bookmark_value><bookmark_value>osztásjel, lásd még operátorok</bookmark_value><bookmark_value>szorzásjel, lásd még operátorok</bookmark_value><bookmark_value>mínuszjel, lásd még operátorok</bookmark_value><bookmark_value>pluszjel, lásd még operátorok</bookmark_value><bookmark_value>szövegoperátorok</bookmark_value><bookmark_value>összehasonlítások;operátorok a Calcban</bookmark_value><bookmark_value>aritmetikai operátorok</bookmark_value><bookmark_value>hivatkozásoperátorok</bookmark_value>"
-#. KI~.
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11317,7 +10171,6 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "Operátorok a $[officename] Calc programban"
-#. $a+*
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11327,7 +10180,6 @@ msgctxt ""
msgid "You can use the following operators in $[officename] Calc:"
msgstr "A következő operátorokat használhatja a $[officename] Calc programban:"
-#. d6.!
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11337,7 +10189,6 @@ msgctxt ""
msgid "Arithmetical Operators"
msgstr "Aritmetikai operátorok"
-#. /EGM
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11347,7 +10198,6 @@ msgctxt ""
msgid "These operators return numerical results."
msgstr "Ezek az operátorok számszerű eredményeket adnak."
-#. !xd3
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11357,7 +10207,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. kANp
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11367,7 +10216,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. YnIH
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11377,7 +10225,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. NzQ^
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11387,7 +10234,6 @@ msgctxt ""
msgid "+ (Plus)"
msgstr "+ (plusz)"
-#. $5}-
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11397,7 +10243,6 @@ msgctxt ""
msgid "Addition"
msgstr "Összeadás"
-#. Z/2b
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11407,7 +10252,6 @@ msgctxt ""
msgid "1+1"
msgstr "1+1"
-#. (,SX
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11417,7 +10261,6 @@ msgctxt ""
msgid "- (Minus)"
msgstr "- (mínusz)"
-#. s5HU
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11427,7 +10270,6 @@ msgctxt ""
msgid "Subtraction"
msgstr "Kivonás"
-#. @wqV
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11437,7 +10279,6 @@ msgctxt ""
msgid "2-1"
msgstr "2-1"
-#. dM[Y
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11447,7 +10288,6 @@ msgctxt ""
msgid "- (Minus)"
msgstr "- (mínusz)"
-#. #}IH
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11457,7 +10297,6 @@ msgctxt ""
msgid "Negation"
msgstr "Negáció"
-#. 2R{(
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11467,7 +10306,6 @@ msgctxt ""
msgid "-5"
msgstr "-5"
-#. jpQ%
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11477,7 +10315,6 @@ msgctxt ""
msgid "* (asterisk)"
msgstr "* (csillag)"
-#. 0$hT
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11487,7 +10324,6 @@ msgctxt ""
msgid "Multiplication"
msgstr "Szorzás"
-#. @OKk
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11497,7 +10333,6 @@ msgctxt ""
msgid "2*2"
msgstr "2*2"
-#. 3G1F
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11507,7 +10342,6 @@ msgctxt ""
msgid "/ (Slash)"
msgstr "/ (osztásjel)"
-#. \\Z7
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11517,7 +10351,6 @@ msgctxt ""
msgid "Division"
msgstr "Osztás"
-#. J^5T
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11527,7 +10360,6 @@ msgctxt ""
msgid "9/3"
msgstr "9/3"
-#. 7TV.
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11537,7 +10369,6 @@ msgctxt ""
msgid "% (Percent)"
msgstr "% (százalék)"
-#. ToPg
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11547,7 +10378,6 @@ msgctxt ""
msgid "Percent"
msgstr "Százalék"
-#. 55ax
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11557,7 +10387,6 @@ msgctxt ""
msgid "15%"
msgstr "15%"
-#. QX6d
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11567,7 +10396,6 @@ msgctxt ""
msgid "^ (Caret)"
msgstr "^ (hatványjel)"
-#. `DK,
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11577,7 +10405,6 @@ msgctxt ""
msgid "Exponentiation"
msgstr "Hatványozás"
-#. tJ}{
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11587,7 +10414,6 @@ msgctxt ""
msgid "3^2"
msgstr "3^2"
-#. T.Qv
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11597,7 +10423,6 @@ msgctxt ""
msgid "Comparative operators"
msgstr "Összehasonlító operátorok"
-#. OPQA
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11607,7 +10432,6 @@ msgctxt ""
msgid "These operators return either true or false."
msgstr "Ezek az operátorok igaz vagy hamis eredményt adnak vissza."
-#. *=E,
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11617,7 +10441,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. ]l=W
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11627,7 +10450,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. @0Pc
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11637,7 +10459,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. v#nb
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11647,7 +10468,6 @@ msgctxt ""
msgid "= (equal sign)"
msgstr "= (egyenlőségjel)"
-#. jkOm
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11657,7 +10477,6 @@ msgctxt ""
msgid "Equal"
msgstr "Egyenlő"
-#. yYpR
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11667,7 +10486,6 @@ msgctxt ""
msgid "A1=B1"
msgstr "A1=B1"
-#. 18TZ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11677,7 +10495,6 @@ msgctxt ""
msgid "> (Greater than)"
msgstr "> (nagyobb mint)"
-#. MxW!
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11687,7 +10504,6 @@ msgctxt ""
msgid "Greater than"
msgstr "Nagyobb mint"
-#. gDa+
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11697,7 +10513,6 @@ msgctxt ""
msgid "A1>B1"
msgstr "A1>B1"
-#. rqvC
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11707,7 +10522,6 @@ msgctxt ""
msgid "< (Less than)"
msgstr "< (kisebb mint)"
-#. RZa9
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11717,7 +10531,6 @@ msgctxt ""
msgid "Less than"
msgstr "Kisebb mint"
-#. Dd-j
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11727,7 +10540,6 @@ msgctxt ""
msgid "A1<B1"
msgstr "A1<B1"
-#. 6`8d
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11737,7 +10549,6 @@ msgctxt ""
msgid ">= (Greater than or equal to)"
msgstr ">= (nagyobb vagy egyenlő)"
-#. X`4c
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11747,7 +10558,6 @@ msgctxt ""
msgid "Greater than or equal to"
msgstr "Nagyobb vagy egyenlő"
-#. Qjn@
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11757,7 +10567,6 @@ msgctxt ""
msgid "A1>=B1"
msgstr "A1>=B1"
-#. 7TCN
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11767,7 +10576,6 @@ msgctxt ""
msgid "<= (Less than or equal to)"
msgstr "<= (kisebb vagy egyenlő)"
-#. fAiJ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11777,7 +10585,6 @@ msgctxt ""
msgid "Less than or equal to"
msgstr "Kisebb vagy egyenlő"
-#. 12Dq
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11787,7 +10594,6 @@ msgctxt ""
msgid "A1<=B1"
msgstr "A1<=B1"
-#. ~=OE
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11797,7 +10603,6 @@ msgctxt ""
msgid "<> (Inequality)"
msgstr "<> (egyenlőtlenség)"
-#. NVdC
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11807,7 +10612,6 @@ msgctxt ""
msgid "Inequality"
msgstr "Egyenlőtlenség"
-#. -KzZ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11817,7 +10621,6 @@ msgctxt ""
msgid "A1<>B1"
msgstr "A1<>B1"
-#. #_ND
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11827,7 +10630,6 @@ msgctxt ""
msgid "Text operators"
msgstr "Szöveges operátorok"
-#. %PP}
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11837,7 +10639,6 @@ msgctxt ""
msgid "The operator combines separate texts into one text."
msgstr "Az operátor különálló szövegeket egyesít egyetlen szöveggé."
-#. 6PH0
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11847,7 +10648,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. ;D)K
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11857,7 +10657,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. T9al
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11867,7 +10666,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Yf|a
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11877,7 +10675,6 @@ msgctxt ""
msgid "& (And)"
msgstr "& (és)"
-#. Ul^4
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11886,7 +10683,6 @@ msgctxt ""
msgid "<bookmark_value>text concatenation AND</bookmark_value>"
msgstr "<bookmark_value>Szövegösszefűző „ÉS”</bookmark_value>"
-#. Zr^0
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11896,7 +10692,6 @@ msgctxt ""
msgid "text concatenation AND"
msgstr "Szövegösszefűző „ÉS”"
-#. It5Z
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11906,7 +10701,6 @@ msgctxt ""
msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr "\"Hét\" & \"fő\" eredménye \"Hétfő\""
-#. 1dMJ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11916,7 +10710,6 @@ msgctxt ""
msgid "Reference operators"
msgstr "Hivatkozásoperátorok"
-#. ss+=
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11926,7 +10719,6 @@ msgctxt ""
msgid "These operators return a cell range of zero, one or more cells."
msgstr "Ezeknek az operátoroknak az eredménye nulla, egy vagy több cellából álló tartomány."
-#. 2B)t
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11935,7 +10727,6 @@ msgctxt ""
msgid "Range has the highest precedence, then intersection, and then finally union."
msgstr "A tartomány élvez elsőbbséget, utána a metszet, végül az unió."
-#. I$2}
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11945,7 +10736,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operátor"
-#. 2Y:p
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11955,7 +10745,6 @@ msgctxt ""
msgid "Name"
msgstr "Név"
-#. Uiyj
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11965,7 +10754,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Pnl]
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11975,7 +10763,6 @@ msgctxt ""
msgid ": (Colon)"
msgstr ": (kettőspont)"
-#. 0f.[
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11985,7 +10772,6 @@ msgctxt ""
msgid "Range"
msgstr "Tartomány"
-#. )ur~
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11995,7 +10781,6 @@ msgctxt ""
msgid "A1:C108"
msgstr "A1:C108"
-#. ):8K
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12005,7 +10790,6 @@ msgctxt ""
msgid "! (Exclamation point)"
msgstr "! (felkiáltójel)"
-#. P#\D
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12014,7 +10798,6 @@ msgctxt ""
msgid "<bookmark_value>intersection operator</bookmark_value>"
msgstr "<bookmark_value>metszet operátor</bookmark_value>"
-#. Hm?N
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12024,7 +10807,6 @@ msgctxt ""
msgid "Intersection"
msgstr "Metszet"
-#. t#?h
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12034,7 +10816,6 @@ msgctxt ""
msgid "SUM(A1:B6!B5:C12)"
msgstr "SZUM(A1:B6!B5:C12)"
-#. Pj5^
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12044,7 +10825,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 "A metszet összes cellájának összegét számolja ki, ebben a példában a B5-ös és B6-os cella összege a kapott eredmény."
-#. vw0N
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12053,7 +10833,6 @@ msgctxt ""
msgid "~ (Tilde)"
msgstr "~ (hullám)"
-#. S84-
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12062,7 +10841,6 @@ msgctxt ""
msgid "Concatenation or union"
msgstr "Konkatenáció vagy unió"
-#. D)QK
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12071,7 +10849,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 "Vesz két hivatkozást, és hivatkozáslistát készít, amely a bal oldali hivatkozást követő jobb oldali hivatkozás összefűzése. A dupla tételekre két hivatkozás mutat. Lásd a táblázat alatti megjegyzést."
-#. FU6L
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12080,7 +10857,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 "A hullámjelet használó konkatenáció új operátor, amelyet csak nemrég valósítottak meg. Ha egy hullámmal rendelkező képlet van a dokumentumban, akkor az a szoftver régi verziójával megnyitva hibajelzést eredményez. Hivatkozáslista nincs engedélyezve tömbkifejezésben."
-#. XQEV
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12089,7 +10865,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr "HÉT.NAPJA"
-#. f#2h
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12098,7 +10873,6 @@ msgctxt ""
msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
msgstr "<bookmark_value>HÉT.NAPJA függvény</bookmark_value><bookmark_value>WEEKDAY függvény, lásd: HÉT.NAPJA függvény</bookmark_value>"
-#. /M.T
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12108,7 +10882,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\">HÉT.NAPJA</link></variable>"
-#. KV1\
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12118,7 +10891,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 "<ahelp hid=\"HID_FUNC_WOCHENTAG\">A megadott dátum hét közben elfoglalt napját adja eredményül.</ahelp> A napot egy 1 (vasárnap) és 7 (szombat) közötti egész számként adja vissza, ha a típus=1 vagy nincs meghatározva. Ha a típus=2, a számozás hétfő=1-től, ha a típus=3, a számozás hétfő=0-tól indul."
-#. h#.V
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12128,7 +10900,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ^!mD
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12138,7 +10909,6 @@ msgctxt ""
msgid "WEEKDAY(Number; Type)"
msgstr "HÉT.NAPJA(szám; típus)"
-#. vY1m
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12148,7 +10918,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
msgstr "A <emph>szám</emph> dátumértékként egy decimális szám, amelyre vonatkozóan a hét napjának sorszámát meg kívánja kapni."
-#. x4.b
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12158,7 +10927,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 "A <emph>típus</emph> argumentum a számítás módját határozza meg. A típus=1 esetén a hét napjai vasárnaptól számozódnak (ez az alapértelmezés akkor is, ha nem ad meg típus paramétert). A típus=2 esetén a hét napjai hétfő=1 értéktől kezdődnek. A típus=3 esetén a hét napjai a hétfő=0 értéktől kezdődnek."
-#. HH=S
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12168,7 +10936,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 "Ezek az értékek csak az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Számítás</emph> oldalon beállított általános dátumformátumra vonatkoznak."
-#. 1mPF
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12178,7 +10945,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. )8J1
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12188,7 +10954,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 "A =HÉT.NAPJA(\"2000-06-14\") eredményül 4-et ad (a típus paraméter hiányzik, így a szokásos számítási módot használja. A szokásos számítás vasárnaptól kezdődik, amelynek értéke 1, és mivel 2000. június 14-e szerda volt, ezért a nap sorszáma 4)."
-#. *4l-
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12198,7 +10963,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 "A =HÉT.NAPJA(\"1996-07-24\";2) eredményül 3-at ad (a típus paraméter értéke 2, tehát a hétfő az 1-es számú nap. 1996. július 24-e szerda volt, amelynek értéke 3)."
-#. LHX#
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12208,7 +10972,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 "A =HÉT.NAPJA(\"1996-07-24\";1) eredményül 4-et ad (a típus paraméter értéke 1, tehát a vasárnap az 1-es számú nap. 1996. július 24-e szerda volt, amelynek értéke 4)."
-#. H;k*
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12218,7 +10981,6 @@ msgctxt ""
msgid "=WEEKDAY(NOW()) returns the number of the current day."
msgstr "A =HÉT.NAPJA(MOST()) az aktuális nap számát adja vissza."
-#. bkIY
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12228,7 +10990,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 "Ha egy olyan függvényt szeretne, amely az A1 cellában található napra vonatkozóan meghatározza, hogy az munkanap-e, használja a HA és a HÉT.NAPJA függvényeket a következő módon: <br/>HA(HÉT.NAPJA(A1;2)<6; \"Munkanap\";\"Hétvége\")."
-#. v*5%
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12237,7 +10998,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "Összesítve:"
-#. ^r^n
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12247,7 +11007,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "Összesítve:"
-#. O%Gv
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12257,7 +11016,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "Összesítve:"
-#. XdtP
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12267,7 +11025,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 "Használja ezt a szakaszt, ha az összesíteni kívánt cellatartományok címkéket tartalmaznak. Csak akkor van szükség ezen beállítások kijelölésére, ha az összesített tartományok hasonló címkéket tartalmaznak, és az elrendezett adatok különbözően vannak elrendezve."
-#. u,3#
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12277,7 +11034,6 @@ msgctxt ""
msgid "Row labels"
msgstr "Sorcímkék"
-#. )9s!
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12287,7 +11043,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Sorcímkék használata összesített adatok elrendezéséhez.</ahelp>"
-#. N/d~
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12297,7 +11052,6 @@ msgctxt ""
msgid "Column labels"
msgstr "Oszlopcímkék"
-#. z#Q+
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12307,7 +11061,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Oszlopcímkék használata összesített adatok elrendezéséhez.</ahelp>"
-#. :5cb
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12317,7 +11070,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. Um*8
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12327,7 +11079,6 @@ msgctxt ""
msgid "Link to source data"
msgstr "Összekötés a forrásadattal"
-#. jHF.
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12337,7 +11088,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Az összesített tartományt a forrásadathoz köti, és a forrásadatok megváltozásakor automatikusan frissíti az összesítést is.</ahelp>"
-#. Eur]
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12347,7 +11097,6 @@ msgctxt ""
msgid "More <<"
msgstr "Részletek <<"
-#. uzBj
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12357,7 +11106,6 @@ msgctxt ""
msgid "Hides the additional options."
msgstr "Elrejti a további beállításokat."
-#. =bYy
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12366,7 +11114,6 @@ msgctxt ""
msgid "Define"
msgstr "Meghatározás"
-#. jh6^
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12376,7 +11123,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Meghatározás\">Meghatározás</link>"
-#. ;4(J
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12386,7 +11132,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\">Egy aktív cellát vagy egy kijelölt területet beállít nyomtatási területként.</ahelp>"
-#. pZU/
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12395,7 +11140,6 @@ msgctxt ""
msgid "Date & Time Functions"
msgstr "Dátum- és időfüggvények"
-#. \.Q*
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12404,7 +11148,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>dátum- és időfüggvények</bookmark_value><bookmark_value>függvények; dátum és idő</bookmark_value><bookmark_value>Függvénytündér; dátum és idő</bookmark_value>"
-#. t5JY
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12414,7 +11157,6 @@ msgctxt ""
msgid "Date & Time Functions"
msgstr "Dátum- és időfüggvények"
-#. AmI0
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12424,7 +11166,6 @@ msgctxt ""
msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
msgstr "<variable id=\"datumzeittext\">Ezek a munkalapfüggvények dátumok és időpontok beszúrására, valamint szerkesztésére használhatók. </variable>"
-#. /H+a
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12433,7 +11174,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 "Azok a függvények, amelyeknek neve _ADD-ra végződik, ugyanazt az eredményt adják vissza, mint a Microsoft Excel-megfelelőjük. Ha ezeket a függvényeket _ADD nélkül használja, akkor a nemzetközi szabványoknak megfelelő értékeket adják vissza. Például a WEEKNUM függvény kiszámolja egy adott dátum ISO 8601 szabvány szerinti hétszámát, míg a WEEKNUM_ADD ugyanazt az értéket adja vissza, mint a Microsoft Excel."
-#. _sEE
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12443,7 +11183,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 "A $[officename] a dátum- és időértékeket belsőleg számértékekként kezeli. Ha „Szám” számformátumot rendel egy dátum- vagy időértékhez, akkor az számmá konvertálódik. Például a 2000/01/01 12:00 du., 36526,5 értékre konvertálódik. A tizedesvessző előtti érték felel meg a dátumértéknek, a tizedesvesszőt követő pedig az időnek. Ha nem ezt a fajta numerikus dátum-, illetve időábrázolást akarja látni, akkor módosítsa ennek megfelelően a számformátumot (dátumra vagy időre). Ehhez jelölje ki a dátum- vagy időértéket tartalmazó cellát, nyissa meg előugró menüjét, majd válassza a <emph>Cellák formázása</emph> parancsot. A <emph>Számok</emph> lap tartalmazza a számformátum meghatározására szolgáló funkciókat."
-#. ,4lB
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12452,7 +11191,6 @@ msgctxt ""
msgid "Date base for day zero"
msgstr "Dátum alapja, azaz a 0. nap"
-#. ^3{`
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12461,7 +11199,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 "A dátumok a 0. naptól eltelt időként kerülnek tárolásra. A 0. napot a következők egyikére állíthatja be:"
-#. r/0k
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12470,7 +11207,6 @@ msgctxt ""
msgid "Date base"
msgstr "Dátum alapja"
-#. hkzV
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12479,7 +11215,6 @@ msgctxt ""
msgid "Use"
msgstr "Használat"
-#. 3=n5
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12488,7 +11223,6 @@ msgctxt ""
msgid "'12/30/1899'"
msgstr "„1899. dec. 30”"
-#. HJq_
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12497,7 +11231,6 @@ msgctxt ""
msgid "(default)"
msgstr "(alapértelmezett)"
-#. {_%2
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12506,7 +11239,6 @@ msgctxt ""
msgid "'01/01/1900'"
msgstr "„1900. jan. 1.”"
-#. 3n-o
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12515,7 +11247,6 @@ msgctxt ""
msgid "(used in former StarCalc 1.0)"
msgstr "(a StarCalc 1.0-ban volt használva)"
-#. Chr9
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12524,7 +11255,6 @@ msgctxt ""
msgid "'01/01/1904'"
msgstr "„1904. jan. 1.”"
-#. wNN1
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12533,7 +11263,6 @@ msgctxt ""
msgid "(used in Apple software)"
msgstr "(Apple-szoftverekben használatos)"
-#. A@f3
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12542,7 +11271,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 "A dátum alapjának kiválasztásához válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Számítás</emph> lehetőséget."
-#. C_I;
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12551,7 +11279,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 "Ha dátumértékeket tartalmazó cellákat másol át különböző munkafüzetek között, mindkét munkafüzet-dokumentumot ugyanarra a dátumalapra kell beállítani. Ha a dátum alapja különbözik, a megjelenített dátumértékek megváltoznak!"
-#. [On8
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12560,7 +11287,6 @@ msgctxt ""
msgid "Two digits years"
msgstr "Kétszámjegyű év"
-#. _g~,
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12570,7 +11296,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 "Az <emph>Év (két számjeggyel)</emph> területet az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - $[officename] - Általános</emph> panelen találja. Itt állíthatja be azon időszakot, amelyre a kétjegyű információk vonatkoznak. Fontos megjegyezni, hogy az itt eszközölt módosítások hatással vannak az alábbi függvények egy részére."
-#. n2wR
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12580,7 +11305,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 "A dátumok megadása során a dátumelválasztóként használt törtjelek és kötőjelek aritmetikai operátorként is értelmezhetők. Ennek következtében az adott formátumban megadott dátumok nem mindig dátumként kerülnek felismerésre, ami hibás számításokat eredményez. Ha biztosítani kívánja, hogy a dátumok ne a képlet részeként kerüljenek értelmezésre, akkor a dátumokat idézőjelek között adja meg (például: \"54/07/20\")."
-#. cJw7
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12589,7 +11313,6 @@ msgctxt ""
msgid "Functions"
msgstr "Függvények"
-#. {=@J
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12598,7 +11321,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"
@@ -12607,7 +11329,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"
@@ -12616,7 +11337,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
msgctxt ""
"04060102.xhp\n"
@@ -12625,7 +11345,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
-#. ,h*?
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12634,7 +11353,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"
@@ -12643,7 +11361,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"
@@ -12652,7 +11369,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"
@@ -12661,7 +11377,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"
@@ -12670,7 +11385,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"
@@ -12679,7 +11393,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"
@@ -12688,7 +11401,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"
@@ -12697,7 +11409,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"
@@ -12706,7 +11417,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"
@@ -12715,7 +11425,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"
@@ -12724,7 +11433,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"
@@ -12733,7 +11441,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"
@@ -12742,7 +11449,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"
@@ -12751,7 +11457,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"
@@ -12760,7 +11465,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"
@@ -12769,7 +11473,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"
@@ -12778,7 +11481,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"
@@ -12787,7 +11489,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"
@@ -12796,7 +11497,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"
@@ -12805,7 +11505,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"
@@ -12814,7 +11513,6 @@ msgctxt ""
msgid "Row"
msgstr "Sor"
-#. A*Sv
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12824,7 +11522,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Sor\">Sor</link>"
-#. jUGG
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12834,7 +11531,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
msgstr "<ahelp hid=\".\">Beállítja a sormagasságot, és elrejti vagy megjeleníti a kijelölt sorokat.</ahelp>"
-#. `l6[
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12844,7 +11540,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Magasság\">Magasság</link>"
-#. @4eZ
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12854,7 +11549,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=\"Optimális magasság\">Optimális magasság</link>"
-#. x`=(
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12863,7 +11557,6 @@ msgctxt ""
msgid "DAYS"
msgstr "DAYS"
-#. T\j5
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12872,7 +11565,6 @@ msgctxt ""
msgid "<bookmark_value>DAYS function</bookmark_value>"
msgstr "<bookmark_value>DAYS függvény</bookmark_value>"
-#. ql2^
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12882,7 +11574,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"
@@ -12892,7 +11583,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 "<ahelp hid=\"HID_FUNC_TAGE\">Kiszámítja két dátumérték különbségét.</ahelp> Az eredmény a két nap közötti napok számát adja vissza."
-#. ~}RP
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12902,7 +11592,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ?fQQ
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12912,7 +11601,6 @@ msgctxt ""
msgid "DAYS(Date2; Date1)"
msgstr "DAYS(dátum_2; dátum_1)"
-#. 4Cq!
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12922,7 +11610,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 "A <emph>dátum_1</emph> a kezdő dátum, a <emph>dátum_2</emph> a befejező dátum. Ha a <emph>dátum_2</emph> korábbi, mint a <emph>dátum_1</emph>, az eredmény negatív szám lesz."
-#. /XJ%
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12932,7 +11619,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. koGR
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12942,7 +11628,6 @@ msgctxt ""
msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
msgstr "A =DAYS(\"2010-01-01\"; MOST()) eredményül a mai naptól 2010. január 1-ig még hátralévő napok számát adja."
-#. _!KN
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12952,7 +11637,6 @@ msgctxt ""
msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
msgstr "A =DAYS(\"1990-10-10\";\"1980-10-10\") eredménye 3652."
-#. /g;;
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12961,7 +11645,6 @@ msgctxt ""
msgid "Split"
msgstr "Felosztás"
-#. W%]P
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12971,7 +11654,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Felosztás\">Felosztás</link>"
-#. ?ot+
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12981,7 +11663,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Felosztja a jelenlegi ablakot az aktív cella bal felső sarkánál.</ahelp>"
-#. dk+W
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12991,7 +11672,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 "Ezenkívül az egeret is használhatja az ablak vízszintes, illetve függőleges irányú felosztására. Ehhez húzza a közvetlenül a függőleges görgetősáv felett, illetve a vízszintes görgetősáv mellett közvetlenül jobbra elhelyezkedő vastag fekete vonalat az ablakba. Az ablak felosztásának helyét vastag fekete vonal jelzi."
-#. %?.]
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -13001,7 +11681,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 "A felosztott ablakok minden egyes részszakaszban saját görgetősávokkal rendelkeznek. Ezzel szemben a <link href=\"text/scalc/01/07090000.xhp\" name=\"rögzített ablakszakaszok\">rögzített ablakszakaszok</link> nem görgethetők."
-#. .TZ0
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13010,7 +11689,6 @@ msgctxt ""
msgid "AutoOutline"
msgstr "Automatikus vázlat"
-#. G0mi
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13020,7 +11698,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"Automatikus vázlat\">Automatikus vázlat</link>"
-#. i]nf
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13030,7 +11707,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoOutline\">Ha a kijelölt cellatartomány képleteket vagy hivatkozásokat tartalmaz, akkor a $[officename] automatikusan kivonatolja a kijelölést.</ahelp>"
-#. cJa6
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13040,7 +11716,6 @@ msgctxt ""
msgid "For example, consider the following table:"
msgstr "Például figyelje meg a következő táblázatot:"
-#. hR^N
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13050,7 +11725,6 @@ msgctxt ""
msgid "January"
msgstr "Január"
-#. --nL
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13060,7 +11734,6 @@ msgctxt ""
msgid "February"
msgstr "Február"
-#. ZR$O
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13070,7 +11743,6 @@ msgctxt ""
msgid "March"
msgstr "Március"
-#. [zh|
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13080,7 +11752,6 @@ msgctxt ""
msgid "1st Quarter"
msgstr "első negyedév"
-#. q9Ur
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13090,7 +11761,6 @@ msgctxt ""
msgid "April"
msgstr "Április"
-#. [#Ud
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13100,7 +11770,6 @@ msgctxt ""
msgid "May"
msgstr "Május"
-#. [@i3
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13110,7 +11779,6 @@ msgctxt ""
msgid "June"
msgstr "Június"
-#. oT89
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13120,7 +11788,6 @@ msgctxt ""
msgid "2nd Quarter"
msgstr "második negyedév"
-#. X_Mm
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13130,7 +11797,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. 9P]]
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13140,7 +11806,6 @@ msgctxt ""
msgid "120"
msgstr "120"
-#. y]Xk
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13150,7 +11815,6 @@ msgctxt ""
msgid "130"
msgstr "130"
-#. p+5F
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13160,7 +11824,6 @@ msgctxt ""
msgid "350"
msgstr "350"
-#. [[|f
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13170,7 +11833,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. 9YaZ
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13180,7 +11842,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. !:=X
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13190,7 +11851,6 @@ msgctxt ""
msgid "200"
msgstr "200"
-#. RfB?
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13200,7 +11860,6 @@ msgctxt ""
msgid "400"
msgstr "400"
-#. ((\1
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13210,7 +11869,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 "Az első, illetve második negyedév cellái egy-egy olyan képletet tartalmaznak, amely összesíti a tőlük balra található három cellát. Az <emph>Automatikus vázlat</emph> parancs alkalmazásakor a táblázat a két negyedév alapján kerül csoportosításra."
-#. L6%J
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13220,7 +11878,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 "A kivonat eltávolításához jelölje ki a táblázatot, majd válassza az <link href=\"text/scalc/01/12080600.xhp\" name=\"Adatok - Csoportosítás és vázlat - Eltávolítás\">Adatok - Csoportosítás és vázlat - Eltávolítás</link> lehetőséget."
-#. nuBe
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13229,7 +11886,6 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "Feltételes formázás"
-#. 7,+`
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13239,7 +11895,6 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "Feltételes formázás"
-#. e[cM
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13249,7 +11904,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 "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Bizonyos feltételektől függő formázási stílus megadásához válassza a <emph>Feltételes formázás</emph> lehetőséget.</ahelp></variable> Ha egy stílus már hozzá volt rendelve egy cellához, akkor az változatlan marad. Az itt megadott stílus ezután kiértékelésre kerül. Három feltételt adhat meg, amelyek lekérdezik a cellaértékek vagy a képletek tartalmát. A feltételek 1-től 3-ig kerülnek kiértékelésre. Ha az első feltétel teljesül, akkor a program az ott megadott stílust fogja használni. Egyébként, a második feltétel kerül kiértékelésre, és ha az teljesül, ez a stílus kerül használatba. Ha ezek a feltételek mégsem teljesülnek, a harmadik feltétel is kiértékelésre kerül."
-#. M4$_
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13258,7 +11912,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 feltételes formázás alkalmazásához engedélyezni kell az Automatikus számítás funkciót. Válassza az Eszközök - Cellatartalom - Automatikus számítás menüparancsot (a menüparancs mellett egy pipa jelenik meg, ha engedélyezve van az Automatikus számítás)."
-#. GpG\
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13267,7 +11920,6 @@ msgctxt ""
msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
msgstr "<bookmark_value>feltételes formázás; feltételek</bookmark_value>"
-#. _isV
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13277,7 +11929,6 @@ msgctxt ""
msgid "Condition 1/2/3"
msgstr "Feltétel 1/2/3"
-#. :n7b
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13287,7 +11938,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Jelölje be azokat a jelölőnégyzeteket, amelyek a feltételekre vonatkoznak, és adja meg a feltételeket.</ahelp> A párbeszédablak bezárásához kattintson az <emph>OK</emph> gombra."
-#. #=P0
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13297,7 +11947,6 @@ msgctxt ""
msgid "Cell Value / Formula"
msgstr "Cellaérték / Képlet"
-#. u]Sg
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13307,7 +11956,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 "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Megadja, hogy a feltételes formázás függjön-e egy cellaértéktől vagy képlettől.</ahelp> Ha hivatkozásként képletet jelöl meg, akkor a <emph>Cellaérték-feltétel</emph> mező jelenik meg a <emph>Cellaérték/Képlet</emph> mezőtől jobbra. Ha a feltétel „A képlet”, írjon be egy cellahivatkozást. Ha a cellahivatkozás nullától eltérő érték, akkor a feltétel teljesül."
-#. nJ7#
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13317,7 +11965,6 @@ msgctxt ""
msgid "Cell Value Condition"
msgstr "Cellaérték-feltétel"
-#. _O$X
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13327,7 +11974,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 "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Válasszon egy feltételt, amelynek megfelelően a kijelölt cellák formázása megváltozik.</ahelp>"
-#. q1W:
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13337,7 +11983,6 @@ msgctxt ""
msgid "Cell Style"
msgstr "Cellastílus"
-#. @I1O
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13347,7 +11992,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 "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Válasza ki azt a stílust, amelyet a megadott feltétel teljesülése esetén kell alkalmazni.</ahelp>"
-#. J2g_
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13356,7 +12000,6 @@ msgctxt ""
msgid "New Style"
msgstr "Új stílus"
-#. 10/.
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13365,7 +12008,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 "<ahelp hid=\".\">Ha még nem határozta meg a használandó stílust, kattintson az Új stílus gombra a Cellastílus párbeszédablak Szervező lapjának megnyitásához. Határozza meg ott az új stílust, majd kattintson az OK gombra.</ahelp>"
-#. 2svd
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13375,7 +12017,6 @@ msgctxt ""
msgid "Parameter field"
msgstr "Paramétermező"
-#. Qsc}
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13385,7 +12026,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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Írjon be egy hivatkozást, értéket vagy képletet.</ahelp> Adjon meg egy hivatkozást, egy értéket vagy egy képletet a paramétermezőben vagy mindkét paramétermezőben, ha olyan feltételt választott, amelyhez két paraméter szükséges. Relatív hivatkozásokat tartalmazó képleteket is megadhat."
-#. PV,}
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13395,7 +12035,6 @@ msgctxt ""
msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
msgstr "Ha meghatározta a paramétereket, a feltételek teljesek. Ez így jelenhet meg:"
-#. icsB
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13405,7 +12044,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 "Ha a cella értéke 0, a Cellastílus: Nulla érték (Már léteznie kell egy meghatározott cellastílusnak, mielőtt azt a nevével hozzárendeli a feltételhez)."
-#. m1%s
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13415,7 +12053,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 "Ha a cella értéke $B$20 és $B$21 közé esik, a Cellastílus: Eredmény (A megfelelő érték határának léteznie kell a B20-as és B21-es cellákban)."
-#. Rd4v
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13425,7 +12062,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 "Ha a SZUM($A$1:$A$5)=10 képlet, a Cellastílus: Eredmény (Ha az A1-estől az A5-ösig terjedő cellák tartalmának összege 10, a kijelölt cellák az eredménystílussal kerülnek formázásra)."
-#. 4yh(
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13434,7 +12070,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"
@@ -13443,7 +12078,6 @@ msgctxt ""
msgid "Show Details"
msgstr "Részletek"
-#. rjkq
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13452,7 +12086,6 @@ msgctxt ""
msgid "<bookmark_value>tables; showing details</bookmark_value>"
msgstr "<bookmark_value>táblázatok; részletek megjelenítése</bookmark_value>"
-#. s7dD
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13462,7 +12095,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=\"Részletek\">Részletek</link>"
-#. Sd7F
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13472,7 +12104,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 "<ahelp hid=\".uno:ShowDetail\">Megjeleníti azt a csoportosított sort vagy oszlopot, ahol a kurzor áll. Az összes csoportosított sor vagy oszlop megjelenítéséhez jelölje ki a kivonatolt táblázatot, és utána válassza ezt a parancsot.</ahelp>"
-#. acFa
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13482,7 +12113,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 "Egy kijelölt csoport elrejtéséhez válassza az <emph>Adatok - Kivonat - </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Részletek elrejtése\"><emph>Részletek elrejtése</emph></link> lehetőséget."
-#. =PWp
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13491,7 +12121,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
msgstr "<link href=\"text/scalc/01/12080700.xhp\">Részletek megjelenítése parancs a kimutatástáblákban</link>"
-#. D%y7
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13500,7 +12129,6 @@ msgctxt ""
msgid "Statistical Functions Part Three"
msgstr "Statisztikai függvények - harmadik rész"
-#. 3pV[
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13510,7 +12138,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=\"Statisztikai függvények - harmadik rész\">Statisztikai függvények - harmadik rész</link></variable>"
-#. l0Oi
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13519,7 +12146,6 @@ msgctxt ""
msgid "<bookmark_value>LARGE function</bookmark_value>"
msgstr "<bookmark_value>NAGY függvény</bookmark_value><bookmark_value>LARGE függvény, lásd: NAGY függvény</bookmark_value>"
-#. ^Wsn
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13529,7 +12155,6 @@ msgctxt ""
msgid "LARGE"
msgstr "NAGY"
-#. iF)U
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13539,7 +12164,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\">Kiszámítja egy adathalmaz k-adik legnagyobb értékét.</ahelp>"
-#. oJrM
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13549,7 +12173,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ;p%Z
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13559,7 +12182,6 @@ msgctxt ""
msgid "LARGE(Data; RankC)"
msgstr "NAGY(adatok; rang)"
-#. KJy|
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13569,7 +12191,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "Az <emph>adatok</emph> az adatokat tartalmazó cellatartomány."
-#. */Y,
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13579,7 +12200,6 @@ msgctxt ""
msgid "<emph>RankC</emph> is the ranking of the value."
msgstr "A <emph>rang</emph> az érték rangsorolása."
-#. :R[\
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13589,7 +12209,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. L`U]
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13599,7 +12218,6 @@ msgctxt ""
msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
msgstr "A <item type=\"input\">=NAGY(A1:C50;2)</item> képlet az A1:C50 cellatartományon belüli második legnagyobb értéket adja."
-#. @V[F
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13608,7 +12226,6 @@ msgctxt ""
msgid "<bookmark_value>SMALL function</bookmark_value>"
msgstr "<bookmark_value>KICSI függvény</bookmark_value><bookmark_value>SMALL függvény, lásd: KICSI függvény</bookmark_value>"
-#. Xl]R
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13618,7 +12235,6 @@ msgctxt ""
msgid "SMALL"
msgstr "KICSI"
-#. 1Wp#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13628,7 +12244,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\">Kiszámítja egy adathalmaz k-adik legkisebb értékét.</ahelp>"
-#. J6w.
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13638,7 +12253,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. b0r-
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13648,7 +12262,6 @@ msgctxt ""
msgid "SMALL(Data; RankC)"
msgstr "KICSI(adatok; rang)"
-#. GXAX
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13658,7 +12271,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "Az <emph>adatok</emph> az adatokat tartalmazó cellatartomány."
-#. TkEZ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13668,7 +12280,6 @@ msgctxt ""
msgid "<emph>RankC</emph> is the rank of the value."
msgstr "A <emph>rang</emph> az érték rangsorolása."
-#. -NlO
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13678,7 +12289,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. {^EE
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13688,7 +12298,6 @@ msgctxt ""
msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
msgstr "A <item type=\"input\">=KICSI(A1:C50;2)</item> képlet az A1:C50 cellatartományon belüli második legkisebb értéket adja."
-#. *=$p
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13697,7 +12306,6 @@ msgctxt ""
msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
msgstr "<bookmark_value>MEGBÍZHATÓSÁG függvény</bookmark_value><bookmark_value>CONFIDENCE függvény, lásd: MEGBÍZHATÓSÁG függvény</bookmark_value>"
-#. |6jr
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13707,7 +12315,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr "MEGBÍZHATÓSÁG"
-#. m++F
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13717,7 +12324,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Kiszámítja az (1-alfa) konfidenciaintervallumot a normál eloszláshoz.</ahelp>"
-#. hHZQ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13727,7 +12333,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. Qj/M
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13737,7 +12342,6 @@ msgctxt ""
msgid "CONFIDENCE(Alpha; StDev; Size)"
msgstr "MEGBÍZHATÓSÁG(alfa; szórás; méret)"
-#. /[T0
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13747,7 +12351,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "Az <emph>alfa</emph> a konfidenciaintervallum szintje."
-#. .7g9
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13757,7 +12360,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "A <emph>szórás</emph> a teljes sokaság szórása."
-#. )c;#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13767,7 +12369,6 @@ msgctxt ""
msgid "<emph>Size</emph> is the size of the total population."
msgstr "A <emph>méret</emph> a teljes sokaság mérete."
-#. q*2r
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13777,7 +12378,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ,D(`
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13787,7 +12387,6 @@ msgctxt ""
msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr "A <item type=\"input\">=MEGBÍZHATÓSÁG(0,05;1,5;100)</item> képlet eredménye 0,29."
-#. _a*Q
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13796,7 +12395,6 @@ msgctxt ""
msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
msgstr "<bookmark_value>KORREL függvény</bookmark_value><bookmark_value>CORREL függvény, lásd: KORREL függvény</bookmark_value><bookmark_value>korrelációs együttható</bookmark_value>"
-#. 0]*G
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13806,7 +12404,6 @@ msgctxt ""
msgid "CORREL"
msgstr "KORREL"
-#. FJ[V
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13816,7 +12413,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KORREL\">Kiszámítja a két adathalmaz közti korrelációs együtthatót.</ahelp>"
-#. f{z@
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13826,7 +12422,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ny96
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13836,7 +12431,6 @@ msgctxt ""
msgid "CORREL(Data1; Data2)"
msgstr "KORREL(adatok_1; adatok_2)"
-#. m4rZ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13846,7 +12440,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first data set."
msgstr "Az <emph>adatok_1</emph> az első adathalmaz."
-#. z)ho
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13856,7 +12449,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second data set."
msgstr "Az <emph>adatok_2</emph> a második adathalmaz."
-#. xjg9
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13866,7 +12458,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. G=lC
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13876,7 +12467,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 "A <item type=\"input\">=KORREL(A1:A50;B1:B50)</item> függvény kiszámítja a két adathalmaz közötti lineáris korreláció mértékét meghatározó korrelációs együtthatót."
-#. nV2r
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13885,7 +12475,6 @@ msgctxt ""
msgid "<bookmark_value>COVAR function</bookmark_value>"
msgstr "<bookmark_value>KOVAR függvény</bookmark_value><bookmark_value>COVAR függvény, lásd: KOVAR függvény</bookmark_value>"
-#. [Fr$
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13895,7 +12484,6 @@ msgctxt ""
msgid "COVAR"
msgstr "KOVAR"
-#. L*C2
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13905,7 +12493,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Összepárosított eltérések szorzatának kovarianciáját számítja ki.</ahelp>"
-#. +i$/
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13915,7 +12502,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. KcFJ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13925,7 +12511,6 @@ msgctxt ""
msgid "COVAR(Data1; Data2)"
msgstr "KOVAR(adatok_1; adatok_2)"
-#. 6-${
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13935,7 +12520,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first data set."
msgstr "Az <emph>adatok_1</emph> az első adathalmaz."
-#. 9a1_
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13945,7 +12529,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second data set."
msgstr "Az <emph>adatok_2</emph> a második adathalmaz."
-#. s+g\
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13955,7 +12538,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ivo#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13965,7 +12547,6 @@ msgctxt ""
msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
msgstr "<item type=\"input\">=KOVAR(A1:A30;B1:B30)</item>"
-#. $W^w
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13974,7 +12555,6 @@ msgctxt ""
msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
msgstr "<bookmark_value>KRITBINOM függvény</bookmark_value><bookmark_value>CRITBINOM függvény, lásd: KRITBINOM függvény</bookmark_value>"
-#. b#n{
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13984,7 +12564,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr "KRITBINOM"
-#. gt5X
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13994,7 +12573,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 "<ahelp hid=\"HID_FUNC_KRITBINOM\">Azt a legkisebb értéket adja eredményül, amely esetén a kumulatív binomiális eloszlás egy adott feltételnél kisebb vagy egyenlő.</ahelp>"
-#. (@pR
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14004,7 +12582,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. r7kB
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14014,7 +12591,6 @@ msgctxt ""
msgid "CRITBINOM(Trials; SP; Alpha)"
msgstr "KRITBINOM(kísérletek; sp; alfa)"
-#. *Hi|
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14024,7 +12600,6 @@ msgctxt ""
msgid "<emph>Trials</emph> is the total number of trials."
msgstr "A <emph>kísérletek</emph> az összes kísérletek száma."
-#. z[6L
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14034,7 +12609,6 @@ msgctxt ""
msgid "<emph>SP</emph> is the probability of success for one trial."
msgstr "Az <emph>sp</emph> a sikeresség valószínűsége egy kísérlet alkalmával."
-#. |H^8
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14044,7 +12618,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
msgstr "Az <emph>alfa</emph> az elérni, illetve meghaladni kívánt valószínűségi küszöbérték."
-#. _5l?
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14054,7 +12627,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. w#G(
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14064,7 +12636,6 @@ msgctxt ""
msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
msgstr "A <item type=\"input\">=KRITBINOM(100;0,5;0,1)</item> képlet eredménye 44."
-#. K9,8
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14073,7 +12644,6 @@ msgctxt ""
msgid "<bookmark_value>KURT function</bookmark_value>"
msgstr "<bookmark_value>CSÚCSOSSÁG függvény</bookmark_value><bookmark_value>KURT függvény, lásd: CSÚCSOSSÁG függvény</bookmark_value>"
-#. FC@7
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14083,7 +12653,6 @@ msgctxt ""
msgid "KURT"
msgstr "CSÚCSOSSÁG"
-#. +7:P
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14093,7 +12662,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KURT\">Kiszámítja egy adathalmaz meredekségét (ehhez legalább 4 érték szükséges).</ahelp>"
-#. O`d2
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14103,7 +12671,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. gLn*
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14113,7 +12680,6 @@ msgctxt ""
msgid "KURT(Number1; Number2; ...Number30)"
msgstr "CSÚCSOSSÁG(szám_1; szám_2; ...szám_30)"
-#. |svS
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14123,7 +12689,6 @@ msgctxt ""
msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
msgstr "A <emph>szám_1, szám_2, ...szám_30</emph> számargumentumok vagy tartományok, amelyek egy eloszlásból vett véletlen mintát reprezentálnak."
-#. ,Iz:
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14133,7 +12698,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Q!r6
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14143,7 +12707,6 @@ msgctxt ""
msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
msgstr "<item type=\"input\">=CSÚCSOSSÁG(A1;A2;A3;A4;A5;A6)</item>"
-#. 9jsC
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14152,7 +12715,6 @@ msgctxt ""
msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
msgstr "<bookmark_value>INVERZ.LOG.ELOSZLÁS függvény</bookmark_value><bookmark_value>LOGINV függvény, lásd: INVERZ.LOG.ELOSZLÁS függvény</bookmark_value><bookmark_value>lognormális eloszlás inverze</bookmark_value>"
-#. hQ}*
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14162,7 +12724,6 @@ msgctxt ""
msgid "LOGINV"
msgstr "INVERZ.LOG.ELOSZLÁS"
-#. WC|1
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14172,7 +12733,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Kiszámítja a lognormális eloszlás inverzét.</ahelp>"
-#. F`Uw
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14182,7 +12742,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. +3TN
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14192,7 +12751,6 @@ msgctxt ""
msgid "LOGINV(Number; Mean; StDev)"
msgstr "INVERZ.LOG.ELOSZLÁS(szám; középérték; szórás)"
-#. aq7S
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14202,7 +12760,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "A <emph>szám</emph> azon valószínűségi érték, amelyre vonatkozóan az inverz lognormális eloszlást ki kívánja számítani."
-#. C_)X
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14212,7 +12769,6 @@ msgctxt ""
msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
msgstr "A <emph>középérték</emph> a lognormális eloszlás számtani közepe."
-#. ov^!
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14222,7 +12778,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
msgstr "A <emph>szórás</emph> a lognormális eloszlás szórása."
-#. *2Kh
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14232,7 +12787,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. kWiO
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14242,7 +12796,6 @@ msgctxt ""
msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
msgstr "A <item type=\"input\">=INVERZ.LOG.ELOSZLÁS(0,05;0;1)</item> képlet eredménye 0,19."
-#. $r6!
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14251,7 +12804,6 @@ msgctxt ""
msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
msgstr "<bookmark_value>LOG.ELOSZLÁS függvény</bookmark_value><bookmark_value>LOGNORMDIST függvény, lásd: LOG.ELOSZLÁS függvény</bookmark_value><bookmark_value>kumulatív lognormális eloszlás</bookmark_value>"
-#. 6u0-
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14261,7 +12813,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr "LOG.ELOSZLÁS"
-#. K9Im
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14271,7 +12822,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Kiszámítja a kumulatív lognormális eloszlást.</ahelp>"
-#. *v%0
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14281,7 +12831,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. N.m+
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14291,7 +12840,6 @@ msgctxt ""
msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
msgstr "LOG.ELOSZLÁS(szám; középérték; szórás; kumulatív)"
-#. )5gG
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14301,7 +12849,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "A <emph>szám</emph> azon valószínűségi érték, amelyre vonatkozóan a lognormális eloszlást ki kívánja számítani."
-#. DB-6
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14311,7 +12858,6 @@ msgctxt ""
msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
msgstr "A <emph>középérték</emph> (opcionális) a standard logaritmikus eloszlás középértéke."
-#. aMDn
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14321,7 +12867,6 @@ msgctxt ""
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
msgstr "A <emph>szórás</emph> (opcionális) a standard logaritmikus eloszlás szórása."
-#. S2?a
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14330,7 +12875,6 @@ msgctxt ""
msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
msgstr "A <emph>kumulatív</emph> (opcionális) = 0 a sűrűségfüggvényt számítja ki; a <emph>kumulatív</emph> = 1 az eloszlást számítja ki."
-#. ^Xh1
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14340,7 +12884,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. uOa@
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14350,7 +12893,6 @@ msgctxt ""
msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
msgstr "A <item type=\"input\">=LOG.ELOSZLÁS(0,1;0;1)</item> képlet eredménye 0,01."
-#. YO]S
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14359,7 +12901,6 @@ msgctxt ""
msgid "Names"
msgstr "Nevek"
-#. uf:/
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14369,7 +12910,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Nevek\">Nevek</link>"
-#. 7^%V
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14379,7 +12919,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 "<ahelp hid=\".\">Lehetővé teszi a munkafüzet-dokumentum különböző részeinek elnevezését.</ahelp> Az egyes szakaszok elnevezésével könnyen <link href=\"text/scalc/01/02110000.xhp\" name=\"navigálhat\">navigálhat</link> a munkafüzet-dokumentumban, illetve találhat meg bizonyos információkat."
-#. )UCS
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14389,7 +12928,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Meghatározás\">Meghatározás</link>"
-#. 5b6T
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14399,7 +12937,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Beszúrás\">Beszúrás</link>"
-#. Sm0\
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14409,7 +12946,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Alkalmaz\">Alkalmaz</link>"
-#. K9#-
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14419,7 +12955,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Címkék\">Címkék</link>"
-#. hbe:
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14428,7 +12963,6 @@ msgctxt ""
msgid "Show Sheet"
msgstr "Munkalap megjelenítése"
-#. shyR
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14437,7 +12971,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
msgstr "<bookmark_value>munkalapok; megjelenítés</bookmark_value><bookmark_value>megjelenítés; munkalapok</bookmark_value>"
-#. 7v{s
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14447,7 +12980,6 @@ msgctxt ""
msgid "Show Sheet"
msgstr "Munkalap megjelenítése"
-#. pfv#
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14457,7 +12989,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 "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Megjeleníti a korábban az <emph>Elrejtés</emph> paranccsal elrejtett munkalapokat.</ahelp></variable> A parancs hívásához csak egyetlen munkalapot jelöljön ki. Az aktuális munkalap mindig ki van jelölve. Ha az aktuális mellett más munkalap is ki van jelölve, akkor a munkalap kijelölésének megszüntetéséhez a <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> billentyű nyomva tartása mellett kattintson a megfelelő munkalapcímkére az ablak alján."
-#. uFN+
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14467,7 +12998,6 @@ msgctxt ""
msgid "Hidden sheets"
msgstr "Rejtett munkalapok"
-#. }i5X
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14477,7 +13007,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 "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Megjeleníti a munkafüzetben található összes rejtett munkalapot.</ahelp> Egy bizonyos munkalap megjelenítéséhez kattintson a megfelelő listabejegyzésre, majd hagyja jóvá az OK gombra való kattintással."
-#. FsYX
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14486,7 +13015,6 @@ msgctxt ""
msgid "Cell Contents"
msgstr "Cellatartalmak"
-#. +smV
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14496,7 +13024,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=\"Cellatartalmak\">Cellatartalmak</link>"
-#. NMr\
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14506,7 +13033,6 @@ msgctxt ""
msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
msgstr "Megnyit egy parancsokat tartalmazó almenüt táblázatok számításához és az Automatikus bevitel aktiválásához."
-#. Z4b(
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14515,7 +13041,6 @@ msgctxt ""
msgid "Select Source"
msgstr "Forrás kijelölése"
-#. sil!
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14525,7 +13050,6 @@ msgctxt ""
msgid "Select Source"
msgstr "Forrás kijelölése"
-#. $N!G
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14535,7 +13059,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:DataDataPilotRun\">A megnyíló párbeszédablakban a kimutatástábla által használt táblázat forrását választhatja ki, majd létrehozhatja a táblázatot.</ahelp>"
-#. nQuP
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14545,7 +13068,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. OFEQ
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14555,7 +13077,6 @@ msgctxt ""
msgid "Select a data source for the pivot table."
msgstr "Válassza ki a kimutatástábla adatforrását."
-#. Q.+-
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14565,7 +13086,6 @@ msgctxt ""
msgid "Current Selection"
msgstr "Aktuális kiválasztás"
-#. )uF:
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14575,7 +13095,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">A kimutatástábla adatforrásaként a kiválasztott cellákat fogja használni.</ahelp>"
-#. \aJ+
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14585,7 +13104,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 "A kimutatástábla adatoszlopai ugyanazt a számformátumot használják, mint az aktuális kijelölés első adatsora."
-#. MJ*;
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14595,7 +13113,6 @@ msgctxt ""
msgid "Data source registered in $[officename]"
msgstr "$[officename] programban regisztrált adatforrás"
-#. oIo9
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14605,7 +13122,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=\".\">A $[officename] által nyilvántartott táblát vagy lekérdezést használ az adatbázisban a kimutatástábla adatforrásaként.</ahelp>"
-#. Lm{Y
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14615,7 +13131,6 @@ msgctxt ""
msgid "External source/interface"
msgstr "Külső forrás vagy illesztő"
-#. sp.@
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14625,7 +13140,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=\".\">Megnyitja a <emph>Külső forrás</emph> párbeszédablakot, ahol kiválaszthatja a kimutatástábla OLAP-adatforrását.</ahelp>"
-#. EGI^
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14634,7 +13148,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=\"Kimutatástábla párbeszédablak\">Kimutatástábla párbeszédablak</link>"
-#. rlBf
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14643,7 +13156,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "Kimutatástábla"
-#. Q9n=
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14652,7 +13164,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla funkció;részletek megjelenítése</bookmark_value><bookmark_value>kimutatástábla funkció;feltárás</bookmark_value>"
-#. l9bQ
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14662,7 +13173,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "Kimutatástábla"
-#. {ZSr
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14672,7 +13182,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:DataPilotExec\">Adja meg a kimutatástábla által létrehozott táblázat elrendezését.</ahelp>"
-#. pJEr
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14682,7 +13191,6 @@ msgctxt ""
msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
msgstr "A kimutatástábla az adatmezőket gombként jeleníti meg, amelyeket a „fogd és vidd” módszerrel a kívánt helyre húzva meghatározhatja a kimutatástáblát."
-#. m=T)
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14692,7 +13200,6 @@ msgctxt ""
msgid "Layout"
msgstr "Elrendezés"
-#. H*#J
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14702,7 +13209,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 "<ahelp hid=\"HID_SC_DPLAY_SELECT\">A kimutatástábla elrendezésének meghatározásához húzza az adatmezőgombokat az <emph>Oldalmezők</emph>, a <emph>Sormezők</emph>, az <emph>Oszlopmezők</emph> és az <emph>Adatmezők</emph> területre.</ahelp> Ezenkívül az adatmezők húzásával a kimutatástábla újra is rendezhető."
-#. .Itd
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14712,7 +13218,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 "A $[officename] az <emph>Adatmezők</emph> területre húzott gombokhoz automatikusan hozzárendel egy feliratot. A felirat tartalmazza az adatmező nevét, valamint az adatokat létrehozó képletet."
-#. %h-^
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14722,7 +13227,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 "Egy adatmező által használt függvény módosításához kattintson duplán az <emph>Adatmezők</emph> területen lévő egyik gombra az <link href=\"text/scalc/01/12090105.xhp\" name=\"Adatmező\">Adatmező</link> párbeszédablak megnyitásához. Duplán rákattinthat a <emph>Sormezők</emph> vagy az <emph>Oszlopmezők</emph> területen lévő gombokra is."
-#. -SI;
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14732,7 +13236,6 @@ msgctxt ""
msgid "Remove"
msgstr "Eltávolítás"
-#. [0ai
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14742,7 +13245,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Eltávolítja a kijelölt adatmezőket a táblaelrendezésből.</ahelp>"
-#. \+eh
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14752,7 +13254,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. *W|f
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14762,7 +13263,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 "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Megnyitja az <link href=\"text/scalc/01/12090105.xhp\" name=\"Adatmező\"><emph>Adatmező</emph></link> párbeszédablakot, ahol módosíthatja a kijelölt mezővel társított függvényt.</ahelp>"
-#. baXN
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14772,7 +13272,6 @@ msgctxt ""
msgid "More"
msgstr "Részletek"
-#. %m[\
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14782,7 +13281,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:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Megjeleníti vagy elrejti a kimutatástábla további beállításait.</ahelp>"
-#. ,QGD
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14792,7 +13290,6 @@ msgctxt ""
msgid "Result"
msgstr "Eredmény"
-#. ~COc
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14802,7 +13299,6 @@ msgctxt ""
msgid "Specify the settings for displaying the results of the pivot table."
msgstr "Adja meg a kimutatástábla eredményeinek megjelenítésére vonatkozó beállításokat."
-#. SVaH
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14811,7 +13307,6 @@ msgctxt ""
msgid "Selection from"
msgstr "Kijelölés innen"
-#. ?-fL
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14820,7 +13315,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">Jelölje ki a területet, amely az aktuális kimutatástábla adatait tartalmazza.</ahelp>"
-#. mM`!
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14830,7 +13324,6 @@ msgctxt ""
msgid "Results to"
msgstr "Eredménye"
-#. k[S~
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14840,7 +13333,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_PIVOT_LAYOUT:ED_OUTAREA\">Jelölje ki a területet, ahol a kimutatástábla eredményeit meg kívánja jeleníteni.</ahelp>"
-#. h/=7
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14850,7 +13342,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 "Ha a kijelölt terület adatokat tartalmaz, a kimutatástábla felülírja az adatokat. A meglévő adatok elvesztésének megakadályozása érdekében hagyja, hogy a kimutatástábla automatikusan válassza ki az eredmények megjelenítésére használt területet."
-#. CVEI
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14860,7 +13351,6 @@ msgctxt ""
msgid "Ignore empty rows"
msgstr "Üres sorok mellőzése"
-#. i89N
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14870,7 +13360,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Az üres mezőket figyelmen kívül hagyja az adatforrásban.</ahelp>"
-#. /hCj
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14880,7 +13369,6 @@ msgctxt ""
msgid "Identify categories"
msgstr "Kategóriák azonosítása"
-#. eYY)
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14890,7 +13378,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Címke nélküli sorokat automatikusan hozzárendel a fenti sor kategóriájához.</ahelp>"
-#. /z)-
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14900,7 +13387,6 @@ msgctxt ""
msgid "Total columns"
msgstr "Összes oszlop"
-#. 4f,*
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14910,7 +13396,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Az oszlopösszegek végösszegét számítja ki, és jeleníti meg.</ahelp>"
-#. U_kT
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14920,7 +13405,6 @@ msgctxt ""
msgid "Total rows"
msgstr "Összes sor"
-#. R*,G
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14930,7 +13414,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">A sorösszegek végösszegét számítja ki, és jeleníti meg.</ahelp>"
-#. KB_h
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14939,7 +13422,6 @@ msgctxt ""
msgid "Add filter"
msgstr "Szűrő hozzáadása"
-#. )ght
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14948,7 +13430,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
msgstr "<ahelp hid=\".\">Egy Szűrő gombot ad hozzá a munkafüzet adatain alapuló kimutatástáblákhoz.</ahelp>"
-#. ,16p
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14957,7 +13438,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyit egy Szűrő párbeszédpanelt.</ahelp>"
-#. a+SU
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14966,7 +13446,6 @@ msgctxt ""
msgid "Enable drill to details"
msgstr "Részletek feltárásának engedélyezése"
-#. u_q.
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14975,7 +13454,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 "<ahelp hid=\".\">Jelölje be ezt a jelölőnégyzetet, és kattintson duplán egy elemcímkére a táblázatban az elem részleteinek megjelenítéséhez, illetve elrejtéséhez. Törölje ezt a jelölőnégyzetet, és kattintson duplán egy táblázatcellára a cella tartalmának szerkesztéséhez.</ahelp>"
-#. y=[E
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14984,7 +13462,6 @@ msgctxt ""
msgid "To examine details inside a pivot table"
msgstr "Egy kimutatástábla részleteinek vizsgálata"
-#. S]uz
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14993,7 +13470,6 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Tegye az alábbiak közül az egyiket:"
-#. P!$y
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15002,7 +13478,6 @@ msgctxt ""
msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
msgstr "Jelöljön ki egy cellatartományt, majd válassza az <emph>Adatok - Csoportosítás és vázlat - Részletek</emph> lehetőséget."
-#. e@9R
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15011,7 +13486,6 @@ msgctxt ""
msgid "Double-click a field in the table."
msgstr "Kattintson duplán egy mezőre a táblázatban."
-#. [lG[
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15020,7 +13494,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 "Ha egy olyan mezőre kattint duplán, amelynek szomszédos mezői vannak ugyanazon a szinten, megjelenik a <emph>Részletek megjelenítése</emph> párbeszédablak:"
-#. @T=s
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15029,7 +13502,6 @@ msgctxt ""
msgid "Show Detail"
msgstr "Részletek megjelenítése"
-#. EBE0
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15038,7 +13510,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki azt a mezőt, amely jellemzőit meg akarja tekinteni.</ahelp>"
-#. =:t6
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15048,7 +13519,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/04/01020000.xhp\" name=\"Kimutatástábla gyorsbillentyűk\">Kimutatástábla gyorsbillentyűk</link>"
-#. i4kn
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15057,7 +13527,6 @@ msgctxt ""
msgid "Column & Row Headers"
msgstr "Oszlop- és sorfejlécek"
-#. 5ZPd
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15066,7 +13535,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>munkafüzetek; oszlopok/sorok fejlécének megjelenítése</bookmark_value><bookmark_value>megjelenítés; oszlopok/sorok fejléce</bookmark_value>"
-#. jgf2
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15076,7 +13544,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=\"Oszlop- és sorfejlécek\">Oszlop- és sorfejlécek</link>"
-#. 2KYN
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15086,7 +13553,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Megjeleníti az oszlop- és sorfejléceket.</ahelp>"
-#. Cf05
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15096,7 +13562,6 @@ msgctxt ""
msgid "To hide the column and row headers unmark this menu entry."
msgstr "Az oszlop- valamint a sorfejlécek elrejtéséhez törölje a menüpont jelölését."
-#. kA|4
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15106,7 +13571,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 "Az oszlop- és sorfejlécek nézetét az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Táblázatkezelő - Nézet\">%PRODUCTNAME Calc - Nézet</link></emph> lapon is beállíthatja."
-#. z[3T
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15115,7 +13579,6 @@ msgctxt ""
msgid "Define Label Range"
msgstr "Címkeintervallum megadása"
-#. KJHW
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15124,7 +13587,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
msgstr "<bookmark_value>munkalapok; címketartományok megadása</bookmark_value><bookmark_value>címketartományok munkalapokban</bookmark_value>"
-#. 7Wb/
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15134,7 +13596,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\">Címkeintervallum megadása</link></variable>"
-#. .rfT
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15144,7 +13605,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\">Megnyit egy párbeszédablakot, amelyen egy címketartományt lehet meghatározni.</ahelp></variable>"
-#. +kZG
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15154,7 +13614,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 "A címketartomány cellatartalmát a képletekben nevekként használhatja - a $[officename] a napok, illetve hónapok előre meghatározott neveihez hasonlóan ezeket is felismeri. A nevek automatikusan kiegészítésre kerülnek, amikor egy képletben megadja őket. Ezenkívül a címketartományok által meghatározott nevek prioritást élveznek az automatikusan generált tartományok által meghatározott nevekkel szemben."
-#. ?tN5
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15164,7 +13623,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 "Azonos címkéket tartalmazó, különböző munkalapon levő intervallumokat állíthat be. A $[officename] először az aktuális munkalap címkeintervallumait keresi meg, majd sikertelen keresés után más munkalapok tartományai után kutat."
-#. HhO+
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15174,7 +13632,6 @@ msgctxt ""
msgid "Range"
msgstr "Tartomány"
-#. 2\-X
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15184,7 +13641,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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Megjeleníti az összes címketartomány cellahivatkozásait.</ahelp> Ha egy címketartományt el kíván távolítani a listából, akkor jelölje ki, majd kattintson a <emph>Törlés</emph> gombra."
-#. fsKZ
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15194,7 +13650,6 @@ msgctxt ""
msgid "Contains column labels"
msgstr "Oszlopcímkéket tartalmaz"
-#. Zg+B
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15204,7 +13659,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\">A jelenlegi címkeintervallumba beleveszi az oszlopcímkéket is.</ahelp>"
-#. 6m[o
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15214,7 +13668,6 @@ msgctxt ""
msgid "Contains row labels"
msgstr "Sorcímkéket tartalmaz"
-#. o4[7
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15224,7 +13677,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_ROWHEAD\">Beleveszi a sorcímkéket az aktuális címketartományba.</ahelp>"
-#. nLL+
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15234,7 +13686,6 @@ msgctxt ""
msgid "For data range"
msgstr "Adattartomány"
-#. Qp^j
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15244,7 +13695,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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Beállítja a kijelölt címketartományhoz érvényes adattartományt. Ennek megváltoztatásához kattintson a munkalapra, és válasszon egy másik tartományt az egérrel.</ahelp>"
-#. HHEF
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15254,7 +13704,6 @@ msgctxt ""
msgid "Add"
msgstr "Hozzáadás"
-#. 2E1,
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15264,7 +13713,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\">Hozzáadja az aktuális címkeintervallumot a listához.</ahelp>"
-#. bbPU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15273,7 +13721,6 @@ msgctxt ""
msgid "Statistical Functions Part Two"
msgstr "Statisztikai függvények - második rész"
-#. rs?J
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15283,7 +13730,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=\"Statisztikai függvények - második rész\">Statisztikai függvények - második rész</link></variable>"
-#. ?ECF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15292,7 +13738,6 @@ msgctxt ""
msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
msgstr "<bookmark_value>INVERZ.F függvény</bookmark_value><bookmark_value>FINV függvény, lásd: INVERZ.F függvény</bookmark_value><bookmark_value>inverz F-valószínűségeloszlás</bookmark_value>"
-#. p;yj
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15302,7 +13747,6 @@ msgctxt ""
msgid "FINV"
msgstr "INVERZ.F"
-#. JZSU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15312,7 +13756,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 "<ahelp hid=\"HID_FUNC_FINV\">Az F valószínűségi eloszlás inverzét számítja ki.</ahelp> Az F-eloszlás az F-próbákhoz használandó, pontosabban ahhoz, hogy egy két eltérő adathalmaz közötti viszonyt beállítson."
-#. bobk
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15322,7 +13765,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. Y7Cp
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15332,7 +13774,6 @@ msgctxt ""
msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "INVERZ.F(szám; szabadsági_fok_1; szabadsági_fok_2)"
-#. ]N$4
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15342,7 +13783,6 @@ msgctxt ""
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "A <emph>szám</emph> az a valószínűségi érték, amelyre vonatkozóan az inverz F eloszlást ki kívánja számítani."
-#. _*eL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15352,7 +13792,6 @@ msgctxt ""
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "A <emph>szabadsági_fok_1</emph> az F-eloszlás számlálójában található szabadsági fok."
-#. QTr]
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15362,7 +13801,6 @@ msgctxt ""
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "A <emph>szabadsági_fok_2</emph> az F-eloszlás nevezőjében található szabadsági fok."
-#. WYYD
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15372,7 +13810,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Z5f2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15382,7 +13819,6 @@ msgctxt ""
msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
msgstr "Az <item type=\"input\">=INVERZ.F(0,5;5;10)</item> képlet eredménye 0,93."
-#. =Khl
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15391,7 +13827,6 @@ msgctxt ""
msgid "<bookmark_value>FISHER function</bookmark_value>"
msgstr "<bookmark_value>FISHER függvény</bookmark_value>"
-#. RSXg
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15401,7 +13836,6 @@ msgctxt ""
msgid "FISHER"
msgstr "FISHER"
-#. e-*\
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15411,7 +13845,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\">Kiszámítja x Fisher-transzformáltját, és létrehoz egy normál eloszláshoz közeli függvényt.</ahelp>"
-#. ]=.u
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15421,7 +13854,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. H6mq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15431,7 +13863,6 @@ msgctxt ""
msgid "FISHER(Number)"
msgstr "FISHER(szám)"
-#. V8eS
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15441,7 +13872,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value to be transformed."
msgstr "A <emph>szám</emph> a transzformálni kívánt érték."
-#. CIcA
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15451,7 +13881,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Q);(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15461,7 +13890,6 @@ msgctxt ""
msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
msgstr "A <item type=\"input\">=FISHER(0,5)</item> képlet eredménye 0,55."
-#. OE;[
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15470,7 +13898,6 @@ msgctxt ""
msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
msgstr "<bookmark_value>INVERZ.FISHER függvény</bookmark_value><bookmark_value>FISHERINV függvény, lásd: INVERZ.FISHER függvény</bookmark_value><bookmark_value>inverz Fisher-transzformáció</bookmark_value>"
-#. u#a[
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15480,7 +13907,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr "INVERZ.FISHER"
-#. 1o}D
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15490,7 +13916,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\">Kiszámítja x inverz-Fisher-transzformáltját, és létrehoz egy normál eloszláshoz közeli függvényt.</ahelp>"
-#. nZ2R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15500,7 +13925,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. lnG.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15510,7 +13934,6 @@ msgctxt ""
msgid "FISHERINV(Number)"
msgstr "INVERZ.FISHER(szám)"
-#. 1+^1
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15520,7 +13943,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
msgstr "A <emph>szám</emph> a visszirányú transzformációnak alávetni kívánt érték."
-#. p-Sz
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15530,7 +13952,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. C~9g
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15540,7 +13961,6 @@ msgctxt ""
msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
msgstr "Az <item type=\"input\">=INVERZ.FISHER(0,5)</item> képlet eredménye 0,46."
-#. *A)K
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15549,7 +13969,6 @@ msgctxt ""
msgid "<bookmark_value>FTEST function</bookmark_value>"
msgstr "<bookmark_value>F.PRÓBA függvény</bookmark_value><bookmark_value>FTEST függvény, lásd: F.PRÓBA függvény</bookmark_value>"
-#. ID@|
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15559,7 +13978,6 @@ msgctxt ""
msgid "FTEST"
msgstr "F.PRÓBA"
-#. !18z
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15569,7 +13987,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Egy F-próba eredményét adja vissza.</ahelp>"
-#. 6XzL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15579,7 +13996,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 2{G#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15589,7 +14005,6 @@ msgctxt ""
msgid "FTEST(Data1; Data2)"
msgstr "F.PRÓBA(adatok_1; adatok_2)"
-#. S]my
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15599,7 +14014,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first record array."
msgstr "Az <emph>adatok_1</emph> az első rekordtömb."
-#. !=z6
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15609,7 +14023,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second record array."
msgstr "Az <emph>adatok_2</emph> a második rekordtömb."
-#. \=KG
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15619,7 +14032,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. ~+}p
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15629,7 +14041,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 "Az <item type=\"input\">=F.PRÓBA(A1:A30;B1:B12)</item> függvény kiszámítja, hogy a két adathalmaz szórásnégyzete különbözik-e, és megadja a valószínűségét annak, hogy mindkét halmaz ugyanabból a teljes sokaságból jött."
-#. BjV:
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15638,7 +14049,6 @@ msgctxt ""
msgid "<bookmark_value>FDIST function</bookmark_value>"
msgstr "<bookmark_value>F.ELOSZLÁS függvény</bookmark_value><bookmark_value>FDIST függvény, lásd: F.ELOSZLÁS függvény</bookmark_value>"
-#. ko~R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15648,7 +14058,6 @@ msgctxt ""
msgid "FDIST"
msgstr "F.ELOSZLÁS"
-#. 1)e(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15658,7 +14067,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Kiszámítja az F-eloszlás értékeit.</ahelp>"
-#. n;]_
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15668,7 +14076,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ;FMS
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15678,7 +14085,6 @@ msgctxt ""
msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "F.ELOSZLÁS(szám; szabadsági_fok_1; szabadsági_fok_2)"
-#. o-?p
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15688,7 +14094,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "A <emph>szám</emph> az az érték, amelyre vonatkozóan az F-eloszlást ki kívánja számítani."
-#. L~K.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15698,7 +14103,6 @@ msgctxt ""
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "A <emph>szabadsági_fok_1</emph> az F-eloszlás számlálójában található szabadsági fok."
-#. c8)a
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15708,7 +14112,6 @@ msgctxt ""
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "A <emph>szabadsági_fok_2</emph> az F-eloszlás nevezőjében található szabadsági fok."
-#. %1qB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15718,7 +14121,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. +FfT
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15728,7 +14130,6 @@ msgctxt ""
msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
msgstr "Az <item type=\"input\">=F.ELOSZLÁS(0,8;8;12)</item> képlet értéke 0,61."
-#. D?#J
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15737,7 +14138,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMA function</bookmark_value>"
msgstr "<bookmark_value>GAMMA függvény</bookmark_value>"
-#. :49r
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15746,7 +14146,6 @@ msgctxt ""
msgid "GAMMA"
msgstr "GAMMA"
-#. (=d)
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15755,7 +14154,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
msgstr "<ahelp hid=\".\">A gamma-függvény értékét adja vissza.</ahelp> Az INVERZ.GAMMA nem a GAMMA, hanem a GAMMA.ELOSZLÁS inverze."
-#. !=U@
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15764,7 +14162,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. J5pn
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15773,7 +14170,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
msgstr "A <emph>szám</emph> azon érték, amelyre vonatkozóan a gamma-függvényt ki kívánja számítani."
-#. q^02
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15782,7 +14178,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
msgstr "<bookmark_value>INVERZ.GAMMA függvény</bookmark_value><bookmark_value>GAMMAINV függvény, lásd: INVERZ.GAMMA függvény</bookmark_value>"
-#. b@\R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15792,7 +14187,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr "INVERZ.GAMMA"
-#. (`;~
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15802,7 +14196,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 "<ahelp hid=\"HID_FUNC_GAMMAINV\">A Gamma-eloszlásfüggvény – GAMMA.ELOSZLÁS – inverzét számítja ki.</ahelp> Ez a függvény lehetővé teszi, hogy különböző eloszlású változókat keressen."
-#. }/1.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15812,7 +14205,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. LPdY
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15822,7 +14214,6 @@ msgctxt ""
msgid "GAMMAINV(Number; Alpha; Beta)"
msgstr "INVERZ.GAMMA(szám; alfa; béta)"
-#. bsA3
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15832,7 +14223,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "A <emph>szám</emph> az a valószínűségi érték, amelyre vonatkozóan az inverz gamma-eloszlást ki kívánja számítani."
-#. G%*0
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15842,7 +14232,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "Az <emph>alfa</emph> a gamma-eloszlás alfa paramétere."
-#. 3e+y
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15852,7 +14241,6 @@ msgctxt ""
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "A <emph>béta</emph> a gamma-eloszlás béta paramétere."
-#. Nccf
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15862,7 +14250,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. fWf1
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15872,7 +14259,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
msgstr "Az <item type=\"input\">=INVERZ.GAMMA(0,8;1;1)</item> képlet eredménye 1,61."
-#. mFHc
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15881,7 +14267,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
msgstr "<bookmark_value>GAMMALN függvény</bookmark_value><bookmark_value>gamma-függvény természetes alapú logaritmusa</bookmark_value>"
-#. X3zn
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15891,7 +14276,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr "GAMMALN"
-#. bNZJ
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15901,7 +14285,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\">A gamma-függvény természetes alapú logaritmusát számítja ki. G(x).</ahelp>"
-#. dRiG
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15911,7 +14294,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 6yw?
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15921,7 +14303,6 @@ msgctxt ""
msgid "GAMMALN(Number)"
msgstr "GAMMALN(szám)"
-#. f]-Y
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15931,7 +14312,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "A <emph>szám</emph> az az érték, amelyre vonatkozóan a gamma-függvény természetes logaritmusát ki kívánja számítani."
-#. EmVU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15941,7 +14321,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. @w@j
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15951,7 +14330,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
msgstr "A <item type=\"input\">=GAMMALN(2)</item> képlet eredménye 0."
-#. +:o=
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15960,7 +14338,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
msgstr "<bookmark_value>GAMMA.ELOSZLÁS függvény</bookmark_value><bookmark_value>GAMMADIST függvény, lásd: GAMMA.ELOSZLÁS függvény</bookmark_value>"
-#. ?IpK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15970,7 +14347,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr "GAMMA.ELOSZLÁS"
-#. cti)
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15980,7 +14356,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Kiszámítja a gamma-eloszlás értékeit.</ahelp>"
-#. Q$U?
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15989,7 +14364,6 @@ msgctxt ""
msgid "The inverse function is GAMMAINV."
msgstr "Az inverz függvény az INVERZ.GAMMA."
-#. q/q=
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15999,7 +14373,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. j2Eq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16009,7 +14382,6 @@ msgctxt ""
msgid "GAMMADIST(Number; Alpha; Beta; C)"
msgstr "GAMMA.ELOSZLÁS(szám; alfa; béta; c)"
-#. DlO$
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16019,7 +14391,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
msgstr "A <emph>szám</emph> azon érték, amelyre vonatkozóan a gamma-eloszlást ki kívánja számítani."
-#. JKSI
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16029,7 +14400,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "Az <emph>alfa</emph> a gamma-eloszlás alfa paramétere."
-#. 1U$x
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16039,7 +14409,6 @@ msgctxt ""
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "A <emph>béta</emph> a gamma-eloszlás béta paramétere."
-#. -m?(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16049,7 +14418,6 @@ msgctxt ""
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
msgstr "A <emph>c</emph> (opcionális) = 0 a sűrűségfüggvényt számítja ki; a <emph>c</emph> = 1 az eloszlást számítja ki."
-#. jJ0a
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16059,7 +14427,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. 4b{e
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16069,7 +14436,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
msgstr "A <item type=\"input\">=GAMMA.ELOSZLÁS(2;1;1;1)</item> képlet eredménye 0,86."
-#. 5rf$
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16078,7 +14444,6 @@ msgctxt ""
msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
msgstr "<bookmark_value>GAUSS függvény</bookmark_value><bookmark_value>normál eloszlás;standard</bookmark_value>"
-#. $L(l
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16088,7 +14453,6 @@ msgctxt ""
msgid "GAUSS"
msgstr "GAUSS"
-#. .jy2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16098,7 +14462,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Kiszámítja a standardizált normális kumulatív eloszlást.</ahelp>"
-#. K^FB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16107,7 +14470,6 @@ msgctxt ""
msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
msgstr "Ez GAUSS(x)=STNORMELOSZL(x)-0,5"
-#. {,|R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16117,7 +14479,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. L;vg
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16127,7 +14488,6 @@ msgctxt ""
msgid "GAUSS(Number)"
msgstr "GAUSS(szám)"
-#. NdMF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16137,7 +14497,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
msgstr "A <emph>szám</emph> az az érték, amelyre vonatkozóan a standard normál eloszlás kiszámításra kerül."
-#. eVOK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16147,7 +14506,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. `:3d
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16157,7 +14515,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
msgstr "<item type=\"input\">=GAUSS(0,19)</item> = 0,08"
-#. `gXF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16167,7 +14524,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
msgstr "<item type=\"input\">=GAUSS(0,0375)</item> = 0,01"
-#. N3P^
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16176,7 +14532,6 @@ msgctxt ""
msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
msgstr "<bookmark_value>MÉRTANI.KÖZÉP függvény</bookmark_value><bookmark_value>GEOMEAN függvény, lásd: MÉRTANI.KÖZÉP függvény</bookmark_value><bookmark_value>átlagok;mértani</bookmark_value>"
-#. ]uCX
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16186,7 +14541,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr "MÉRTANI.KÖZÉP"
-#. 78$b
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16196,7 +14550,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Kiszámítja egy minta mértani közepét.</ahelp>"
-#. 5K)d
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16206,7 +14559,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. |T_7
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16216,7 +14568,6 @@ msgctxt ""
msgid "GEOMEAN(Number1; Number2; ...Number30)"
msgstr "MÉRTANI.KÖZÉP(szám_1; szám_2; ...; szám_30)"
-#. ?`uK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16226,7 +14577,6 @@ msgctxt ""
msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
msgstr "A <emph>szám_1, szám_2,... szám_30</emph> véletlen mintát képviselő numerikus argumentumok vagy tartományok."
-#. o/4;
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16236,7 +14586,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. Knm@
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16246,7 +14595,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 "<item type=\"input\">=MÉRTANI.KÖZÉP(23;46;69)</item> = 41,79. Tehát a véletlen minta mértani közepe 41,79."
-#. 0O;:
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16255,7 +14603,6 @@ msgctxt ""
msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
msgstr "<bookmark_value>RÉSZÁTLAG függvény</bookmark_value><bookmark_value>TRIMMEAN függvény, lásd: RÉSZÁTLAG függvény</bookmark_value><bookmark_value>átlagok;szélső értékek kihagyása</bookmark_value>"
-#. =Mi#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16265,7 +14612,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr "RÉSZÁTLAG"
-#. O81(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16275,7 +14621,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 "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Egy adathalmaz középső részének átlagát számítja ki úgy, hogy az adathalmaz felső és alsó részén az alfa paraméterrel megadott százalékú adatpontot elhagyja.</ahelp>"
-#. ~tqI
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16285,7 +14630,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. Xzuh
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16295,7 +14639,6 @@ msgctxt ""
msgid "TRIMMEAN(Data; Alpha)"
msgstr "RÉSZÁTLAG(adatok; alfa)"
-#. 0Dgd
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16305,7 +14648,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the array of data in the sample."
msgstr "Az <emph>adatok</emph> a minta adatait tartalmazó tömb."
-#. YoM8
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16315,7 +14657,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
msgstr "Az <emph>alfa</emph> a figyelmen kívül hagyott marginális adatok százalékos aránya."
-#. 7b4w
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16325,7 +14666,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. lkf+
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16335,7 +14675,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 "A <item type=\"input\">=RÉSZÁTLAG(A1:A50; 0,1)</item> kiszámítja az A1:A50 tartományban található számok középértékét az értékek legmagasabb értékeket képviselő felső 5%-ának, illetve a legalacsonyabb értékeket képviselő alsó 5%-ának figyelmen kívül hagyásával. A százalékos értékek a csonkítatlan átlagérték mennyiségére vonatkoznak, nem az összeadandó számok darabszámára."
-#. ^`=|
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16344,7 +14683,6 @@ msgctxt ""
msgid "<bookmark_value>ZTEST function</bookmark_value>"
msgstr "<bookmark_value>Z.PRÓBA függvény</bookmark_value><bookmark_value>ZTEST függvény, lásd: Z.PRÓBA függvény</bookmark_value>"
-#. 6[)V
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16354,7 +14692,6 @@ msgctxt ""
msgid "ZTEST"
msgstr "Z.PRÓBA"
-#. A^R5
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16364,7 +14701,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 "<ahelp hid=\"HID_FUNC_GTEST\">Kiszámítja annak a valószínűségét, hogy egy észlelt z-statisztika nagyobb lesz, mint a minta alapján kiszámított.</ahelp>"
-#. -!Ho
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16374,7 +14710,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. ifNL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16384,7 +14719,6 @@ msgctxt ""
msgid "ZTEST(Data; mu; Sigma)"
msgstr "Z.PRÓBA(adatok; μ; σ)"
-#. OzKc
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16394,7 +14728,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr "Az <emph>adatok</emph> az adott minta, amelyet egy normális eloszlású sokaságból vettek."
-#. [:%-
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16404,7 +14737,6 @@ msgctxt ""
msgid "<emph>mu</emph> is the known mean of the population."
msgstr "A <emph>μ</emph> a sokaság ismert átlaga."
-#. +*8(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16414,7 +14746,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 "Az opcionális <emph>σ</emph> a sokaság ismert szórása. Ha nincs megadva, akkor a megadott minta szórása lesz használva."
-#. Z60f
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16423,7 +14754,6 @@ msgctxt ""
msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
msgstr "Lásd még a <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">wikioldalt</link>."
-#. Hi(U
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16432,7 +14762,6 @@ msgctxt ""
msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
msgstr "<bookmark_value>HARM.KÖZÉP függvény</bookmark_value><bookmark_value>HARMEAN függvény, lásd: HARM.KÖZÉP függvény</bookmark_value><bookmark_value>átlagok;harmonikus</bookmark_value>"
-#. b`un
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16442,7 +14771,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr "HARM.KÖZÉP"
-#. (FYq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16452,7 +14780,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Kiszámítja egy adathalmaz harmonikus középértékét.</ahelp>"
-#. a7)A
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16462,7 +14789,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. p:b#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16472,7 +14798,6 @@ msgctxt ""
msgid "HARMEAN(Number1; Number2; ...Number30)"
msgstr "HARM.KÖZÉP(szám_1; szám_2; ...; szám_30)"
-#. N9Me
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16482,7 +14807,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 "A <emph>szám_1, szám_2,... szám_30</emph> legfeljebb 30 érték vagy tartomány, amelyekre kiszámítandó a harmonikus közép értéke."
-#. *~5k
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16492,7 +14816,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. H?sh
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16502,7 +14825,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 "<item type=\"input\">=HARM.KÖZÉP(23;46;69)</item> = 37,64. Ennek a véletlen mintának 37,64 a harmonikus közepe."
-#. ~Z/S
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16511,7 +14833,6 @@ msgctxt ""
msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
msgstr "<bookmark_value>HIPERGEOM.ELOSZLÁS függvény</bookmark_value><bookmark_value>HYPGEOMDIST függvény, lásd: HIPERGEOM.ELOSZLÁS függvény</bookmark_value><bookmark_value>mintavétel visszatétel nélkül</bookmark_value>"
-#. }hbd
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16521,7 +14842,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr "HIPERGEOM.ELOSZLÁS"
-#. .Jog
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16531,7 +14851,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Kiszámítja a hipergeometrikus eloszlást.</ahelp>"
-#. Qlh-
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16541,7 +14860,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. LGDf
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16551,7 +14869,6 @@ msgctxt ""
msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgstr "HIPERGEOM.ELOSZLÁS(x; n_minta; sikeres; n_sokaság)"
-#. pgh*
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16561,7 +14878,6 @@ msgctxt ""
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "Az <emph>x</emph> a véletlen mintán belül elért eredmények száma."
-#. E!n%
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16571,7 +14887,6 @@ msgctxt ""
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "Az <emph>n_minta</emph> a véletlen minta mérete."
-#. \3gV
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16581,7 +14896,6 @@ msgctxt ""
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "A <emph>sikeres</emph> a lehetséges eredmények száma a teljes sokaságon belül."
-#. \uMB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16591,7 +14905,6 @@ msgctxt ""
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "Az <emph>n_sokaság</emph> a teljes sokaság mérete."
-#. XC(S
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16601,7 +14914,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. vT/2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16611,7 +14923,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 "A <item type=\"input\">=HIPERGEOM.ELOSZLÁS(2;2;90;100)</item> eredményül 0,81-et ad. Ha az asztalról leeső 100 db vajas kenyérből 90 db a vajas felére esik, akkor ha 2 db vajas kenyeret ejt le az asztalról, akkor annak a valószínűsége, hogy mindkettő a vajas felére esik, 81%."
-#. W~BN
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16620,7 +14931,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. T]G3
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16630,7 +14940,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. +xLZ
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16640,7 +14949,6 @@ msgctxt ""
msgid "Contains column labels"
msgstr "Oszlopcímkéket tartalmaz"
-#. OKWl
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16650,7 +14958,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\">A kijelölt cellatartományok címkéket tartalmaznak.</ahelp>"
-#. xM46
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16660,7 +14967,6 @@ msgctxt ""
msgid "Insert or delete cells"
msgstr "Cellák beszúrása vagy törlése"
-#. cb8[
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16670,7 +14976,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Új rekordok hozzáadásakor automatikusan új sorokat és oszlopokat illeszt be a dokumentum adatbázis-tartományába.</ahelp> Az adatbázis-tartomány kézi frissítéséhez válassza az <emph>Adatok - Tartomány</emph> <emph>frissítése</emph> elemet."
-#. QhbV
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16680,7 +14985,6 @@ msgctxt ""
msgid "Keep formatting"
msgstr "Formázás megtartása"
-#. m/M5
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16690,7 +14994,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">A fejlécek és az első adatsor jelenlegi cellaformátumát alkalmazza a teljes adatbázis-tartományra.</ahelp>"
-#. ,\#B
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16700,7 +15003,6 @@ msgctxt ""
msgid "Don't save imported data"
msgstr "Ne mentsen importált adatot"
-#. qvdl
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16710,7 +15012,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 "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Csak az adatbázis-hivatkozást menti, nem a cella tartalmát.</ahelp>"
-#. vpx$
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16720,7 +15021,6 @@ msgctxt ""
msgid "Source:"
msgstr "Forrás:"
-#. }kFl
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16730,7 +15030,6 @@ msgctxt ""
msgid "Displays information about the current database source and any existing operators."
msgstr "Információkat jelenít meg az aktuális adatbázis forrásáról és a létező operátorokról."
-#. eK,c
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16740,7 +15039,6 @@ msgctxt ""
msgid "More <<"
msgstr "Részletek <<"
-#. wpEC
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16750,7 +15048,6 @@ msgctxt ""
msgid "Hides the additional options."
msgstr "Elrejti a további beállításokat."
-#. zuv\
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16759,7 +15056,6 @@ msgctxt ""
msgid "HOUR"
msgstr "ÓRA"
-#. 2K]k
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16768,7 +15064,6 @@ msgctxt ""
msgid "<bookmark_value>HOUR function</bookmark_value>"
msgstr "<bookmark_value>ÓRA függvény</bookmark_value><bookmark_value>HOUR függvény, lásd: ÓRA függvény</bookmark_value>"
-#. \cbt
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16778,7 +15073,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\">ÓRA</link></variable>"
-#. ;X_9
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16788,7 +15082,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_STUNDE\">A megadott időérték óra részét adja vissza.</ahelp> Az óra egy 0 és 23 közötti egész szám."
-#. Lk)/
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16798,7 +15091,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. kg4o
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16808,7 +15100,6 @@ msgctxt ""
msgid "HOUR(Number)"
msgstr "ÓRA(szám)"
-#. +8@T
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16818,7 +15109,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
msgstr "A <emph>szám</emph> egy időérték, amelyre vonatkozóan az óraértéket meg kívánja kapni."
-#. ~GO0
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16828,7 +15118,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. -X?F
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16838,7 +15127,6 @@ msgctxt ""
msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
msgstr "Az <item type=\"input\">=ÓRA(MOST())</item> az aktuális órát adja vissza."
-#. gK.R
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16848,7 +15136,6 @@ msgctxt ""
msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
msgstr "Az <item type=\"input\">=ÓRA(C4)</item> függvény a 17-es értéket adja vissza, ha a C4 = <item type=\"input\">17:20:00</item>."
-#. S%jC
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16858,7 +15145,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=\"ÉV\">ÉV</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MOST\">MOST</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"PERC\">PERC</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"HÓNAP\">HÓNAP</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NAP\">NAP</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"HÉT.NAPJA\">HÉT.NAPJA</link>."
-#. Nnq0
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16867,7 +15153,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part One"
msgstr "Kiegészítő függvények; Műszaki függvények listája - első rész"
-#. ^HrA
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16876,7 +15161,6 @@ msgctxt ""
msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
msgstr "<bookmark_value>kiegészítő; műszaki függvények</bookmark_value><bookmark_value>műszaki függvények</bookmark_value>"
-#. ]3Bh
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16886,7 +15170,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part One"
msgstr "Kiegészítő függvények; Műszaki függvények listája - első rész"
-#. -;j/
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16896,7 +15179,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=\"Alapvető konverziós függvények\">Alapvető konverziós függvények</link>"
-#. If)H
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16906,7 +15188,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=\"Műszaki függvények - második rész\">Műszaki függvények - második rész</link>"
-#. d5M.
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16916,7 +15197,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=\"Vissza az Áttekintéshez\">Vissza az Áttekintéshez</link>"
-#. L_]8
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16925,7 +15205,6 @@ msgctxt ""
msgid "<bookmark_value>Bessel functions</bookmark_value>"
msgstr "<bookmark_value>Bessel-függvények</bookmark_value>"
-#. )F?P
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16935,7 +15214,6 @@ msgctxt ""
msgid "BESSELI"
msgstr "BESSELI"
-#. +:/1
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16945,7 +15223,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Kiszámítja a módosított Bessel-függvény értékét.</ahelp>"
-#. -OT!
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16955,7 +15232,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. 2D/(
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16965,7 +15241,6 @@ msgctxt ""
msgid "BESSELI(X; N)"
msgstr "BESSELI(X; N)"
-#. /elH
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16975,7 +15250,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "Az <emph>X</emph> az érték, amelyhez a függvény értékét kiszámolja."
-#. HhwV
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16985,7 +15259,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr "Az <emph>N</emph> a Bessel-függvény rendje."
-#. PA~X
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16995,7 +15268,6 @@ msgctxt ""
msgid "BESSELJ"
msgstr "BESSELJ"
-#. ?FK?
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17005,7 +15277,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">A Bessel-függvényt (hengerfüggvényt) számítja ki.</ahelp>"
-#. :%D=
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17015,7 +15286,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. sqpQ
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17025,7 +15295,6 @@ msgctxt ""
msgid "BESSELJ(X; N)"
msgstr "BESSELJ(X; N)"
-#. MR2u
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17035,7 +15304,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "Az <emph>X</emph> az érték, amelyhez a függvény értékét kiszámolja."
-#. $Rcr
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17045,7 +15313,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr "Az <emph>N</emph> a Bessel-függvény rendje."
-#. 9u|6
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17055,7 +15322,6 @@ msgctxt ""
msgid "BESSELK"
msgstr "BESSELK"
-#. p`R0
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17065,7 +15331,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Kiszámítja a módosított Bessel-függvény értékét.</ahelp>"
-#. #oou
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17075,7 +15340,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. I/=#
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17085,7 +15349,6 @@ msgctxt ""
msgid "BESSELK(X; N)"
msgstr "BESSELK(X; N)"
-#. joQ:
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17095,7 +15358,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "Az <emph>X</emph> az érték, amelyhez a függvény értékét kiszámolja."
-#. #fYg
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17105,7 +15367,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr "Az <emph>N</emph> a Bessel-függvény rendje."
-#. .Q%f
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17115,7 +15376,6 @@ msgctxt ""
msgid "BESSELY"
msgstr "BESSELY"
-#. .fLm
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17125,7 +15385,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Kiszámítja a módosított Bessel-függvény értékét.</ahelp>"
-#. ,}Eb
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17135,7 +15394,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. /:Uf
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17145,7 +15403,6 @@ msgctxt ""
msgid "BESSELY(X; N)"
msgstr "BESSELY(X; N)"
-#. ej#m
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17155,7 +15412,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "Az <emph>X</emph> az érték, amelyhez a függvény értékét kiszámolja."
-#. CJQr
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17165,7 +15421,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr "Az <emph>N</emph> a Bessel-függvény rendje."
-#. 5D@k
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17174,7 +15429,6 @@ msgctxt ""
msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
msgstr "<bookmark_value>BIN2DEC függvény</bookmark_value><bookmark_value>átalakítás;bináris számokat decimális számokra</bookmark_value>"
-#. ,JI;
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17184,7 +15438,6 @@ msgctxt ""
msgid "BIN2DEC"
msgstr "BIN2DEC"
-#. K27c
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17194,7 +15447,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\">Az eredmény a megadott bináris szám decimális alakja.</ahelp>"
-#. TW+j
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17204,7 +15456,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. a[[+
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17214,7 +15465,6 @@ msgctxt ""
msgid "BIN2DEC(Number)"
msgstr "BIN2DEC (szám)"
-#. ..7_
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17224,7 +15474,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 "A <emph>szám</emph> egy bináris szám. A szám legfeljebb 10 helyi értékből (bitből) állhat. A legszignifikánsabb bit az előjelbit. Negatív számot kettes komplemens képzésével lehet beírni."
-#. 1814
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17234,7 +15483,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. !/Ep
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17244,7 +15492,6 @@ msgctxt ""
msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
msgstr "A <item type=\"input\">=BIN2DEC(1100100)</item> függvény a 100-at adja eredményül."
-#. 1.H=
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17253,7 +15500,6 @@ msgctxt ""
msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
msgstr "<bookmark_value>BIN2HEX függvény</bookmark_value><bookmark_value>átalakítás;bináris számokat hexadecimális számokra</bookmark_value>"
-#. cTpj
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17263,7 +15509,6 @@ msgctxt ""
msgid "BIN2HEX"
msgstr "BIN2HEX"
-#. BBAE
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17273,7 +15518,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\">Az eredmény a megadott bináris szám hexadecimális alakja.</ahelp>"
-#. FD0F
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17283,7 +15527,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. eOw*
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17293,7 +15536,6 @@ msgctxt ""
msgid "BIN2HEX(Number; Places)"
msgstr "BIN2HEX(szám; helyi_értékek)"
-#. ZUZD
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17303,7 +15545,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 "A <emph>szám</emph> egy bináris szám. A szám legfeljebb 10 helyi értékből (bitből) állhat. A legszignifikánsabb bit az előjelbit. Negatív számot kettes komplemens képzésével lehet beírni."
-#. e!mB
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17313,7 +15554,6 @@ msgctxt ""
msgid "Places means the number of places to be output."
msgstr "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-#. `a0b
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17323,7 +15563,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. b1\w
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17333,7 +15572,6 @@ msgctxt ""
msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
msgstr "A <item type=\"input\">=BIN2HEX(1100100;6)</item> függvény a 000064 eredményt adja."
-#. Y[!I
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17342,7 +15580,6 @@ msgctxt ""
msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
msgstr "<bookmark_value>BIN2OCT függvény</bookmark_value><bookmark_value>átalakítás;bináris számokat oktális számokra</bookmark_value>"
-#. ]Pyy
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17352,7 +15589,6 @@ msgctxt ""
msgid "BIN2OCT"
msgstr "BIN2OCT"
-#. CYKN
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17362,7 +15598,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\"> Az eredmény a megadott bináris szám oktális alakja.</ahelp>"
-#. TMOR
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17372,7 +15607,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Szintaxis"
-#. YWmO
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17382,7 +15616,6 @@ msgctxt ""
msgid "BIN2OCT(Number; Places)"
msgstr "BIN2OCT(szám; helyi_értékek)"
-#. R|v)
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17392,7 +15625,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 "A <emph>szám</emph> egy bináris szám. A szám legfeljebb 10 helyi értékből (bitből) állhat. A legszignifikánsabb bit az előjelbit. Negatív számot kettes komplemens képzésével lehet beírni."
-#. Owlo
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17402,7 +15634,6 @@ msgctxt ""
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-#. bZ=f
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17412,7 +15643,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. X]40
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17422,7 +15652,6 @@ msgctxt ""
msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
msgstr "A <item type=\"input\">=BIN2OCT(1100100;4)</item> függvény a 0144 eredményt adja."
-#. ,$-U
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17431,7 +15660,6 @@ msgctxt ""
msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
msgstr "<bookmark_value>DELTA függvény</bookmark_value><bookmark_value>felismerés;egyenlő számok</bookmark_value>"
-#. GvUp
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17441,7 +15669,6 @@ msgctxt ""
msgid "DELTA"
msgstr "DELTA"
-#. .[aY
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17450,48044 +15677,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\">Az eredmény IGAZ (1), ha a két szám, amely argumentumként van átadva, megegyezik, egyébként az eredmény HAMIS (0).</ahelp>"
-
-#. NP#~
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155435\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. G`jq
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145247\n"
-"132\n"
-"help.text"
-msgid "DELTA(Number1; Number2)"
-msgstr "DELTA(szám_1; szám_2)"
-
-#. D%48
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149002\n"
-"133\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=DELTA(1;2)</item> függvény 0-t ad eredményül."
-
-#. 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 függvény</bookmark_value><bookmark_value>átalakítás;decimális számokat bináris számokra</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\"> Az eredmény a megadott, -512 és 511 közé eső decimális szám bináris alakja.</ahelp>"
-
-#. nE!#
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145349\n"
-"57\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 1nJ[
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150569\n"
-"58\n"
-"help.text"
-msgid "DEC2BIN(Number; Places)"
-msgstr "DEC2OCT(szám; helyi_értékek)"
-
-#. 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 "A <emph>szám</emph> egy decimális szám. Ha a szám negatív, akkor a függvény egy 10 karakterből álló bináris számot ad eredményül. A legszignifikánsabb bit az előjelbit, az értéket a többi 9 bit adja."
-
-#. $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 "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-
-#. AiAP
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150265\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. {!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 "A <item type=\"input\">=DEC2BIN(100;8)</item> függvény a 01100100 értéket adja."
-
-#. 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 függvény</bookmark_value><bookmark_value>átalakítás;decimális számokat hexadecimális számokra</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\">Az eredmény a megadott decimális szám hexadecimális alakja.</ahelp>"
-
-#. kB{n
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150691\n"
-"73\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. F@l!
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147535\n"
-"74\n"
-"help.text"
-msgid "DEC2HEX(Number; Places)"
-msgstr "DEC2HEX(szám; helyi_értékek)"
-
-#. 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 "A <emph>szám</emph> egy decimális szám. Ha a szám negatív, akkor a függvény egy 10 karakterből álló (40 bites) hexadecimális számot ad eredményül. A legszignifikánsabb bit az előjelbit, az értéket a többi 39 bit adja."
-
-#. 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 "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-
-#. s=t]
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154869\n"
-"77\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=DEC2HEX(100;4)</item> függvény a 0064 értéket adja."
-
-#. 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 függvény</bookmark_value><bookmark_value>átalakítás;decimális számokat oktális számokra</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\">Az eredmény a megadott decimális szám oktális alakja.</ahelp>"
-
-#. MoI^
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153178\n"
-"65\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. BWNB
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148427\n"
-"66\n"
-"help.text"
-msgid "DEC2OCT(Number; Places)"
-msgstr "DEC2OCT(szám; helyi_értékek)"
-
-#. _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 "A <emph>szám</emph> egy decimális szám. Ha a szám negatív, akkor a függvény egy 10 karakterből álló (30 bites) oktális számot ad eredményül. A legszignifikánsabb bit az előjelbit, az értéket a többi 29 bit adja."
-
-#. 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 "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-
-#. @Alu
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147482\n"
-"69\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=DEC2OCT(100;4)</item> függvény a 0144 értéket adja eredményül."
-
-#. =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 függvény</bookmark_value><bookmark_value>Gauss-hibaintegrál</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\">Kiszámítja a Gauss-féle hibafüggvény értékeit.</ahelp>"
-
-#. }_YH
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152475\n"
-"137\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. )4h.
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3163824\n"
-"138\n"
-"help.text"
-msgid "ERF(LowerLimit; UpperLimit)"
-msgstr "ERF(alsó_korlát; felső_korlát)"
-
-#. 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 "Az <emph>alsó_korlát</emph> az integrál alsó korlátja."
-
-#. 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 "A <emph>felső_korlát</emph> (opcionális) az integrál felső korlátja. Ha az érték nincs megadva, akkor a függvény a 0 és az alsó_korlát közötti intervallumon számítja ki az integrál értékét."
-
-#. f[sI
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154819\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. %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 "Az <item type=\"input\">=ERF(0;1)</item> függvény a 0,842701 értéket adja vissza."
-
-#. ;5-O
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3145082\n"
-"help.text"
-msgid "<bookmark_value>ERFC function</bookmark_value>"
-msgstr "<bookmark_value>ERFC függvény</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\">Az x és végtelen közt kiszámítja a Gauss-féle hibafüggvény kiegészítő értékeit.</ahelp>"
-
-#. o\;8
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155839\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. OF-6
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153220\n"
-"146\n"
-"help.text"
-msgid "ERFC(LowerLimit)"
-msgstr "ERFC(alsó_korlát)"
-
-#. 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 "Az <emph>alsó_korlát</emph> az integrál alsó korlátja."
-
-#. ;3Cb
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146861\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. =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 "Az <item type=\"input\">=ERFC(1)</item> függvény a 0,157299 értéket adja vissza eredményként."
-
-#. [+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 függvény</bookmark_value><bookmark_value>számok;nagyobb vagy egyenlő</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 "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">Az eredmény 1, ha a <item type=\"literal\">szám</item> nagyobb vagy egyenlő a <item type=\"literal\">küszöbnél</item>.</ahelp>"
-
-#. OpX:
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150879\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. YM9f
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145212\n"
-"153\n"
-"help.text"
-msgid "GESTEP(Number; Step)"
-msgstr "GESTEP(szám; küszöb)"
-
-#. iAAQ
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153275\n"
-"154\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=GESTEP(5;1)</item> függvény 1-et ad eredményül."
-
-#. [_~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 függvény</bookmark_value><bookmark_value>átalakítás;hexadecimális számokat bináris számokra</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\">Az eredmény a megadott hexadecimális szám bináris alakja.</ahelp>"
-
-#. 3dHi
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3156117\n"
-"81\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Y4O3
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155847\n"
-"82\n"
-"help.text"
-msgid "HEX2BIN(Number; Places)"
-msgstr "HEX2BIN(szám; helyi_értékek)"
-
-#. 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 "A <emph>szám</emph> egy hexadecimális szám. A szám legfeljebb 10 helyi értékből állhat. A legszignifikánsabb bit az előjelbit, az értéket a többi bit adja eredményül. Negatív számot kettes komplemens képzésével lehet beírni."
-
-#. 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 "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-
-#. gx3:
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154052\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=HEX2BIN(64;8)</item> függvény a 01100100 számot adja eredményül."
-
-#. 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 függvény</bookmark_value><bookmark_value>átalakítás;hexadecimális számokat decimális számokra</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\">Az eredmény a megadott hexadecimális szám decimális alakja.</ahelp>"
-
-#. $JlR
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3143233\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. eQqx
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149293\n"
-"90\n"
-"help.text"
-msgid "HEX2DEC(Number)"
-msgstr "HEX2DEC(szám)"
-
-#. 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 "A <emph>szám</emph> egy hexadecimális szám. A szám legfeljebb 10 helyi értékből állhat. A legszignifikánsabb bit az előjelbit, az értéket a többi bit adja eredményül. Negatív számot kettes komplemens képzésével lehet beírni."
-
-#. h7%[
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154304\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=HEX2DEC(64)</item> képlet eredménye 100."
-
-#. 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 függvény</bookmark_value><bookmark_value>átalakítás;hexadecimális számokat oktális számokra</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\">Az eredmény a megadott hexadecimális szám oktális alakja.</ahelp>"
-
-#. nE{c
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145660\n"
-"96\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 6r8l
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151170\n"
-"97\n"
-"help.text"
-msgid "HEX2OCT(Number; Places)"
-msgstr "HEX2OCT(szám; helyi_értékek)"
-
-#. 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 "A <emph>szám</emph> egy hexadecimális szám. A szám legfeljebb 10 helyi értékből állhat. A legszignifikánsabb bit az előjelbit, az értéket a többi bit adja eredményül. Negatív számot kettes komplemens képzésével lehet beírni."
-
-#. ,+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 "A <emph>helyi_értékek</emph> a kimenetként használt helyi értékek száma."
-
-#. =-X0
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153901\n"
-"100\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=HEX2OCT(64;4)</item> függvény a 0144 számot adja eredményül."
-
-#. WN{I
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete"
-msgstr "Törlés"
-
-#. 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=\"Törlés\">Törlés</link>"
-
-#. RND^
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"par_id3159400\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Törli a kijelölt kimutatástáblát.</ahelp>"
-
-#. Hs^,
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Style"
-msgstr "Oldalstílus"
-
-#. BIr:
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"hd_id3157910\n"
-"1\n"
-"help.text"
-msgid "Page Style"
-msgstr "Oldalstílus"
-
-#. 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 "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Megnyit egy párbeszédablakot, amelyen a dokumentum minden oldalára vonatkozó megjelenítési beállításokat lehet meghatározni.</ahelp></variable>"
-
-#. [f`V
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"tit\n"
-"help.text"
-msgid "SECOND"
-msgstr "MPERC"
-
-#. _C5Y
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"bm_id3159390\n"
-"help.text"
-msgid "<bookmark_value>SECOND function</bookmark_value>"
-msgstr "<bookmark_value>MPERC függvény</bookmark_value><bookmark_value>SECOND függvény, lásd: MPERC függvény</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\">MPERC</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\">A megadott időérték másodperc részét adja vissza.</ahelp> A másodperc egy 0 és 59 közti egész szám."
-
-#. =bWB
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3154362\n"
-"88\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. (sjd
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148407\n"
-"89\n"
-"help.text"
-msgid "SECOND(Number)"
-msgstr "MPERC(szám)"
-
-#. 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 "A <emph>szám</emph> egy időérték, amelyre vonatkozóan a másodpercértéket meg kívánja kapni."
-
-#. s(e{
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3149992\n"
-"91\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. ]=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 "Az <item type=\"input\">=MPERC(MOST())</item> az aktuális másodpercet adja vissza."
-
-#. 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 "Az <item type=\"input\">=MPERC(C4)</item> függvény a 17-es értéket adja vissza, ha a C4 = <item type=\"input\">12:20:17</item>."
-
-#. =U;7
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column Break"
-msgstr "Oszloptörés"
-
-#. 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>munkafüzetek;oszloptörések törlése</bookmark_value><bookmark_value>törlés;kézi oszloptörések</bookmark_value><bookmark_value>oszloptörések;törlés</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=\"Oszloptörés\">Oszloptörés</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\">Eltávolítja az aktív cellától balra eső hasábtörést.</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 "Mozgassa a kurzort közvetlenül az oszloptöréstől jobbra található cellába (a töréspontot függőleges vonal jelöli), majd válassza a <emph>Szerkesztés - Töréspont törlése - Oszloptörés</emph> elemet. A kézi oszloptörés eltávolításra kerül."
-
-#. kz1z
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide Details"
-msgstr "Részletek elrejtése"
-
-#. y74a
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
-msgstr "<bookmark_value>munkalapok; részletek elrejtése</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=\"Részletek elrejtése\">Részletek elrejtése</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 "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Elrejti azt a csoportosított sort vagy oszlopot, ahol a kurzor áll. Minden csoportosított sor vagy oszlop elrejtéséhez jelölje ki a kivonatolt táblázatot, majd válassza ezt a parancsot.</ahelp>"
-
-#. ^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 "Az összes elrejtett csoport megjelenítéséhez jelölje ki a kivonatos táblázatot, majd válassza az <emph>Adatok - Kivonat</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Részletek\"><emph>Részletek</emph></link> lehetőséget."
-
-#. r^TR
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh"
-msgstr "Frissítés"
-
-#. /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=\"Frissítés\">Frissítés</link>"
-
-#. hlqq
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Frissíti a kimutatástáblát.</ahelp>"
-
-#. SZ)I
-#: 12090200.xhp
-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 "Egy kimutatástáblát tartalmazó Excel-táblázat importálása után kattintson a táblázatra, majd válassza az <emph>Adatok - Kimutatástábla - Frissítés</emph> lehetőséget."
-
-#. gag`
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Ranges"
-msgstr "Nyomtatási tartomány"
-
-#. 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=\"Nyomtatási tartományok\">Nyomtatási tartományok</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 "<ahelp hid=\".\">Kezeli a nyomtatási tartományokat. Csak a nyomtatási tartományban lévő cellák lesznek kinyomtatva.</ahelp>"
-
-#. /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 "Ha nem ad meg kézzel nyomtatási tartományt, a Calc egy automatikus tartományt jelöl ki, amelyben az összes nem üres cella benne van."
-
-#. %*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=\"Szerkesztés\">Szerkesztés</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 függvény</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 "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\"> A <emph>kezdő_dátum</emph> paraméterben megadott indulási dátumtól a <emph>hónapok</emph> paraméterben megadott számú hónappal eltérő hónap utolsó napjának dátumát adja eredményül.</ahelp>"
-
-#. F#+U
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150597\n"
-"233\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2PqT
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3150351\n"
-"234\n"
-"help.text"
-msgid "EOMONTH(StartDate; Months)"
-msgstr "EOMONTH (kezdő_dátum; hónapok)"
-
-#. 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 "A <emph>kezdő_dátum</emph> egy dátum (a számítás kezdőpontja)."
-
-#. 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 "A <emph>hónapok</emph> a kezdő dátum előtti (negatív), illetve utáni (pozitív) hónapok száma."
-
-#. ocWS
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3156335\n"
-"237\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "Mi a 2001. szeptember 14-e után 6 hónappal levő hónap utolsó napja?"
-
-#. 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 "Az <item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> a 37346 sorszámot adja vissza. Dátumként formázva ez 2002-03-31."
-
-#. 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 "Az <item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> szintén működik. Ha a dátum karakterláncként van megadva, akkor ISO-formátumban kell írni."
-
-#. 3:dC
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "Élőfej és élőláb"
-
-#. 1Qu:
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"hd_id3145251\n"
-"1\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "Élőfej és élőláb"
-
-#. 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\">Lehetővé teszi az élőfejek és élőlábak meghatározását és formázását. </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 "Az élőfejek és élőlábak megadásához használható lapokat az <emph>Élőfej és élőláb</emph> párbeszédablak tartalmazza. Ha az <link href=\"text/scalc/01/05070000.xhp\" name=\"Oldalstílus\">Oldalstílus</link> párbeszédablakban nem jelölte be a <emph>Páros és páratlan oldal tartalma azonos</emph> beállítást, akkor a párbeszédablak a páros, illetve a páratlan oldalak élőfejéhez és élőlábához külön oldalt tartalmaz."
-
-#. `rud
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Statisztikai függvények"
-
-#. 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>statisztikai függvények</bookmark_value><bookmark_value>Függvénytündér; statisztika</bookmark_value><bookmark_value>függvények; statisztikai függvények</bookmark_value>"
-
-#. X^sC
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"hd_id3153018\n"
-"1\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Statisztikai függvények"
-
-#. 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\">A kategória a <emph>statisztikai</emph> függvényeket tartalmazza. </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 "Pár példa az alábbi adattáblázatot használja:"
-
-#. 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 érték"
-
-#. 1kef
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147536\n"
-"14\n"
-"help.text"
-msgid "y value"
-msgstr "y érték"
-
-#. 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 "A statisztikai függvények leírása a következő alszakaszokban található."
-
-#. 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=\"Statisztikai függvények az Elemzés kiegészítőben\">Statisztikai függvények az Elemzés kiegészítőben</link>"
-
-#. T#k\
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row Break"
-msgstr "Sortörés"
-
-#. 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>munkafüzetek; sortörések törlése</bookmark_value><bookmark_value>törlés; kézi sortörések</bookmark_value><bookmark_value>sortörések; törlés</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=\"Sortörés\">Sortörés</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\">Eltávolítja az aktív cella fölötti kézi sortörést.</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 "Mozgassa a kurzort egy közvetlenül a sortörés alatt található cellába (a töréspontot vízszintes vonal jelöli), majd válassza a <emph>Szerkesztés - Töréspont törlése - Sortörés</emph> elemet. A kézi sortörés eltávolításra kerül."
-
-#. C0W/
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Up"
-msgstr "Fel"
-
-#. \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=\"Fel\">Fel</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\">Legalább két sorból álló tartományt a tartomány legalsó cellájának tartalmával tölt fel.</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 "Ha a kijelölt tartomány csak egy oszlopból áll, akkor a legalsó cella tartalma átmásolásra kerül a kijelölt cellákba. Ha több oszlopot jelöl ki, akkor a legalsó cella tartalma kerül másolásra a felette található, kijelölt cellákba."
-
-#. m*#k
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Optimális sormagasságok"
-
-#. 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>munkalapok; optimális sormagasságok</bookmark_value><bookmark_value>sorok; optimális magasságok</bookmark_value><bookmark_value>optimális sormagasságok</bookmark_value>"
-
-#. A?D-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3148491\n"
-"1\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Optimális sormagasságok"
-
-#. 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 "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Meghatározza a kijelölt sorok optimális sormagasságát.</ahelp></variable> Az optimális sormagasság a sorban található legnagyobb karakter betűméretétől függ. Különböző <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"mértékegységeket\">mértékegységeket</link> használhat."
-
-#. :`pL
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3154908\n"
-"3\n"
-"help.text"
-msgid "Add"
-msgstr "Hozzáadás"
-
-#. /`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 "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">További térközt állít be a sorban legnagyobb karakter és a cella határa között.</ahelp>"
-
-#. lE:8
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3150439\n"
-"5\n"
-"help.text"
-msgid "Default value"
-msgstr "Alapértelmezett érték"
-
-#. 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\">Visszaállítja az optimális sormagasság alapértékét.</ahelp>"
-
-#. 6WkU
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Név beszúrása"
-
-#. +!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>cellatartományok; névvel rendelkező tartományok beszúrása</bookmark_value><bookmark_value>beszúrás; cellatartományok</bookmark_value>"
-
-#. )z}j
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153195\n"
-"1\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Név beszúrása"
-
-#. 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 "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Beilleszt egy megadott nevesített cellatartományt az aktuális kurzorpozícióba.</ahelp></variable>"
-
-#. %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 "Egy cellaterületet csak nevének megadása után szúrhat be."
-
-#. 9*s?
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153160\n"
-"3\n"
-"help.text"
-msgid "Insert name"
-msgstr "Név beszúrása"
-
-#. 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 "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Felsorol minden meghatározott cellaterületet. Ahhoz, hogy az adott területet beszúrja az aktív munkafüzetbe, az aktuális kurzorpozícióba, kattintson duplán valamely bejegyzésre.</ahelp>"
-
-#. ULfS
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153418\n"
-"5\n"
-"help.text"
-msgid "Insert All"
-msgstr "Mindent beszúr"
-
-#. 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 "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Az aktuális kurzorpozícióhoz beszúr egy listát, amely a nevesített területeket és a hozzájuk tartozó cellahivatkozásokat tartalmazza.</ahelp>"
-
-#. |_S:
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove All Traces"
-msgstr "Minden felderítés eltávolítása"
-
-#. xuC{
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"bm_id3153088\n"
-"help.text"
-msgid "<bookmark_value>cells; removing traces</bookmark_value>"
-msgstr "<bookmark_value>cellák; felderítések eltávolítása</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=\"Minden felderítés eltávolítása\">Minden felderítés eltávolítása</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 "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Eltávolítja az összes felderítést a munkafüzetből.</ahelp>"
-
-#. QwO8
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Munkalapok kijelölése"
-
-#. @kh/
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Munkalapok kijelölése"
-
-#. 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\">Több munkalapot jelöl ki.</ahelp></variable>"
-
-#. UGh=
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3125863\n"
-"2\n"
-"help.text"
-msgid "Selected Sheets"
-msgstr "Kijelölt munkalapok"
-
-#. 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\">Megjeleníti az aktuális dokumentumban található munkalapok listáját. Munkalap kijelöléséhez nyomja meg a fel vagy le nyilak valamelyikét, és a listában keresse meg a kívánt munkalapot. Ha egy munkalapot fel kíván venni a kijelöléshez, akkor tartsa lenyomva a Ctrl (Mac: Command) billentyűt a nyílbillentyűk lenyomása közben, majd nyomja meg a szóközbillentyűt. Munkalaptartomány kijelöléséhez tartsa lenyomva a Shift billentyűt, majd használja a nyílbillentyűket. </ahelp>"
-
-#. w08c
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIMEVALUE"
-msgstr "IDŐÉRTÉK"
-
-#. 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>IDŐÉRTÉK függvény</bookmark_value><bookmark_value>TIMEVALUE függvény, lásd: IDŐÉRTÉK függvény</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\">IDŐÉRTÉK</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 "<ahelp hid=\"HID_FUNC_ZEITWERT\">Az IDŐÉRTÉK függvény egy idézőjelek közti (és esetleg időbeviteli formátumban levő) szöveg ún. belső időszámát számítja ki.</ahelp>"
-
-#. 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 "A decimálisként megjelenő belső szám a $[officename] alatt a dátumbejegyzések kiszámítására használt dátumrendszer eredménye."
-
-#. 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 "Ha egy szöveg év, hónap vagy nap értéket is tartalmaz, az IDŐÉRTÉK csak a tört részt adja vissza az átalakítás után."
-
-#. mN5]
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3150810\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 8e+!
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150823\n"
-"164\n"
-"help.text"
-msgid "TIMEVALUE(\"Text\")"
-msgstr "IDŐÉRTÉK(\"szöveg\")"
-
-#. 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 "A <emph>szöveg</emph> egy érvényes időkifejezés, idézőjelek közé zárva."
-
-#. LbZn
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146815\n"
-"166\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. 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 "Az <item type=\"input\">=IDŐÉRTÉK(\"4DU\")</item> eredményül 0,67-et ad. Ha ezt ÓÓ:PP:MM időformátumra formázza, akkor eredményül 16:00:00 órát kap."
-
-#. 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 "Az <item type=\"input\">=IDŐÉRTÉK(\"24:00\")</item> eredményül 1-et ad. Ha ezt ÓÓ:PP:MM időformátumra formázza, akkor az érték 00:00:00."
-
-#. F6$s
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Information Functions"
-msgstr "Információs függvények"
-
-#. .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>információs függvények</bookmark_value><bookmark_value>Függvénytündér; információ</bookmark_value><bookmark_value>függvények; információs függvények</bookmark_value>"
-
-#. 9Ve$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147247\n"
-"1\n"
-"help.text"
-msgid "Information Functions"
-msgstr "Információs függvények"
-
-#. 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\">A kategória az <emph>információs</emph> függvényeket tartalmazza. </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 "Az alábbi táblázatban szereplő adatokra épülnek a függvényleírásoknál használt példák:"
-
-#. *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 "x <item type=\"input\">érték</item>"
-
-#. H:SR
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148725\n"
-"8\n"
-"help.text"
-msgid "y <item type=\"input\">value</item>"
-msgstr "y <item type=\"input\">érték</item>"
-
-#. 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 "<item type=\"input\">-5</item>"
-
-#. lI=/
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148888\n"
-"11\n"
-"help.text"
-msgid "<item type=\"input\">-3</item>"
-msgstr "<item type=\"input\">-3</item>"
-
-#. 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 "<item type=\"input\">-2</item>"
-
-#. 5YNn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149542\n"
-"14\n"
-"help.text"
-msgid "<item type=\"input\">0</item>"
-msgstr "<item type=\"input\">0</item>"
-
-#. 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 "<item type=\"input\">-1</item>"
-
-#. |Z?:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155257\n"
-"17\n"
-"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">1</item>"
-
-#. 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 "<item type=\"input\">0</item>"
-
-#. 8C?v
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145594\n"
-"20\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
-
-#. $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 "<item type=\"input\">2</item>"
-
-#. ],R:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145166\n"
-"23\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
-
-#. 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 "<item type=\"input\">4</item>"
-
-#. ozy#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150129\n"
-"26\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
-
-#. 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 "<item type=\"input\">6</item>"
-
-#. b9Du
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156068\n"
-"29\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
-
-#. Lg=n
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3691824\n"
-"help.text"
-msgid "<bookmark_value>INFO function</bookmark_value>"
-msgstr "<bookmark_value>INFO függvény</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 "Az aktuális munkakörnyezetről ad meghatározott információkat. A függvény egyetlen szöveges argumentumot fogad el, és ettől a paramétertől függően ad vissza adatot."
-
-#. =+?C
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id7693411\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. mcJH
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3928952\n"
-"help.text"
-msgid "INFO(\"Type\")"
-msgstr "INFO(\"típus\")"
-
-#. 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 "A következő táblázat az INFO függvény <item type=\"literal\">típus</item> szöveges paraméterének értékeit és visszatérési értékeit tartalmazza."
-
-#. TU;/
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5735953\n"
-"help.text"
-msgid "Value for \"Type\""
-msgstr "A „típus” értéke"
-
-#. [^K[
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id8360850\n"
-"help.text"
-msgid "Return value"
-msgstr "Visszatérési érték"
-
-#. /lMR
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9648731\n"
-"help.text"
-msgid "\"osversion\""
-msgstr "„osversion”"
-
-#. tG!_
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id908841\n"
-"help.text"
-msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
-msgstr "Kompatibilitási okokból mindig „Windows (32-bit) NT 5.01”."
-
-#. 7yrk
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id8193914\n"
-"help.text"
-msgid "\"system\""
-msgstr "„system”"
-
-#. 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 "Az operációs rendszer típusa. <br/>„WNT” Microsoft Windows esetén<br/>„LINUX” Linux esetén<br/>„SOLARIS” Solaris esetén"
-
-#. \Sr#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2701803\n"
-"help.text"
-msgid "\"release\""
-msgstr "„release”"
-
-#. CyFH
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2136295\n"
-"help.text"
-msgid "The product release identifier, for example \"300m25(Build:9876)\""
-msgstr "A termék kiadási azonosítója, például „300m25(Build:9876)”"
-
-#. 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 "Kompatibilitási okokból mindig 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 "Az aktuális képlet-újraszámítási mód, „Automatikus” vagy „Manuális”"
-
-#. ._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 "Más táblázatkezelő programok esetleg elfogadnak honosított értéket is <item type=\"literal\">típus</item> paraméterként, de a %PRODUCTNAME Calc csak angol értékeket fogad el."
-
-#. A0pP
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id5459456\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "Az <item type=\"input\">=INFO(\"release\")</item> képlet a %PRODUCTNAME kiadási számát adja vissza."
-
-#. 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 "Ha a <item type=\"literal\">D5</item> cellában a <item type=\"input\">system</item> szöveg van, az <item type=\"input\">=INFO(D5)</item> képlet az operációs rendszer típusát adja vissza."
-
-#. 9r#7
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3155625\n"
-"help.text"
-msgid "<bookmark_value>CURRENT function</bookmark_value>"
-msgstr "<bookmark_value>CURRENT függvény</bookmark_value><bookmark_value>AKTUÁLIS függvény, lásd: CURRENT függvény</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 "<ahelp hid=\"HID_FUNC_AKTUELL\">Ez a függvény azt az eredményt adja vissza, amely az őt tartalmazó képlet kiértékelésének idején érvényes volt (más szóval, addig, amíg a kiértékelés eljutott). Főképpen a STYLE() függvénnyel használható együtt a kiválasztott stílusok alkalmazására a cellákra attól függően, hogy mi a cella tartalma.</ahelp>"
-
-#. ,Gn,
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3148880\n"
-"32\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 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 "Példa"
-
-#. 5L\T
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5919064\n"
-"help.text"
-msgid "<item type=\"input\">=1+2+CURRENT()</item>"
-msgstr "<item type=\"input\">=1+2+CURRENT()</item>"
-
-#. 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 "A példa eredménye 6. A függvény balról jobbra kerül kiszámításra a következő módon: 1 + 2 egyenlő 3, ami az eredmény addig a pillanatig, amíg CURRENT() utasításhoz ér a feldolgozás; a CURRENT() ezért 3-at ad, amit hozzáadva az eredeti 3-hoz 6-ot kapunk."
-
-#. 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 "<item type=\"input\">=A2+B2+STYLE(HA(CURRENT()>10;\"Piros\";\"Alapértelmezett\"))</item>"
-
-#. |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 "A példa eredménye A2 + B2 (a STYLE itt 0-t ad vissza). Ha ez az összeg nagyobb, mint 10, akkor a cellára a Piros stílus kerül alkalmazásra. Részletesebb magyarázatért lásd a <emph>STYLE</emph> függvényt."
-
-#. Svy6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id7318643\n"
-"help.text"
-msgid "<item type=\"input\">=\"choo\"&CURRENT()</item>"
-msgstr "<item type=\"input\">=\"zi\"&CURRENT()</item>"
-
-#. 9Lyy
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6019165\n"
-"help.text"
-msgid "The example returns choochoo."
-msgstr "A példa a „zizi” szót adja vissza."
-
-#. 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 "<bookmark_value>FORMULA függvény</bookmark_value><bookmark_value>képletcellák;képletek megjelenítése másik cellában</bookmark_value><bookmark_value>megjelenítés;képletek bármilyen pozícióban</bookmark_value>"
-
-#. 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 "<ahelp hid=\"HID_FUNC_FORMEL\">Egy képletet tartalmazó cella képletét adja vissza szövegként.</ahelp>"
-
-#. DWSr
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154954\n"
-"149\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. G=p(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147535\n"
-"150\n"
-"help.text"
-msgid "FORMULA(Reference)"
-msgstr "FORMULA(hivatkozás)"
-
-#. 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 "A <emph>hivatkozás</emph> egy képletet tartalmazó cellára vonatkozó hivatkozás."
-
-#. 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 "Érvénytelen hivatkozás, illetve képletet nem tartalmazó cellára hivatkozás #HIÁNYZIK hibaértéket eredményez."
-
-#. ,So?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152820\n"
-"151\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "Ha az A8 cella a <item type=\"input\">=SZUM(1;2;3)</item> képletet tartalmazza, akkor"
-
-#. 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 "a <item type=\"input\">=FORMULA(A8)</item> a „=SZUM(1;2;3)” szöveget adja vissza (az idézőjelek nélkül)."
-
-#. 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>HIVATKOZÁS függvény</bookmark_value><bookmark_value>ISREF függvény, lásd: HIVATKOZÁS függvény</bookmark_value><bookmark_value>hivatkozások;cellatartalom tesztelése</bookmark_value><bookmark_value>cellatartalom;hivatkozás keresése</bookmark_value>"
-
-#. A0dT
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155409\n"
-"37\n"
-"help.text"
-msgid "ISREF"
-msgstr "HIVATKOZÁS"
-
-#. ]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 "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Megvizsgálja, hogy az argumentum referencia-e.</ahelp> IGAZ értéket ad vissza, ha az argumentum referencia, egyébként HAMIS értéket. Ha a függvény referenciát kap, akkor nem vizsgálja a hivatkozott értéket."
-
-#. $g\6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147175\n"
-"39\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. UFyW
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149821\n"
-"40\n"
-"help.text"
-msgid "ISREF(Value)"
-msgstr "HIVATKOZÁS(érték)"
-
-#. 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 "Az <emph>érték</emph> az az érték, amelyről el akarja dönteni, hogy hivatkozás-e."
-
-#. k)J(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3083448\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=HIVATKOZÁS(C5)</item> IGAZ eredményt ad vissza, mert a C5 érvényes hivatkozás."
-
-#. 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 "A <item type=\"input\">=HIVATKOZÁS(\"abcdef\")</item> mindig HAMIS eredményt ad vissza, mert szöveg nem lehet hivatkozás."
-
-#. UnZ`
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2131544\n"
-"help.text"
-msgid "<item type=\"input\">=ISREF(4)</item> returns FALSE."
-msgstr "A <item type=\"input\">=HIVATKOZÁS(4)</item> HAMIS eredményt ad vissza."
-
-#. 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 "A <item type=\"input\">=HIVATKOZÁS(INDIREKT(\"A6\"))</item> IGAZ eredményt ad vissza, mert az INDIREKT olyan függvény, amely hivatkozást ad vissza."
-
-#. 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 "A <item type=\"input\">=HIVATKOZÁS(CÍM(1; 1; 2;\"Munkalap2\"))</item> HAMIS eredményt ad vissza, mert a CÍM olyan függvény, amely szöveget ad vissza, annak ellenére, hogy hivatkozásnak látszik."
-
-#. 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>HIBA függvény</bookmark_value><bookmark_value>ISERR függvény, lásd: HIBA függvény</bookmark_value><bookmark_value>hibakódok;vezérlés</bookmark_value>"
-
-#. KF\{
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154812\n"
-"45\n"
-"help.text"
-msgid "ISERR"
-msgstr "HIBA"
-
-#. 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 "<ahelp hid=\"HID_FUNC_ISTFEHL\">Ellenőrzi, hogy történt-e hiba, kivéve a #HIÁNYZIK hibaértéket, és IGAZ vagy HAMIS értéket ad vissza.</ahelp>"
-
-#. 2:Uo
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149450\n"
-"47\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 6Amw
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156312\n"
-"48\n"
-"help.text"
-msgid "ISERR(Value)"
-msgstr "HIBA(érték)"
-
-#. 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 "Az <emph>érték</emph> tetszőleges érték vagy kifejezés, amelyre vonatkozóan ellenőrzésre kerül, hogy a #HIÁNYZIK hibaértéktől eltérő hibaérték jelen van-e."
-
-#. ndmc
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153212\n"
-"50\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @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 "A <item type=\"input\">=HIBA(C8)</item>, ahol a C8 cella tartalma <item type=\"input\">=1/0</item>, IGAZ értéket ad vissza, mert az 1/0 hibás kifejezés."
-
-#. 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 "A <item type=\"input\">=HIBA(C9)</item>, ahol a C9 cella tartalma <item type=\"input\">=HIÁNYZIK()</item>, HAMIS értéket ad vissza, mert a HIBA() nem veszi figyelembe a #HIÁNYZIK hibát."
-
-#. 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>HIBÁS függvény</bookmark_value><bookmark_value>ISERROR függvény, lásd: HIBÁS függvény</bookmark_value><bookmark_value>felismerés;általános hibák</bookmark_value>"
-
-#. Wf}P
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147081\n"
-"53\n"
-"help.text"
-msgid "ISERROR"
-msgstr "HIBÁS"
-
-#. 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 "<ahelp hid=\"HID_FUNC_ISTFEHLER\">Ellenőrzi, hogy történt-e hiba, beleértve a #HIÁNYZIK hibaértéket, és IGAZ vagy HAMIS értéket ad vissza.</ahelp>"
-
-#. p.ET
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147569\n"
-"55\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. R[d6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153155\n"
-"56\n"
-"help.text"
-msgid "ISERROR(Value)"
-msgstr "HIBÁS(érték)"
-
-#. ]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 "Az <emph>érték</emph> a vizsgálandó érték, vagy arra hivatkozik. A HIBÁS() IGAZ értéket ad vissza, ha hiba történt, és HAMIS értéket, ha nem."
-
-#. ;h-,
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155994\n"
-"58\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "Az <item type=\"input\">=HIBÁS(C8)</item>, ahol a C8 cella tartalma <item type=\"input\">=1/0</item>, IGAZ értéket ad vissza, mert az 1/0 hibás kifejezés."
-
-#. 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 "Az <item type=\"input\">=HIBÁS(C9)</item>, ahol a C9 cella tartalma <item type=\"input\">=HIÁNYZIK()</item>, IGAZ értéket ad vissza."
-
-#. RrNT
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3153618\n"
-"help.text"
-msgid "<bookmark_value>ISFORMULA function</bookmark_value><bookmark_value>recognizing formula cells</bookmark_value><bookmark_value>formula cells;recognizing</bookmark_value>"
-msgstr "<bookmark_value>ISFORMULA függvény</bookmark_value><bookmark_value>felismerés;képletcellák</bookmark_value><bookmark_value>képletcellák;felismerés</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 "<ahelp hid=\"HID_FUNC_ISTFORMEL\">IGAZ értéket ad vissza, ha a cella képletet tartalmaz.</ahelp>"
-
-#. [zd`
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155100\n"
-"63\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. WM3U
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3143230\n"
-"64\n"
-"help.text"
-msgid "ISFORMULA(Reference)"
-msgstr "ISFORMULA(hivatkozás)"
-
-#. ]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 "A <emph>hivatkozás</emph> egy cellahivatkozást jelöl, amelyben ellenőrzésre kerül, hogy tartalmaz-e képletet."
-
-#. yPDL
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147491\n"
-"66\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. =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 "Az <item type=\"input\">=ISFORMULA(C4)</item> HAMIS eredményt ad vissza, ha a C4 cella az <item type=\"input\">5</item>-ös számot tartalmazza."
-
-#. =$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 függvény</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 "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Páros számok ellenőrzése. Ha a szám a kettővel történő osztást követően egész számot ad, akkor a függvény eredményül 1 értéket ad.</ahelp>"
-
-#. Hw=l
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152799\n"
-"231\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. %mm@
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149202\n"
-"232\n"
-"help.text"
-msgid "ISEVEN_ADD(Number)"
-msgstr "ISEVEN_ADD(szám)"
-
-#. 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 "A <emph>szám</emph> a vizsgálandó szám."
-
-#. 34|#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150115\n"
-"234\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. _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 "Az <item type=\"input\">=ISEVEN_ADD(5)</item> a 0 értéket adja vissza."
-
-#. 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 "Az <item type=\"input\">=ISEVEN_ADD(A1)</item> 1-et ad vissza, ha az A1 cella a <item type=\"input\">2</item>-es számot tartalmazza."
-
-#. {/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>NEM.SZÖVEG függvény</bookmark_value><bookmark_value>ISNONTEXT függvény, lásd: NEM.SZÖVEG függvény</bookmark_value><bookmark_value>cellatartalom;nem szöveg</bookmark_value>"
-
-#. U)}`
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154692\n"
-"68\n"
-"help.text"
-msgid "ISNONTEXT"
-msgstr "NEM.SZÖVEG"
-
-#. 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 "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Megvizsgálja, hogy a cellatartalom szöveg-e vagy szám-e, és HAMIS értéket ad vissza, ha az szöveg.</ahelp>"
-
-#. D30e
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5719779\n"
-"help.text"
-msgid "If an error occurs, the function returns TRUE."
-msgstr "Ha hiba történik, ez a függvény IGAZ eredményt ad vissza."
-
-#. G[17
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154931\n"
-"70\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. -)tX
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148829\n"
-"71\n"
-"help.text"
-msgid "ISNONTEXT(Value)"
-msgstr "NEM.SZÖVEG(érték)"
-
-#. 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 "Az <emph>érték</emph> tetszőleges érték, amelyről meghatározza, hogy szöveg, szám vagy logikai érték-e."
-
-#. kssC
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150525\n"
-"73\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ]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 "A <item type=\"input\">=NEM.SZÖVEG(D2)</item> HAMIS eredményt ad vissza, ha a D2 cella az <item type=\"input\">abcdef</item> szöveget tartalmazza."
-
-#. 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 "A <item type=\"input\">=NEM.SZÖVEG(D9)</item> IGAZ eredményt ad vissza, ha a D9 cella a <item type=\"input\">8</item>-as számot tartalmazza."
-
-#. 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>ÜRES függvény</bookmark_value><bookmark_value>ISBLANK függvény, lásd: ÜRES függvény</bookmark_value><bookmark_value>üres cellatartalom</bookmark_value><bookmark_value>üres cellák; felismerés</bookmark_value>"
-
-#. P4~k
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3159148\n"
-"77\n"
-"help.text"
-msgid "ISBLANK"
-msgstr "ÜRES"
-
-#. 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 "<ahelp hid=\"HID_FUNC_ISTLEER\">IGAZ értéket ad vissza, ha a cella üres.</ahelp> A függvény segítségével meghatározhatja, hogy egy cella tartalma üres-e. A képletet tartalmazó cellák nem számítanak üresnek."
-
-#. ?{|?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3159162\n"
-"79\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. c^nt
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3158406\n"
-"80\n"
-"help.text"
-msgid "ISBLANK(Value)"
-msgstr "ÜRES(érték)"
-
-#. *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 "Az <emph>érték</emph> az ellenőrizni kívánt tartalom."
-
-#. 2e_:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147508\n"
-"82\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "Az <item type=\"input\">=ÜRES(D2)</item> függvény a HAMIS értéket adja vissza."
-
-#. )+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>LOGIKAI függvény</bookmark_value><bookmark_value>ISLOGICAL függvény, lásd: LOGIKAI függvény</bookmark_value><bookmark_value>számformátumok;logikai</bookmark_value><bookmark_value>logikai számformátum</bookmark_value>"
-
-#. .@uf
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155356\n"
-"85\n"
-"help.text"
-msgid "ISLOGICAL"
-msgstr "LOGIKAI"
-
-#. 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 "<ahelp hid=\"HID_FUNC_ISTLOG\">Ellenőrzi, hogy logikai értékről (IGAZ vagy HAMIS) van-e szó.</ahelp>"
-
-#. d?[T
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3541062\n"
-"help.text"
-msgid "If an error occurs, the function returns FALSE."
-msgstr "Ha hiba történik, ez a függvény HAMIS eredményt ad vissza."
-
-#. x7Nj
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149162\n"
-"87\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2IAJ
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148918\n"
-"88\n"
-"help.text"
-msgid "ISLOGICAL(Value)"
-msgstr "LOGIKAI(érték)"
-
-#. 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 "IGAZ értéket ad vissza, ha az <emph>érték</emph> logikai érték (IGAZ vagy HAMIS), egyébként HAMIS értéket ad vissza."
-
-#. 9IHp
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150709\n"
-"90\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=LOGIKAI(99)</item> a HAMIS értéket adja vissza, mert a 99 egy szám, nem logikai érték."
-
-#. 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 "A <item type=\"input\">=LOGIKAI(NINCS(D4))</item> az IGAZ értéket adja vissza a D4 cella tartalmától függetlenül, mert a NINCS() logikai értéket ad vissza."
-
-#. 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>NINCS függvény</bookmark_value><bookmark_value>ISNA függvény, lásd: NINCS függvény</bookmark_value><bookmark_value>#HIÁNYZIK hiba;felismerés</bookmark_value>"
-
-#. qqex
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153685\n"
-"93\n"
-"help.text"
-msgid "ISNA"
-msgstr "NINCS"
-
-#. 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\">IGAZ értéket ad vissza, ha a cella a #HIÁNYZIK (nincs érték) hibaértéket tartalmazza.</ahelp>"
-
-#. Xwsq
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6018860\n"
-"help.text"
-msgid "If an error occurs, the function returns FALSE."
-msgstr "Ha hiba történik, ez a függvény HAMIS eredményt ad vissza."
-
-#. GoXr
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152947\n"
-"95\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. C-kl
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153748\n"
-"96\n"
-"help.text"
-msgid "ISNA(Value)"
-msgstr "NINCS(érték)"
-
-#. 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 "Az <emph>érték</emph> az ellenőrizni kívánt érték, illetve kifejezés."
-
-#. #nNP
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149964\n"
-"98\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. !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 "A <item type=\"input\">=NINCS(D3)</item> függvény a HAMIS értéket ad vissza."
-
-#. ?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>SZÖVEG.E függvény</bookmark_value><bookmark_value>ISTEXT függvény, lásd: SZÖVEG.E függvény</bookmark_value><bookmark_value>cellatartalom;szöveg</bookmark_value>"
-
-#. =v:X
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149426\n"
-"101\n"
-"help.text"
-msgid "ISTEXT"
-msgstr "SZÖVEG.E"
-
-#. --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\">IGAZ értéket ad vissza, ha a cella tartalma szövegre hivatkozik.</ahelp>"
-
-#. +T*%
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6779686\n"
-"help.text"
-msgid "If an error occurs, the function returns FALSE."
-msgstr "Ha hiba történik, ez a függvény HAMIS eredményt ad vissza."
-
-#. nj*B
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154332\n"
-"103\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. kW7s
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148649\n"
-"104\n"
-"help.text"
-msgid "ISTEXT(Value)"
-msgstr "SZÖVEG.E(érték)"
-
-#. 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 "Az <emph>érték</emph> az ellenőrizni kívánt érték, szám, logikai érték, illetve hibaérték."
-
-#. !NW8
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149239\n"
-"106\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. -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 "A <item type=\"input\">=SZÖVEG.E(D9)</item> IGAZ eredményt ad vissza, ha a D9 cella az <item type=\"input\">abcdef</item> szöveget tartalmazza."
-
-#. 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 "A <item type=\"input\">=SZÖVEG.E(C3)</item> HAMIS eredményt ad vissza, ha a C3 cella a <item type=\"input\">3</item>-as számot tartalmazza."
-
-#. 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 függvény</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\">IGAZ értéket ad vissza, ha a szám 2-vel elosztva nem egész számot eredményez.</ahelp>"
-
-#. /N)C
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3145601\n"
-"238\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. $:#K
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149485\n"
-"239\n"
-"help.text"
-msgid "ISODD_ADD(Number)"
-msgstr "ISODD_ADD(szám)"
-
-#. 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 "A <emph>szám</emph> a vizsgálandó szám."
-
-#. i{kQ
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3143274\n"
-"241\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "Az <item type=\"input\">=ISODD_ADD(5)</item> függvény az 1 értéket adja vissza."
-
-#. 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>SZÁM függvény</bookmark_value><bookmark_value>ISNUMBER függvény, lásd: SZÁM függvény</bookmark_value><bookmark_value>cellatartalom;számok</bookmark_value>"
-
-#. srMn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3148688\n"
-"110\n"
-"help.text"
-msgid "ISNUMBER"
-msgstr "SZÁM"
-
-#. 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\">IGAZ értéket ad vissza, ha az érték számra hivatkozik.</ahelp>"
-
-#. b(nE
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152769\n"
-"112\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. mGfV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150595\n"
-"113\n"
-"help.text"
-msgid "ISNUMBER(Value)"
-msgstr "SZÁM(érték)"
-
-#. 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 "Az <emph>érték</emph> tetszőleges ellenőrizni kívánt kifejezés, amelyre meghatározásra kerül, hogy szám vagy szöveg-e."
-
-#. 67wF
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3146793\n"
-"115\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. /!(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 "A <item type=\"input\">=SZÁM(C3)</item> IGAZ eredményt ad vissza, ha a C3 cella a <item type=\"input\">4</item>-es számot tartalmazza."
-
-#. 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 "A <item type=\"input\">=SZÁM(C2)</item> HAMIS eredményt ad vissza, ha a C2 cella az <item type=\"input\">abcdef</item> szöveget tartalmazza."
-
-#. ,f!#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3153694\n"
-"help.text"
-msgid "<bookmark_value>N function</bookmark_value>"
-msgstr "<bookmark_value>N függvény</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 "<ahelp hid=\"HID_FUNC_N\">Egy adott paraméter számértékét adja vissza. A 0 értéket adja vissza, ha a paraméter szöveges vagy HAMIS.</ahelp>"
-
-#. sex-
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9115573\n"
-"help.text"
-msgid "If an error occurs the function returns the error value."
-msgstr "Ha hiba történik, a függvény a hibaértéket adja vissza."
-
-#. fCdi
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3145774\n"
-"121\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. l]m!
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153883\n"
-"122\n"
-"help.text"
-msgid "N(Value)"
-msgstr "N(érték)"
-
-#. 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 "Az <emph>érték</emph> a paraméter, ami számmá lesz alakítva. Az N() visszaadja a számértéket, ha tudja. Az IGAZ és HAMIS értékekre 1 és 0 értékeket ad vissza. A szövegre 0-t ad vissza."
-
-#. I3iq
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147097\n"
-"124\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. OeHD
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154117\n"
-"125\n"
-"help.text"
-msgid "<item type=\"input\">=N(123)</item> returns 123"
-msgstr "Az <item type=\"input\">=N(123)</item> a 123 értéket adja vissza."
-
-#. ++B}
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2337717\n"
-"help.text"
-msgid "<item type=\"input\">=N(TRUE)</item> returns 1"
-msgstr "Az <item type=\"input\">=N(IGAZ)</item> az 1 értéket adja vissza."
-
-#. hQ1c
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153781\n"
-"126\n"
-"help.text"
-msgid "<item type=\"input\">=N(FALSE)</item> returns 0"
-msgstr "Az <item type=\"input\">=N(HAMIS)</item> függvény a 0 értéket adja vissza."
-
-#. 7bKV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154670\n"
-"243\n"
-"help.text"
-msgid "<item type=\"input\">=N(\"abc\")</item> returns 0"
-msgstr "Az <item type=\"input\">=N(\"abc\")</item> függvény a 0 értéket adja vissza."
-
-#. l)+g
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3519089\n"
-"help.text"
-msgid "=N(1/0) returns #DIV/0!"
-msgstr "Az =N(1/0) a #ZÉRÓOSZTÓ! értéket adja vissza."
-
-#. \\[/
-#: 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>HIÁNYZIK függvény</bookmark_value><bookmark_value>NA függvény, lásd: HIÁNYZIK függvény</bookmark_value><bookmark_value>#HIÁNYZIK hiba;hozzárendelés cellához</bookmark_value>"
-
-#. eLX8
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3156275\n"
-"129\n"
-"help.text"
-msgid "NA"
-msgstr "HIÁNYZIK"
-
-#. 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\">A #HIÁNYZIK hibaértéket adja vissza.</ahelp>"
-
-#. ~d(X
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147532\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. I:5C
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149563\n"
-"132\n"
-"help.text"
-msgid "NA()"
-msgstr "HIÁNYZIK()"
-
-#. v0:B
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155128\n"
-"133\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A <item type=\"input\">=HIÁNYZIK()</item> a cella tartalmát #HIÁNYZIK-ra változtatja."
-
-#. `u4i
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3151255\n"
-"help.text"
-msgid "<bookmark_value>TYPE function</bookmark_value>"
-msgstr "<bookmark_value>TÍPUS függvény</bookmark_value><bookmark_value>TYPE függvény, lásd: TÍPUS függvény</bookmark_value>"
-
-#. =q]p
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3151255\n"
-"136\n"
-"help.text"
-msgid "TYPE"
-msgstr "TÍPUS"
-
-#. 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\">Az érték típusát adja vissza.</ahelp>"
-
-#. );Ss
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149992\n"
-"138\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. rm8W
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148400\n"
-"139\n"
-"help.text"
-msgid "TYPE(Value)"
-msgstr "TÍPUS(érték)"
-
-#. =?: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 "Az <emph>érték</emph> az adott érték, amelyre vonatkozóan az adattípus meghatározásra kerül. 1 = szám, 2 = szöveg, 4 = logikai érték, 8 = képlet, 16 = hibaérték."
-
-#. yj[N
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154363\n"
-"141\n"
-"help.text"
-msgid "Example (see example table above)"
-msgstr "Példa (lásd a fenti példatáblázatot)"
-
-#. 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 "A <item type=\"input\">=TÍPUS(C2)</item> függvény a 2 értéket adja vissza."
-
-#. ;,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 "A <item type=\"input\">=TÍPUS(D9)</item> függvény az 1 értéket adja vissza."
-
-#. 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>CELLA függvény</bookmark_value><bookmark_value>CELL függvény, lásd: CELLA függvény</bookmark_value><bookmark_value>cellainformációk</bookmark_value><bookmark_value>információk a celláról</bookmark_value>"
-
-#. zFO0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155509\n"
-"154\n"
-"help.text"
-msgid "CELL"
-msgstr "CELLA"
-
-#. ]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\">Információkat ad vissza egy cella címéről, formázásáról vagy tartalmáról.</ahelp>"
-
-#. %?-A
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149323\n"
-"156\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2DsT
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147355\n"
-"157\n"
-"help.text"
-msgid "CELL(\"InfoType\"; Reference)"
-msgstr "CELLA(\"információtípus\"; hivatkozás)"
-
-#. 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 "Az <emph>információtípus</emph> egy karakterlánc, amely meghatározza az információ típusát. A karakterlánc nyelve mindig angol. A kis-, illetve nagybetűk egyaránt használhatók."
-
-#. 3D8h
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150636\n"
-"165\n"
-"help.text"
-msgid "InfoType"
-msgstr "Információtípus"
-
-#. m;p=
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149344\n"
-"166\n"
-"help.text"
-msgid "Meaning"
-msgstr "Jelentés"
-
-#. 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 "A hivatkozott oszlop számát adja vissza."
-
-#. [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 "A <item type=\"input\">=CELLA(\"COL\";D2)</item> függvény a 4 értéket adja vissza."
-
-#. QNE9
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151276\n"
-"169\n"
-"help.text"
-msgid "ROW"
-msgstr "ROW"
-
-#. w\nx
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147583\n"
-"170\n"
-"help.text"
-msgid "Returns the number of the referenced row."
-msgstr "A hivatkozott sor számát adja vissza."
-
-#. }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 "A <item type=\"input\">=CELLA(\"ROW\";D2)</item> függvény a 2 értéket adja vissza."
-
-#. H\:6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3159217\n"
-"171\n"
-"help.text"
-msgid "SHEET"
-msgstr "SHEET"
-
-#. S1Sm
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151201\n"
-"172\n"
-"help.text"
-msgid "Returns the number of the referenced sheet."
-msgstr "A hivatkozott munkalap számát adja vissza."
-
-#. 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 "A <item type=\"input\">=CELLA(\"Sheet\";Munkalap3.D2)</item> függvény a 3 értéket adja vissza."
-
-#. Xj8Y
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149431\n"
-"173\n"
-"help.text"
-msgid "ADDRESS"
-msgstr "ADDRESS"
-
-#. 3Ohn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156054\n"
-"174\n"
-"help.text"
-msgid "Returns the absolute address of the referenced cell."
-msgstr "A hivatkozott cella abszolút címét adja vissza."
-
-#. 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 "A <item type=\"input\">=CELLA(\"ADDRESS\";D2)</item> függvény a $D$2 értéket adja vissza."
-
-#. 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 "A <item type=\"input\">=CELLA(\"ADDRESS\";Munkalap3.D2)</item> függvény a $Munkalap3.$D$2 értéket adja vissza."
-
-#. =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 "A <item type=\"input\">=CELLA(\"ADDRESS\";'X:\\dr\\teszt.sxc'#$Munkalap1.D2)</item> a 'file:///X:/dr/teszt.sxc'#$Munkalap1.$D$2 értéket adja vissza."
-
-#. :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 "A hivatkozott cella munkalap- és fájlnevét adja vissza."
-
-#. 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 "A <item type=\"input\">=CELLA(\"FILENAME\";D2)</item> a ''file:///X:/dr/own.sxc'#$Munkalap1 értéket adja vissza, ha a képlet az aktuális dokumentumban (X:\\dr\\own.sxc), a Munkalap1 munkalapon található."
-
-#. 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 "A <item type=\"input\">=CELLA(\"FILENAME\";'X:\\dr\\test.sxc'#$Munkalap1.D2)</item> a 'file:///X:/dr/test.sxc'#$Munkalap1 értéket adja vissza."
-
-#. 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 "A teljes cella címet Lotus(TM)-jelölésben adja vissza."
-
-#. 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 "A <item type=\"input\">=CELLA(\"COORD\";D2)</item> függvény a $A:$D$2 értéket adja vissza."
-
-#. 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 "A <item type=\"input\">=CELLA(\"COORD\"; Munkalap3.D2)</item> függvény a $C:$D$2 értéket adja vissza."
-
-#. D@iE
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155910\n"
-"186\n"
-"help.text"
-msgid "CONTENTS"
-msgstr "CONTENTS"
-
-#. 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 "Bármilyen formázás nélkül visszaadja a hivatkozott cella tartalmát."
-
-#. `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 "A cella tartalmának típusát adja vissza."
-
-#. .jq9
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145217\n"
-"190\n"
-"help.text"
-msgid "b = blank. empty cell"
-msgstr "b = blank. üres cella"
-
-#. 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 = label. Szöveg, egy képlet eredménye szöveg formátumban"
-
-#. 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 = value. Érték, egy képlet eredménye szám formátumban"
-
-#. |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 "A hivatkozott oszlop szélességét adja eredményül. Az egység az oszlopba az alapértelmezett szöveg alapértelmezett méretében elférő nullák (0) száma."
-
-#. jn2d
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3152355\n"
-"195\n"
-"help.text"
-msgid "PREFIX"
-msgstr "PREFIX"
-
-#. nAbL
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154230\n"
-"196\n"
-"help.text"
-msgid "Returns the alignment of the referenced cell."
-msgstr "A hivatkozott cella igazítását adja vissza."
-
-#. M{1$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155946\n"
-"197\n"
-"help.text"
-msgid "' = align left or left-justified"
-msgstr "' = igazítás balra vagy bal sorkizárt"
-
-#. [-Po
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147220\n"
-"198\n"
-"help.text"
-msgid "\" = align right"
-msgstr "\" = jobbra igazított"
-
-#. juwi
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149038\n"
-"199\n"
-"help.text"
-msgid "^ = centered"
-msgstr "^ = középre igazított"
-
-#. 9dY_
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153129\n"
-"200\n"
-"help.text"
-msgid "\\ = repeating (currently inactive)"
-msgstr "\\ = ismétlés (éppen inaktív)"
-
-#. 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 "A cella védelmi állapotát adja vissza."
-
-#. $rP3
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155794\n"
-"203\n"
-"help.text"
-msgid "1 = cell is protected"
-msgstr "1 = a cella védett"
-
-#. xQ{b
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155072\n"
-"204\n"
-"help.text"
-msgid "0 = cell is not protected"
-msgstr "0 = a cella nem védett"
-
-#. 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 "Egy karakterláncot ad vissza, amely a szám formátumot jelöli."
-
-#. NtSp
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153824\n"
-"207\n"
-"help.text"
-msgid ", = number with thousands separator"
-msgstr ", = szám ezreselválasztóval"
-
-#. dDr0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153837\n"
-"208\n"
-"help.text"
-msgid "F = number without thousands separator"
-msgstr "F = szám ezreselválasztó nélkül"
-
-#. _@iN
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150318\n"
-"209\n"
-"help.text"
-msgid "C = currency format"
-msgstr "C = pénznem formátum"
-
-#. 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 = exponenciális jelölés, például 1,234+E56"
-
-#. ZpRm
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153515\n"
-"211\n"
-"help.text"
-msgid "P = percentage"
-msgstr "P = százalék"
-
-#. (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 "A fenti formátumokban a tizedes elválasztót követő tizedesjegyek száma számként került megadásra. Példa: a #,##0.0 számformátum ,1-et, a 00.000% számformátum pedig P3-at ad eredményül."
-
-#. |]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 = HHH-N-ÉÉ, HH-N-ÉÉ és hasonló formátumok"
-
-#. sF|e
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150589\n"
-"214\n"
-"help.text"
-msgid "D2 = DD-MM"
-msgstr "D2 = NN-HH"
-
-#. b:m\
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151034\n"
-"215\n"
-"help.text"
-msgid "D3 = MM-YY"
-msgstr "D3 = HH-ÉÉ"
-
-#. Fiod
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156371\n"
-"216\n"
-"help.text"
-msgid "D4 = DD-MM-YYYY HH:MM:SS"
-msgstr "D4 = NN-HH-ÉÉÉÉ ÓÓ:PP:SS"
-
-#. vI-,
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3157881\n"
-"217\n"
-"help.text"
-msgid "D5 = MM-DD"
-msgstr "D5 = HH-NN"
-
-#. oo99
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3157894\n"
-"218\n"
-"help.text"
-msgid "D6 = HH:MM:SS AM/PM"
-msgstr "D6 = ÓÓ:PP:SS DE/DU"
-
-#. h75@
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154068\n"
-"219\n"
-"help.text"
-msgid "D7 = HH:MM AM/PM"
-msgstr "D7 = ÓÓ:PP DE/DU"
-
-#. xcy0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150286\n"
-"220\n"
-"help.text"
-msgid "D8 = HH:MM:SS"
-msgstr "D8 = ÓÓ:PP:SS"
-
-#. T9^o
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145756\n"
-"221\n"
-"help.text"
-msgid "D9 = HH:MM"
-msgstr "D9 = ÓÓ:PP"
-
-#. ^b[!
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145768\n"
-"222\n"
-"help.text"
-msgid "G = All other formats"
-msgstr "G = minden más formátum"
-
-#. 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 "- (Mínusz) a végén = a negatív számok színesen jelennek meg."
-
-#. 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 "() (zárójelek) a végén = a formátumkódban egy nyitó zárójel van"
-
-#. 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-et ad vissza, ha a negatív számok színesen jelennek meg, egyébként 0-t."
-
-#. 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-et ad vissza, ha a formátumkód nyitó zárójelet ( tartalmaz, egyébként 0-t."
-
-#. 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 "A <emph>hivatkozás</emph> (beállítások felsorolása) a megvizsgálni kívánt cella pozíciója. Ha a <emph>hivatkozás</emph> tartomány, akkor a cella a tartomány bal felső sarkába kerül. Ha a <emph>hivatkozás</emph> nincs megadva, akkor a $[officename] a képletet tartalmazó cella pozícióját használja. A Microsoft Excel a kurzort tartalmazó cella hivatkozását használja."
-
-#. 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 függvény</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\"> Az eredmény egy 0 és 1 közötti szám, amely az év törtrészét jelöli a <emph>kezdő_dátum</emph> és a <emph>befejező_dátum</emph> között.</ahelp>"
-
-#. p74l
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3155259\n"
-"198\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2,Pa
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155823\n"
-"199\n"
-"help.text"
-msgid "YEARFRAC(StartDate; EndDate; Basis)"
-msgstr "YEARFRAC(kezdő_dátum; befejező_dátum; alap)"
-
-#. 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 "A <emph>kezdő_dátum</emph> és a <emph>befejező_dátum</emph> két dátumérték."
-
-#. 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 "Az <emph>alap</emph> az alábbi lehetőségek közül választható ki, és az év számításának módját határozza meg."
-
-#. 3RB#
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3146847\n"
-"202\n"
-"help.text"
-msgid "Basis"
-msgstr "Alap"
-
-#. j``+
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155956\n"
-"203\n"
-"help.text"
-msgid "Calculation"
-msgstr "Számolás"
-
-#. Q4v]
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154502\n"
-"204\n"
-"help.text"
-msgid "0 or missing"
-msgstr "0 vagy hiányzik"
-
-#. 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 "Amerikai módszer (NASD), 12 hónap, mindegyik 30 napos"
-
-#. 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 "A hónapokban szereplő napok pontos száma, az évben levő napok pontos száma"
-
-#. \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 "A hónapokban szereplő napok pontos száma, az év 360 napos"
-
-#. 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 "A hónapokban szereplő napok pontos száma, az év 365 napos"
-
-#. 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 "Európai módszer, 12 hónap, mindegyik 30 napos"
-
-#. K:z1
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3145626\n"
-"210\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 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 "A 2008. év hányad része esik 2008. január 1. és 2008. július 1. közé?"
-
-#. ^_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 "A =YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) eredménye 0,50."
-
-#. U$@2
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Advanced Filter"
-msgstr "Irányított szűrő"
-
-#. m~#3
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"hd_id3158394\n"
-"1\n"
-"help.text"
-msgid "Advanced Filter"
-msgstr "Irányított szűrő"
-
-#. 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\">Egy irányított szűrőt határoz meg.</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 "Szűrőfeltétel beolvasása innen:"
-
-#. ]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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Jelölje ki a névvel ellátott tartományt, vagy adja meg a használni kívánt szűrőfeltételt tartalmazó cellatartományt.</ahelp>"
-
-#. !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=\"Részletek\">Részletek</link>"
-
-#. {RWN
-#: 06030600.xhp
-msgctxt ""
-"06030600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trace Error"
-msgstr "Hiba felderítése"
-
-#. @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>cellák; hibák felderítése</bookmark_value><bookmark_value>hibák felderítése</bookmark_value><bookmark_value>hibafelderítés</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=\"Hiba felderítése\">Hiba felderítése</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 "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Felderítő nyilakat rajzol minden megelőző cellába, amelyek hibát eredményeztek a kijelölt cellában.</ahelp>"
-
-#. 43\@
-#: 02140200.xhp
-msgctxt ""
-"02140200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Right"
-msgstr "Jobbra"
-
-#. 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=\"Jobbra\">Jobbra</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\">Legalább két oszlopból álló tartományt a tartomány bal szélső cellájának tartalmával tölt fel.</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 "Ha egyetlen sorból álló tartományt jelöl ki, akkor a balról első cella tartalma kerül másolásra az összes többi cellába. Ha több sort jelölt ki, akkor minden egyes balról első cella lemásolásra kerül a tőle jobbra található cellákba."
-
-#. jT9g
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data field"
-msgstr "Adatmező"
-
-#. \]o9
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"bm_id7292397\n"
-"help.text"
-msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
-msgstr "<bookmark_value>számolás;kimutatástábla</bookmark_value>"
-
-#. d0~_
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3150871\n"
-"1\n"
-"help.text"
-msgid "Data field"
-msgstr "Adatmező"
-
-#. {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 "E párbeszédablak tartalma eltér az <emph>Adatok</emph> területen található adatmezők, illetve az <link href=\"text/scalc/01/12090102.xhp\" name=\"Kimutatástábla\">Kimutatástábla</link> párbeszédablak <emph>Sor</emph> és <emph>Oszlop</emph> területén található adatmezők esetében."
-
-#. EA%@
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3152596\n"
-"2\n"
-"help.text"
-msgid "Subtotals"
-msgstr "Részösszegek"
-
-#. 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\">Adja meg a kiszámítani kívánt részösszegeket.</ahelp>"
-
-#. K$|A
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3145366\n"
-"4\n"
-"help.text"
-msgid "None"
-msgstr "Nincs"
-
-#. 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\">Nem számol részösszegeket.</ahelp>"
-
-#. %k1I
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3154012\n"
-"6\n"
-"help.text"
-msgid "Automatic"
-msgstr "Automatikus"
-
-#. 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\">Automatikusan kiszámítja a részösszegeket.</ahelp>"
-
-#. oD}a
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3155411\n"
-"8\n"
-"help.text"
-msgid "User-defined"
-msgstr "Egyéni"
-
-#. 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 "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Válassza ezt a lehetőséget, majd jelölje ki a listán a kiszámítani kívánt részösszeg típusát.</ahelp>"
-
-#. 6IjJ
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3147124\n"
-"10\n"
-"help.text"
-msgid "Function"
-msgstr "Függvény"
-
-#. 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 "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Kattintson a kiszámítani kívánt részösszeg típusára. A beállítás csak akkor érhető el, ha az <emph>Egyéni</emph> beállítást ki van választva.</ahelp>"
-
-#. m)=5
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3154944\n"
-"14\n"
-"help.text"
-msgid "Show elements without data"
-msgstr "Elemek megjelenítése adatok nélkül"
-
-#. m-}b
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3149403\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Felveszi az eredménytáblába az üres sorokat és oszlopokat is.</ahelp>"
-
-#. +,O[
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3149122\n"
-"12\n"
-"help.text"
-msgid "Name:"
-msgstr "Név:"
-
-#. v[oU
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3150749\n"
-"13\n"
-"help.text"
-msgid "Lists the name of the selected data field."
-msgstr "Felsorolja a kijelölt adatmező nevét."
-
-#. ~}q-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN106EC\n"
-"help.text"
-msgid "More"
-msgstr "Részletek"
-
-#. k}[d
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN106F0\n"
-"help.text"
-msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Kibontja vagy összecsukja a párbeszédablakot. A <emph>Részletek</emph> gomb csak az adatmezőkhöz érhető el.</ahelp>"
-
-#. CIR7
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN106F3\n"
-"help.text"
-msgid "Options"
-msgstr "Beállítások"
-
-#. \hjL
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN106F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Megnyitja az <link href=\"text/scalc/01/12090106.xhp\">Adatmező beállításai</link> párbeszédablakot. A <emph>Beállítások</emph> gomb csak oszlopok, sorok és oldalmezők számára látható.</ahelp>"
-
-#. SKms
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10708\n"
-"help.text"
-msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
-msgstr "Ha a párbeszédablakot kibontja a <emph>Részletek</emph> gombbal, a következő elemek lesznek láthatók:"
-
-#. oRS`
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1070B\n"
-"help.text"
-msgid "Displayed value"
-msgstr "Megjelenített érték"
-
-#. a;DC
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1070F\n"
-"help.text"
-msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
-msgstr "<ahelp hid=\".\">Minden egyes adatmező esetén kiválaszthatja a megjelenítés típusát.</ahelp> Egyes típusoknál további információkat adhat meg a bázismezővel és a báziselemmel kapcsolatban."
-
-#. aFKc
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10712\n"
-"help.text"
-msgid "Type"
-msgstr "Típus"
-
-#. {2hV
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10716\n"
-"help.text"
-msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr "<ahelp hid=\"1495371266\">Válassza ki az adatmező megjelenített értékére vonatkozó számítástípust.</ahelp>"
-
-#. afr\
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10724\n"
-"help.text"
-msgid "Type"
-msgstr "Típus"
-
-#. L)-5
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1072A\n"
-"help.text"
-msgid "Displayed value"
-msgstr "Megjelenített érték"
-
-#. OQ3\
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10731\n"
-"help.text"
-msgid "Normal"
-msgstr "Normál"
-
-#. !Dg_
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10737\n"
-"help.text"
-msgid "Results are shown unchanged"
-msgstr "Az eredmények módosítás nélkül jelennek meg."
-
-#. SM7B
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1073E\n"
-"help.text"
-msgid "Difference from"
-msgstr "Különbség"
-
-#. j?.s
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10744\n"
-"help.text"
-msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
-msgstr "Minden egyes eredményből kivonásra kerül annak referenciaértéke (lásd alább), és megjelenik a különbség. A bázismezőn kívüli összegek üres eredményként jelennek meg."
-
-#. 1|W|
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10747\n"
-"help.text"
-msgid "<emph>Named item</emph>"
-msgstr "<emph>Elnevezett elemek</emph>"
-
-#. C=FE
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1074C\n"
-"help.text"
-msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
-msgstr "Ha egy báziselem neve meg van adva, akkor a mezőelemek kombinációjának referenciaértéke az az eredmény, ahol a bázismező eleme lecserélésre kerül a megadott báziselemre."
-
-#. =/@T
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1074F\n"
-"help.text"
-msgid "<emph>Previous item or Next item</emph>"
-msgstr "<emph>Előző elem vagy Következő elem</emph>"
-
-#. (jY,
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10754\n"
-"help.text"
-msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
-msgstr "Ha az „előző elem” vagy a „következő elem” van megadva báziselemként, a referenciaérték a bázismező következő látható tagjának az eredménye, a bázismező sorrendjében."
-
-#. sEPk
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1075B\n"
-"help.text"
-msgid "% Of"
-msgstr "%-a"
-
-#. t*_!
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10761\n"
-"help.text"
-msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
-msgstr "Minden eredmény el lesz osztva saját referenciaértékével. A referenciaérték ugyanúgy kerül meghatározásra, mint a „Különbség”. A bázismezőn kívüli összegek üres eredményként jelennek meg."
-
-#. @YN.
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1076A\n"
-"help.text"
-msgid "% Difference from"
-msgstr "% eltérés"
-
-#. :\U(
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10770\n"
-"help.text"
-msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
-msgstr "Minden egyes eredményből kivonásra kerül annak referenciaértéke, és a különbség osztásra kerül a referenciaértékkel. A referenciaérték ugyanúgy kerül meghatározásra, mint a \"Különbség\". A bázismezőn kívüli összegek üres eredményként jelennek meg."
-
-#. O%R5
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10777\n"
-"help.text"
-msgid "Running total in"
-msgstr "Göngyölített összeg"
-
-#. yJ6(
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1077D\n"
-"help.text"
-msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
-msgstr "Minden egyes eredmény hozzáadásra kerül a bázismező előző elemeinek eredményösszegéhez a bázismező rendezési sorrendjében, és megjelenik a végösszeg."
-
-#. MSMT
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10780\n"
-"help.text"
-msgid "Results are always summed, even if a different summary function was used to get each result."
-msgstr "Az eredmények mindig összegzésre kerülnek, még akkor is, ha egy másik összegzési függvényt használt az egyes eredményekhez."
-
-#. QTC.
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10787\n"
-"help.text"
-msgid "% of row"
-msgstr "%-a a soroknak"
-
-#. 0]zZ
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1078D\n"
-"help.text"
-msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
-msgstr "Minden eredmény osztásra kerül a kimutatástáblában elfoglalt sorának összegével. Ha több adatmező van, az eredmény adatmezőjének összege kerül felhasználásra. Ha kézzel kijelölt összegzőfüggvénnyel készült részösszegek vannak, az adatmező összegzésfüggvényének összege lesz továbbra is felhasználva."
-
-#. m#OY
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10794\n"
-"help.text"
-msgid "% of column"
-msgstr "%-a az oszlopoknak"
-
-#. Yo!e
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN1079A\n"
-"help.text"
-msgid "Same as \"% of row\", but the total for the result's column is used."
-msgstr "Ugyanaz, mint a „%-a a soroknak”, de az eredmény oszlopának összege kerül felhasználásra."
-
-#. PW]^
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107A1\n"
-"help.text"
-msgid "% of total"
-msgstr "%-a az összesnek"
-
-#. MsJ1
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107A7\n"
-"help.text"
-msgid "Same as \"% of row\", but the grand total for the result's data field is used."
-msgstr "Ugyanaz, mint a „%-a a soroknak”, de az eredmény adatmezőjének végösszege kerül felhasználásra."
-
-#. ~Z_@
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107AE\n"
-"help.text"
-msgid "Index"
-msgstr "Index"
-
-#. Z_(S
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107B4\n"
-"help.text"
-msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
-msgstr "A sor- és oszlopösszegek, valamint a végösszeg, a fenti szabályokat követve, a következő kifejezés számításához használatosak:"
-
-#. bHR-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107B7\n"
-"help.text"
-msgid "( original result * grand total ) / ( row total * column total )"
-msgstr "( eredeti eredmény * végösszeg) / (sorösszeg * oszlopösszeg)"
-
-#. _ACm
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107BA\n"
-"help.text"
-msgid "Base field"
-msgstr "Bázismező"
-
-#. _hdS
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107BE\n"
-"help.text"
-msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371267\">Válassza ki azt a mezőt, amelyből a megfelelő érték lesz a számítás bázisa, alapja.</ahelp>"
-
-#. hbix
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107C1\n"
-"help.text"
-msgid "Base item"
-msgstr "Báziselem"
-
-#. 9Zry
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN107C5\n"
-"help.text"
-msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371268\">Válassza ki a bázismező elemét, amelyből a megfelelő érték lesz a számítás bázisa, alapja.</ahelp>"
-
-#. $y4C
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Deleting Contents"
-msgstr "Tartalom törlése"
-
-#. QN/G
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"bm_id3143284\n"
-"help.text"
-msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
-msgstr "<bookmark_value>törlés; cellák tartalma</bookmark_value><bookmark_value>cellák; tartalom törlése</bookmark_value><bookmark_value>munkafüzetek; cellatartalom törlése</bookmark_value><bookmark_value>cellatartalmak; törlés</bookmark_value>"
-
-#. VXPY
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3143284\n"
-"1\n"
-"help.text"
-msgid "Deleting Contents"
-msgstr "Tartalom törlése"
-
-#. s|p,
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
-msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Meghatározza az aktív cellából, illetve a kijelölt cellatartományból törölni kívánt tartalom típusát.</ahelp></variable> Ha több munkalap van kijelölve, akkor a művelet az összes munkalapot érinti."
-
-#. dAc^
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3159154\n"
-"21\n"
-"help.text"
-msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
-msgstr "Ezt a párbeszédablakot úgy is előhívhatja, ha a kurzort aktiválja a munkalapon, majd lenyomja a Backspace billentyűt."
-
-#. n}]=
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3145367\n"
-"22\n"
-"help.text"
-msgid "Pressing Delete deletes content without calling the dialog or changing formats."
-msgstr "A Delete billentyű lenyomásával a tartalmakat a párbeszédablak előhívása, valamint a formátum megváltoztatása nélkül lehet törölni."
-
-#. 3p*y
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3153951\n"
-"23\n"
-"help.text"
-msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
-msgstr "A Standard eszköztár <emph>Kivágás</emph> ikonjával törölhet tartalmakat és formátumokat a párbeszédablak megjelenítése nélkül."
-
-#. UJBb
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3148575\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Kijelölés"
-
-#. khWB
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149665\n"
-"4\n"
-"help.text"
-msgid "This area lists the options for deleting contents."
-msgstr "Ez a terület felsorolja a tartalmak törlésének beállításait."
-
-#. VIq)
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3146975\n"
-"5\n"
-"help.text"
-msgid "Delete All"
-msgstr "Összes törlése"
-
-#. cq/h
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154729\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Törli a kiválasztott cellatartomány teljes tartalmát.</ahelp>"
-
-#. }B7$
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3156286\n"
-"7\n"
-"help.text"
-msgid "Text"
-msgstr "Szöveg"
-
-#. IRY_
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154015\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Csak a szöveg törlődik. A művelet nem érinti a formázásokat, képleteket, számokat és dátumokat.</ahelp>"
-
-#. uT5A
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3153840\n"
-"9\n"
-"help.text"
-msgid "Numbers"
-msgstr "Számok"
-
-#. L]8P
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3148405\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Csak a számok kerülnek törlésre. A formázások és képletek változatlan állapotban megmaradnak.</ahelp>"
-
-#. TJ2e
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3155764\n"
-"11\n"
-"help.text"
-msgid "Date & time"
-msgstr "Dátum és idő"
-
-#. Fljr
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149567\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">A dátum- és időértékek kerülnek törlésre. A formázások, szövegek, számok és képletek változatlan állapotban megmaradnak.</ahelp>"
-
-#. ?8Lv
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3154703\n"
-"13\n"
-"help.text"
-msgid "Formulas"
-msgstr "Képletek"
-
-#. FSBZ
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3148485\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">A képletek kerülnek törlésre. A szövegek, számok, formázások, dátumok és idők változatlan állapotban megmaradnak.</ahelp>"
-
-#. g:=g
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3150300\n"
-"15\n"
-"help.text"
-msgid "Comments"
-msgstr "Megjegyzések"
-
-#. Ejz0
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154658\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">A cellákhoz fűzött megjegyzések törlése. Az összes többi elem változatlan állapotban megmarad.</ahelp>"
-
-#. #S`4
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3155112\n"
-"17\n"
-"help.text"
-msgid "Formats"
-msgstr "Formázások"
-
-#. cSYl
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3146134\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">A cellákra alkalmazott formázási attribútumok kerülnek törlésre. A teljes cellatartalom változatlan állapotban megmarad.</ahelp>"
-
-#. F6.w
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3150088\n"
-"19\n"
-"help.text"
-msgid "Objects"
-msgstr "Objektumok"
-
-#. k+sP
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3152990\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Az objektumok kerülnek törlésre. A teljes cellatartalom változatlan állapotban megmarad.</ahelp>"
-
-#. ZYEO
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Ungroup"
-msgstr "Csoport szétbontása"
-
-#. NA=%
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"hd_id3148492\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Csoport szétbontása\">Csoport szétbontása</link>"
-
-#. |GiX
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"par_id3151384\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
-msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Kijelölt csoport szétbontása. Beágyazott csoport esetén az utoljára hozzáadott sorok és oszlopok kerülnek eltávolításra a csoportból.</ahelp></variable>"
-
-#. SsT%
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"hd_id3151210\n"
-"3\n"
-"help.text"
-msgid "Deactivate for"
-msgstr "Kikapcsolás:"
-
-#. cdfq
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"hd_id3156280\n"
-"5\n"
-"help.text"
-msgid "Rows"
-msgstr "Sorok"
-
-#. Ze]^
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"par_id3125864\n"
-"6\n"
-"help.text"
-msgid "Removes selected rows from a group."
-msgstr "Eltávolítja a csoportból a kijelölt sorokat."
-
-#. BvWN
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"hd_id3147230\n"
-"7\n"
-"help.text"
-msgid "Columns"
-msgstr "Oszlopok"
-
-#. $Z;%
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"par_id3154685\n"
-"8\n"
-"help.text"
-msgid "Removes selected columns from a group."
-msgstr "Eltávolítja a csoportból a kijelölt oszlopokat."
-
-#. z.Re
-#: 07090000.xhp
-msgctxt ""
-"07090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Freeze"
-msgstr "Rögzítés"
-
-#. 1+|@
-#: 07090000.xhp
-msgctxt ""
-"07090000.xhp\n"
-"hd_id3150517\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Rögzítés\">Rögzítés</link>"
-
-#. D{^D
-#: 07090000.xhp
-msgctxt ""
-"07090000.xhp\n"
-"par_id3156289\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
-msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Felosztja a munkalapot az aktív cella bal felső sarkánál, és a bal felső terület onnantól nem gördíthető.</ahelp>"
-
-#. 6y!]
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Subtotals"
-msgstr "Részösszegek"
-
-#. ^}+u
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"hd_id3153822\n"
-"1\n"
-"help.text"
-msgid "Subtotals"
-msgstr "Részösszegek"
-
-#. JfdV
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"par_id3145119\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
-msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">A kijelölt oszlop részösszegeit számítja ki.</ahelp></variable> A $[officename] a címkével ellátott tartományok rész-, illetve végösszegeinek automatikus kiszámításához a SZUM függvényt alkalmazza. A számítás elvégzéséhez más függvényeket is használhat. A $[officename] automatikusan felismer egy meghatározott adatbázis-tartományt, ha a kurzort ráhelyezi."
-
-#. TCD6
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"par_id3153896\n"
-"3\n"
-"help.text"
-msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
-msgstr "Például készíthet egy értékesítési összesítést a különböző irányítószámok szerint az ügyféladatbázisok adatai alapján."
-
-#. +Q1J
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"hd_id3163708\n"
-"4\n"
-"help.text"
-msgid "Delete"
-msgstr "Törlés"
-
-#. WsG=
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"par_id3154125\n"
-"5\n"
-"help.text"
-msgid "Deletes the subtotal rows in the selected area."
-msgstr "Törli a kijelölt területen lévő részösszegeket tartalmazó sorokat."
-
-#. F?$D
-#: 06030800.xhp
-msgctxt ""
-"06030800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mark Invalid Data"
-msgstr "Érvénytelen adatok megjelölése"
-
-#. ](iE
-#: 06030800.xhp
-msgctxt ""
-"06030800.xhp\n"
-"bm_id3153821\n"
-"help.text"
-msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
-msgstr "<bookmark_value>cellák; érvénytelen adat</bookmark_value><bookmark_value>adat; érvénytelen adat megtekintése</bookmark_value><bookmark_value>érvénytelen adat;megjelölés</bookmark_value>"
-
-#. 5oB^
-#: 06030800.xhp
-msgctxt ""
-"06030800.xhp\n"
-"hd_id3153821\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
-msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Érvénytelen adatok megjelölése\">Érvénytelen adatok megjelölése</link>"
-
-#. rsY?
-#: 06030800.xhp
-msgctxt ""
-"06030800.xhp\n"
-"par_id3147264\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">A munkalap minden, érvényességi szabályokon kívül eső értékű celláját bejelöli.</ahelp>"
-
-#. H9rq
-#: 06030800.xhp
-msgctxt ""
-"06030800.xhp\n"
-"par_id3151211\n"
-"3\n"
-"help.text"
-msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
-msgstr "Az <link href=\"text/scalc/01/12120000.xhp\" name=\"érvényességi szabályok\">érvényességi szabályok</link> a számok, dátum- és időértékek, illetve szövegek adatbevitelét bizonyos értékekre korlátozzák. Ha azonban a <emph>Leállítás</emph> beállítás nincs kiválasztva, a cellákba érvénytelen értékeket is beírhat, illetve bemásolhat. Egy érvényességi szabály hozzárendelésekor a cellában található meglévő értékek nem kerülnek módosításra."
-
-#. ,|pN
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"tit\n"
-"help.text"
-msgid "EASTERSUNDAY"
-msgstr "EASTERSUNDAY"
-
-#. w_XB
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"bm_id3152960\n"
-"help.text"
-msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
-msgstr "<bookmark_value>EASTERSUNDAY függvény</bookmark_value>"
-
-#. RQcN
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3152960\n"
-"175\n"
-"help.text"
-msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
-msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
-
-#. nwr;
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154570\n"
-"176\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Húsvét vasárnap dátumát adja vissza a megadott évben.</ahelp>"
-
-#. D5G:
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id9460127\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. }XFd
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id2113711\n"
-"help.text"
-msgid "EASTERSUNDAY(Year)"
-msgstr "EASTERSUNDAY(év)"
-
-#. Y!!C
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3938413\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
-msgstr "Az <emph>év</emph> egy 1583 és 9956 vagy egy 0 és 99 közötti egész szám. E dátum használatával más ünnepnapok is kiszámíthatók egyszerű összeadás segítségével."
-
-#. 4(PX
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3156156\n"
-"177\n"
-"help.text"
-msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
-msgstr "Húsvéthétfő = EASTERSUNDAY(Év) + 1"
-
-#. OOY,
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3147521\n"
-"178\n"
-"help.text"
-msgid "Good Friday = EASTERSUNDAY(Year) - 2"
-msgstr "Nagypéntek = EASTERSUNDAY(Év) - 2"
-
-#. C?kc
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3146072\n"
-"179\n"
-"help.text"
-msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
-msgstr "Pünkösdvasárnap = EASTERSUNDAY(Év) + 49"
-
-#. ]m1\
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3149553\n"
-"180\n"
-"help.text"
-msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
-msgstr "Pünkösdhétfő = EASTERSUNDAY(Év) + 50"
-
-#. 3DY?
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3155120\n"
-"181\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. nN$z
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154472\n"
-"182\n"
-"help.text"
-msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
-msgstr "Az EASTERSUNDAY(2000) függvény a 2000-04-23 értéket adja vissza."
-
-#. h6X#
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3150940\n"
-"184\n"
-"help.text"
-msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "Az EASTERSUNDAY(2000)+49 függvény a 36688 belső sorozatszámot adja vissza. Az eredmény 2000-06-11. A sorszám formátumú dátumszámot dátumként formázza, például ÉÉÉÉ-HH-NN formátumban."
-
-#. +FoZ
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Navigator"
-msgstr "Navigátor"
-
-#. 9RS2
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
-msgstr "<bookmark_value>Navigátor;munkalapokhoz</bookmark_value><bookmark_value>navigálás;munkafüzetekben</bookmark_value><bookmark_value>megjelenítés; esetnevek</bookmark_value><bookmark_value>esetek;nevek megjelenítése</bookmark_value>"
-
-#. f|._
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigátor\">Navigátor</link>"
-
-#. Vy@N
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3156422\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
-msgstr "<ahelp hid=\".uno:Navigator\">Be- vagy kikapcsolja a Navigátort.</ahelp> A Navigátor <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dokkolható ablak\">dokkolható ablak</link>."
-
-#. q])@
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3145271\n"
-"40\n"
-"help.text"
-msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
-msgstr "Válassza a <emph>Nézet - Navigátor</emph> menüparancsot a Navigátor megjelenítéséhez."
-
-#. ]X.B
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3159155\n"
-"4\n"
-"help.text"
-msgid "Column"
-msgstr "Oszlop"
-
-#. T^`A
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3146984\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Írja be az oszlop betűjelét. Nyomja meg az Entert, és a cellakurzor az aktuális sor megadott oszlopába ugrik.</ahelp>"
-
-#. piGD
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3147126\n"
-"6\n"
-"help.text"
-msgid "Row"
-msgstr "Sor"
-
-#. 7YC}
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3149958\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Írja be a sor számát. Nyomja meg az Entert, és a cellakurzor az aktuális oszlop megadott sorába ugrik.</ahelp>"
-
-#. ~Zo?
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150717\n"
-"8\n"
-"help.text"
-msgid "Data Range"
-msgstr "Adattartomány"
-
-#. qZVW
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150752\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Megadja az aktuális adattartományt, amelyet a cellakurzor pozíciója határoz meg.</ahelp>"
-
-#. s-TK
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3159264\n"
-"help.text"
-msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Ikon</alt></image>"
-
-#. 2X?C
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3146919\n"
-"9\n"
-"help.text"
-msgid "Data Range"
-msgstr "Adattartomány"
-
-#. TI!S
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3148488\n"
-"14\n"
-"help.text"
-msgid "Start"
-msgstr "Indítás"
-
-#. YAk)
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150086\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Az <emph>Adattartomány</emph> gombbal kiemelhető aktuális adattartomány első cellájára ugrik.</ahelp>"
-
-#. n4~[
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3152994\n"
-"help.text"
-msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Ikon</alt></image>"
-
-#. BcjC
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3154372\n"
-"15\n"
-"help.text"
-msgid "Start"
-msgstr "Indítás"
-
-#. Bl$r
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3146982\n"
-"17\n"
-"help.text"
-msgid "End"
-msgstr "Vége"
-
-#. mVyD
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3152985\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Az <emph>Adattartomány</emph> gombbal kiemelhető aktuális adattartomány utolsó cellájára ugrik.</ahelp>"
-
-#. 6_6L
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3159170\n"
-"help.text"
-msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Ikon</alt></image>"
-
-#. %1MY
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3147072\n"
-"18\n"
-"help.text"
-msgid "End"
-msgstr "Vége"
-
-#. x2TG
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150107\n"
-"20\n"
-"help.text"
-msgid "Toggle"
-msgstr "Kapcsoló"
-
-#. `~4E
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3159098\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Átkapcsol a tartalomnézetek között. Csak a kijelölt Navigátor-elemek, illetve azok alelemei kerülnek megjelenítésre.</ahelp> Ha újból rákattint az ikonra, akkor az összes elemet megjeleníti."
-
-#. P+_*
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3152869\n"
-"help.text"
-msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Ikon</alt></image>"
-
-#. }##F
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3159229\n"
-"21\n"
-"help.text"
-msgid "Toggle"
-msgstr "Kapcsoló"
-
-#. sK(G
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3149381\n"
-"11\n"
-"help.text"
-msgid "Contents"
-msgstr "Tartalom"
-
-#. y:B+
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150051\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">A tartalmat jeleníti meg vagy rejti el.</ahelp>"
-
-#. T4SL
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3155597\n"
-"help.text"
-msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Ikon</alt></image>"
-
-#. ]cE?
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150955\n"
-"12\n"
-"help.text"
-msgid "Contents"
-msgstr "Tartalom"
-
-#. _~$T
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3147244\n"
-"23\n"
-"help.text"
-msgid "Scenarios"
-msgstr "Esetek"
-
-#. :*\#
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3153955\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Megjeleníti az összes rendelkezésre álló esetet. Kattintson duplán egy néven az adott eset alkalmazásához.</ahelp> A munkalapon megjelennek az eredmények. További információkért válassza az <link href=\"text/scalc/01/06050000.xhp\" name=\"Eszközök - Esetek\"><emph>Eszközök - Esetek</emph></link> menüparancsot."
-
-#. .6ZG
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3148745\n"
-"help.text"
-msgid "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Ikon</alt></image>"
-
-#. GhP=
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3166466\n"
-"24\n"
-"help.text"
-msgid "Scenarios"
-msgstr "Esetek"
-
-#. NEuH
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_idN10A6C\n"
-"help.text"
-msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
-msgstr "Ha a Navigátor eseteket jelenít meg, a következő parancsokat érheti el, ha jobb gombbal kattint egy esetelemre:"
-
-#. s)81
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_idN10A77\n"
-"help.text"
-msgid "Delete"
-msgstr "Törlés"
-
-#. nBeh
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_idN10A7B\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Törli a kijelölt esetet.</ahelp>"
-
-#. SS))
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_idN10A92\n"
-"help.text"
-msgid "Properties"
-msgstr "Tulajdonságok"
-
-#. i%X@
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_idN10A96\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Megnyitja az <link href=\"text/scalc/01/06050000.xhp\">Eset szerkesztése</link> párbeszédablakot, ahol szerkesztheti az esettulajdonságokat.</ahelp>"
-
-#. 1H75
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150037\n"
-"26\n"
-"help.text"
-msgid "Drag Mode"
-msgstr "Beszúrás módja"
-
-#. VZ4C
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3157876\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Almenüt nyit meg a beszúrási mód kiválasztásához. Meghatározhatja, hogy melyik művelet kerül végrehajtásra akkor, amikor a Navigátorból egy objektumot húzással a dokumentumba másol. A kijelölt módtól függően az ikon megmutatja, hogy hiperhivatkozás, hivatkozás vagy másolat kerül létrehozásra.</ahelp>"
-
-#. O4T3
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Ikon</alt></image>"
-
-#. B_]z
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150656\n"
-"27\n"
-"help.text"
-msgid "Drag Mode"
-msgstr "Beszúrás módja"
-
-#. ,2ab
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3149009\n"
-"29\n"
-"help.text"
-msgid "Insert as Hyperlink"
-msgstr "Beszúrás hiperhivatkozásként"
-
-#. -QUo
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3146938\n"
-"30\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">Hiperhivatkozást szúr be, amikor egy objektumot a Navigátorból a dokumentumba húz.</ahelp> A későbbiekben a hiperhivatkozásra való kattintással állíthatja be a megfelelő objektum kurzorját és nézetét."
-
-#. [(q{
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3880733\n"
-"help.text"
-msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
-msgstr "Ha egy megnyitott dokumentumra mutató hiperhivatkozást szúr be, mentenie kell a dokumentumot, mielőtt használhatná a hiperhivatkozást."
-
-#. X0E{
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3154682\n"
-"31\n"
-"help.text"
-msgid "Insert as Link"
-msgstr "Beszúrás hivatkozásként"
-
-#. os}C
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150746\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Hivatkozást hoz létre egy objektum a Navigátorból a dokumentumba való húzásakor.</ahelp>"
-
-#. f:91
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3145824\n"
-"33\n"
-"help.text"
-msgid "Insert as Copy"
-msgstr "Beszúrás másolatként"
-
-#. Uv^`
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3147471\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Másolatot hoz létre, amikor egy objektumot a Navigátorból a dokumentumba húz.</ahelp>"
-
-#. ;[JG
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3147423\n"
-"38\n"
-"help.text"
-msgid "Objects"
-msgstr "Objektumok"
-
-#. I(iA
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150700\n"
-"39\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Megjeleníti a dokumentumhoz tartozó összes objektumot.</ahelp>"
-
-#. 0%MK
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150860\n"
-"35\n"
-"help.text"
-msgid "Documents"
-msgstr "Dokumentumok"
-
-#. D[4r
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3153929\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Megjeleníti az összes megnyitott dokumentum nevét.</ahelp> Ha a Navigátorban egy másik megnyitott dokumentumra kíván váltani, akkor kattintson a dokumentum nevére. A dokumentum állapota (aktív, inaktív) a név után, szögletes zárójelek között jelenik meg. Az aktív dokumentumot az <emph>Ablak</emph> menüben válthatja át másikra."
-
-#. 7_:U
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function List"
-msgstr "Függvénylista"
-
-#. )`Yw
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"bm_id3154126\n"
-"help.text"
-msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
-msgstr "<bookmark_value>képletlista-ablak</bookmark_value><bookmark_value>függvénylista-ablak</bookmark_value><bookmark_value>függvények beszúrása; függvénylista-ablak</bookmark_value>"
-
-#. LW9/
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"hd_id3154126\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
-msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Függvénylista\">Függvénylista</link>"
-
-#. 5WO}
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"par_id3151118\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
-msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Ez a parancs a dokumentumba beszúrható összes függvényt felsoroló <emph>Függvénylista</emph> ablakot nyitja meg.</ahelp></variable> A <emph>Függvénylista</emph> ablak hasonlít a <link href=\"text/scalc/01/04060000.xhp\" name=\"Függvénytündér\">Függvénytündér</link> <emph>Függvények</emph> lapjára. A függvények kitöltőkarakterekkel kerülnek beszúrásra, amelyeket saját értékeire cserélhet."
-
-#. woC*
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"par_id3152576\n"
-"3\n"
-"help.text"
-msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
-msgstr "A <emph>Függvénylista</emph> ablak átméretezhető, illetve <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dokkolható\">dokkolható</link>. Az ablak használatával gyorsan és könnyedén írhat be függvényeket a táblázatba. Ha duplán kattint a függvénylista egyik elemére, akkor a megfelelő függvény annak összes paraméterével együtt közvetlenül beszúrásra kerül."
-
-#. _@H]
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"hd_id3145799\n"
-"4\n"
-"help.text"
-msgid "Category List"
-msgstr "Kategórialista"
-
-#. !0nG
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"hd_id3153160\n"
-"5\n"
-"help.text"
-msgid "Function List"
-msgstr "Függvénylista"
-
-#. X$Gp
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"par_id3149412\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
-msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Megjeleníti az elérhető funkciókat.</ahelp> Egy függvény kijelölésekor a lista alatt található területen megjelenik a függvény rövid leírása. A kijelölt függvény beszúrásához kattintson duplán a függvény nevére, vagy kattintson a <emph>Függvény beszúrása a számítási munkalapra</emph> ikonra."
-
-#. !!0B
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"hd_id3146971\n"
-"7\n"
-"help.text"
-msgid "Insert Function into calculation sheet"
-msgstr "Függvény beszúrása a számítási munkalapba"
-
-#. SAar
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"par_id3150043\n"
-"help.text"
-msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikon</alt></image>"
-
-#. Sn6A
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"par_id3147345\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
-msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Beszúrja a kijelölt függvényt a dokumentumba.</ahelp>"
-
-#. Xgot
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Consolidate"
-msgstr "Összesítés"
-
-#. zXdD
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "Consolidate"
-msgstr "Összesítés"
-
-#. Jd}!
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3148798\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
-msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Összefésüli az adatokat egy vagy több különálló cellatartományban, és kiszámítja a megadott függvénnyel az új tartományt.</ahelp></variable>"
-
-#. oRo_
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3150010\n"
-"8\n"
-"help.text"
-msgid "Function"
-msgstr "Függvény"
-
-#. @|h]
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3149377\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Válassza ki a függvényt, amelyet az adatok összesítésekor kíván használni.</ahelp>"
-
-#. aCtm
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3147127\n"
-"10\n"
-"help.text"
-msgid "Consolidation ranges"
-msgstr "Összesített tartományok"
-
-#. Et_^
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3151075\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Megjeleníti az összesítendő cellatartományt.</ahelp>"
-
-#. ;s_X
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3147397\n"
-"12\n"
-"help.text"
-msgid "Source data range"
-msgstr "Forrásadat-tartomány"
-
-#. j\i7
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3153836\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Meghatározza azt a cellatartományt, amelyet összesíteni kíván az <emph>Összesített tartományok</emph> mezőben felsorolt cellatartományokkal. Jelöljön ki egy cellatartományt egy munkalapon, majd kattintson a <emph>Hozzáadás</emph> gombra. Ezenkívül egy előre meghatározott cella nevét is kijelölheti a <emph>Forrásadat-tartomány</emph> listáról.</ahelp>"
-
-#. W}Nr
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3155768\n"
-"15\n"
-"help.text"
-msgid "Copy results to"
-msgstr "Eredmény másolási helye"
-
-#. )O8!
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3147341\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Megjeleníti a tartomány első celláját, ahol az összesített eredmények fognak megjelenni.</ahelp>"
-
-#. [_w~
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3147345\n"
-"17\n"
-"help.text"
-msgid "Add"
-msgstr "Hozzáadás"
-
-#. 5.q)
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3155335\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">A <emph>Forrásadat-tartomány</emph> mezőben meghatározott cellatartományt hozzáadja az <emph>Összesített tartományok</emph> mezőhöz.</ahelp>"
-
-#. Po2D
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3148630\n"
-"19\n"
-"help.text"
-msgid "More >>"
-msgstr "Részletek >>"
-
-#. })7w
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"par_id3159239\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">További <link href=\"text/scalc/01/12070100.xhp\" name=\"beállításokat\">beállításokat</link> jelenít meg.</ahelp>"
-
-#. E4pE
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoCalculate"
-msgstr "Automatikus számítás"
-
-#. l^PD
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"bm_id3145673\n"
-"help.text"
-msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
-msgstr "<bookmark_value>számítás; munkalapok automatikus számítása</bookmark_value><bookmark_value>újraszámítás;munkalapok automatikus számítása</bookmark_value><bookmark_value>Automatikus számítás munkalapokban</bookmark_value><bookmark_value>munkalapok automatikus javítása</bookmark_value><bookmark_value>képletek;Automatikus számítás</bookmark_value><bookmark_value>cellatartalmak;Automatikus számítás</bookmark_value>"
-
-#. UWQe
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"hd_id3145673\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
-msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"Automatikus számítás\">Automatikus számítás</link>"
-
-#. ~\!{
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"par_id3148798\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Automatikusan újraszámol minden képletet a dokumentumban.</ahelp>"
-
-#. DUr/
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"par_id3145173\n"
-"3\n"
-"help.text"
-msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
-msgstr "Egy munkalapcella módosítását követően valamennyi cella újraszámításra kerül. Ezenkívül a munkalapon lévő diagramok is frissítésre kerülnek."
-
-#. ,$#_
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"tit\n"
-"help.text"
-msgid "NETWORKDAYS"
-msgstr "NETWORKDAYS"
-
-#. iwC%
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"bm_id3151254\n"
-"help.text"
-msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
-msgstr "<bookmark_value>NETWORKDAYS függvény</bookmark_value>"
-
-#. 18sZ
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3151254\n"
-"240\n"
-"help.text"
-msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
-msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
-
-#. ~]FJ
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153788\n"
-"241\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Eredménye a <emph>kezdő_dátum</emph> és a <emph>befejező_dátum</emph> közötti munkanapok száma. A munkaszüneti napok levonhatók.</ahelp>"
-
-#. R]*]
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3148677\n"
-"242\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. b8X+
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3145775\n"
-"243\n"
-"help.text"
-msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
-msgstr "NETWORKDAYS(kezdő_dátum; befejező_dátum; munkaszüneti_napok)"
-
-#. CVV1
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153885\n"
-"244\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "A <emph>kezdő_dátum</emph> az a dátum, ahonnan a számítás kezdődik. Ha a kezdő dátum munkanap, akkor az adott nap is beleszámít a számításba."
-
-#. 1B-8
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3151110\n"
-"245\n"
-"help.text"
-msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
-msgstr "A <emph>befejező_dátum</emph> az a dátum, ameddig a számítás tart. Ha a befejező dátum munkanap, akkor az adott nap is beleszámít a számításba."
-
-#. OFsU
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154115\n"
-"246\n"
-"help.text"
-msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "A <emph>munkaszüneti_napok</emph> ünnepnapok szabadon választható listája. Ezek nem munkanapok. Adja meg azt a cellatartományt, amelyben a munkaszüneti napok egyesével fel vannak sorolva."
-
-#. #iB%
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3146902\n"
-"247\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. `Gjc
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154661\n"
-"248\n"
-"help.text"
-msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "Hány munkanap esik 2001. december 15. és 2002. január 15. közé? A kezdő dátumot a C3-as cella, a befejező dátumot pedig a D3-as cella tartalmazza. Az F3-J3 cellák a következő karácsonyi és újévi ünnepnapokat tartalmazzák: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-
-#. fV_3
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3147328\n"
-"249\n"
-"help.text"
-msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
-msgstr "A =NETWORKDAYS(C3;D3;F3:J3) 17 munkanapot ad vissza."
-
-#. DG4A
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show"
-msgstr "Megjelenítés"
-
-#. aiod
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"bm_id3147264\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; oszlopok megjelenítése</bookmark_value><bookmark_value>megjelenítés; oszlopok</bookmark_value><bookmark_value>megjelenítés; sorok</bookmark_value>"
-
-#. Yh_G
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"hd_id3147264\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Megjelenítés\">Megjelenítés</link>"
-
-#. HJbN
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"par_id3150447\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowColumn\">Válassza ezt a parancsot a korábban elrejtett sorok vagy oszlopok megjelenítéséhez.</ahelp>"
-
-#. bLQH
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"par_id3155131\n"
-"3\n"
-"help.text"
-msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
-msgstr "Oszlopok, illetve sorok megjelenítéséhez jelölje ki a rejtett elemeket tartalmazó sor- vagy oszloptartományt, majd válassza a <emph>Formátum - Sor - Megjelenítés</emph> vagy a <emph>Formátum - Oszlop - Megjelenítés</emph> lehetőséget."
-
-#. 4Au-
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"par_id3145748\n"
-"4\n"
-"help.text"
-msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
-msgstr "Az összes rejtett cella megjelenítéséhez először kattintson a munkalap bal felső sarkában levő mezőre. Ez kijelöli a táblázat összes celláját."
-
-#. rZM`
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trace Precedents"
-msgstr "Előzmények felderítése"
-
-#. +zzy
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
-msgstr "<bookmark_value>cellák; előzmények felderítése</bookmark_value><bookmark_value>képletcellák;előzmények felderítése</bookmark_value>"
-
-#. 8eer
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
-msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Előzmények felderítése\">Előzmények felderítése</link>"
-
-#. gocf
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"par_id3153542\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowPrecedents\">Ez a parancs a képletet tartalmazó aktuális cella és a képletben használt cellák közti kapcsolatot mutatja meg.</ahelp>"
-
-#. Xx_$
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"par_id3147265\n"
-"4\n"
-"help.text"
-msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
-msgstr "A munkalapban a felderítések jelölőnyilakkal jelennek meg. Ugyanekkor az aktuális cella képletében lévő összes cella tartománya kék kerettel kerül kijelölésre."
-
-#. _Sb5
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"par_id3154321\n"
-"3\n"
-"help.text"
-msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
-msgstr "Ez a funkció a rétegek elvén alapszik. Ha például egy képlet előzménycellájára már mutat egy felderítésnyíl, akkor a parancs megismétlésekor felderítésnyilak kerülnek berajzolásra a jelen cella előzménycelláihoz."
-
-#. F,Fd
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Define Names"
-msgstr "Nevek megadása"
-
-#. kw1Y
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3156330\n"
-"1\n"
-"help.text"
-msgid "Define Names"
-msgstr "Nevek megadása"
-
-#. :P3}
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3154366\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
-msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Megnyit egy párbeszédablakot, amelyen a kijelölt területet lehet elnevezni.</ahelp></variable>"
-
-#. ao_E
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3154123\n"
-"31\n"
-"help.text"
-msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
-msgstr "A tartományok meghatározását az egér segítségével végezheti el, illetve a hivatkozást beírhatja a <emph>Nevek megadása</emph> párbeszédablak mezőibe."
-
-#. s2]n
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3155131\n"
-"30\n"
-"help.text"
-msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
-msgstr "A tartományokra megadott nevek listáját a Képlet eszköztárban található <emph>Munkalapterület</emph> lista tartalmazza. Ha a vonatkozó hivatkozást ki kívánja jelölni a táblázatban, kattintson a listában található nevek egyikére. A képleteknek, illetve a képletrészleteknek adott nevek nem kerülnek felsorolásra."
-
-#. ~hXf
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3151118\n"
-"3\n"
-"help.text"
-msgid "Name"
-msgstr "Név"
-
-#. yL3M
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3163712\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Adja meg a hivatkozásként definiálni kívánt terület nevét. A munkafüzetben már definiált területek listája az alábbi szövegmezőben látható.</ahelp> Ha rákattint egy listában levő névre, a dokumentum megfelelő hivatkozását kék keretbe foglalva láthatja. Ha többszörös cellatartományok tartoznak ugyanahhoz a területnévhez, akkor különböző színű keretekbe foglalva láthatja őket."
-
-#. %71c
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3153728\n"
-"9\n"
-"help.text"
-msgid "Assigned to"
-msgstr "Hozzárendelve a következőhöz:"
-
-#. beaT
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3147435\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">A kiválasztott területnévre hivatkozás abszolút értékben jelenik meg.</ahelp>"
-
-#. A!?g
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3146986\n"
-"12\n"
-"help.text"
-msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
-msgstr "Egy új terület hivatkozásának beszúrásához helyezze a kurzort erre a területre, és használja az egeret a dokumentum bármely kívánt területének kijelöléséhez."
-
-#. bq`0
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3154729\n"
-"13\n"
-"help.text"
-msgid "More"
-msgstr "Részletek"
-
-#. !K5k
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3149958\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Megadható a hivatkozás <emph>Terület típusa</emph> jellemzője (nem kötelező).</ahelp>"
-
-#. Gw/B
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3147394\n"
-"15\n"
-"help.text"
-msgid "Area type"
-msgstr "Terület típusa"
-
-#. yhzB
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3155416\n"
-"16\n"
-"help.text"
-msgid "Defines additional options related to the type of reference area."
-msgstr "A hivatkozás típusára vonatkozólag határoz meg kiegészítő beállításokat."
-
-#. ;wXq
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3150716\n"
-"17\n"
-"help.text"
-msgid "Print range"
-msgstr "Nyomtatási tartomány"
-
-#. -|=j
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3150751\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">A területet beállítja nyomtatási területként.</ahelp>"
-
-#. SaUa
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3153764\n"
-"19\n"
-"help.text"
-msgid "Filter"
-msgstr "Szűrő"
-
-#. S.cy
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3155766\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Megadja, hogy a kijelölt területet használja az <link href=\"text/scalc/01/12040300.xhp\" name=\"irányított szűrő\">irányított szűrő</link>.</ahelp>"
-
-#. hUcd
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3159267\n"
-"21\n"
-"help.text"
-msgid "Repeat column"
-msgstr "Oszlop ismétlése"
-
-#. /v*I
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3149565\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">A területet ismétlődő oszlopként állítja be.</ahelp>"
-
-#. 30we
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3153966\n"
-"23\n"
-"help.text"
-msgid "Repeat row"
-msgstr "Sor ismétlése"
-
-#. :F^q
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3150300\n"
-"24\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">A területet ismétlődő sorként állítja be.</ahelp>"
-
-#. Gd9x
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3155112\n"
-"27\n"
-"help.text"
-msgid "Add/Modify"
-msgstr "Hozzáadás/Módosítás"
-
-#. B:.P
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"par_id3159236\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Ha a megadott nevet fel kívánja venni a listába, kattintson a <emph>Hozzáadás</emph> gombra. Ha a listából kiválasztott, már létező név helyett kíván újat beírni, akkor kattintson a <emph>Módosítás</emph> gombra.</ahelp>"
-
-#. w[qN
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"tit\n"
-"help.text"
-msgid "DATEVALUE"
-msgstr "DÁTUMÉRTÉK"
-
-#. kH28
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"bm_id3145621\n"
-"help.text"
-msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
-msgstr "<bookmark_value>DÁTUMÉRTÉK függvény</bookmark_value><bookmark_value>DATEVALUE függvény, lásd: DÁTUMÉRTÉK függvény</bookmark_value>"
-
-#. P#Lj
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3145621\n"
-"18\n"
-"help.text"
-msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
-msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DÁTUMÉRTÉK</link></variable>"
-
-#. Lfqr
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3145087\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Idézőjelben lévő szöveg belső dátumszámát adja vissza.</ahelp>"
-
-#. 7}6i
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149281\n"
-"20\n"
-"help.text"
-msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
-msgstr "A belső dátumszám számként kerül visszaadásra. A szám a $[officename] dátumszámításhoz használt dátumrendszerétől függ."
-
-#. +_e@
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"par_id0119200903491982\n"
-"help.text"
-msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
-msgstr "Ha egy szöveg időértéket is tartalmaz, a DÁTUMÉRTÉK csak az egész részt adja vissza az átalakítás után."
-
-#. 2K24
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156294\n"
-"21\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ,pbR
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149268\n"
-"22\n"
-"help.text"
-msgid "DATEVALUE(\"Text\")"
-msgstr "DÁTUMÉRTÉK(\"szöveg\")"
-
-#. 0[mP
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3154819\n"
-"23\n"
-"help.text"
-msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
-msgstr "A <emph>szöveg</emph> egy érvényes dátumkifejezés, és idézőjelek között kell megadni."
-
-#. wRC:
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156309\n"
-"24\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. gk)I
-#: func_datevalue.xhp
-msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3155841\n"
-"25\n"
-"help.text"
-msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
-msgstr "A <emph>=DÁTUMÉRTÉK(\"1954-07-20\")</emph> eredménye 19925."
-
-#. 0gS3
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Protecting document"
-msgstr "Dokumentum védelme"
-
-#. ;=KQ
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"hd_id3150541\n"
-"1\n"
-"help.text"
-msgid "Protecting document"
-msgstr "Dokumentum védelme"
-
-#. AKw6
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"par_id3145172\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
-msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Megvédi a dokumentum munkalap-struktúráját a módosításoktól. Nem lehet munkalapokat beszúrni, törölni, átnevezni, áthelyezni, illetve átmásolni.</ahelp></variable> Nyissa meg a <emph>Dokumentum védelme</emph> párbeszédablakot az <emph>Eszközök - Dokumentum védelme - Dokumentum</emph> lehetőség segítségével. Ha akar, írjon be egy jelszót, majd kattintson az OK gombra."
-
-#. 3lNE
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"par_id3153188\n"
-"6\n"
-"help.text"
-msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr "A védett munkafüzet-dokumentumok szerkezete csak akkor módosítható, ha a <emph>Védett</emph> beállítás ki van kapcsolva. Az ablak alsó szegélyénél található munkafüzet-címkékhez tartozó helyi menükben csak az <emph>Összes munkalap kijelölése</emph> lehetőség aktiválható. Az összes többi menüparancs nem érhető el. A védelem eltávolításához ismételten hívja meg az <emph>Eszközök - Dokumentum védelme - Dokumentum</emph> parancsot. Ha nem volt megadva jelszó, akkor a védelem azonnal eltávolításra kerül. Ha megadott egy jelszót, akkor megjelenik a <emph>Dokumentumvédelem megszüntetése</emph> párbeszédablak, amelyben meg kell adnia a jelszót. Csak ezt követően tudja eltávolítani jelölést a jelölőnégyzetből, ami azt jelzi, hogy a védelem aktív."
-
-#. n.n$
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"par_id3145750\n"
-"7\n"
-"help.text"
-msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
-msgstr "Mentés után a védett dokumentumok csak a <emph>Fájl - Mentés másként</emph> lehetőség segítségével menthetők újra."
-
-#. xU\:
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"hd_id3152596\n"
-"4\n"
-"help.text"
-msgid "Password (optional)"
-msgstr "Jelszó (opcionális)"
-
-#. R\NR
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"par_id3155412\n"
-"5\n"
-"help.text"
-msgid "You can create a password to protect your document against unauthorized or accidental modifications."
-msgstr "Létrehozhat egy jelszót a jogosulatlan vagy véletlen módosítások elleni védelem céljából."
-
-#. 3X!H
-#: 06060200.xhp
-msgctxt ""
-"06060200.xhp\n"
-"par_id3150717\n"
-"9\n"
-"help.text"
-msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
-msgstr "Munkája teljes védelméhez használja az <emph>Eszközök - Dokumentum védelme</emph> parancs mindkét beállítását, a jelszó megadását is beleértve. Ha meg kívánja akadályozni, hogy a dokumentumot más felhasználók is megnyissák, válassza a <emph>Mentés jelszóval</emph> lehetőséget, majd kattintson a <emph>Mentés</emph> gombra. Megjelenik a <emph>Jelszó megadása</emph> párbeszédablak. A jelszó megválasztásakor járjon el körültekintően. Ha a dokumentum bezárását követően a jelszót elfelejti, akkor a későbbiek folyamán nem fog tudni hozzáférni a dokumentumhoz."
-
-#. 1WL^
-#: 12040100.xhp
-msgctxt ""
-"12040100.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoFilter"
-msgstr "Automatikus szűrő"
-
-#. !}mG
-#: 12040100.xhp
-msgctxt ""
-"12040100.xhp\n"
-"hd_id3153541\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Automatikus szűrő\">Automatikus szűrő</link>"
-
-#. pZaS
-#: 12040100.xhp
-msgctxt ""
-"12040100.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatikusan szűri a kijelölt cellatartományt, és olyan egysoros listát hoz létre, amelyből ki lehet választani a megjelenítendő elemet.</ahelp>"
-
-#. )G/S
-#: 12040100.xhp
-msgctxt ""
-"12040100.xhp\n"
-"par_id3145171\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
-msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Alapértelmezett szűrő\">Alapértelmezett szűrő</link>"
-
-#. dbD]
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"tit\n"
-"help.text"
-msgid "Logical Functions"
-msgstr "Logikai függvények"
-
-#. X_or
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3153484\n"
-"help.text"
-msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
-msgstr "<bookmark_value>logikai függvények</bookmark_value><bookmark_value>Függvénytündér; logikai</bookmark_value><bookmark_value>függvények; logikai függvények</bookmark_value>"
-
-#. \kH%
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3153484\n"
-"1\n"
-"help.text"
-msgid "Logical Functions"
-msgstr "Logikai függvények"
-
-#. 6Z%p
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3149312\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
-msgstr "<variable id=\"logischtext\">A kategória a <emph>logikai</emph> függvényeket tartalmazza. </variable>"
-
-#. MuJl
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3147505\n"
-"help.text"
-msgid "<bookmark_value>AND function</bookmark_value>"
-msgstr "<bookmark_value>ÉS függvény</bookmark_value><bookmark_value>AND függvény, lásd: ÉS függvény</bookmark_value>"
-
-#. gg3L
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3147505\n"
-"29\n"
-"help.text"
-msgid "AND"
-msgstr "ÉS"
-
-#. kP$E
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3153959\n"
-"65\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
-msgstr "<ahelp hid=\"HID_FUNC_UND\">IGAZ értéket ad vissza, ha minden argumentuma IGAZ.</ahelp> Ha az egyik elem HAMIS, ez a függvény a HAMIS értéket adja vissza."
-
-#. TSUO
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3146100\n"
-"66\n"
-"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr "Az argumentumok vagy logikai kifejezések maguk is (IGAZ, 1<5, 2+3=7, B8<10), amelyek logikai értékeket adnak vissza, vagy tömbök (A1:C3), amelyek logikai értékeket tartalmaznak."
-
-#. Phi@
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150538\n"
-"67\n"
-"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr "Ha egy függvény egyetlen értéket vár, de cellatartomány van megadva, akkor a cellatartománynak a képlettel azonos sorban vagy oszlopban lévő értéke lesz a paraméter."
-
-#. M#7X
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3149128\n"
-"68\n"
-"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
-msgstr "Ha a megadott tartomány kívül esik a képlet jelenlegi oszlopán vagy során, akkor a függvény az #ÉRTÉK! értéket adja vissza."
-
-#. l2qq
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150374\n"
-"31\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ph`j
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3159123\n"
-"32\n"
-"help.text"
-msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr "ÉS(logikai_érték_1; logikai_érték_2; ...logikai_érték_30)"
-
-#. -\Ao
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150038\n"
-"33\n"
-"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
-msgstr "A <emph>logikai_érték_1; logikai_érték_2; ... logikai_érték_30</emph> az ellenőrizni kívánt feltételek. Valamennyi feltétel lehet IGAZ, illetve HAMIS. Ha tartomány van megadva paraméterként, akkor a függvény a tartományból azt az értéket használja, amely az aktuális sorban vagy oszlopban van. Az eredmény akkor IGAZ, ha cellatartomány valamennyi cellájának logikai értéke IGAZ."
-
-#. kL:Y
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3149143\n"
-"34\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. /L%H
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3153123\n"
-"35\n"
-"help.text"
-msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
-msgstr "A program a 12<13; 14>12 és 7<6 logikai értéket fogja ellenőrizni."
-
-#. rYn{
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3145632\n"
-"36\n"
-"help.text"
-msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
-msgstr "Az <item type=\"input\">=ÉS(12<13;14>12;7<6)</item> képlet HAMIS értéket ad vissza."
-
-#. fW,2
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3149946\n"
-"60\n"
-"help.text"
-msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
-msgstr "Az <item type=\"input\">=ÉS(HAMIS;IGAZ)</item> képlet HAMIS értéket ad vissza."
-
-#. .j}X
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3149015\n"
-"help.text"
-msgid "<bookmark_value>FALSE function</bookmark_value>"
-msgstr "<bookmark_value>HAMIS függvény</bookmark_value><bookmark_value>FALSE függvény, lásd: HAMIS függvény</bookmark_value>"
-
-#. \5XK
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3149015\n"
-"3\n"
-"help.text"
-msgid "FALSE"
-msgstr "HAMIS"
-
-#. 62;e
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3149890\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
-msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">A HAMIS logikai értéket adja vissza.</ahelp> A HAMIS() függvénynek nincsenek argumentumai, és mindig a logikai HAMIS értéket adja vissza."
-
-#. X_xy
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3146939\n"
-"5\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ^(.V
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150030\n"
-"6\n"
-"help.text"
-msgid "FALSE()"
-msgstr "HAMIS()"
-
-#. 9mPx
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150697\n"
-"7\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. z;$N
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154842\n"
-"8\n"
-"help.text"
-msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
-msgstr "A <item type=\"input\">=HAMIS()</item> képlet a HAMIS értéket adja vissza."
-
-#. J_dr
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3147468\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
-msgstr "A <item type=\"input\">=NEM(HAMIS())</item> képlet az IGAZ értéket adja vissza."
-
-#. c65N
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3150141\n"
-"help.text"
-msgid "<bookmark_value>IF function</bookmark_value>"
-msgstr "<bookmark_value>HA függvény</bookmark_value><bookmark_value>IF függvény, lásd: HA függvény</bookmark_value>"
-
-#. Myk.
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150141\n"
-"48\n"
-"help.text"
-msgid "IF"
-msgstr "HA"
-
-#. MbJb
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3148740\n"
-"49\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WENN\">Egy logikai vizsgálatot végez el.</ahelp>"
-
-#. RbS#
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3153325\n"
-"50\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. aP-0
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154558\n"
-"51\n"
-"help.text"
-msgid "IF(Test; ThenValue; OtherwiseValue)"
-msgstr "HA(teszt; akkor_érték; különben_érték)"
-
-#. }C%;
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3149727\n"
-"52\n"
-"help.text"
-msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
-msgstr "A <emph>teszt</emph> egy tetszőleges érték, illetve kifejezés, amely IGAZ vagy HAMIS értéket vehet fel."
-
-#. b(gT
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155828\n"
-"53\n"
-"help.text"
-msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
-msgstr "Az <emph>akkor_érték</emph> (opcionális) az eredményül adott érték, ha a logikai vizsgálat eredménye IGAZ."
-
-#. }4)R
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154811\n"
-"54\n"
-"help.text"
-msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
-msgstr "A <emph>különben_érték</emph> (opcionális) az eredményül adott érték, ha a logikai vizsgálat eredménye HAMIS."
-
-#. N%Z^
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_idN107FA\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. E,35
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3149507\n"
-"55\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. 0F_`
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150867\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
-msgstr "A <item type=\"input\">=HA(A1>5;100;\"túl kicsi\")</item> példában, ha az A1 cellában található érték nagyobb 5-nél, akkor a 100 lesz beírva az aktuális cellába, egyébként (idézőjelek nélkül) a „túl kicsi” szöveg jelenik meg."
-
-#. 3:Fz
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3155954\n"
-"help.text"
-msgid "<bookmark_value>NOT function</bookmark_value>"
-msgstr "<bookmark_value>NEM függvény</bookmark_value><bookmark_value>NOT függvény, lásd: NEM függvény</bookmark_value>"
-
-#. 9V%*
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3155954\n"
-"12\n"
-"help.text"
-msgid "NOT"
-msgstr "NEM"
-
-#. EE%p
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3153570\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Invertál egy logikai értéket.</ahelp>"
-
-#. 9M^L
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3147372\n"
-"14\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. nUrD
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3157996\n"
-"15\n"
-"help.text"
-msgid "NOT(LogicalValue)"
-msgstr "NEM(logikai_érték)"
-
-#. ,Abz
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3148766\n"
-"16\n"
-"help.text"
-msgid "<emph>LogicalValue</emph> is any value to be complemented."
-msgstr "A <emph>logikai_érték</emph> tetszőleges, ellentettjére állítható érték."
-
-#. tf[)
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3149884\n"
-"17\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. DhbH
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150132\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
-msgstr "A <item type=\"input\">=NEM(A)</item> képlet esetén, ha A=IGAZ, akkor NEM(A) HAMIS lesz."
-
-#. c]Q_
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3148394\n"
-"help.text"
-msgid "<bookmark_value>OR function</bookmark_value>"
-msgstr "<bookmark_value>VAGY függvény</bookmark_value><bookmark_value>OR függvény, lásd: VAGY függvény</bookmark_value>"
-
-#. XAeY
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3148394\n"
-"20\n"
-"help.text"
-msgid "OR"
-msgstr "VAGY"
-
-#. :+K-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3156060\n"
-"61\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
-msgstr "Ez a függvény <ahelp hid=\"HID_FUNC_ODER\">IGAZ értéket ad vissza, ha legalább egy argumentuma IGAZ.</ahelp> A HAMIS értéket adja vissza, ha minden argumentum logikai értéke HAMIS."
-
-#. cQs(
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3148771\n"
-"62\n"
-"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr "Az argumentumok vagy logikai kifejezések maguk is (IGAZ, 1<5, 2+3=7, B8<10), amelyek logikai értékeket adnak vissza, vagy tömbök (A1:C3), amelyek logikai értékeket tartalmaznak."
-
-#. $wNH
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3153546\n"
-"63\n"
-"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr "Ha egy függvény egyetlen értéket vár, de cellatartomány van megadva, akkor a cellatartománynak a képlettel azonos sorban vagy oszlopban lévő értéke lesz a paraméter."
-
-#. {]`K
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3149027\n"
-"64\n"
-"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
-msgstr "Ha a megadott tartomány kívül esik a képlet jelenlegi oszlopán vagy során, akkor a függvény az #ÉRTÉK! értéket adja vissza."
-
-#. \GLu
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3155517\n"
-"22\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. h*Z5
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150468\n"
-"23\n"
-"help.text"
-msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr "VAGY(logikai_érték_1; logikai_érték_2; ...logikai_érték_30)"
-
-#. rO2L
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155819\n"
-"24\n"
-"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
-msgstr "A <emph>logikai_érték_1; logikai_érték_2; ... logikai_érték_30</emph> az ellenőrizni kívánt feltételek. Valamennyi feltétel lehet IGAZ, illetve HAMIS. Ha tartomány van megadva paraméterként, akkor a függvény a tartományból azt az értéket használja, amely az aktuális sorban vagy oszlopban van."
-
-#. }1cf
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3153228\n"
-"25\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. #do#
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154870\n"
-"26\n"
-"help.text"
-msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
-msgstr "A program a 12<11; 13>22 és 45=45 logikai értéket fogja ellenőrizni."
-
-#. k]YB
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155371\n"
-"27\n"
-"help.text"
-msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
-msgstr "A <item type=\"input\">=VAGY(12<11;13>22;45=45)</item> képlet IGAZ értéket ad vissza."
-
-#. [a@p
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3158412\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
-msgstr "A <item type=\"input\">=VAGY(HAMIS;IGAZ)</item> képlet IGAZ értéket ad vissza."
-
-#. OA[4
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3156256\n"
-"help.text"
-msgid "<bookmark_value>TRUE function</bookmark_value>"
-msgstr "<bookmark_value>IGAZ függvény</bookmark_value><bookmark_value>TRUE függvény, lásd: IGAZ függvény</bookmark_value>"
-
-#. dA/u
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3156256\n"
-"38\n"
-"help.text"
-msgid "TRUE"
-msgstr "IGAZ"
-
-#. )[D\
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155985\n"
-"39\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
-msgstr "<ahelp hid=\"HID_FUNC_WAHR\">Az IGAZ logikai értéket adja vissza.</ahelp> Az IGAZ() függvénynek nincsenek argumentumai, és mindig a logikai IGAZ értéket adja vissza."
-
-#. vjr~
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3153717\n"
-"40\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. d32+
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3152590\n"
-"41\n"
-"help.text"
-msgid "TRUE()"
-msgstr "IGAZ()"
-
-#. ^Os0
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3147175\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ?/VF
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3146148\n"
-"43\n"
-"help.text"
-msgid "If A=TRUE and B=FALSE the following examples appear:"
-msgstr "Legyen A=IGAZ és B=HAMIS. Ekkor:"
-
-#. ZoiT
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3083285\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
-msgstr "Az <item type=\"input\">=ÉS(A;B)</item> képlet HAMIS értéket ad vissza."
-
-#. O?^L
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3083444\n"
-"45\n"
-"help.text"
-msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
-msgstr "A <item type=\"input\">=VAGY(A;B)</item> képlet IGAZ értéket ad vissza."
-
-#. z{-H
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154314\n"
-"46\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
-msgstr "A <item type=\"input\">=NEM(ÉS(A;B))</item> képlet IGAZ értéket ad vissza."
-
-#. 4*8F
-#: 12080700.xhp
-msgctxt ""
-"12080700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show Details (Pivot Table)"
-msgstr "Részletek megjelenítése (kimutatástábla)"
-
-#. LXHt
-#: 12080700.xhp
-msgctxt ""
-"12080700.xhp\n"
-"hd_id3344523\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
-msgstr "<link href=\"text/scalc/01/12080700.xhp\">Részletek megjelenítése (kimutatástábla)</link>"
-
-#. ELgc
-#: 12080700.xhp
-msgctxt ""
-"12080700.xhp\n"
-"par_id871303\n"
-"help.text"
-msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Egy új „feltáró” munkalapot illeszt be bővebb információkkal az aktuális kimutatástábla-cellára vonatkozóan. A „feltáró” munkalapot úgy is beillesztheti, hogy duplán rákattint egy kimutatástábla-cellára. Az új munkalap megjeleníti az eredeti adatforrásból származó sorok részhalmazát, amely az aktuális cellában megjelenő eredményadatokat alkotja.</ahelp>"
-
-#. Lj/J
-#: 12080700.xhp
-msgctxt ""
-"12080700.xhp\n"
-"par_id7132480\n"
-"help.text"
-msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
-msgstr "Az elrejtett tételeket a program nem értékeli ki, a cella tartalmazza az elrejtett tételek sorait. A Részletek megjelenítése parancs csak az olyan kimutatástáblák esetén áll rendelkezésre, amelyek cellatartományokat vagy adatbázisadatokat vesznek alapul."
-
-#. bff)
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"tit\n"
-"help.text"
-msgid "DATE"
-msgstr "DÁTUM"
-
-#. ZOQ4
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"bm_id3155511\n"
-"help.text"
-msgid "<bookmark_value>DATE function</bookmark_value>"
-msgstr "<bookmark_value>DÁTUM függvény</bookmark_value><bookmark_value>DATE függvény, lásd: DÁTUM függvény</bookmark_value>"
-
-#. SZ~a
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"hd_id3155511\n"
-"3\n"
-"help.text"
-msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
-msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DÁTUM</link></variable>"
-
-#. !|D*
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3153551\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
-msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Ez a függvény kiszámítja az év, hónap, nap formában megadott dátumot, majd megjeleníti a cella formázásában.</ahelp> A DÁTUM függvényt tartalmazó cella alapértelmezett formátuma a dátumformátum, de a cellákat formázhatja más számformátum használatával is."
-
-#. =/ce
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"hd_id3148590\n"
-"5\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. rdf/
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3150474\n"
-"6\n"
-"help.text"
-msgid "DATE(Year; Month; Day)"
-msgstr "DÁTUM(év; hónap; nap)"
-
-#. +X1p
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152815\n"
-"7\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
-msgstr "Az <emph>év</emph> egy 1583 és 9957 vagy egy 0 és 99 közötti egész szám."
-
-#. ?U`3
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3153222\n"
-"174\n"
-"help.text"
-msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
-msgstr "Az <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - $[officename] - Általános</item> oldalon beállíthatja, hogy egy kétjegyű évszám mely évtől kezdődően jelentsen 20xx-et."
-
-#. SuFq
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3155817\n"
-"8\n"
-"help.text"
-msgid "<emph>Month</emph> is an integer indicating the month."
-msgstr "A <emph>hónap</emph> a hónapot jelölő egész szám."
-
-#. t{h*
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3153183\n"
-"9\n"
-"help.text"
-msgid "<emph>Day</emph> is an integer indicating the day of the month."
-msgstr "A <emph>nap</emph> a hónap napját jelölő egész szám."
-
-#. H69-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3156260\n"
-"10\n"
-"help.text"
-msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
-msgstr "Ha a hónapot, illetve napot jelölő értékek kívül esnek a tartományon, akkor azok átvitelre kerülnek a következő számjegyre. A <item type=\"input\">=DÁTUM(2000;12;31)</item> képlet a „2000-12-31” értéket adja vissza. Azonban a <item type=\"input\">=DÁTUM(2000;13;31)</item> képlet a „2001-01-31” értéket adja vissza."
-
-#. l@40
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"hd_id3147477\n"
-"12\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ;aQ`
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152589\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
-msgstr "A <item type=\"input\">=DÁTUM(00;1;31)</item> képlet eredménye 1/31/00, ha a cellaformátum beállítása HH/NN/ÉÉ."
-
-#. KdRN
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr "Munkalap másolása és áthelyezése"
-
-#. UM.`
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; mozgatás</bookmark_value><bookmark_value>munkafüzetek; másolás</bookmark_value><bookmark_value>mozgatás; munkafüzetek</bookmark_value><bookmark_value>másolás; munkafüzetek</bookmark_value>"
-
-#. G?|b
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3153360\n"
-"1\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr "Munkalap másolása és mozgatása"
-
-#. NwH:
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3154686\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
-msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Átmásol vagy áthelyez egy munkalapot a dokumentumban egy új helyre, vagy egy másik dokumentumba.</ahelp></variable>"
-
-#. rM8;
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id2282479\n"
-"help.text"
-msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr "Ha <link href=\"text/scalc/01/04060102.xhp\">dátumértékeket</link> tartalmazó cellákat másol át különböző munkafüzetek között, mindkét munkafüzet-dokumentumot ugyanarra a dátumalapra kell beállítani. Ha a dátum alapja különbözik, a megjelenített dátumértékek megváltoznak!"
-
-#. ;62A
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3163710\n"
-"3\n"
-"help.text"
-msgid "To Document"
-msgstr "A dokumentumba"
-
-#. Bdd.
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3148645\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Megadja, hogy az aktuális munkalap hová kerül átmásolásra vagy áthelyezésre.</ahelp> Ha új helyet akar létrehozni az áthelyezés, illetve másolás céljaként, akkor válassza az <emph>- új dokumentum -</emph> lehetőséget."
-
-#. IQRZ
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3154012\n"
-"5\n"
-"help.text"
-msgid "Insert Before"
-msgstr "Beszúrás elé"
-
-#. Dlb?
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3145366\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">A kiválasztott munkalapot az itt kiválasztott elé másolja vagy helyezi át.</ahelp> Az <emph>- áthelyezés a végére -</emph> beállítás az aktuális munkalapot a végére helyezi."
-
-#. #Cog
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3153726\n"
-"7\n"
-"help.text"
-msgid "Copy"
-msgstr "Másolás"
-
-#. Y!NA
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3144764\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Azt jelöli, hogy a munkalapot másolni kívánja. Ha a beállítás nincs kijelölve, akkor a munkalap áthelyezésre kerül.</ahelp> A munkalapok áthelyezése az alapértelmezett beállítás."
-
-#. 0J$m
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"tit\n"
-"help.text"
-msgid "NOW"
-msgstr "MOST"
-
-#. #OVN
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"bm_id3150521\n"
-"help.text"
-msgid "<bookmark_value>NOW function</bookmark_value>"
-msgstr "<bookmark_value>MOST függvény</bookmark_value><bookmark_value>NOW függvény, lásd: MOST függvény</bookmark_value>"
-
-#. Vc6r
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"hd_id3150521\n"
-"47\n"
-"help.text"
-msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
-msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">MOST</link></variable>"
-
-#. OtBP
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"par_id3148829\n"
-"48\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
-msgstr "<ahelp hid=\"HID_FUNC_JETZT\">A rendszer dátumát és idejét adja eredményül.</ahelp> Az érték frissül, ha újraszámolja a dokumentumot, illetve a cellaértékek minden egyes módosításakor."
-
-#. M:s2
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"hd_id3146988\n"
-"49\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. uqjr
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"par_id3154897\n"
-"50\n"
-"help.text"
-msgid "NOW()"
-msgstr "MOST()"
-
-#. _heZ
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"par_id4598529\n"
-"help.text"
-msgid "NOW is a function without arguments."
-msgstr "A MOST függvény nem rendelkezik argumentummal."
-
-#. Sque
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"hd_id3154205\n"
-"51\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Z^t\
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"par_id3150774\n"
-"52\n"
-"help.text"
-msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
-msgstr "A <item type=\"input\">=MOST()-A1</item> visszaadja az A1 cellában megadott és a mai dátum közötti különbséget. Az eredményt számként kell formázni."
-
-#. 3$q:
-#: 02140100.xhp
-msgctxt ""
-"02140100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Down"
-msgstr "Le"
-
-#. 64lk
-#: 02140100.xhp
-msgctxt ""
-"02140100.xhp\n"
-"hd_id3150792\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
-msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Le\">Le</link>"
-
-#. $w+[
-#: 02140100.xhp
-msgctxt ""
-"02140100.xhp\n"
-"par_id3153969\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Legalább két sorból álló tartományt a tartomány legfelső cellájának tartalmával tölt fel.</ahelp>"
-
-#. kwSC
-#: 02140100.xhp
-msgctxt ""
-"02140100.xhp\n"
-"par_id3145787\n"
-"3\n"
-"help.text"
-msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
-msgstr "Ha a kijelölt tartomány csak egy oszlopból áll, akkor a legfelső cella tartalma kerül átmásolásra az összes többibe. Ha több oszlopot jelöl ki, akkor a megfelelő legfelső cella tartalma kerül lefelé másolásra."
-
-#. j99=
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"tit\n"
-"help.text"
-msgid "Graphic"
-msgstr "Kép"
-
-#. ^_pU
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
-msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Kép</link>"
-
-#. yMZN
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Megnyit egy almenüt a kijelölt objektum tulajdonságainak szerkesztéséhez.</ahelp>"
-
-#. 6)X$
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"par_id1650440\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\">Szöveg jellemzőinek beállítása</link>"
-
-#. L_A`
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"par_id363475\n"
-"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Megadja a kijelölt rajz- vagy szöveges objektumban lévő szöveg elrendezési és horgonnyal kapcsolatos jellemzőit."
-
-#. 9(oq
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"par_id9746696\n"
-"help.text"
-msgid "Points"
-msgstr "Pontok"
-
-#. zXEO
-#: format_graphic.xhp
-msgctxt ""
-"format_graphic.xhp\n"
-"par_id2480544\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
-msgstr "<ahelp hid=\".\">Bekapcsolja vagy kikapcsolja a beszúrt szabadkézi vonalhoz a <emph>Pontok szerkesztése</emph> módot.</ahelp>"
-
-#. VL7?
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh Traces"
-msgstr "Felderítések frissítése"
-
-#. W*$~
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"bm_id3152349\n"
-"help.text"
-msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
-msgstr "<bookmark_value>cellák; felderítések frissítése</bookmark_value><bookmark_value>felderítések; frissítés</bookmark_value><bookmark_value>frissítés;felderítések</bookmark_value>"
-
-#. eE9,
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"hd_id3152349\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
-msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Felderítések frissítése\">Felderítések frissítése</link>"
-
-#. va1@
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
-msgstr "<ahelp hid=\".uno:RefreshArrows\">Minden felderítést újrarajzol a munkalapon. A felderítés újrarajzolása közben a módosított képleteket is figyelembe veszi.</ahelp>"
-
-#. ^Vin
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"par_id3148798\n"
-"3\n"
-"help.text"
-msgid "Detective arrows in the document are updated under the following circumstances:"
-msgstr "A dokumentumban lévő detektívnyilak a következő körülmények esetén kerülnek frissítésre:"
-
-#. 8*@4
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"par_id3153192\n"
-"4\n"
-"help.text"
-msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
-msgstr "Az <emph>Eszközök - Detektív - Felderítések frissítése</emph> parancs elindítása"
-
-#. d}TA
-#: 06030900.xhp
-msgctxt ""
-"06030900.xhp\n"
-"par_id3151041\n"
-"5\n"
-"help.text"
-msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
-msgstr "Ha az <emph>Eszközök - Detektív - Automatikus frissítés</emph> be van kapcsolva, akkor minden egyes képletmódosítás alkalmával."
-
-#. rkQ?
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Print Ranges"
-msgstr "Nyomtatási tartományok módosítása"
-
-#. L|.?
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"hd_id3153088\n"
-"1\n"
-"help.text"
-msgid "Edit Print Ranges"
-msgstr "Nyomtatási tartományok módosítása"
-
-#. g+93
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3159488\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
-msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Megnyit egy párbeszédablakot, amelyen megadhatja a nyomtatandó területet.</ahelp></variable> Megadhatja azokat a sorokat vagy oszlopokat, amelyeket minden oldalon meg szeretne ismételni."
-
-#. _%rs
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_idN105AE\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
-
-#. s^$~
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"hd_id3156281\n"
-"3\n"
-"help.text"
-msgid "Print range"
-msgstr "Nyomtatási tartomány"
-
-#. ]g+!
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3147228\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Lehetővé teszi egy beállított nyomtatási tartomány módosítását.</ahelp>"
-
-#. S-!Z
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3145174\n"
-"5\n"
-"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Az aktuális táblázatra vonatkozó nyomtatásitartomány-meghatározás eltávolításához válassza a <emph>- semmi -</emph> beállítást. Az aktuális munkalap nyomtatási tartományként való megadásához válassza az <emph>- egész munkalap -</emph> lehetőséget. Ha a munkafüzet kijelölt területét kívánja nyomtatási tartományként meghatározni, akkor válassza a <emph>- kijelölés -</emph> lehetőséget. Az <emph>- egyéni -</emph> beállítás kiválasztásával lehetősége nyílik egy, a <emph>Formátum - Nyomtatási tartomány - Beállítás</emph> parancs segítségével megadott nyomtatási tartomány megadására. Ha a <emph>Beszúrás - Nevek - Megadás</emph> lehetőség segítségével egy tartománynak nevet adott, akkor a név megjelenik, és kijelölhető a listából."
-
-#. FQHN
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3145272\n"
-"6\n"
-"help.text"
-msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
-msgstr "A jobb oldali szövegmezőben megadhat egy nyomtatási tartományt hivatkozás, illetve név szerint. Ha a kurzor jelenleg a <emph>Nyomtatási tartomány</emph> szövegmezőben található, akkor a nyomtatási tartományt a munkafüzetben az egér segítségével is kijelölheti."
-
-#. cS3G
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"hd_id3149260\n"
-"7\n"
-"help.text"
-msgid "Rows to repeat"
-msgstr "Ismétlendő sorok"
-
-#. OB07
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3147426\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Válasszon ki egy vagy több sort, amelyeket ki akar nyomtatni minden oldalra. A jobb oldali szövegmezőbe írja be a megfelelő sorhivatkozást, például „1” vagy „$1”, esetleg „$2:$3”.</ahelp> A listában megjelenik az <emph>- egyéni -</emph> lehetőség. Ezenkívül egy megadott ismétlődő sor eltávolításához válassza a <emph>- semmi -</emph> lehetőséget."
-
-#. M(wO
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3155418\n"
-"9\n"
-"help.text"
-msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
-msgstr "Ha a kurzor a párbeszédablak <emph>Ismétlődő sorok</emph> szövegmezőjében található, akkor ismétlődő sorokat a táblázatban az egér húzásával is megadhat."
-
-#. F$[.
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"hd_id3149581\n"
-"10\n"
-"help.text"
-msgid "Columns to repeat"
-msgstr "Ismétlendő oszlopok"
-
-#. S)|3
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3155602\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Válasszon ki egy vagy több oszlopot, amelyeket ki akar nyomtatni minden oldalon. A jobb oldali szövegmezőbe írja be a megfelelő oszlophivatkozást, például „A” vagy „AB”, esetleg „$C:$E”.</ahelp> A listában ezt követően megjelenik az <emph>- egyéni -</emph> lehetőség. Ezenkívül egy megadott ismétlődő oszlop eltávolításához kiválaszthatja a <emph>- semmi -</emph> lehetőséget."
-
-#. K)c_
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3150749\n"
-"12\n"
-"help.text"
-msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
-msgstr "Ha a kurzor a párbeszédablak <emph>Ismétlődő oszlopok</emph> szövegmezőjében található, akkor ismétlődő oszlopokat a táblázatban az egér húzásával is megadhat."
-
-#. SIVC
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Merge and Center Cells"
-msgstr "Cellák egyesítése és középre igazítása"
-
-#. B%|R
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"hd_id3149785\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
-msgstr "<link href=\"text/scalc/01/05060000.xhp\" name=\"Cellák egyesítése és középre igazítása\">Cellák egyesítése és középre igazítása</link>"
-
-#. _6k]
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"par_id3151246\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
-msgstr "<ahelp hid=\".\">Összevonja a kijelölt cellákat egyetlen cellává, illetve szétbontja az összevont cellákat. A cellatartalmat középre igazítja.</ahelp>"
-
-#. b3!0
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"par_id3154020\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
-msgstr "Válassza a <emph>Formátum - Cellák egyesítése - Cellák egyesítése és középre igazítása</emph> menüparancsot."
-
-#. =rnY
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
-msgstr "Az egyesített cella az eredeti cellatartomány első cellájának nevét kapja meg. A már egyesített cellákat nem lehet más cellákkal másodszor is újraegyesíteni. A tartománynak egy négyszöget kell alkotnia, a többszörös kijelölés nem támogatott."
-
-#. D#=t
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"par_id3149665\n"
-"3\n"
-"help.text"
-msgid "If the cells to be merged have any contents, a security dialog is shown."
-msgstr "Ha az egyesítendő celláknak van tartalmuk, egy biztonsági párbeszédablak jelenik meg."
-
-#. LO#b
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"par_id3153718\n"
-"help.text"
-msgid "Merging cells can lead to calculation errors in formulas in the table."
-msgstr "A táblázat celláinak egyesítése képletek esetén számítási hibákhoz vezethet."
-
-#. F{?3
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Filter"
-msgstr "Szűrő"
-
-#. ^M)~
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3150767\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Szűrő\">Szűrő</link>"
-
-#. 1|cE
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3155131\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
-msgstr "<ahelp hid=\".\">Megjeleníti az adatok szűrésére használható parancsokat.</ahelp>"
-
-#. /Q*U
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3146119\n"
-"7\n"
-"help.text"
-msgid "$[officename] automatically recognizes predefined database ranges."
-msgstr "A $[officename] automatikusan felismeri az előre meghatározott adatbázis-tartományokat."
-
-#. ?1Z]
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3153363\n"
-"3\n"
-"help.text"
-msgid "The following filtering options are available:"
-msgstr "A következő szűrési beállítások érhetők el:"
-
-#. =C3]
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3153728\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
-msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Általános szűrő\">Általános szűrő</link>"
-
-#. w(IE
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3159153\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
-msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Irányított szűrő\">Irányított szűrő</link>"
-
-#. ,KJH
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Beállítások"
-
-#. 1[`W
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3149119\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Beállítások\">Beállítások</link>"
-
-#. @Tg8
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3147102\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Megjelenít vagy elrejt további szűrési lehetőségeket.</ahelp></variable>"
-
-#. _^OL
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3147008\n"
-"3\n"
-"help.text"
-msgid "Options"
-msgstr "Beállítások"
-
-#. :~-4
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3153662\n"
-"5\n"
-"help.text"
-msgid "Case sensitive"
-msgstr "Kis- és nagybetűk megkülönböztetése"
-
-#. Q5B0
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3145673\n"
-"6\n"
-"help.text"
-msgid "Distinguishes between uppercase and lowercase letters."
-msgstr "Különbséget tesz a kis- és nagybetűk között."
-
-#. ?j?b
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3156327\n"
-"7\n"
-"help.text"
-msgid "Regular Expression"
-msgstr "Reguláris kifejezés"
-
-#. BIs$
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3151245\n"
-"8\n"
-"help.text"
-msgid "Allows you to use wildcards in the filter definition."
-msgstr "Lehetővé teszi a helyettesítő karakterek alkalmazását a szűrő beállításakor."
-
-#. *w4?
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3147264\n"
-"29\n"
-"help.text"
-msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
-msgstr "Ha a <emph>Reguláris kifejezés</emph> jelölőnégyzet be van jelölve, akkor összehasonlításokban is használhatja az EQUAL (=), illetve a NOT EQUAL (<>) operátorokat. Az alábbi függvényeket is használhatja: AB.DARAB2, AB.MEZŐ, DARABTELI, FKERES, HOL.VAN, KUTAT, SZUMHA és VKERES."
-
-#. p*NF
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3153379\n"
-"30\n"
-"help.text"
-msgid "Unique records only"
-msgstr "Csak egyedi rekordok"
-
-#. TGVG
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3154138\n"
-"31\n"
-"help.text"
-msgid "Excludes duplicate rows in the list of filtered data."
-msgstr "Kizárja a listák szűrt adataiból az egyforma sorokat."
-
-#. =GdS
-#: 12090104.xhp
-#, fuzzy
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3156282\n"
-"32\n"
-"help.text"
-msgid "Data area"
-msgstr "Adatterület"
-
-#. t+VZ
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3150768\n"
-"33\n"
-"help.text"
-msgid "Displays the name of the filtered data area in the table."
-msgstr "Megjeleníti a táblázatban a szűrt adatterület nevét."
-
-#. @M=L
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3156424\n"
-"34\n"
-"help.text"
-msgid "More<<"
-msgstr "Részletek <<"
-
-#. o;*k
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3125864\n"
-"35\n"
-"help.text"
-msgid "Hides the additional options."
-msgstr "Elrejti a további beállításokat."
-
-#. MMGj
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3154011\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
-msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Reguláris kifejezések listája\">Reguláris kifejezések listája</link>"
-
-#. ~]qE
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column"
-msgstr "Oszlop"
-
-#. whk4
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
-msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Oszlop\">Oszlop</link>"
-
-#. iy1Z
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"par_id3148946\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
-msgstr "<ahelp hid=\".\">Beállítja az oszlopszélességet, és elrejti vagy megjeleníti a kijelölt oszlopokat.</ahelp>"
-
-#. *C$g
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"hd_id3150398\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
-msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Szélesség\">Szélesség</link>"
-
-#. 4E@M
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"hd_id3145171\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimális szélesség\">Optimális szélesség</link>"
-
-#. 2F/+
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fill"
-msgstr "Kitöltés"
-
-#. .[68
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"bm_id8473769\n"
-"help.text"
-msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
-msgstr "<bookmark_value>kitöltés;kijelölési listák</bookmark_value> <bookmark_value>kijelölési listák;cellák kitöltése</bookmark_value>"
-
-#. kH]m
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"hd_id3153876\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
-msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Kitöltés\">Kitöltés</link>"
-
-#. riXS
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"par_id3156285\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
-msgstr "<ahelp hid=\".\">Automatikusan tartalommal tölti ki a cellákat.</ahelp>"
-
-#. z+{m
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"par_id3147343\n"
-"9\n"
-"help.text"
-msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
-msgstr "A $[officename] Calc helyi menüiben <link href=\"text/scalc/01/02140000.xhp\" name=\"egyéb lehetőségek\">további lehetőségek</link> találhatók a cellák feltöltéséhez."
-
-#. 7Wje
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"hd_id3149207\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Munkalap\">Munkalap</link>"
-
-#. b%9p
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"hd_id3155111\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
-msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Sorozat\">Sorozat</link>"
-
-#. H#CL
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"par_id3152994\n"
-"3\n"
-"help.text"
-msgid "<emph>Filling cells using context menus:</emph>"
-msgstr "<emph>Cellák kitöltése helyi menük segítségével:</emph>"
-
-#. i\{a
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"par_id3145384\n"
-"4\n"
-"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
-msgstr "Hívja elő a <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"helyi menüt\">helyi menüt</link>, miközben egy cellában van, majd válassza a <emph>Kijelölési lista</emph> elemet."
-
-#. G=(M
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"par_id3156450\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
-msgstr "<ahelp hid=\".uno:DataSelect\">Listamezőt jelenít meg, amely a jelenlegi oszlopból minden szöveget tartalmaz.</ahelp> A szöveg ábécé-sorrendbe van rendezve, és a többszörös bejegyzéseket csak egyszer jeleníti meg."
-
-#. /)lJ
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"par_id3148699\n"
-"6\n"
-"help.text"
-msgid "Click one of the listed entries to copy it to the cell."
-msgstr "Kattintson az itt felsorolt bejegyzések közül az egyikre, ha azt a bejegyzést egy cellába szeretné másolni."
-
-#. /sT0
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Detective"
-msgstr "Detektív"
-
-#. #.+w
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"bm_id3151245\n"
-"help.text"
-msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
-msgstr "<bookmark_value>cellahivatkozások keresése</bookmark_value> <bookmark_value>keresés; hivatkozások cellákban</bookmark_value> <bookmark_value>felderítések;előzmények és függőségek</bookmark_value> <bookmark_value>Képletvizsgáló, lásd Detektív</bookmark_value> <bookmark_value>Detektív</bookmark_value>"
-
-#. Wv3A
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"hd_id3151245\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
-msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detektív\">Detektív</link>"
-
-#. N,j;
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"par_id3151211\n"
-"2\n"
-"help.text"
-msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
-msgstr "Ez a parancs aktiválja a munkafüzet-detektívet. A Detektív segítségével felderítheti az aktuális képlet függőségeit a munkafüzet cellái között."
-
-#. N!F8
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"par_id3150447\n"
-"3\n"
-"help.text"
-msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
-msgstr "Ha már meghatározott egy felderítést, rámutathat az egérkurzorral a felderítésre. Ekkor az egérkurzor megváltoztatja az alakját. Ezzel a kurzorral a felderítésre duplán kattintva a felderítés végén található hivatkozott cellát jelölheti ki."
-
-#. d3J-
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"tit\n"
-"help.text"
-msgid "Text to Columns"
-msgstr "Szöveget oszlopokba"
-
-#. b/sZ
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"bm_id8004394\n"
-"help.text"
-msgid "<bookmark_value>text to columns</bookmark_value>"
-msgstr "<bookmark_value>szöveget oszlopokba</bookmark_value>"
-
-#. wd7{
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"hd_id2300180\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Szöveget oszlopokba</link>"
-
-#. |d4X
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id655232\n"
-"help.text"
-msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
-msgstr "<variable id=\"text2columns\">Megnyitja a Szöveget oszlopokba párbeszédablakot, ahol a kijelölt cellák tartalmának több cellába való kiterjesztésének beállításait adhatja meg. </variable>"
-
-#. 7kpS
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"hd_id9599597\n"
-"help.text"
-msgid "To expand cell contents to multiple cells"
-msgstr "A cellatartalom kiterjesztése több cellára"
-
-#. jBVt
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id2021546\n"
-"help.text"
-msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
-msgstr "Kiterjesztheti egy vesszővel elválasztott értékeket (CSV) tartalmazó cella tartalmát több cellára ugyanabban a sorban."
-
-#. zXa9
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id2623981\n"
-"help.text"
-msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
-msgstr "Például az A1 az <item type=\"literal\">1,2,3,4</item> vesszővel elválasztott értékeket tartalmazza, és az A2 cella az <item type=\"literal\">A,B,C,D</item> szöveget tartalmazza."
-
-#. JVFA
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id7242042\n"
-"help.text"
-msgid "Select the cell or cells that you want to expand."
-msgstr "Válassza ki a kiterjesztendő cellát vagy cellákat."
-
-#. Y;@i
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id6999420\n"
-"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph>."
-msgstr "Válassza az <emph>Adatok - Szöveget oszlopokba</emph> menüparancsot."
-
-#. Xi;T
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id6334116\n"
-"help.text"
-msgid "You see the Text to Columns dialog."
-msgstr "Megjelenik a Szöveget oszlopokba párbeszédablak."
-
-#. cL]5
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id9276406\n"
-"help.text"
-msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
-msgstr "Válassza ki az elválasztási lehetőségeket. Az előnézet megmutatja, hogyan lesz átalakítva több cellává az aktuális cellatartalom."
-
-#. *f-s
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id8523819\n"
-"help.text"
-msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
-msgstr "Választhatja a rögzített szélességet, és az előnézetben a vonalzóra kattintva megadhatja a cella felosztási pozícióit."
-
-#. @M/=
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id1517380\n"
-"help.text"
-msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
-msgstr "Kiválaszthatja vagy megadhatja az elválasztó karaktereket a felosztási pontok helyének megadásához. Az elválasztó karaktereket a program eltávolítja a létrehozott cellatartalomból."
-
-#. F0DU
-#: text2columns.xhp
-msgctxt ""
-"text2columns.xhp\n"
-"par_id7110812\n"
-"help.text"
-msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
-msgstr "A példában a vesszőt választja határoló karakterként. Az A1 és az A2 cella négy oszlopra lesz kiterjesztve. Az A1 az 1 értéket, a B1 a 2 értéket stb. tartalmazza."
-
-#. 1Y;7
-#: 06031000.xhp
-msgctxt ""
-"06031000.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoRefresh"
-msgstr "Automatikus frissítés"
-
-#. 8o\.
-#: 06031000.xhp
-msgctxt ""
-"06031000.xhp\n"
-"bm_id3154515\n"
-"help.text"
-msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
-msgstr "<bookmark_value>cellák; felderítések automatikus frissítése</bookmark_value><bookmark_value>felderítések; automatikus frissítés</bookmark_value>"
-
-#. Gdb\
-#: 06031000.xhp
-msgctxt ""
-"06031000.xhp\n"
-"hd_id3154515\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
-msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"Automatikus frissítés\">Automatikus frissítés</link>"
-
-#. {`6S
-#: 06031000.xhp
-msgctxt ""
-"06031000.xhp\n"
-"par_id3147264\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Képlet módosításakor automatikusan frissíti a munkalapban a felderítéseket.</ahelp>"
-
-#. :}`D
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"tit\n"
-"help.text"
-msgid "WORKDAY"
-msgstr "WORKDAY"
-
-#. y6$V
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"bm_id3149012\n"
-"help.text"
-msgid "<bookmark_value>WORKDAY function</bookmark_value>"
-msgstr "<bookmark_value>WORKDAY függvény</bookmark_value>"
-
-#. !Qo{
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"hd_id3149012\n"
-"186\n"
-"help.text"
-msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-
-#. mk?}
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3149893\n"
-"187\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> Az eredmény egy dátumként formázható dátumszám. Ekkor megjelenik azon napnak a dátuma, amely a <emph>kezdő_dátumhoz</emph> képest adott számú <emph>munkanapra</emph> található.</ahelp>"
-
-#. Iv9Y
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"hd_id3146944\n"
-"188\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. I,dH
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3154844\n"
-"189\n"
-"help.text"
-msgid "WORKDAY(StartDate; Days; Holidays)"
-msgstr "WORKDAY(kezdő_dátum; napok; ünnepnapok)"
-
-#. BM$t
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3147469\n"
-"190\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "A <emph>kezdő_dátum</emph> az a dátum, ahonnan a számítás kezdődik. Ha a kezdő dátum munkanap, akkor az adott nap is beleszámít a számításba."
-
-#. ?NPU
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3153038\n"
-"191\n"
-"help.text"
-msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr "A <emph>napok</emph> a munkanapok száma. Pozitív érték jelöli a kezdő dátum utáni eredményeket, negatív érték pedig a kezdő dátum előttieket."
-
-#. }8B~
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3150693\n"
-"192\n"
-"help.text"
-msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "Az <emph>ünnepnapok</emph> ünnepnapok szabadon választható listája. Ezek nem munkanapok. Adja meg azt a cellatartományt, amelyben az ünnepnapok egyesével fel vannak sorolva."
-
-#. Wf?N
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"hd_id3150141\n"
-"193\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. |Ej-
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3152782\n"
-"194\n"
-"help.text"
-msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "Mi a dátum 17 munkanappal 2001. december 1-je után? Adja meg a „2001-12-01” kezdő dátumot a C3-as cellában, illetve a munkanapok számát a D3-as cellában. Az F3-J3 cellák a következő karácsonyi és újévi ünnepnapokat tartalmazzák: „2001-12-24”, „2001-12-25”, „2001-12-26”, „2001-12-31”, „2002-01-01”."
-
-#. QfAq
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3146142\n"
-"195\n"
-"help.text"
-msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "A =WORKDAY(C3;D3;F3:J3) a 2001-12-28 értéket adja vissza. Formázza a sorszám formátumú dátumszámot dátummá, például ÉÉÉÉ-HH-NN formátumban."
-
-#. @oT1
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Database Range"
-msgstr "Adatbázis-tartomány kijelölése"
-
-#. ,$^4
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
-msgstr "<bookmark_value>adatbázisok; kijelölés (Calc)</bookmark_value>"
-
-#. v;T6
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "Select Database Range"
-msgstr "Adatbázis-tartomány kijelölése"
-
-#. ,9qU
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
-msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Kijelöl egy adatbázis-tartományt, amelyet az <link href=\"text/scalc/01/12010000.xhp\" name=\"Adatok - Tartomány definiálása\">Adatok - Tartomány definiálása</link> pontban adott meg.</ahelp></variable>"
-
-#. ?_Cc
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"hd_id3153192\n"
-"3\n"
-"help.text"
-msgid "Ranges"
-msgstr "Tartományok"
-
-#. 8)?k
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"par_id3154684\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Felsorolja a rendelkezésre álló adatbázis-tartományokat. Egy adatbázis-tartomány kijelöléséhez kattintson a nevére, majd az <emph>OK</emph> gombra.</ahelp>"
-
-#. T4T|
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete Cells"
-msgstr "Cellák törlése"
-
-#. 7BGL
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"bm_id3153726\n"
-"help.text"
-msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
-msgstr "<bookmark_value>cellák; cellák törlése</bookmark_value><bookmark_value>oszlopok; törlés</bookmark_value><bookmark_value>sorok; törlés</bookmark_value><bookmark_value>munkafüzetek; cellák törlése</bookmark_value><bookmark_value>törlés;cellák/sorok/oszlopok</bookmark_value>"
-
-#. 7(]{
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3153726\n"
-"1\n"
-"help.text"
-msgid "Delete Cells"
-msgstr "Cellák törlése"
-
-#. vpcA
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3154490\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
-msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Kijelölt cellák, oszlopok vagy sorok teljes törlése. A helyet a törölt cella alatt, illetve az attól jobbra elhelyezkedő cellák töltik ki.</ahelp></variable> A program tárolja a kiválasztott törlési beállítást, és a párbeszédablak következő behívásánál újratölti."
-
-#. aXj3
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3149121\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Kijelölés"
-
-#. +Pf)
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3150751\n"
-"4\n"
-"help.text"
-msgid "This area contains options for specifying how sheets are displayed after deleting cells."
-msgstr "Ez a terület olyan beállításokat tartalmaz, amelyek a munkalapok cellák törlése utáni megjelenítését határozzák meg."
-
-#. 2\~|
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3155767\n"
-"5\n"
-"help.text"
-msgid "Shift cells up"
-msgstr "Cellákat felfelé tolja"
-
-#. q3JZ
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3153714\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">A törölt cellák helyét kitölti az alattuk lévő cellákkal.</ahelp>"
-
-#. :LF2
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3156382\n"
-"7\n"
-"help.text"
-msgid "Shift cells left"
-msgstr "Cellákat balra tolja"
-
-#. wN/(
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3154702\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">A törölt cellák helyét kitölti a jobbra lévő cellákkal.</ahelp>"
-
-#. Nn`C
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3146918\n"
-"9\n"
-"help.text"
-msgid "Delete entire row(s)"
-msgstr "Egész sorokat töröl"
-
-#. Y[9*
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3148487\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRows\">Legalább egy cella kijelölése esetén a munkalapból a teljes sort törli.</ahelp>"
-
-#. BxO(
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3155114\n"
-"11\n"
-"help.text"
-msgid "Delete entire column(s)"
-msgstr "Egész oszlopokat töröl"
-
-#. tDAS
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3150086\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteColumns\">Legalább egy cella kijelölése esetén a munkalapból a teljes oszlopot törli.</ahelp>"
-
-#. F)#i
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3166424\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
-msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Tartalom törlése\">Tartalom törlése</link>"
-
-#. |k:X
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Break Preview"
-msgstr "Oldaltörés előnézete"
-
-#. [cGL
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3151384\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Oldaltörés előnézete\">Oldaltörés előnézete</link>"
-
-#. w9Z@
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"par_id3150792\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
-msgstr "<ahelp hid=\".uno:PagebreakMode\">Megmutatja az oldaltöréseket és a nyomtatási tartományokat az oldalon. Válassza a <emph>Nézet - Normál</emph> menüparancsot a mód kikapcsolásához.</ahelp>"
-
-#. 57[$
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"par_id3153877\n"
-"13\n"
-"help.text"
-msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
-msgstr "Az oldaltörési előnézet helyi menüje az oldaltörések szerkesztésére használatos funkciókat tartalmazza, beleértve az alábbi beállításokat:"
-
-#. (p@8
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3154731\n"
-"14\n"
-"help.text"
-msgid "Delete All Manual Breaks"
-msgstr "Töréspontok törlése"
-
-#. };J1
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"par_id3149400\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Törli az összes töréspontot az aktuális munkalapon.</ahelp>"
-
-#. LX/N
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3155067\n"
-"18\n"
-"help.text"
-msgid "Add Print Range"
-msgstr "Nyomtatási tartomány hozzáadása"
-
-#. z:TT
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"par_id3155764\n"
-"19\n"
-"help.text"
-msgid "Adds the selected cells to print ranges."
-msgstr "A kiválasztott cellákat nyomtatási tartományokhoz adja."
-
-#. 1O#-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIME"
-msgstr "IDŐ"
-
-#. }Vpc
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"bm_id3154073\n"
-"help.text"
-msgid "<bookmark_value>TIME function</bookmark_value>"
-msgstr "<bookmark_value>IDŐ függvény</bookmark_value><bookmark_value>TIME függvény, lásd: IDŐ függvény</bookmark_value>"
-
-#. ;}TK
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"hd_id3154073\n"
-"149\n"
-"help.text"
-msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
-msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">IDŐ</link></variable>"
-
-#. o09#
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3145762\n"
-"150\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
-msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">Az IDŐ függvény az óra, perc és másodperc értékeiből meghatározza az időt.</ahelp> Ennek a függvénynek a segítségével az erre a három elemre épülő időértéket decimális időértékké alakíthatja."
-
-#. y,:B
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"hd_id3155550\n"
-"151\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. p48?
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3154584\n"
-"152\n"
-"help.text"
-msgid "TIME(Hour; Minute; Second)"
-msgstr "IDŐ(óra; perc; másodperc)"
-
-#. Ry7*
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3152904\n"
-"153\n"
-"help.text"
-msgid "Use an integer to set the <emph>Hour</emph>."
-msgstr "Az <emph>óra</emph> megadásához egész számot használjon."
-
-#. ])k%
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3151346\n"
-"154\n"
-"help.text"
-msgid "Use an integer to set the <emph>Minute</emph>."
-msgstr "A <emph>perc</emph> megadásához egész számot használjon."
-
-#. 5x,;
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3151366\n"
-"155\n"
-"help.text"
-msgid "Use an integer to set the <emph>Second</emph>."
-msgstr "A <emph>másodperc</emph> megadásához egész számot használjon."
-
-#. TNV/
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"hd_id3145577\n"
-"156\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. ZX(6
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3156076\n"
-"157\n"
-"help.text"
-msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
-msgstr "Az <item type=\"input\">=IDŐ(0;0;0)</item> eredményül 00:00:00 értéket ad."
-
-#. ([vu
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3156090\n"
-"158\n"
-"help.text"
-msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
-msgstr "Az <item type=\"input\">=IDŐ(4;20;4)</item> eredményül 04:20:04 értéket ad."
-
-#. 51R+
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"tit\n"
-"help.text"
-msgid "DAYS360"
-msgstr "NAP360"
-
-#. H!dQ
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"bm_id3148555\n"
-"help.text"
-msgid "<bookmark_value>DAYS360 function</bookmark_value>"
-msgstr "<bookmark_value>NAP360 függvény</bookmark_value><bookmark_value>DAYS360 függvény, lásd: NAP360 függvény</bookmark_value>"
-
-#. J6WS
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148555\n"
-"124\n"
-"help.text"
-msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
-msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">NAP360</link></variable>"
-
-#. ./!8
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"par_id3156032\n"
-"125\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Kiszámítja két dátum különbségét a kamatszámításokban használt 360 napos év alapján.</ahelp>"
-
-#. =Y+\
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"hd_id3155347\n"
-"126\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. @t3o
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"par_id3155313\n"
-"127\n"
-"help.text"
-msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
-msgstr "NAP360(\"dátum_1\"; \"dátum_2\"; típus)"
-
-#. ]qLM
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"par_id3145263\n"
-"128\n"
-"help.text"
-msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
-msgstr "Ha a <emph>dátum_2</emph> dátum korábbi, mint a <emph>dátum_1</emph>, akkor a függvény negatív számot ad vissza."
-
-#. 8]+9
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"par_id3151064\n"
-"129\n"
-"help.text"
-msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
-msgstr "Az opcionális <emph>típus</emph> argumentum határozza meg a különbségszámítás típusát. Ha a típus = 0, vagy ha nem ad meg argumentumot, akkor az amerikai módszer (NASD, National Association of Securities Dealers) kerül felhasználásra. Ha a típus <> 0, akkor az európai módszer kerül felhasználásra."
-
-#. |C{^
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148641\n"
-"130\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. pjJ/
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"par_id3156348\n"
-"132\n"
-"help.text"
-msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
-msgstr "A =NAP360(\"2000-01-01\";MOST()) eredményül a 2000. január 1-től a mai napig terjedő kamatnapok számát adja."
-
-#. 9YqC
-#: 12030000.xhp
-msgctxt ""
-"12030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sort"
-msgstr "Rendezés"
-
-#. oT[q
-#: 12030000.xhp
-msgctxt ""
-"12030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "Sort"
-msgstr "Rendezés"
-
-#. r;05
-#: 12030000.xhp
-msgctxt ""
-"12030000.xhp\n"
-"par_id3155922\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
-msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">A kijelölt sorokat a felhasználó által megadott feltételek szerint rendezi.</ahelp></variable> A $[officename] automatikusan felismeri és kijelöli az adatbázis-tartományokat."
-
-#. x7e7
-#: 12030000.xhp
-msgctxt ""
-"12030000.xhp\n"
-"par_id3147428\n"
-"4\n"
-"help.text"
-msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
-msgstr "Nem rendezhet adatokat ha a <link href=\"text/shared/01/02230000.xhp\" name=\"Változások követése\">Változások követése</link> beállítás engedélyezve van."
-
-#. YnwN
-#: 05080200.xhp
-msgctxt ""
-"05080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove"
-msgstr "Eltávolítás"
-
-#. XbJw
-#: 05080200.xhp
-msgctxt ""
-"05080200.xhp\n"
-"hd_id3153562\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Eltávolítás\">Eltávolítás</link>"
-
-#. ffav
-#: 05080200.xhp
-msgctxt ""
-"05080200.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePrintArea\">Megszünteti a megadott nyomtatási területet.</ahelp>"
-
-#. [hQ4
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fill Series"
-msgstr "Kitöltés sorozattal"
-
-#. o(;F
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3148664\n"
-"1\n"
-"help.text"
-msgid "Fill Series"
-msgstr "Kitöltés sorozattal"
-
-#. #@m0
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3148797\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
-msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">A párbeszédablak beállításainak segítségével automatikusan állíthat elő sorozatokat. Meghatározhatja az irányt, a növekményt, az időegységet, illetve a sorozat típusát.</ahelp></variable>"
-
-#. !Cp9
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3146976\n"
-"41\n"
-"help.text"
-msgid "Before filling a series, first select the cell range."
-msgstr "A sorozattal való feltöltés előtt jelölje ki a cellatartományt."
-
-#. Em:m
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3145748\n"
-"3\n"
-"help.text"
-msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
-msgstr "Ha egy sorozatot a feltételezett befejezési szabályok használatával automatikusan folytatni kíván, akkor a <emph>Kitöltés sorozattal</emph> párbeszédablak megnyitását követően válassza az <emph>Automatikus kitöltés</emph> beállítást."
-
-#. PW+V
-#: 02140600.xhp
-#, fuzzy
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3147435\n"
-"4\n"
-"help.text"
-msgid "Direction"
-msgstr "Irány"
-
-#. m$3@
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3154729\n"
-"5\n"
-"help.text"
-msgid "Determines the direction of series creation."
-msgstr "Meghatározza a sorozat készítésének irányát."
-
-#. o?A[
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3145253\n"
-"6\n"
-"help.text"
-msgid "Down"
-msgstr "Le"
-
-#. ;,K8
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3155418\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">A megadott növekménnyel és végződéssel lefelé irányuló sorozatot hoz létre az oszlop kijelölt tartományában.</ahelp>"
-
-#. J1Ky
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3155738\n"
-"8\n"
-"help.text"
-msgid "Right"
-msgstr "Jobbra"
-
-#. k_rG
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3149402\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">A kijelölt cellatartományban a végérték eléréséig balról jobbra haladó, meghatározott növekményű sorozatot készít.</ahelp>"
-
-#. G*sq
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3146972\n"
-"10\n"
-"help.text"
-msgid "Up"
-msgstr "Fel"
-
-#. l;3e
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3153711\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Az oszlopban kijelölt cellatartományból felfelé irányuló sorozatot készít a végértékig, felhasználva a megadott növekményt.</ahelp>"
-
-#. L2{\
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3153764\n"
-"12\n"
-"help.text"
-msgid "Left"
-msgstr "Balra"
-
-#. YNR)
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3156382\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">A kijelölt cellatartományban a végérték eléréséig jobbról balra haladó, meghatározott növekményű sorozatot készít.</ahelp>"
-
-#. fU`[
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3147344\n"
-"14\n"
-"help.text"
-msgid "Series Type"
-msgstr "Sorozat típusa"
-
-#. {~do
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3149257\n"
-"15\n"
-"help.text"
-msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
-msgstr "Megadja a sorozat típusát. A <emph>Lineáris, Növelés, Dátum</emph> és <emph>Automatikus kitöltés</emph> típus között választhat."
-
-#. _,7Y
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3148488\n"
-"16\n"
-"help.text"
-msgid "Linear"
-msgstr "Számtani sorozat"
-
-#. iXd8
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3159238\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">A megadott növekménnyel, mint különbséggel számtani sorozatot készít a megadott végértékig.</ahelp>"
-
-#. Xk+y
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3149210\n"
-"18\n"
-"help.text"
-msgid "Growth"
-msgstr "Mértani sorozat"
-
-#. Ab[e
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3150364\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">A megadott növekménnyel, mint hányadossal mértani sorozatot készít a megadott végértékig.</ahelp>"
-
-#. lP~]
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3149528\n"
-"20\n"
-"help.text"
-msgid "Date"
-msgstr "Dátumsorozat"
-
-#. !zx{
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3150887\n"
-"21\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">A megadott növekménnyel és végződéssel dátumok sorozatát készíti el.</ahelp>"
-
-#. Btge
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3150202\n"
-"22\n"
-"help.text"
-msgid "AutoFill"
-msgstr "Automatikus kitöltés"
-
-#. axm`
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3156288\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">A sorozatot közvetlenül a munkalapon hozza létre.</ahelp> Az Automatikus kitöltés funkció figyelembe veszi az egyéni listákat. Ha például az első cellában a <emph>Január</emph> értéket adja meg, akkor a sorozat az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Rendezett listák</emph> lehetőségnél meghatározott lista alapján kerül befejezésre."
-
-#. =TV\
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3155811\n"
-"24\n"
-"help.text"
-msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
-msgstr "Az Automatikus kitöltés az értéksorozatokat egy meghatározott minta alapján kísérli meg kitölteni. Az 1,3,5 sorozat automatikusan 7,9,11,13 stb. értékkel kerül kiegészítésre. A dátum-, illetve idősorozatok szintén ennek megfelelően kerülnek kiegészítésre. Például a 99.01.01. és a 99.01.15. után a funkció 14 napos időközt használ."
-
-#. Z~;/
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3148700\n"
-"25\n"
-"help.text"
-msgid "Unit of Time"
-msgstr "Időegység"
-
-#. @IN,
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3153308\n"
-"26\n"
-"help.text"
-msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
-msgstr "A területen meghatározhatja a kívánt időegységet. A terület csak akkor aktív, ha a <emph>Sorozat típusa</emph> terület <emph>Dátum</emph> beállítását választotta."
-
-#. wF9A
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3148868\n"
-"27\n"
-"help.text"
-msgid "Day"
-msgstr "Nap"
-
-#. CWs]
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3148605\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Használja a <emph>Dátum</emph> sorozattípust és ezt a beállítást egy hét napot használó sorozat létrehozásához.</ahelp>"
-
-#. $Ju*
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3144771\n"
-"29\n"
-"help.text"
-msgid "Weekday"
-msgstr "Hétköznap"
-
-#. :/T@
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3150108\n"
-"30\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Használja a <emph>Dátum</emph> sorozattípust és ezt a beállítást, ha a sorozat tagjai csak hétköznapokra eshetnek.</ahelp>"
-
-#. )3`~
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3154957\n"
-"31\n"
-"help.text"
-msgid "Month"
-msgstr "Hónap"
-
-#. U~g.
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3149126\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Használja a <emph>Dátum</emph> sorozattípust és ezt a beállítást a hónapnevek vagy azok rövidítéséből álló sorozat létrehozásához.</ahelp>"
-
-#. 7vEu
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3152870\n"
-"33\n"
-"help.text"
-msgid "Year"
-msgstr "Év"
-
-#. !Z7O
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3151300\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Használja a <emph>Dátum</emph> sorozattípust és ezt a beállítást egy évekből álló sorozat létrehozásához.</ahelp>"
-
-#. pJY_
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3154762\n"
-"35\n"
-"help.text"
-msgid "Start Value"
-msgstr "Kezdőérték"
-
-#. |ykM
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3149381\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">A sorozat induló értékét határozza meg.</ahelp> Számokat, dátumokat vagy időket használhat."
-
-#. :YA`
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3153013\n"
-"37\n"
-"help.text"
-msgid "End Value"
-msgstr "Végső érték"
-
-#. $rC@
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3153487\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">A sorozat végértékét határozza meg.</ahelp> Számokat, dátumokat vagy időket használhat."
-
-#. /l^D
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"hd_id3149312\n"
-"39\n"
-"help.text"
-msgid "Increment"
-msgstr "Növekmény"
-
-#. \ggW
-#: 02140600.xhp
-msgctxt ""
-"02140600.xhp\n"
-"par_id3154739\n"
-"40\n"
-"help.text"
-msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
-msgstr "A „növekmény” kifejezés azt az értéket jelöli, amellyel egy adott érték megnövelésre kerül.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Meghatározza a megadott típusú sorozat lépésenkénti növekményét.</ahelp> Csak akkor lehet bejegyzéseket létrehozni, ha a lineáris, a növekvő vagy a dátum sorozattípus van kiválasztva."
-
-#. aPJ!
-#: 12120000.xhp
-msgctxt ""
-"12120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Validity"
-msgstr "Érvényesség"
-
-#. (LX0
-#: 12120000.xhp
-msgctxt ""
-"12120000.xhp\n"
-"hd_id3156347\n"
-"1\n"
-"help.text"
-msgid "Validity"
-msgstr "Érvényesség"
-
-#. Efm2
-#: 12120000.xhp
-msgctxt ""
-"12120000.xhp\n"
-"par_id3153252\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
-msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">A kijelölt cella vagy cellatartomány érvényes értékeit adja meg.</ahelp></variable>"
-
-#. BQcV
-#: 12120000.xhp
-msgctxt ""
-"12120000.xhp\n"
-"par_idN105D1\n"
-"help.text"
-msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
-msgstr "A Vezérlőelemek eszköztárból beszúrhat egy listapanelt, és azt egy cellához kapcsolhatja. Így megadhatja az érvényes értékeket a listapanel tulajdonságablakának <link href=\"text/shared/02/01170102.xhp\">Adat</link> oldalán."
-
-#. WP`B
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formula Bar"
-msgstr "Képlet eszköztár"
-
-#. c5**
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"bm_id3147264\n"
-"help.text"
-msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
-msgstr "<bookmark_value>képlet eszköztár;munkafüzetek</bookmark_value><bookmark_value>munkalapok; képlet eszköztár</bookmark_value>"
-
-#. H?QN
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"hd_id3147264\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
-msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Képlet eszköztár\">Képlet eszköztár</link>"
-
-#. A}m7
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
-msgstr "<ahelp hid=\".uno:InputLineVisible\">Megjeleníti, illetve elrejti a Képlet eszköztárat, amely a képletek beírására és szerkesztésére használatos.</ahelp> A munkafüzetek használatánál a Képlet eszköztár a legfontosabb eszköz."
-
-#. t$98
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"par_id3154686\n"
-"4\n"
-"help.text"
-msgid "To hide the Formula Bar, unmark the menu item."
-msgstr "A Képlet eszköztár elrejtéséhez törölje a menüelem jelölését."
-
-#. 5}V#
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"par_id3145787\n"
-"3\n"
-"help.text"
-msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
-msgstr "Ha a Képlet eszköztár rejtett állapotban van, a cellákat továbbra is szerkesztheti akkor, ha a szerkesztési módot az F2 billentyű segítségével aktiválja. A cellák szerkesztését követően a módosításokat fogadja el az Enter billentyű megnyomásával, vagy vesse el az Esc billentyű megnyomásával. Az Esc billentyű segítségével ezen kívül kiléphet a szerkesztési módból."
-
-#. ~4i2
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Value Highlighting"
-msgstr "Értékkiemelés"
-
-#. ;Ttg
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"bm_id3151384\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; értékkiemelés</bookmark_value><bookmark_value>értékek;kiemelés</bookmark_value><bookmark_value>kiemelés; értékek a munkalapon</bookmark_value><bookmark_value>színek;értékek</bookmark_value>"
-
-#. ld~4
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"hd_id3151384\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
-msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Értékkiemelés\">Értékkiemelés</link>"
-
-#. IQF0
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3154366\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
-msgstr "<ahelp hid=\".uno:ViewValueHighlighting\">A cellatartalmakat típustól függően különböző színekkel jeleníti meg.</ahelp>"
-
-#. P]fz
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3125863\n"
-"help.text"
-msgid "To remove the highlighting, unmark the menu entry."
-msgstr "A kiemelés eltávolításához törölje a menüpont jelölését."
-
-#. ~hV\
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3145785\n"
-"help.text"
-msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
-msgstr "A szövegcellákat feketére, a képleteket zöldre, a számcellákat kékre formázza, akármilyenek is voltak a megjelenítési beállítások."
-
-#. Pbb`
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3153188\n"
-"help.text"
-msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
-msgstr "Ha a funkció aktív, akkor a dokumentumban meghatározott színek nem jelennek meg. Amikor kikapcsolja a funkciót, ismételten a felhasználó által megadott színek jelennek meg."
-
-#. 1$-O
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"tit\n"
-"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Pénzügyi függvények - harmadik rész"
-
-#. #fL=
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3146780\n"
-"1\n"
-"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Pénzügyi függvények - harmadik rész"
-
-#. ]8)p
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3145112\n"
-"help.text"
-msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
-msgstr "<bookmark_value>ODDFPRICE függvény</bookmark_value><bookmark_value>árak;futamidő elején töredék-időszakos értékpapírok</bookmark_value>"
-
-#. *-`M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3145112\n"
-"71\n"
-"help.text"
-msgid "ODDFPRICE"
-msgstr "ODDFPRICE"
-
-#. QXe%
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147250\n"
-"72\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Egy, a futamidő elején töredékidőszakos értékpapír névértékének 100 pénzegységre eső árát számítja ki.</ahelp>"
-
-#. ;kQ4
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153074\n"
-"73\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. DI5r
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146098\n"
-"74\n"
-"help.text"
-msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "ODDFPRICE(kifizetés; esedékesség; kibocsátás; első_kamat; kamatláb; hozam; visszaváltás; gyakoriság; alap)"
-
-#. 3aV^
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153337\n"
-"75\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. ct%Y
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149051\n"
-"76\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. S$rl
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147297\n"
-"77\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "A <emph>kibocsátás</emph> az értékpapír kibocsátásának dátuma."
-
-#. AR(l
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150393\n"
-"78\n"
-"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
-msgstr "Az <emph>első_kamat</emph> az értékpapír első kamatfizetési dátuma."
-
-#. iTaH
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147402\n"
-"79\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "A <emph>kamatláb</emph> az éves kamatláb."
-
-#. eN2q
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151387\n"
-"80\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "A <emph>hozam</emph> az értékpapír éves hozama."
-
-#. n]][
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153023\n"
-"81\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. +:OE
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150539\n"
-"82\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. JyJ;
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3157871\n"
-"help.text"
-msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
-msgstr "<bookmark_value>ODDFYIELD függvény</bookmark_value>"
-
-#. IU;3
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3157871\n"
-"87\n"
-"help.text"
-msgid "ODDFYIELD"
-msgstr "ODDFYIELD"
-
-#. ;3$j
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147414\n"
-"88\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Kiszámítja egy, a futamidő elején töredékidőszakos értékpapír hozamát.</ahelp>"
-
-#. M}Z1
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3150651\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. B(iN
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152982\n"
-"90\n"
-"help.text"
-msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "ODDFYIELD(kifizetés; esedékesség; kibocsátás; első_kamat; kamatláb; érték; visszaváltás; gyakoriság; alap)"
-
-#. AIlN
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3157906\n"
-"91\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. SNO)
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150026\n"
-"92\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. }|j9
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149012\n"
-"93\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "A <emph>kibocsátás</emph> az értékpapír kibocsátásának dátuma."
-
-#. 7sa_
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148725\n"
-"94\n"
-"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
-msgstr "Az <emph>első_kamat</emph> az értékpapír első kamatfizetési dátuma."
-
-#. GG:w
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150465\n"
-"95\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "A <emph>kamatláb</emph> az éves kamatláb."
-
-#. qR_m
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146940\n"
-"96\n"
-"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "Az <emph>érték</emph> az értékpapír értéke."
-
-#. @`G|
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149893\n"
-"97\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. 2\%F
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148888\n"
-"98\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. H6Wp
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3153933\n"
-"help.text"
-msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
-msgstr "<bookmark_value>ODDLPRICE függvény</bookmark_value>"
-
-#. 2w9K
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153933\n"
-"103\n"
-"help.text"
-msgid "ODDLPRICE"
-msgstr "ODDLPRICE"
-
-#. Gs6Y
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145145\n"
-"104\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Egy, a futamidő végén töredékidőszakos értékpapír névértékének 100 pénzegységre eső árát számítja ki.</ahelp>"
-
-#. C`ch
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3152784\n"
-"105\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. yh*}
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155262\n"
-"106\n"
-"help.text"
-msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "ODDLPRICE(kifizetés; esedékesség; utolsó_kamat; kamatláb; hozam; visszaváltás; gyakoriság; alap)"
-
-#. )?2d
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149689\n"
-"107\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. iVb+
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148753\n"
-"108\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. TNWc
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150861\n"
-"109\n"
-"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "Az <emph>utolsó_kamat</emph> az értékpapír utolsó kamatfizetési dátuma."
-
-#. wZ;A
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155831\n"
-"110\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "A <emph>kamatláb</emph> az éves kamatláb."
-
-#. i6qP
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153328\n"
-"111\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "A <emph>hozam</emph> az értékpapír éves hozama."
-
-#. xvQJ
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149186\n"
-"112\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. kcG}
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149726\n"
-"113\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. 7?*p
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153111\n"
-"114\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. %HTC
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152999\n"
-"115\n"
-"help.text"
-msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr "Kifizetés dátuma: 1999. február 7., esedékesség dátuma: 1999. június 15., utolsó kamat: 1998. október 15., kamatláb: 3,75 százalék, hozam: 4,05 százalék, visszaváltási érték: 100 pénzegység, kifizetések gyakorisága: félévenként = 2, alap = 0"
-
-#. t/jX
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148567\n"
-"116\n"
-"help.text"
-msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
-msgstr "Az értékpapír értéke az utolsó kifizetés szelvényének egyenetlen dátumával a következőképpen számolható:"
-
-#. ULkI
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150332\n"
-"117\n"
-"help.text"
-msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
-msgstr "Az =ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0,0375; 0,0405;100;2;0) képlet eredménye 99,87829."
-
-#. ^qZ4
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3153564\n"
-"help.text"
-msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
-msgstr "<bookmark_value>ODDLYIELD függvény</bookmark_value>"
-
-#. NEL?
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153564\n"
-"118\n"
-"help.text"
-msgid "ODDLYIELD"
-msgstr "ODDLYIELD"
-
-#. E2Vi
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3158002\n"
-"119\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Kiszámítja egy, a futamidő végén töredékidőszakos értékpapír hozamát.</ahelp>"
-
-#. L.9E
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3147366\n"
-"120\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. waE\
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150018\n"
-"121\n"
-"help.text"
-msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "ODDLYIELD(kifizetés; esedékesség; utolsó_kamat; kamatláb; érték; visszaváltás; gyakoriság; alap)"
-
-#. HfmO
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159132\n"
-"122\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. 9olD
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150134\n"
-"123\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. T/9c
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145245\n"
-"124\n"
-"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "Az <emph>utolsó_kamat</emph> az értékpapír utolsó kamatfizetési dátuma."
-
-#. N^Q.
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151014\n"
-"125\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "A <emph>kamatláb</emph> az éves kamatláb."
-
-#. g4h/
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149003\n"
-"126\n"
-"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "Az <emph>érték</emph> az értékpapír értéke."
-
-#. 23Tg
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148880\n"
-"127\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. doJ|
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155622\n"
-"128\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. aDIn
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3145303\n"
-"129\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. DgRO
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145350\n"
-"130\n"
-"help.text"
-msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr "Kifizetés dátuma: 1999. április 20., esedékesség dátuma: 1999. június 15., utolsó kamat: 1998. október 15., kamatláb: 3,75 százalék, érték: 99,875 pénzegység, visszaváltási érték: 100 pénzegység, kifizetések gyakorisága: félévenként = 2, alap: = 0"
-
-#. .^P=
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3157990\n"
-"131\n"
-"help.text"
-msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
-msgstr "Azon értékpapír hozama, amelynek az utolsó kifizetésének dátuma egyenetlen, a következőképpen számolható ki:"
-
-#. D/2F
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150572\n"
-"132\n"
-"help.text"
-msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
-msgstr "Az =ODDLYIELD(\"1999-04-20\";\"1999-06-15\";\"1998-10-15\"; 0,0375; 99,875;100;2;0) képlet eredménye 0,044873 vagy 4,4873%."
-
-#. a51W
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3148768\n"
-"help.text"
-msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
-msgstr "<bookmark_value>számítás;változó csökkenő amortizáció</bookmark_value><bookmark_value>amortizáció;változó csökkenés</bookmark_value><bookmark_value>ÉCSRI függvény</bookmark_value><bookmark_value>VDB függvény, lásd: ÉCSRI függvény</bookmark_value>"
-
-#. dj/H
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148768\n"
-"222\n"
-"help.text"
-msgid "VDB"
-msgstr "ÉCSRI"
-
-#. =9;H
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154636\n"
-"223\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VDB\">Egy tárgyi eszköz értékcsökkenését számítja ki egy adott vagy egy részidőszakra vonatkozóan, a változó csökkenő amortizáció alkalmazásával.</ahelp>"
-
-#. xZS+
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155519\n"
-"224\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 4V]H
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149025\n"
-"225\n"
-"help.text"
-msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
-msgstr "ÉCSRI(költség; maradványérték; leírási_idő; kezdet; záróérték; faktor; típus)"
-
-#. mUA;
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150692\n"
-"226\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial value of an asset."
-msgstr "A <emph>költség</emph> a tárgyi eszköz kezdeti értéke."
-
-#. U-dh
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155369\n"
-"227\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "A <emph>maradványérték</emph> az eszköz értéke az értékcsökkenés végén."
-
-#. MkHJ
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154954\n"
-"228\n"
-"help.text"
-msgid "<emph>Life</emph> is the depreciation duration of the asset."
-msgstr "A <emph>leírási_idő</emph> a tárgyi eszköz amortizációjának időtartama."
-
-#. f76e
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152817\n"
-"229\n"
-"help.text"
-msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
-msgstr "A <emph>kezdet</emph> az értékcsökkenés kezdete. A kezdetet és az időtartamot azonos dátumegységben kell megadni."
-
-#. #I)/
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153221\n"
-"230\n"
-"help.text"
-msgid "<emph>End</emph> is the end of the depreciation."
-msgstr "A <emph>záróérték</emph> az amortizáció vége."
-
-#. *K]M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147536\n"
-"231\n"
-"help.text"
-msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
-msgstr "A <emph>faktor</emph> (opcionális) az értékcsökkenési faktor. A faktor = 2 esetén: értékcsökkenés kettős leírással."
-
-#. $NL%
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154865\n"
-"232\n"
-"help.text"
-msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
-msgstr "A <emph>típus</emph> opcionális paraméter. A típus = 1 átkapcsol lineáris értékcsökkenésre. Ha a típus = 0, akkor nem történik átkapcsolás."
-
-#. VJY!
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_idN10A0D\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. Gz6v
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148429\n"
-"233\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. E.$+
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153927\n"
-"234\n"
-"help.text"
-msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
-msgstr "Mennyi az amortizációs időszakra vetített kétszeres gyorsaságú amortizációs mérleg, ha a költség 35000 pénzegység és az amortizáció végén az érték 7500 pénzegység. Az amortizációs időszak 3 év. Az amortizáció a 10. és a 20. időszak között lesz kiszámítva."
-
-#. ?F2m
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155991\n"
-"235\n"
-"help.text"
-msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
-msgstr "<item type=\"input\">=ÉCSRI(35000;7500;36;10;20;2)</item> = 8603,80 pénzegység. A 10–20. időszakok közti időszakra számított értékcsökkenés 8603,80 pénzegység."
-
-#. C_Zb
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3147485\n"
-"help.text"
-msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
-msgstr "<bookmark_value>számítás;belső megtérülési ráta, nem periodikus kifizetések</bookmark_value><bookmark_value>belső megtérülési ráta;nem periodikus kifizetések</bookmark_value><bookmark_value>XIRR függvény</bookmark_value>"
-
-#. aBdo
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3147485\n"
-"193\n"
-"help.text"
-msgid "XIRR"
-msgstr "XIRR"
-
-#. R%=L
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145614\n"
-"194\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Kiszámítja a belső megtérülési rátát egy olyan kifizetési listára, amely különböző dátumokhoz kapcsolódó kifizetéseket tartalmaz.</ahelp> A számítás 365 napos évet számol, és nem veszi figyelembe a szökőéveket."
-
-#. lFrj
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_idN10E62\n"
-"help.text"
-msgid "If the payments take place at regular intervals, use the IRR function."
-msgstr "Ha a kifizetések normál intervallumoknál esedékesek, akkor használja a BMR függvényt."
-
-#. #0UJ
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3146149\n"
-"195\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2AX/
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149826\n"
-"196\n"
-"help.text"
-msgid "XIRR(Values; Dates; Guess)"
-msgstr "XIRR(értékek; dátumok; becslés)"
-
-#. };!W
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3163821\n"
-"197\n"
-"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
-msgstr "Az <emph>értékek</emph> és a <emph>dátumok</emph> a kifizetések és a dátumok sorozata. Az első dátumpár a kifizetési terv kezdeti időpontját jelöli. Az összes többi dátumnak későbbinek kell lennie, de nem kell rendezettnek lenniük. Az értékek sorozatának legalább egy pozitív és egy negatív számot kell tartalmaznia (bevétel és letét)."
-
-#. d-%C
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149708\n"
-"198\n"
-"help.text"
-msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
-msgstr "A <emph>becslés</emph> (opcionális) a belső megtérülési rátára vonatkozóan megadható becslés. Az alapértelmezés 10%."
-
-#. f[QG
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3145085\n"
-"199\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. MW5m
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149273\n"
-"200\n"
-"help.text"
-msgid "Calculation of the internal rate of return for the following five payments:"
-msgstr "A következő öt kifizetéshez tartozó belső megtérülési ráta kiszámítása:"
-
-#. c4aP
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155838\n"
-"305\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. 9(ZV
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152934\n"
-"306\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#. *(;4
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154638\n"
-"307\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. g%ao
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147083\n"
-"308\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. 7M}J
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151187\n"
-"309\n"
-"help.text"
-msgid "2001-01-01"
-msgstr "2001-01-01"
-
-#. _Dd)
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145212\n"
-"201\n"
-"help.text"
-msgid "-<item type=\"input\">10000</item>"
-msgstr "-<item type=\"input\">10000</item>"
-
-#. V||o
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146856\n"
-"202\n"
-"help.text"
-msgid "<item type=\"input\">Received</item>"
-msgstr "<item type=\"input\">Érkezett</item>"
-
-#. m4:H
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153277\n"
-"310\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. )1Q5
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154052\n"
-"203\n"
-"help.text"
-msgid "2001-01-02"
-msgstr "2001-01-02"
-
-#. R.La
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151297\n"
-"204\n"
-"help.text"
-msgid "<item type=\"input\">2000</item>"
-msgstr "<item type=\"input\">2000</item>"
-
-#. ewOi
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149985\n"
-"205\n"
-"help.text"
-msgid "<item type=\"input\">Deposited</item>"
-msgstr "<item type=\"input\">Letétbe helyezve</item>"
-
-#. /4$@
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154744\n"
-"311\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. y.+b
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153151\n"
-"206\n"
-"help.text"
-msgid "2001-03-15"
-msgstr "2001-03-15"
-
-#. Q~W-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145657\n"
-"207\n"
-"help.text"
-msgid "2500"
-msgstr "2500"
-
-#. Y^9I
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155101\n"
-"312\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. Z}f:
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146894\n"
-"208\n"
-"help.text"
-msgid "2001-05-12"
-msgstr "2001-05-12"
-
-#. +?H$
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3143231\n"
-"209\n"
-"help.text"
-msgid "5000"
-msgstr "5000"
-
-#. YosS
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156012\n"
-"313\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. yZQd
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149758\n"
-"210\n"
-"help.text"
-msgid "2001-08-10"
-msgstr "2001-08-10"
-
-#. %P?t
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147495\n"
-"211\n"
-"help.text"
-msgid "1000"
-msgstr "1000"
-
-#. Kksa
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152793\n"
-"212\n"
-"help.text"
-msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
-msgstr "Az =XIRR(B1:B5; A1:A5; 0,1) képlet eredménye 0,1828."
-
-#. f(p3
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3149198\n"
-"help.text"
-msgid "<bookmark_value>XNPV function</bookmark_value>"
-msgstr "<bookmark_value>XNPV függvény</bookmark_value>"
-
-#. X^}s
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149198\n"
-"213\n"
-"help.text"
-msgid "XNPV"
-msgstr "XNPV"
-
-#. a$!M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153904\n"
-"214\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Kiszámítja a tőkeértéket (nettó jelenértéket) a különböző napokon végrehajtott kifizetések listájára vonatkozóan.</ahelp> A számítás 365 napos évet számol, és nem veszi figyelembe a szökőéveket."
-
-#. jNFG
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_idN11138\n"
-"help.text"
-msgid "If the payments take place at regular intervals, use the NPV function."
-msgstr "Ha a kifizetések rendszeres időközönként történnek, akkor használja az NMÉ függvényt."
-
-#. -iH3
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155323\n"
-"215\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Tr~2
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150117\n"
-"216\n"
-"help.text"
-msgid "XNPV(Rate; Values; Dates)"
-msgstr "XNPV(kamatláb; értékek; dátumok)"
-
-#. :[-n
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153100\n"
-"217\n"
-"help.text"
-msgid "<emph>Rate</emph> is the internal rate of return for the payments."
-msgstr "A <emph>kamatláb</emph> a kifizetések belső megtérülési rátája."
-
-#. f{!I
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155395\n"
-"218\n"
-"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
-msgstr "Az <emph>értékek</emph> és a <emph>dátumok</emph> a kifizetések és a dátumok sorozata. Az első dátumpár a kifizetési terv kezdeti időpontját jelöli. Az összes többi dátumnak későbbinek kell lennie, de nem kell rendezettnek lenniük. Az értékek sorozatának legalább egy pozitív és egy negatív számot kell tartalmaznia (bevétel és letét)."
-
-#. =z+:
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148832\n"
-"219\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. h|zY
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150525\n"
-"220\n"
-"help.text"
-msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
-msgstr "A fentebb említett öt kifizetéshez tartozó nettó jelenérték kiszámítása 6%-os névleges megtérülési kamatláb mellett."
-
-#. WW[K
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149910\n"
-"221\n"
-"help.text"
-msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
-msgstr "Az <item type=\"input\">=XNPV(0,06;B1:B5;A1:A5)</item> képlet eredménye 323,02."
-
-#. aBg`
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3148822\n"
-"help.text"
-msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
-msgstr "<bookmark_value>számítás;megtérülési ráta</bookmark_value><bookmark_value>RRI függvény</bookmark_value>"
-
-#. QZ-V
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148822\n"
-"237\n"
-"help.text"
-msgid "RRI"
-msgstr "RRI"
-
-#. Oq6l
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154293\n"
-"238\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">A kamatlábat számítja ki egy befektetés profitjából (hozamából).</ahelp>"
-
-#. KYXp
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148444\n"
-"239\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. %+Bn
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148804\n"
-"240\n"
-"help.text"
-msgid "RRI(P; PV; FV)"
-msgstr "RRI(időszakok_száma; jelenérték; jövőérték)"
-
-#. e(AH
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154901\n"
-"241\n"
-"help.text"
-msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
-msgstr "Az <emph>időszakok_száma</emph> a kamatláb kiszámításához szükséges időszakok száma."
-
-#. 7.Zd
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159149\n"
-"242\n"
-"help.text"
-msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
-msgstr "A <emph>jelenérték</emph> a jelenlegi érték. A készpénzérték a készpénzletét vagy a természetbeni juttatás aktuális készpénzértéke. Letétértékként pozitív értéket kell megadni. A letétérték nem lehet 0, illetve <0"
-
-#. 89l_
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149771\n"
-"243\n"
-"help.text"
-msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
-msgstr "A <emph>jövőérték</emph> meghatározza, hogy milyen pénzértéket szeretne elérni a letéttel."
-
-#. ]lr7
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148941\n"
-"244\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 7Ua!
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154212\n"
-"245\n"
-"help.text"
-msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
-msgstr "Számolja ki a kamatlábat négy időszakra (évre) és 7500 pénzegységnyi pénzértékkel, ha a jövőbeli érték 10000 pénzegység."
-
-#. _t[B
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150775\n"
-"246\n"
-"help.text"
-msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
-msgstr "<item type=\"input\">=RRI(4;7500;10000)</item> = 7,46 %"
-
-#. ,8:0
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145413\n"
-"247\n"
-"help.text"
-msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
-msgstr "A kamatlábnak 7,46%-nak kell lennie, hogy a 7500 pénzegységből 10000 legyen."
-
-#. jkEh
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3154267\n"
-"help.text"
-msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
-msgstr "<bookmark_value>számítás;állandó kamatláb</bookmark_value><bookmark_value>állandó kamatlábak</bookmark_value><bookmark_value>RÁTA függvény</bookmark_value><bookmark_value>RATE függvény, lásd: RÁTA függvény</bookmark_value>"
-
-#. L\?6
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3154267\n"
-"249\n"
-"help.text"
-msgid "RATE"
-msgstr "RÁTA"
-
-#. ;%s.
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151052\n"
-"250\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Egy évjáradék periódusra eső állandó kamatlábát adja eredményül.</ahelp>"
-
-#. SrTD
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3154272\n"
-"251\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Q\l*
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3158423\n"
-"252\n"
-"help.text"
-msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
-msgstr "RÁTA(időszakok_száma; részletek; jelenérték; jövőérték; típus; becslés)"
-
-#. iE)@
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148910\n"
-"253\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
-msgstr "Az <emph>időszakok_száma</emph> az összes időszak, amelyben kifizetéseket bonyolít le (kifizetési időszak)."
-
-#. c[S7
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148925\n"
-"254\n"
-"help.text"
-msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
-msgstr "A <emph>részlet</emph> a konstans kifizetés, amelyet kifizetett az összes időszakban."
-
-#. [`7a
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149160\n"
-"255\n"
-"help.text"
-msgid "<emph>PV</emph> is the cash value in the sequence of payments."
-msgstr "A <emph>jelenérték</emph> a kifizetési sorozat készpénzértéke."
-
-#. kiNf
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3166456\n"
-"256\n"
-"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
-msgstr "A <emph>jövőérték</emph> (opcionális) a jövőbeli érték, amelyet az időszakos kifizetések végén ér el."
-
-#. )pO(
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153243\n"
-"257\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
-msgstr "A <emph>típus</emph> (opcionális) az időszakos kifizetés esedékességének dátuma: az adott időszak elején vagy a végén."
-
-#. oN$,
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146949\n"
-"258\n"
-"help.text"
-msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
-msgstr "A <emph>becslés</emph> (opcionális) iteratív számítással meghatározza a kamat becsült értékét."
-
-#. @o,$
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_idN10E2A\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. Os38
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149791\n"
-"259\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. VU`C
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150706\n"
-"260\n"
-"help.text"
-msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
-msgstr "Mennyi a konstans kamatláb értéke, ha a kifizetési időszakok száma 3, 10 pénzegységet fizet rendszeresen és a jelenérték 900 pénzegység."
-
-#. R;G#
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155586\n"
-"261\n"
-"help.text"
-msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
-msgstr "<item type=\"input\">=RÁTA(3;10;900)</item> = -121% A kamatláb ezért 121%."
-
-#. ;po-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3149106\n"
-"help.text"
-msgid "<bookmark_value>INTRATE function</bookmark_value>"
-msgstr "<bookmark_value>INTRATE függvény</bookmark_value>"
-
-#. 57).
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149106\n"
-"60\n"
-"help.text"
-msgid "INTRATE"
-msgstr "INTRATE"
-
-#. T-M$
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149918\n"
-"61\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Kiszámítja az éves kamatlábat, ha egy értékpapír (vagy egyéb tétel) megvásárlásra kerül egy adott befektetési értéken, majd eladásra kerül egy visszaváltási értéken. Kamat nem kerül kifizetésre.</ahelp>"
-
-#. iz55
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149974\n"
-"62\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. rC70
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149800\n"
-"63\n"
-"help.text"
-msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
-msgstr "INTRATE(kifizetés; esedékesség; befektetés; visszaváltás; alap)"
-
-#. *qT0
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148618\n"
-"64\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. Ig5p
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148988\n"
-"65\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security is sold."
-msgstr "Az <emph>esedékesség</emph> az a dátum, amely napon az értékpapír eladásra kerül."
-
-#. hlT-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154604\n"
-"66\n"
-"help.text"
-msgid "<emph>Investment</emph> is the purchase price."
-msgstr "A <emph>befektetés</emph> a vásárlási ár."
-
-#. AgU-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154337\n"
-"67\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the selling price."
-msgstr "A <emph>visszaváltás</emph> az értékesítési ár."
-
-#. mH}M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3145380\n"
-"68\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ^`ha
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149426\n"
-"69\n"
-"help.text"
-msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
-msgstr "1990. 1. 15-én 1 millióért megvásárol egy festményt, majd eladja 2002. 5. 5-én 2 millióért. Mindez napiegyenleg-számítás felhasználásával (3-as alap) történik. Milyen magas az átlagos éves kamatszint?"
-
-#. ayWT
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151125\n"
-"70\n"
-"help.text"
-msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
-msgstr "Az =INTRATE(\"1990/1/15\"; \"2002/5/5\"; 1000000; 2000000; 3) eredményül 8,12%-ot ad."
-
-#. reF1
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3148654\n"
-"help.text"
-msgid "<bookmark_value>COUPNCD function</bookmark_value>"
-msgstr "<bookmark_value>COUPNCD függvény</bookmark_value>"
-
-#. KA(_
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148654\n"
-"163\n"
-"help.text"
-msgid "COUPNCD"
-msgstr "COUPNCD"
-
-#. i:9%
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149927\n"
-"164\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Eredményül a kifizetési dátumot követő első kamatfizetési dátumot adja. Az eredményt dátumként formázza.</ahelp>"
-
-#. QOZ=
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153317\n"
-"165\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. p^LE
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150423\n"
-"166\n"
-"help.text"
-msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNCD(kifizetés; esedékesség; gyakoriság; alap)"
-
-#. NY[[
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150628\n"
-"167\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. [^%j
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153536\n"
-"168\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. Yhep
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145313\n"
-"169\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. Kk1-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155424\n"
-"170\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. bFQp
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154794\n"
-"171\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
-msgstr "Egy értékpapír vásárlási dátuma: 2001. 01. 25.; az esedékesség dátuma: 2001. 11. 15. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával mikorra esik a következő kamatfizetés?"
-
-#. puPw
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159251\n"
-"172\n"
-"help.text"
-msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
-msgstr "A =COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) eredménye 2001-05-15."
-
-#. 6MI=
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3143281\n"
-"help.text"
-msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
-msgstr "<bookmark_value>COUPDAYS függvény</bookmark_value>"
-
-#. Q\)i
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3143281\n"
-"143\n"
-"help.text"
-msgid "COUPDAYS"
-msgstr "COUPDAYS"
-
-#. 5={6
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149488\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">A kifizetés időpontját tartalmazó aktuális kamatperiódus hosszát adja meg napokban.</ahelp>"
-
-#. bXPW
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148685\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 3lrs
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149585\n"
-"146\n"
-"help.text"
-msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYS(kifizetés; esedékesség; gyakoriság; alap)"
-
-#. `~B2
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152767\n"
-"147\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. Hd_3
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151250\n"
-"148\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. )ga:
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146126\n"
-"149\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. @P;S
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153705\n"
-"150\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9i*H
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147530\n"
-"151\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
-msgstr "Egy értékpapír vásárlási dátuma: 2001. 01. 25.; az esedékesség dátuma: 2001. 11. 15. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával hány napból áll a kifizetési dátumot tartalmazó kamatozási időszak?"
-
-#. ;T\,
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156338\n"
-"152\n"
-"help.text"
-msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
-msgstr "A =COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) eredménye 181."
-
-#. thl#
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3154832\n"
-"help.text"
-msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
-msgstr "<bookmark_value>COUPDAYSNC függvény</bookmark_value>"
-
-#. W.i8
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3154832\n"
-"153\n"
-"help.text"
-msgid "COUPDAYSNC"
-msgstr "COUPDAYSNC"
-
-#. mXO8
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147100\n"
-"154\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">A kifizetés időpontjától kezdve összeszámolja a napokat a legközelebbi kamatfizetés napjáig.</ahelp>"
-
-#. b8Es
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3151312\n"
-"155\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ku;E
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155121\n"
-"156\n"
-"help.text"
-msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYSNC(kifizetés; esedékesség; gyakoriság; alap)"
-
-#. H9ZT
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3158440\n"
-"157\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. n8dm
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146075\n"
-"158\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. FdIm
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154620\n"
-"159\n"
-"help.text"
-msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. h3dN
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155604\n"
-"160\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. kZc]
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148671\n"
-"161\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
-msgstr "Egy értékpapír vásárlási dátuma: 2001. 01. 25.; az esedékesség dátuma: 2001. 11. 15. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával hány nap van még hátra a következő kamatfizetésig?"
-
-#. $o7o
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156158\n"
-"162\n"
-"help.text"
-msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
-msgstr "A =COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) eredménye 110."
-
-#. RT^l
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3150408\n"
-"help.text"
-msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
-msgstr "<bookmark_value>COUPDAYBS függvény</bookmark_value><bookmark_value>időtartamok;első kamatfizetés az esedékességig</bookmark_value><bookmark_value>értékpapírok;első kamatfizetés az esedékességig</bookmark_value>"
-
-#. baI4
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3150408\n"
-"133\n"
-"help.text"
-msgid "COUPDAYBS"
-msgstr "COUPDAYBS"
-
-#. 2ydj
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146795\n"
-"134\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Egy kamat- vagy osztalékszelvény-periódus kezdetétől a kifizetés időpontjáig összeszámolja a napokat.</ahelp>"
-
-#. t-%e
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3156142\n"
-"135\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 3f?i
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159083\n"
-"136\n"
-"help.text"
-msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYBS(kifizetés; esedékesség; gyakoriság; alap)"
-
-#. .8h%
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146907\n"
-"137\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. mBi~
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159390\n"
-"138\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. jj[;
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154414\n"
-"139\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. (.)m
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153880\n"
-"140\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ,`E9
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150592\n"
-"141\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
-msgstr "Egy értékpapír vásárlási dátuma: 2001. 01. 25.; az esedékesség dátuma: 2001. 11. 15. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával hány nap ez?"
-
-#. *D4h
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151103\n"
-"142\n"
-"help.text"
-msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
-msgstr "A =COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) eredménye 71."
-
-#. 3#6l
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3152957\n"
-"help.text"
-msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
-msgstr "<bookmark_value>COUPPCD függvény</bookmark_value><bookmark_value>dátumok;kamatfizetés dátuma az esedékesség előtt</bookmark_value>"
-
-#. CT9`
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3152957\n"
-"183\n"
-"help.text"
-msgid "COUPPCD"
-msgstr "COUPPCD"
-
-#. \qaj
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153678\n"
-"184\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Eredményül a kifizetési dátumot megelőző kamatfizetési dátumot adja. Az eredményt formázza dátumként.</ahelp>"
-
-#. ,#Z6
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3156269\n"
-"185\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. xA9c
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153790\n"
-"186\n"
-"help.text"
-msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPPCD(kifizetés; esedékesség; gyakoriság; alap)"
-
-#. ~;Dl
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150989\n"
-"187\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. F+3!
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154667\n"
-"188\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. X]ND
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154569\n"
-"189\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. Mv|c
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3150826\n"
-"190\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. X?]l
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148968\n"
-"191\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
-msgstr "Egy értékpapír vásárlási dátuma: 2001. 01. 25.; az esedékesség dátuma: 2001. 11. 15. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával mikorra esett a vásárlást megelőző kamatfizetés?"
-
-#. 0uN/
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149992\n"
-"192\n"
-"help.text"
-msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
-msgstr "A = COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) eredménye 2000-11-15."
-
-#. Zi=*
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3150673\n"
-"help.text"
-msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
-msgstr "<bookmark_value>COUPNUM függvény</bookmark_value><bookmark_value>szelvények száma</bookmark_value>"
-
-#. Beo:
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3150673\n"
-"173\n"
-"help.text"
-msgid "COUPNUM"
-msgstr "COUPNUM"
-
-#. !PDQ
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154350\n"
-"174\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">A kifizetés és a lejárat időpontja között kifizetendő szelvények számát adja eredményül.</ahelp>"
-
-#. _q#D
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148400\n"
-"175\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. +(_M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153200\n"
-"176\n"
-"help.text"
-msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNUM(kifizetés; esedékesség; gyakoriság; alap)"
-
-#. A,-P
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159406\n"
-"177\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. 2ZUK
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155864\n"
-"178\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. ,N9=
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154720\n"
-"179\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. ,3.q
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149319\n"
-"180\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Vnci
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152460\n"
-"181\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
-msgstr "Egy értékpapír vásárlási dátuma: 2001. 01. 25.; az esedékesség dátuma: 2001. 11. 15. A kamatok félévente kerülnek kifizetésre (vagyis a gyakoriság 2). Napiegyenleg-számítás (3-as alap) felhasználásával hány kamatfizetési nap létezik?"
-
-#. UTW?
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150640\n"
-"182\n"
-"help.text"
-msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
-msgstr "A =COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) eredménye 2."
-
-#. Jy@=
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3149339\n"
-"help.text"
-msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
-msgstr "<bookmark_value>RRÉSZLET függvény</bookmark_value><bookmark_value>IPMT függvény, lásd: RRÉSZLET függvény</bookmark_value><bookmark_value>periodikus amortizációs ráták</bookmark_value>"
-
-#. `M)D
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149339\n"
-"263\n"
-"help.text"
-msgid "IPMT"
-msgstr "RRÉSZLET"
-
-#. y)@M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154522\n"
-"264\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Kiszámítja a rendszeres befizetésekkel és állandó kamatlábbal tett befektetés periodikus törlesztését.</ahelp>"
-
-#. Ky2N
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153266\n"
-"265\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. $4q~
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151283\n"
-"266\n"
-"help.text"
-msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
-msgstr "RRÉSZLET(kamatláb; időszak; időszakok_száma; jelenérték; jövőérték; típus)"
-
-#. (Z]z
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147313\n"
-"267\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. 0nls
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145158\n"
-"268\n"
-"help.text"
-msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
-msgstr "Az <emph>időszak</emph> az az időszak, amelyre a kamatos kamat kiszámításra kerül. Ha a kamatos kamatot az utolsó időszakra számítja akkor időszak=időszakok_száma."
-
-#. ,3Ju
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147577\n"
-"269\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
-msgstr "Az <emph>időszakok_száma</emph> a kifizetési időszakok összesített száma, ahol járadék fizetése történik."
-
-#. fWNE
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156211\n"
-"270\n"
-"help.text"
-msgid "<emph>PV</emph> is the present cash value in sequence of payments."
-msgstr "A <emph>jelenérték</emph> az aktuális készpénzérték a fizetések sorrendjében."
-
-#. Sc`N
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151213\n"
-"271\n"
-"help.text"
-msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
-msgstr "A <emph>jövőérték</emph> (opcionális) az időszakok végén elérni kívánt érték (jövőérték)."
-
-#. f3[D
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154195\n"
-"272\n"
-"help.text"
-msgid "<emph>Type</emph> is the due date for the periodic payments."
-msgstr "A <emph>típus</emph> a törlesztőrészletek esedékességének dátuma."
-
-#. 4CV2
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3150102\n"
-"273\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. c\Ap
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149438\n"
-"274\n"
-"help.text"
-msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
-msgstr "Milyen magas a kamatláb az ötödik időszak (év) során, ha az állandó kamatláb 5% és a készpénzérték 15000 pénzegység? Az időszakos fizetés hét év."
-
-#. }2Je
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150496\n"
-"275\n"
-"help.text"
-msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
-msgstr "<item type=\"input\">=RRÉSZLET(5%;5;7;15000)</item> = -352,97 pénzegység. Az összetett kamat az ötödik időszakban (évben) 352,97 pénzegység."
-
-#. HP9c
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3151205\n"
-"help.text"
-msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
-msgstr "<bookmark_value>számítás;jövőértékek</bookmark_value><bookmark_value>jövőértékek;állandó kamat</bookmark_value><bookmark_value>JBÉ függvény</bookmark_value><bookmark_value>FV függvény, lásd: JBÉ függvény</bookmark_value>"
-
-#. Mm9N
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3151205\n"
-"277\n"
-"help.text"
-msgid "FV"
-msgstr "JBÉ"
-
-#. R!3}
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154140\n"
-"278\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZW\">Egy befektetés jövőbeli értékét számítja ki, ismétlődő állandó kifizetéseket és állandó kamatlábat véve alapul (jövőérték).</ahelp>"
-
-#. G[%o
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155178\n"
-"279\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. PQNL
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145215\n"
-"280\n"
-"help.text"
-msgid "FV(Rate; NPer; Pmt; PV; Type)"
-msgstr "JBÉ(kamatláb; időszakok_száma; részlet; jelenérték; típus)"
-
-#. d?2r
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155136\n"
-"281\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. 7)bT
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156029\n"
-"282\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "Az <emph>időszakok_száma</emph> az időszakok összesített száma (kifizetési időszak)."
-
-#. ?oR:
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151322\n"
-"283\n"
-"help.text"
-msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
-msgstr "A <emph>részlet</emph> az időszakonként rendszeresen fizetett járadék."
-
-#. T~2$
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145256\n"
-"284\n"
-"help.text"
-msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
-msgstr "A <emph>jelenérték</emph> (opcionális) a (jelen) pénzértéke egy befektetésnek."
-
-#. _)#n
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150999\n"
-"285\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
-msgstr "A <emph>típus</emph> (opcionális) megadja, hogy a kifizetés az időszak végén, vagy az elején esedékes."
-
-#. Oy0.
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_idN114D8\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. 3-_~
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3146800\n"
-"286\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 25q?
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146813\n"
-"287\n"
-"help.text"
-msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
-msgstr "Milyen magas a befektetés értéke a futamidő végén, ha a kamatláb 4%, a fizetési időszak pedig két év, 750 pénzegység értékű időszakos fizetésekkel? A befektetés jelen értéke 2500 pénzegység."
-
-#. niqm
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149302\n"
-"288\n"
-"help.text"
-msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
-msgstr "A <item type=\"input\">=JBÉ(4%;2;750;2500) </item>= -4234,00 pénzegység. A befektetés végén az érték 4234,00 pénzegység."
-
-#. +7j*
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3155912\n"
-"help.text"
-msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
-msgstr "<bookmark_value>FVSCHEDULE függvény</bookmark_value><bookmark_value>jövőértékek;változó kamat</bookmark_value>"
-
-#. KQ*A
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155912\n"
-"51\n"
-"help.text"
-msgid "FVSCHEDULE"
-msgstr "FVSCHEDULE"
-
-#. jLkZ
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3163726\n"
-"52\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Periodikusan változó kamatlábak esetén a kezdőtőke felhalmozott értékét számítja ki.</ahelp>"
-
-#. JM!+
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3149571\n"
-"53\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 8@TR
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148891\n"
-"54\n"
-"help.text"
-msgid "FVSCHEDULE(Principal; Schedule)"
-msgstr "FVSCHEDULE(tőke; kamattáblázat)"
-
-#. G{Z)
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148904\n"
-"55\n"
-"help.text"
-msgid "<emph>Principal</emph> is the starting capital."
-msgstr "A <emph>tőke</emph> a kezdőtőke."
-
-#. )J_.
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148562\n"
-"56\n"
-"help.text"
-msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
-msgstr "A <emph>kamattáblázat</emph> kamatlábak sorozata például tartományként (H3:H5) vagy listaként megadva (lásd a példát)."
-
-#. bC6_
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3147288\n"
-"57\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 8fNa
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148638\n"
-"58\n"
-"help.text"
-msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
-msgstr "1000 pénzegység került befektetésre, három évre. Az éves kamatlábak rendre 3%, 4% és 5%. Milyen magas az érték három év után?"
-
-#. /KxG
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156358\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
-msgstr "Az <item type=\"input\">=FVSCHEDULE(1000;{0,03;0,04;0,05})</item> képlet eredménye 1124,76."
-
-#. I@V_
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3156435\n"
-"help.text"
-msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
-msgstr "<bookmark_value>számítás;kifizetési időszakok száma</bookmark_value><bookmark_value>kifizetési időszakok;számuk</bookmark_value><bookmark_value>törlesztőrészletek száma</bookmark_value><bookmark_value>PER.SZÁM függvény</bookmark_value><bookmark_value>NPER függvény, lásd: PER.SZÁM függvény</bookmark_value>"
-
-#. |r^c
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3156435\n"
-"290\n"
-"help.text"
-msgid "NPER"
-msgstr "PER.SZÁM"
-
-#. S[f#
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152363\n"
-"291\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZZR\">A törlesztési időszakok számát adja meg ismert, adott nagyságú állandó törlesztőrészletek és állandó kamatláb mellett.</ahelp>"
-
-#. r-Fr
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3147216\n"
-"292\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7@Wy
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155934\n"
-"293\n"
-"help.text"
-msgid "NPER(Rate; Pmt; PV; FV; Type)"
-msgstr "PER.SZÁM(kamatláb; részlet; jelenérték; jövőérték; típus)"
-
-#. r3rC
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155946\n"
-"294\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. b3+O
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149042\n"
-"295\n"
-"help.text"
-msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
-msgstr "A <emph>részlet</emph> az időszakonként hagyományosan fizetett járadék."
-
-#. $Aj~
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153134\n"
-"296\n"
-"help.text"
-msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "A <emph>jelenérték</emph> a kifizetések jelenértéke."
-
-#. BF6Z
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154398\n"
-"297\n"
-"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
-msgstr "A <emph>jövőérték</emph> (opcionális) a jövőbeli érték, amelyet az időszakos kifizetések végén érhet el."
-
-#. ]8h,
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145127\n"
-"298\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
-msgstr "A <emph>típus</emph> (opcionális) megadja, hogy a kifizetés az időszak végén, vagy az elején esedékes."
-
-#. ebrW
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_idN1166C\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. 2%$e
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3155795\n"
-"299\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. nOQt
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147378\n"
-"300\n"
-"help.text"
-msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
-msgstr "Hány kifizetési időszakot takar egy olyan kifizetési időszak, amely 6%-os periodikus kamatlábbal, 153,75 pénzegységnyi periodikus kifizetéssel és 2600 pénzegységnyi jelenértékkel rendelkezik."
-
-#. NX_M
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156171\n"
-"301\n"
-"help.text"
-msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
-msgstr "A <item type=\"input\">=PER.SZÁM(6%;153,75;2600)</item> = -12,02. A kifizetési időszak 12,02 időszakot fed le."
-
-#. @o,a
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150309\n"
-"314\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Vissza a pénzügyi függvények első részéhez\">Vissza a pénzügyi függvények első részéhez</link>"
-
-#. 1ji$
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153163\n"
-"315\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Vissza a pénzügyi függvények második részéhez\">Vissza a pénzügyi függvények második részéhez</link>"
-
-#. KeT0
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"tit\n"
-"help.text"
-msgid "Array Functions"
-msgstr "Tömbfüggvények"
-
-#. /YvG
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3147273\n"
-"help.text"
-msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas;arrays</bookmark_value><bookmark_value>functions;array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating;conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
-msgstr "<bookmark_value>mátrixok; függvények</bookmark_value><bookmark_value>Függvénytündér; tömbök</bookmark_value><bookmark_value>tömbfüggvények</bookmark_value><bookmark_value>helyi tömbkonstansok</bookmark_value><bookmark_value>képletek;tömbök</bookmark_value><bookmark_value>függvények;tömbfüggvények</bookmark_value><bookmark_value>szerkesztés; tömbképletek</bookmark_value><bookmark_value>másolás; tömbképletek</bookmark_value><bookmark_value>tömbtartományok beállítása</bookmark_value><bookmark_value>számítás;feltételes számítások</bookmark_value><bookmark_value>mátrixok; számítások</bookmark_value><bookmark_value>feltételes számítások tömbökkel</bookmark_value><bookmark_value>implicit tömbkezelés</bookmark_value><bookmark_value>kényszerített tömbkezelés</bookmark_value>"
-
-#. zVl^
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3147273\n"
-"1\n"
-"help.text"
-msgid "Array Functions"
-msgstr "Tömbfüggvények"
-
-#. XMA9
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154744\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"matrixtext\">This category contains the array functions. </variable>"
-msgstr "<variable id=\"matrixtext\">Ez a kategória az adattömbökön, illetve mátrixokon ható függvényeket tartalmazza. </variable>"
-
-#. lSO@
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3146084\n"
-"257\n"
-"help.text"
-msgid "What is an Array?"
-msgstr "Mi az a tömb?"
-
-#. ~LY0
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154298\n"
-"258\n"
-"help.text"
-msgid "<variable id=\"wasmatrix\">An array is a linked range of cells on a spreadsheet containing values. </variable> A square range of 3 rows and 3 columns is a 3 x 3 array:"
-msgstr "<variable id=\"wasmatrix\">A tömb értékeket tartalmazó cellák kapcsolt tartománya a munkalapon. </variable> Egy négyzet alakú, 3 sort és 3 oszlopot tartalmazó tartomány egy 3x3-as tömb:"
-
-#. 8it+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154692\n"
-"260\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. CJaU
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150117\n"
-"261\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#. D+42
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155325\n"
-"262\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. B`V+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153104\n"
-"263\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. vneI
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3146996\n"
-"264\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
-
-#. jjK]
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150529\n"
-"265\n"
-"help.text"
-msgid "<item type=\"input\">31</item>"
-msgstr "<item type=\"input\">31</item>"
-
-#. e4+4
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148831\n"
-"266\n"
-"help.text"
-msgid "<item type=\"input\">33</item>"
-msgstr "<item type=\"input\">33</item>"
-
-#. KNQ?
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148943\n"
-"267\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. xQZs
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149771\n"
-"268\n"
-"help.text"
-msgid "<item type=\"input\">95</item>"
-msgstr "<item type=\"input\">95</item>"
-
-#. .7ic
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158407\n"
-"269\n"
-"help.text"
-msgid "<item type=\"input\">17</item>"
-msgstr "<item type=\"input\">17</item>"
-
-#. n~)x
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148806\n"
-"270\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
-
-#. 1_TR
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154904\n"
-"271\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. M?*L
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150779\n"
-"272\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
-
-#. m%#.
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148449\n"
-"273\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
-
-#. 6f?g
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147238\n"
-"274\n"
-"help.text"
-msgid "<item type=\"input\">50</item>"
-msgstr "<item type=\"input\">50</item>"
-
-#. y1He
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153583\n"
-"277\n"
-"help.text"
-msgid "The smallest possible array is a 1 x 2 or 2 x 1 array with two adjacent cells."
-msgstr "A legkisebb lehetséges tömb az 1x2-es vagy a 2x1-es, amely két szomszédos cellát tartalmaz."
-
-#. lBC1
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3148474\n"
-"275\n"
-"help.text"
-msgid "What is an array formula?"
-msgstr "Mi az a tömbképlet?"
-
-#. 1lx?
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155355\n"
-"276\n"
-"help.text"
-msgid "A formula in which the individual values in a cell range are evaluated is referred to as an array formula. The difference between an array formula and other formulas is that the array formula deals with several values simultaneously instead of just one."
-msgstr "Az olyan képleteket, amelyekben a cellatartományban található egyéni értékek kerülnek kiértékelésre, tömbképleteknek nevezik. A különbség a tömbképletek, illetve a többi képlet között, hogy a tömbképletek egyidejűleg több értéket kezelnek, míg a többi képlet csak egyet."
-
-#. eCY_
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151052\n"
-"278\n"
-"help.text"
-msgid "Not only can an array formula process several values, but it can also return several values. The results of an array formula is also an array."
-msgstr "A tömbképlet nem csupán több érték feldolgozására képes, hanem eredményül is több értéket képes adni. A tömbképlet eredménye maga is tömb."
-
-#. XP{}
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158432\n"
-"279\n"
-"help.text"
-msgid "To multiply the values in the individual cells by 10 in the above array, you do not need to apply a formula to each individual cell or value. Instead you just need to use a single array formula. Select a range of 3 x 3 cells on another part of the spreadsheet, enter the formula <item type=\"input\">=10*A1:C3</item> and confirm this entry using the key combination <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The result is a 3 x 3 array in which the individual values in the cell range (A1:C3) are multiplied by a factor of 10."
-msgstr "A fenti tömbben található egyedi cellák tartalmának tízszeresére növeléséhez nem szükséges minden egyes cellára, illetve értékre képletet alkalmaznia. Ehelyett egyszerűen használjon egy tömbképletet. Jelöljön ki egy 3 x 3 cellából álló tartományt a táblázat valamely másik részén, írja be a <item type=\"input\">=10*A1:C3</item> képletet, majd erősítse meg a bejegyzést a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter billentyűk segítségével. Az eredmény egy olyan 3 x 3 méretű tömb, amelyben a cellatartomány (A1:C3) egyedi értékei meg lesznek szorozva tízzel."
-
-#. b#TH
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149156\n"
-"280\n"
-"help.text"
-msgid "In addition to multiplication, you can also use other operators on the reference range (an array). With $[officename] Calc, you can add (+), subtract (-), multiply (*), divide (/), use exponents (^), concatenation (&) and comparisons (=, <>, <, >, <=, >=). The operators can be used on each individual value in the cell range and return the result as an array if the array formula was entered."
-msgstr "A szorzáson kívül a hivatkozási tartományon (tömbön) más operátorokat is használhat. A $[officename] Calc programban összeadhat (+), kivonhat (-), szorozhat (*), oszthat (/), használhat hatványozást (^), összefűzést (&), illetve összehasonlításokat végezhet (=, <>, <, >, <=, >=). Az operátorok használhatók a cellatartomány minden egyedi értékére. Ebben az esetben – ha tömbképlet került megadásra – az eredmény maga is tömbként kerül visszaadásra."
-
-#. BcVb
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166456\n"
-"326\n"
-"help.text"
-msgid "Comparison operators in an array formula treat empty cells in the same way as in a normal formula, that is, either as zero or as an empty string. For example, if cells A1 and A2 are empty the array formulas <item type=\"input\">{=A1:A2=\"\"}</item> and <item type=\"input\">{=A1:A2=0}</item> will both return a 1 column 2 row array of cells containing TRUE."
-msgstr "A tömbképletben levő összehasonlító operátorok az üres cellákat ugyanúgy kezelik, mint a normál képletek, azaz vagy nullaként, vagy üres karakterláncként. Ha például az A1 és A2 cellák üresek, akkor az <item type=\"input\">{=A1:A2=\"\"}</item> és az <item type=\"input\">{=A1:A2=0}</item> tömbképletek eredményül egyaránt IGAZ értéket adnak egy 1 oszlopos és 2 soros cellatömbben."
-
-#. TW-L
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3150713\n"
-"281\n"
-"help.text"
-msgid "When do you use array formulas?"
-msgstr "Mikor érdemes használni tömbképleteket?"
-
-#. 5^}2
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149787\n"
-"282\n"
-"help.text"
-msgid "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">make the required change to the array formula</link>."
-msgstr "Tömbképleteket akkor érdemes használni, ha számításokat eltérő értékekkel kell megismételnie. Ha később a számítási módszer módosítása mellett dönt, akkor csupán a tömbképletet szükséges frissítenie. Tömbképlet felvételéhez jelölje ki a teljes tömbtartományt, majd <link href=\"text/scalc/01/04060107.xhp\" name=\"módosítsa a tömbképletet a kívánt módon\">módosítsa a tömbképletet a kívánt módon</link>."
-
-#. +.\F
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149798\n"
-"283\n"
-"help.text"
-msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
-msgstr "A tömbképletek ezen kívül tárterület-kímélő megoldást nyújtanak azon esetekre, amikor több értéket szükséges kiszámítani, hiszen nem rendelkeznek különösebb memóriaigénnyel. Ezen kívül a tömbök az összetett számítási műveletek végzése során létfontosságú eszköznek bizonyulnak, mivel segítségükkel a számítások során több cellatartományt is felhasználhat. A $[officename] különböző matematikai műveleteket tartalmaz a tömbökkel végzett munkához, például az MSZORZAT függvényt két tömb összeszorzására vagy a SZORZATÖSSZEG függvényt két tömb skaláris szorzatának kiszámítására."
-
-#. #PBs
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3155588\n"
-"284\n"
-"help.text"
-msgid "Using Array Formulas in $[officename] Calc"
-msgstr "Tömbképletek használata a $[officename] Calc programban"
-
-#. ,zS*
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152876\n"
-"285\n"
-"help.text"
-msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:"
-msgstr "Olyan „szokásos” képletet is létrehozhat, amelyben a hivatkozási tartomány (például paraméterek) tömbképletet jelöl. Ilyenkor az eredmények a hivatkozási tartomány, illetve a képletet tartalmazó sorok vagy oszlopok metszetéből kerülnek kiszámításra. Ha nem létezik metszet, illetve ha a metszettartomány több sorból vagy oszlopból áll, akkor az #ÉRTÉK! hibaüzenet jelenik meg. Az alapelvet a következő példa szemlélteti:"
-
-#. .flS
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3151271\n"
-"313\n"
-"help.text"
-msgid "Creating Array Formulas"
-msgstr "Tömbképletek létrehozása"
-
-#. =#0C
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149102\n"
-"314\n"
-"help.text"
-msgid "If you create an array formula using the <emph>Function Wizard</emph>, you must mark the <emph>Array</emph> check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned."
-msgstr "Ha tömbképletet a <emph>Függvénytündér</emph> segítségével hoz létre, akkor az <emph>Adattömb</emph> jelölőnégyzetet minden egyes alkalommal meg kell jelölnie ahhoz, hogy az eredmények tömbformátumban kerüljenek visszaadásra. Ellenkező esetben csak a tömb bal felső cellájában található érték kerül kiszámításra, illetve visszaadásra."
-
-#. dSR]
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153392\n"
-"4\n"
-"help.text"
-msgid "If you enter the array formula directly into the cell, you must use the key combination Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter instead of the Enter key. Only then does the formula become an array formula."
-msgstr "Ha a tömbképletet közvetlenül a cellában adja meg, akkor az Enter billentyű helyett a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter billentyűkombinációt kell használnia. Kizárólag ebben az esetben válhat a képlet tömbképletté."
-
-#. V5Z[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151120\n"
-"315\n"
-"help.text"
-msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
-msgstr "A tömbhivatkozások kapcsos zárójelben jelennek meg a $[officename] Calc programban. A kapcsos zárójelek kézi beírásával tömbképletek nem hozhatók létre."
-
-#. _T[o
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154342\n"
-"5\n"
-"help.text"
-msgid "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
-msgstr "Az eredménytömb cellái rendszerint módosítás elleni védelmet élveznek. Ennek ellenére a tömbképletet szerkesztheti, illetve másolhatja a tömb teljes cellatartományának kijelölésével."
-
-#. W~T8
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id8834803\n"
-"help.text"
-msgid "Using Inline Array Constants in Formulas"
-msgstr "Helyi tömbkonstansok használata képletekben"
-
-#. @S)*
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id985747\n"
-"help.text"
-msgid "Calc supports inline matrix/array constants in formulas. An inline array is surrounded by curly braces '{' and '}'. Elements can be each a number (including negatives), a logical constant (TRUE, FALSE), or a literal string. Non-constant expressions are not allowed. Arrays can be entered with one or more rows, and one or more columns. All rows must consist of the same number of elements, all columns must consist of the same number of elements."
-msgstr "A Calc támogatja a helyi mátrixokat/tömbkonstansokat a képletekben. Egy helyi tömb „{” és „}” jel közé van zárva. Az elemek mindegyike lehet szám (beleértve a negatív számokat is), logikai konstans (IGAZ, HAMIS) vagy karakterlánc. A nem konstans kifejezések nem használhatók. Megadhatók egy vagy több sorból, illetve egy vagy több oszlopból álló tömbök. Minden sornak, valamint minden oszlopnak is azonos számú elemből kell állnia."
-
-#. 7;=z
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id936613\n"
-"help.text"
-msgid "The column separator (separating elements in one row) and the row separator are language and locale dependent. But in this help content, the ';' semicolon and '|' pipe symbol are used to indicate the column and row separators, respectively. For example, in the English locale, the ',' comma is used as the column separator, while the ';' semicolon is used as the row separator."
-msgstr "Az oszlopelválasztó (a sorban lévő elemek elválasztója) és a sorelválasztó nyelv- és területfüggő. Azonban ebben a súgóban a ';' pontosvessző és a '|' cső jel jelzi az oszlop- és sorelválasztókat. Például angol területi beállításoknál a ',' vessző az oszlopelválasztó, és a ';' pontosvessző a sorelválasztó."
-
-#. [!z%
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id1877498\n"
-"help.text"
-msgid "Arrays can not be nested."
-msgstr "A tömbök nem ágyazhatók egymásba."
-
-#. #L~$
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id4262520\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>Példák:</emph>"
-
-#. +4)s
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id9387493\n"
-"help.text"
-msgid "={1;2;3}"
-msgstr "={1;2;3}"
-
-#. k6Ok
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id8207037\n"
-"help.text"
-msgid "An array with one row consisting of the three numbers 1, 2, and 3."
-msgstr "Három számot (1, 2 és 3) tartalmazó sorral rendelkező tömb"
-
-#. p4s*
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id6757103\n"
-"help.text"
-msgid "To enter this array constant, you select three cells in a row, then you type the formula <item type=\"input\">={1;2;3}</item> using the curly braces and the semicolons, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
-msgstr "A fenti tömbkonstans megadásához válasszon ki három cellát egy sorban, írja be az <item type=\"input\">={1;2;3}</item> képletet kapcsos zárójelek és pontosvesszők használatával, majd nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter billentyűkombinációt."
-
-#. n]h#
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id8868068\n"
-"help.text"
-msgid "={1;2;3|4;5;6}"
-msgstr "={1;2;3|4;5;6}"
-
-#. r)iA
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id6626483\n"
-"help.text"
-msgid "An array with two rows and three values in each row."
-msgstr "Két sort és soronként három értéket tartalmazó tömb"
-
-#. oX?K
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id5262916\n"
-"help.text"
-msgid "={0;1;2|FALSE;TRUE;\"two\"}"
-msgstr "={0;1;2|HAMIS;IGAZ;\"kettő\"}"
-
-#. (XV,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id1623889\n"
-"help.text"
-msgid "A mixed data array."
-msgstr "Kevert adattípusú tömb"
-
-#. H-QY
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id7781914\n"
-"help.text"
-msgid "=SIN({1;2;3})"
-msgstr "=SIN({1;2;3})"
-
-#. Ve%#
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id300912\n"
-"help.text"
-msgid "Entered as a matrix formula, delivers the result of three SIN calculations with the arguments 1, 2, and 3."
-msgstr "Mátrixképletként megadva három szinuszszámítás értékét adja vissza az 1, 2 és 3 argumentumra."
-
-#. U[$g
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3148660\n"
-"316\n"
-"help.text"
-msgid "Editing Array Formulas"
-msgstr "Tömbképletek szerkesztése"
-
-#. !J4=
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149241\n"
-"317\n"
-"help.text"
-msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+/, where / is the Division key on the numeric keypad."
-msgstr "Válassza ki a tömbképletet tartalmazó cellatartományt vagy tömböt. A teljes tömb kijelöléséhez mozgassa a kurzort a tömbtartományon belülre, majd nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+/ billentyűkombinációt, ahol / a numerikus billentyűzeten található osztásjel."
-
-#. ~ZdO
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3143274\n"
-"318\n"
-"help.text"
-msgid "Either press F2 or position the cursor in the input line. Both of these actions let you edit the formula."
-msgstr "Nyomja meg az F2 billentyűt, vagy helyezze a kurzort a beviteli sorba. Mindkét művelet segítségével szerkesztheti a képletet."
-
-#. @q+n
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154798\n"
-"319\n"
-"help.text"
-msgid "After you have made changes, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
-msgstr "Módosítás után nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter billentyűket."
-
-#. VZnZ
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150628\n"
-"334\n"
-"help.text"
-msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
-msgstr "Lehetősége nyílik a tömbök önálló részeinek formázására is. Például, módosíthatja a betűtípus színét. Jelöljön ki egy cellatartományt, majd módosítsa a kívánt attribútumokat."
-
-#. /YKO
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3145608\n"
-"320\n"
-"help.text"
-msgid "Copying Array Formulas"
-msgstr "Tömbhivatkozások másolása"
-
-#. Z__B
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149585\n"
-"321\n"
-"help.text"
-msgid "Select the cell range or array containing the array formula."
-msgstr "Válassza ki a tömbhivatkozást tartalmazó cellatartományt vagy tömböt."
-
-#. 44Wb
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154619\n"
-"322\n"
-"help.text"
-msgid "Either press F2 or position the cursor in the input line."
-msgstr "Nyomja meg az F2 billentyűt, vagy helyezze a kurzort a beviteli sorba."
-
-#. V^Z3
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150994\n"
-"323\n"
-"help.text"
-msgid "Copy the formula into the input line by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C."
-msgstr "A <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C megnyomásával másolja a képletet az adatbevitel sorba."
-
-#. Dp(i
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3146787\n"
-"324\n"
-"help.text"
-msgid "Select a range of cells where you want to insert the array formula and either press F2 or position the cursor in the input line."
-msgstr "Válassza ki azt a cellatartományt, ahova a tömbhivatkozást be akarja szúrni, majd nyomja meg az F2 billentyűt, vagy helyezze a kurzort a beviteli sorba."
-
-#. j$PJ
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154419\n"
-"325\n"
-"help.text"
-msgid "Paste the formula by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V in the selected space and confirm it by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The selected range now contains the array formula."
-msgstr "A <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V megnyomásával illessze be a képletet a kijelölt területre, majd erősítse meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter megnyomásával. A kijelölt tartomány most már tartalmazza a tömbképletet."
-
-#. =V\+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3154834\n"
-"328\n"
-"help.text"
-msgid "Adjusting an Array Range"
-msgstr "Tömbhivatkozás beállítása"
-
-#. EvX4
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148679\n"
-"329\n"
-"help.text"
-msgid "If you want to edit the output array, do the following:"
-msgstr "Ha a kimeneti tömböt szeretné szerkeszteni, végezze el az alábbi műveleteket:"
-
-#. 6Oop
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151102\n"
-"330\n"
-"help.text"
-msgid "Select the cell range or array containing the array formula."
-msgstr "Válassza ki a tömbhivatkozást tartalmazó cellatartományt vagy tömböt."
-
-#. Zi\T
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147096\n"
-"331\n"
-"help.text"
-msgid "Below the selection, to the right, you will see a small icon with which you can zoom in or out on the range using your mouse."
-msgstr "A kijelölés alatt jobbra láthat egy kis ikont. Ezzel, valamint az egérrel, kicsinyítheti vagy nagyíthatja a tartományt."
-
-#. @3]f
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150974\n"
-"332\n"
-"help.text"
-msgid "When you adjust the array range, the array formula will not automatically be adjusted. You are only changing the range in which the result will appear."
-msgstr "A tömbtartomány beállításakor a tömbképlet nem kerül automatikusan beállításra. Csak azt a tartományt módosítja, amelyben az eredmények megjelenítésre kerülnek."
-
-#. lpG6
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3146080\n"
-"333\n"
-"help.text"
-msgid "By holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, you can create a copy of the array formula in the given range."
-msgstr "A <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyű lenyomva tartásával a megadott tartományban másolatot készíthet a tömbképletről."
-
-#. ;.Oo
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D47\n"
-"help.text"
-msgid "Conditional Array Calculations"
-msgstr "Feltételes tömbszámítások"
-
-#. Ovg.
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D4B\n"
-"help.text"
-msgid "A conditional array calculation is an array or matrix formula that includes an IF() or CHOOSE() function. The condition argument in the formula is an area reference or a matrix result."
-msgstr "A feltételes tömbszámítás egy olyan tömb- vagy mátrixképlet, amely egy HA() vagy VÁLASZT() függvényt tartalmaz. A képlet feltételargumentuma egy területhivatkozás vagy egy mátrixeredmény."
-
-#. =(A~
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D4E\n"
-"help.text"
-msgid "In the following example, the >0 test of the {=IF(A1:A3>0;\"yes\";\"no\")} formula is applied to each cell in the range A1:A3 and the result is copied to the corresponding cell."
-msgstr "A következő példában a {=HA(A1:A3>0;\"igen\";\"nem\")} képlet >0 vizsgálata az A1:A3 tartomány minden cellájára lesz alkalmazva, és az eredmény a megfelelő cellába lesz másolva."
-
-#. Td-f
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D65\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. .,)Q
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D6B\n"
-"help.text"
-msgid "B (formula)"
-msgstr "B (képlet)"
-
-#. ^Z`a
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10B75\n"
-"help.text"
-msgid "B (result)"
-msgstr "B (eredmény)"
-
-#. :?H:
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D79\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. !jo?
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D80\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. YK6{
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D86\n"
-"help.text"
-msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
-msgstr "{=HA(A1:A3>0;\"igen\";\"nem\")}"
-
-#. k(bF
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D8C\n"
-"help.text"
-msgid "yes"
-msgstr "igen"
-
-#. fT-[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D94\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. =6A4
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D9B\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. lCVm
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DA1\n"
-"help.text"
-msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
-msgstr "{=HA(A1:A3>0;\"igen\";\"nem\")}"
-
-#. 1~HT
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DA7\n"
-"help.text"
-msgid "no"
-msgstr "nem"
-
-#. Z{W5
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DAF\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. dH8C
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DB6\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. 55a2
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DBC\n"
-"help.text"
-msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
-msgstr "{=HA(A1:A3>0;\"igen\";\"nem\")}"
-
-#. Je(\
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DC2\n"
-"help.text"
-msgid "yes"
-msgstr "igen"
-
-#. V\8~
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DD0\n"
-"help.text"
-msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:"
-msgstr "A következő függvényekkel elfogadtatható tömbérték is: ELŐREJELZÉS, F.PRÓBA, INVERZ.MÁTRIX, KORREL, KOVAR, MDETERM, MEREDEKSÉG, METSZ, MÓDUSZ, MSZORZAT, PEARSON, RNÉGYZET, STHIBAYX, SZORZATÖSSZEG, SZUMX2BŐLY2, SZUMX2MEGY2, SZUMXBŐLY2, T.PRÓBA, VALÓSZÍNŰSÉG. Ha területhivatkozásokat használ argumentumként a fenti függvények egyikének meghívásakor, akkor a függvények tömbfüggvényekként működnek. A következő táblázat példát mutat a kényszerített tömbkezelésre:"
-
-#. _9CY
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DE2\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. LSGE
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DE8\n"
-"help.text"
-msgid "B (formula)"
-msgstr "B (képlet)"
-
-#. h2Va
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DEE\n"
-"help.text"
-msgid "B (result)"
-msgstr "B (eredmény)"
-
-#. e+mK
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DF4\n"
-"help.text"
-msgid "C (forced array formula)"
-msgstr "C (kényszerített tömbképlet)"
-
-#. T@nv
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10DFA\n"
-"help.text"
-msgid "C (result)"
-msgstr "C (eredmény)"
-
-#. \W@!
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E02\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. ^b)N
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E09\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. +kXF
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E0F\n"
-"help.text"
-msgid "=A1:A2+1"
-msgstr "=A1:A2+1"
-
-#. ?BdR
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E17\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. 9wr[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E1D\n"
-"help.text"
-msgid "=SUMPRODUCT(A1:A2+1)"
-msgstr "=SZORZATÖSSZEG(A1:A2+1)"
-
-#. _v0p
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E25\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. Geb6
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E2D\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. ovX_
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E34\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. U~r7
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E3A\n"
-"help.text"
-msgid "=A1:A2+1"
-msgstr "=A1:A2+1"
-
-#. Y`HD
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E42\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. ^m|q
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E48\n"
-"help.text"
-msgid "=SUMPRODUCT(A1:A2+1)"
-msgstr "=SZORZATÖSSZEG(A1:A2+1)"
-
-#. pL%|
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E50\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. 3/Nf
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E58\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. _U{V
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E63\n"
-"help.text"
-msgid "=A1:A2+1"
-msgstr "=A1:A2+1"
-
-#. v0#Q
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E6A\n"
-"help.text"
-msgid "#VALUE!"
-msgstr "#ÉRTÉK!"
-
-#. s)C@
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E70\n"
-"help.text"
-msgid "=SUMPRODUCT(A1:A2+1)"
-msgstr "=SZORZATÖSSZEG(A1:A2+1)"
-
-#. :AY;
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10E78\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. r$0+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3158446\n"
-"help.text"
-msgid "<bookmark_value>MUNIT function</bookmark_value>"
-msgstr "<bookmark_value>MUNIT függvény</bookmark_value>"
-
-#. tt_m
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3158446\n"
-"12\n"
-"help.text"
-msgid "MUNIT"
-msgstr "MUNIT"
-
-#. M^Qb
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154121\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Returns the unitary square array of a certain size.</ahelp> The unitary array is a square array where the main diagonal elements equal 1 and all other array elements are equal to 0."
-msgstr "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">A megadott nagyságú egységmátrixot adja eredményül.</ahelp> Az egységmátrix egy négyzetes tömb, amelyben az átló elemei 1-et, a többi elem pedig 0-át tartalmaz."
-
-#. y`3J
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3155123\n"
-"14\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. IfX]
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3156271\n"
-"15\n"
-"help.text"
-msgid "MUNIT(Dimensions)"
-msgstr "MUNIT(méret)"
-
-#. kOA%
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159390\n"
-"16\n"
-"help.text"
-msgid "<emph>Dimensions</emph> refers to the size of the array unit."
-msgstr "A <emph>méret</emph> az egységmátrix méretét jelöli."
-
-#. F$ex
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10C9B\n"
-"help.text"
-msgid "You can find a general introduction to Array functions at the top of this page."
-msgstr "A tömbfunkciókról általános információkat talál az oldal tetején."
-
-#. xnLe
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3156162\n"
-"17\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. !%,t
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150949\n"
-"18\n"
-"help.text"
-msgid "Select a square range within the spreadsheet, for example, from A1 to E5."
-msgstr "Válasszon ki egy négyzetes cellatartományt a munkalapon. Legyen ez például az A1:E5."
-
-#. CmT5
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151260\n"
-"19\n"
-"help.text"
-msgid "Without deselecting the range, select the MUNIT function. Mark the <emph>Array</emph> check box. Enter the desired dimensions for the array unit, in this case <item type=\"input\">5</item>, and click <emph>OK</emph>."
-msgstr "A tartomány kijelölésének megszüntetése nélkül jelölje ki az MUNIT függvényt. Jelölje be az <emph>Adattömb</emph> jelölőnégyzetet. Adja meg az egységmátrix kívánt méretét (ez esetben <item type=\"input\">5</item>-öt), majd kattintson az <emph>OK</emph> gombra."
-
-#. 1y#M
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150403\n"
-"20\n"
-"help.text"
-msgid "You can also enter the <item type=\"input\">=Munit(5)</item> formula in the last cell of the selected range (E5), and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>."
-msgstr "A <item type=\"input\">=MUNIT(5)</item> képletet a kijelölt tartomány utolsó cellájában is megadhatja. Ezt követően nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter </caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline> billentyűket."
-
-#. P/m\
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3156143\n"
-"21\n"
-"help.text"
-msgid "You now see a unit array with a range of A1:E5."
-msgstr "Most már az A1:E5 tartományban egy egységmátrixot láthat."
-
-#. k:pi
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10FA7\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. )HC_
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3159084\n"
-"help.text"
-msgid "<bookmark_value>FREQUENCY function</bookmark_value>"
-msgstr "<bookmark_value>GYAKORISÁG függvény</bookmark_value><bookmark_value>FREQUENCY függvény, lásd: GYAKORISÁG függvény</bookmark_value>"
-
-#. -*Pc
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3159084\n"
-"22\n"
-"help.text"
-msgid "FREQUENCY"
-msgstr "GYAKORISÁG"
-
-#. Xp$+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145777\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Indicates the frequency distribution in a one-column-array.</ahelp> The function counts the number of values in the Data array that are within the values given by the Classes array."
-msgstr "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Egydimenziós tömb gyakorisági eloszlását jelzi.</ahelp> A függvény megszámolja, hogy az <emph>adatok</emph> tömbben levő értékek közül hány esik az <emph>osztályok</emph> által meghatározott értéktartományokba."
-
-#. z/5`
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3153347\n"
-"24\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. AOos
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155498\n"
-"25\n"
-"help.text"
-msgid "FREQUENCY(Data; Classes)"
-msgstr "GYAKORISÁG(adatok; osztályok)"
-
-#. AF^X
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154352\n"
-"26\n"
-"help.text"
-msgid "<emph>Data</emph> represents the reference to the values to be counted."
-msgstr "Az <emph>adatok</emph> a megszámlálni kívánt értékeket tartalmazó tömb, illetve az értékek halmazára mutató hivatkozás."
-
-#. WXKS
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148402\n"
-"27\n"
-"help.text"
-msgid "<emph>Classes</emph> represents the array of the limit values."
-msgstr "Az <emph>osztályok</emph> az osztályok határait jelentő értékek tömbje."
-
-#. qUcP
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN10D71\n"
-"help.text"
-msgid "You can find a general introduction to Array functions at the top of this page."
-msgstr "A tömbfüggvényekről általános információkat talál az oldal tetején."
-
-#. ChlC
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3148981\n"
-"28\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. |5Ku
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155904\n"
-"219\n"
-"help.text"
-msgid "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 and less than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes."
-msgstr "A következő táblázatban a rendezés nélküli mérési értékeket az A oszlop tartalmazza. A B oszlop az osztályokra megadott felső korlátot tartalmazza, amelyekbe az A oszlopban található adatokat osztani kívánja. A B1 cellában megadott korlát szerint a GYAKORISÁG függvény az 5-nél kisebb vagy azzal egyenlő mért értékek számát adja eredményül. Mivel a B2 cellában megadott korlát 10, a GYAKORISÁG függvény második eredményül az olyan mért értékek számát adja, amelyek 5-nél nagyobbak, illetve 10-nél kisebbek vagy azzal egyenlőek. A B6 cellában megadott „>25” szöveg csak referenciaként szolgál."
-
-#. BiBB
-#: 04060107.xhp
-#, fuzzy
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155869\n"
-"220\n"
-"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
-
-#. 5a`+
-#: 04060107.xhp
-#, fuzzy
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149328\n"
-"221\n"
-"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
-
-#. c7^@
-#: 04060107.xhp
-#, fuzzy
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152467\n"
-"222\n"
-"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
-
-#. vnkg
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154528\n"
-"223\n"
-"help.text"
-msgid "<emph>1</emph>"
-msgstr "<emph>1</emph>"
-
-#. C75%
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149744\n"
-"224\n"
-"help.text"
-msgid "12"
-msgstr "12"
-
-#. STg|
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147309\n"
-"225\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. T5`J
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154199\n"
-"226\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. uXyp
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159218\n"
-"227\n"
-"help.text"
-msgid "<emph>2</emph>"
-msgstr "<emph>2</emph>"
-
-#. aR)L
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153263\n"
-"228\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#. xNNK
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3156201\n"
-"229\n"
-"help.text"
-msgid "10"
-msgstr "10"
-
-#. ?)7p
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147552\n"
-"230\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. m2^M
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149174\n"
-"231\n"
-"help.text"
-msgid "<emph>3</emph>"
-msgstr "<emph>3</emph>"
-
-#. ]bi+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151201\n"
-"232\n"
-"help.text"
-msgid "24"
-msgstr "24"
-
-#. 3l^p
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150245\n"
-"233\n"
-"help.text"
-msgid "15"
-msgstr "15"
-
-#. g{s_
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159194\n"
-"234\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. }u3.
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3146925\n"
-"235\n"
-"help.text"
-msgid "<emph>4</emph>"
-msgstr "<emph>4</emph>"
-
-#. )g%;
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154128\n"
-"236\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#. gaqt
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151067\n"
-"237\n"
-"help.text"
-msgid "20"
-msgstr "20"
-
-#. {H^n
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3156033\n"
-"238\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. _m3-
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149298\n"
-"239\n"
-"help.text"
-msgid "<emph>5</emph>"
-msgstr "<emph>5</emph>"
-
-#. /FyG
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151382\n"
-"240\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. !ovO
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155141\n"
-"241\n"
-"help.text"
-msgid "25"
-msgstr "25"
-
-#. _CFa
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145213\n"
-"242\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. dgAB
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145268\n"
-"243\n"
-"help.text"
-msgid "<emph>6</emph>"
-msgstr "<emph>6</emph>"
-
-#. ]nLP
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163724\n"
-"244\n"
-"help.text"
-msgid "20"
-msgstr "20"
-
-#. ;gYg
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147132\n"
-"245\n"
-"help.text"
-msgid ">25"
-msgstr ">25"
-
-#. S2KN
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148903\n"
-"246\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. f-::
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3151007\n"
-"247\n"
-"help.text"
-msgid "<emph>7</emph>"
-msgstr "<emph>7</emph>"
-
-#. G_^b
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153294\n"
-"248\n"
-"help.text"
-msgid "16"
-msgstr "16"
-
-#. _}D,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147284\n"
-"249\n"
-"help.text"
-msgid "<emph>8</emph>"
-msgstr "<emph>8</emph>"
-
-#. 8Vq?
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154914\n"
-"250\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#. [Z;q
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154218\n"
-"251\n"
-"help.text"
-msgid "<emph>9</emph>"
-msgstr "<emph>9</emph>"
-
-#. ^Uoq
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3147226\n"
-"252\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#. C_2K
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149045\n"
-"253\n"
-"help.text"
-msgid "<emph>10</emph>"
-msgstr "<emph>10</emph>"
-
-#. IFY`
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155799\n"
-"254\n"
-"help.text"
-msgid "16"
-msgstr "16"
-
-#. @Es3
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155076\n"
-"255\n"
-"help.text"
-msgid "<emph>11</emph>"
-msgstr "<emph>11</emph>"
-
-#. #wlf
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150217\n"
-"256\n"
-"help.text"
-msgid "33"
-msgstr "33"
-
-#. OR9,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150312\n"
-"29\n"
-"help.text"
-msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the <emph>Function Wizard</emph>. Select the <emph>Data</emph> range in (A1:A11), and then the <emph>Classes</emph> range in which you entered the class limits (B1:B6). Select the <emph>Array</emph> check box and click <emph>OK</emph>. You will see the frequency count in the range C1:C6."
-msgstr "Jelöljön ki egy oszloptartományt, amelyben megadásra kerülnek az értékek osztálykorlátoknak megfelelő gyakoriságai. Legalább egy, a felső osztálykorlátnál nagyobb mezőt ki kell választania. Jelen esetben jelölje ki a C1:C6 tartományt. Hívja meg a <emph>Függvénytündér</emph> GYAKORISÁG függvényét. Jelölje ki az <emph>adatok</emph> mérési tartományát az (A1:A11) tartományban, majd egy oszlopot az <emph>osztályok</emph> számára, amelyben megadta az osztálykorlátokat (B1:B6). Jelölje ki a <emph>tömb</emph> jelölőnégyzetet, majd kattintson az <emph>OK</emph> gombra. Az eredetileg kijelölt C1:C6 tartományban megjelennek a gyakorisági értékek."
-
-#. LP~)
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11269\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. X=42
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3151030\n"
-"help.text"
-msgid "<bookmark_value>MDETERM function</bookmark_value><bookmark_value>determinants</bookmark_value>"
-msgstr "<bookmark_value>MDETERM függvény</bookmark_value><bookmark_value>determinánsok</bookmark_value>"
-
-#. .nAc
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3151030\n"
-"31\n"
-"help.text"
-msgid "MDETERM"
-msgstr "MDETERM"
-
-#. fNnU
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154073\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MDET\">Returns the array determinant of an array.</ahelp> This function returns a value in the current cell; it is not necessary to define a range for the results."
-msgstr "<ahelp hid=\"HID_FUNC_MDET\">Kiszámítja egy mátrix determinánsát.</ahelp> Ez a függvény az eredményt az aktuális cellában adja vissza, nem szükséges az eredmények számára egy tartományt meghatározni."
-
-#. OS\_
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3156366\n"
-"33\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. N:YI
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3156380\n"
-"34\n"
-"help.text"
-msgid "MDETERM(Array)"
-msgstr "MDETERM(mátrix)"
-
-#. Am]T
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150290\n"
-"35\n"
-"help.text"
-msgid "<emph>Array</emph> represents a square array in which the determinants are defined."
-msgstr "A <emph>mátrix</emph> négyzet alakú mátrix, amelyben a determináns definiálva van."
-
-#. F!Tb
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11035\n"
-"help.text"
-msgid "You can find a general introduction to using Array functions on top of this page."
-msgstr "A tömbfüggvényekről általános információkat talál az oldal tetején."
-
-#. 74\-
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11333\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. Bf1E
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3151348\n"
-"help.text"
-msgid "<bookmark_value>MINVERSE function</bookmark_value><bookmark_value>inverse arrays</bookmark_value>"
-msgstr "<bookmark_value>INVERZ.MÁTRIX függvény</bookmark_value><bookmark_value>MINVERSE függvény, lásd: INVERZ.MÁTRIX függvény</bookmark_value><bookmark_value>mátrixok inverze</bookmark_value>"
-
-#. T]Za
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3151348\n"
-"39\n"
-"help.text"
-msgid "MINVERSE"
-msgstr "INVERZ.MÁTRIX"
-
-#. H=uR
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145569\n"
-"40\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINV\">Returns the inverse array.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MINV\">Kiszámítja egy mátrix inverzét.</ahelp>"
-
-#. sMFX
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3156072\n"
-"41\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. =++K
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3156085\n"
-"42\n"
-"help.text"
-msgid "MINVERSE(Array)"
-msgstr "INVERZ.MÁTRIX(mátrix)"
-
-#. #|t\
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3157849\n"
-"43\n"
-"help.text"
-msgid "<emph>Array</emph> represents a square array that is to be inverted."
-msgstr "A <emph>mátrix</emph> az invertálni kívánt négyzet alakú mátrix."
-
-#. JbgY
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN113EE\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. z9wV
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3157868\n"
-"44\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. -f[\
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3149638\n"
-"45\n"
-"help.text"
-msgid "Select a square range and select MINVERSE. Select the output array, select the <emph>Array</emph> field and click <emph>OK</emph>."
-msgstr "Jelöljön ki egy négyzet alakú tartományt, majd válassza az INVERZ.MÁTRIX függvényt. Jelölje ki a kimeneti tömböt, jelölje ki a <emph>Tömb</emph> mezőt, majd kattintson az <emph>OK</emph> gombra."
-
-#. wB;E
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3148546\n"
-"help.text"
-msgid "<bookmark_value>MMULT function</bookmark_value>"
-msgstr "<bookmark_value>MSZORZAT függvény</bookmark_value><bookmark_value>MMULT függvény, lásd: MSZORZAT függvény</bookmark_value>"
-
-#. GEBF
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3148546\n"
-"47\n"
-"help.text"
-msgid "MMULT"
-msgstr "MSZORZAT"
-
-#. 3*Ek
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3148518\n"
-"48\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MMULT\">Calculates the array product of two arrays.</ahelp> The number of columns for array 1 must match the number of rows for array 2. The square array has an equal number of rows and columns."
-msgstr "<ahelp hid=\"HID_FUNC_MMULT\">Két mátrix szorzatát számítja ki.</ahelp> Az első mátrix (mátrix 1) oszlopainak számának meg kell egyeznie a második mátrix (mátrix 2) sorainak számával. A négyzetes mátrixnak megegyező számú oszlopa és sora van."
-
-#. R99x
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3146767\n"
-"49\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. MJx%
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150798\n"
-"50\n"
-"help.text"
-msgid "MMULT(Array; Array)"
-msgstr "MSZORZAT(mátrix; mátrix)"
-
-#. xC.[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3150812\n"
-"51\n"
-"help.text"
-msgid "<emph>Array</emph> at first place represents the first array used in the array product."
-msgstr "Az első <emph>mátrix</emph> a mátrixszorzásban résztvevő első mátrixot jelöli."
-
-#. pA`l
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152553\n"
-"52\n"
-"help.text"
-msgid "<emph>Array</emph> at second place represents the second array with the same number of rows."
-msgstr "A második <emph>mátrix</emph> az azonos számú sorból álló második mátrixot jelöli."
-
-#. kY9d
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN114C3\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. RKd{
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3152574\n"
-"53\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9W(=
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3146826\n"
-"54\n"
-"help.text"
-msgid "Select a square range. Choose the MMULT function. Select the first <emph>Array</emph>, then select the second <emph>Array</emph>. Using <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. Click <emph>OK</emph>. The output array will appear in the first selected range."
-msgstr "Jelöljön ki egy négyzet alakú tartományt. Válassza az MSZORZAT függvényt. Jelölje ki az első <emph>Tömböt</emph>, majd jelölje ki a második <emph>Tömböt</emph>. A <emph>Függvénytündér</emph> segítségével jelölje be az <emph>Adattömb</emph> jelölőnégyzetet. Kattintson az <emph>OK</emph> gombra. A kimeneti mátrix megjelenik az első tartományban."
-
-#. XI=M
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3154970\n"
-"help.text"
-msgid "<bookmark_value>TRANSPOSE function</bookmark_value>"
-msgstr "<bookmark_value>TRANSZPONÁLÁS függvény</bookmark_value><bookmark_value>TRANSPOSE függvény, lásd: TRANSZPONÁLÁS függvény</bookmark_value>"
-
-#. ]22;
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3154970\n"
-"56\n"
-"help.text"
-msgid "TRANSPOSE"
-msgstr "TRANSZPONÁLÁS"
-
-#. ADrd
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155276\n"
-"57\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MTRANS\">Transposes the rows and columns of an array.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MTRANS\">Egy tömb sorait és oszlopait cseréli fel.</ahelp>"
-
-#. hG:0
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3155294\n"
-"58\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Wb5k
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153843\n"
-"59\n"
-"help.text"
-msgid "TRANSPOSE(Array)"
-msgstr "TRANSZPONÁLÁS(mátrix)"
-
-#. )\00
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153857\n"
-"60\n"
-"help.text"
-msgid "<emph>Array</emph> represents the array in the spreadsheet that is to be transposed."
-msgstr "A <emph>mátrix</emph> a táblázatban található transzponálni kívánt mátrix."
-
-#. ;ghc
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN115A5\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. )*8r
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3159352\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. q3~U
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159366\n"
-"62\n"
-"help.text"
-msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
-msgstr "A táblázatban jelölje ki azon tartományt, amelyben a transzponált mátrix megjelenhet. Ha az eredeti mátrix n sorból és m oszlopból áll, akkor a kijelölt tartománynak legalább m sorból, illetve n oszlopból kell állnia. Ezt követően adja meg közvetlenül a képletet, jelölje ki az eredeti területét, és nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline> billentyűket. Illetve, ha a <emph>Függvénytündért</emph> használja, jelölje be az <emph>Adattömb</emph> jelölőnégyzetet. A kijelölt céltartományban megjelenik a transzponált mátrix, amely automatikusan védett a módosítások ellen."
-
-#. dM|M
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3109846\n"
-"help.text"
-msgid "<bookmark_value>LINEST function</bookmark_value>"
-msgstr "<bookmark_value>LIN.ILL függvény</bookmark_value><bookmark_value>LINEST függvény, lásd: LIN.ILL függvény</bookmark_value>"
-
-#. FEv2
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3109846\n"
-"64\n"
-"help.text"
-msgid "LINEST"
-msgstr "LIN.ILL"
-
-#. :zar
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144733\n"
-"65\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RGP\">Returns a table of statistics for a straight line that best fits a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RGP\">Az adathalmazra legjobban illeszkedő egyenes statisztikáit tartalmazó táblázatot ad vissza.</ahelp>"
-
-#. qW`8
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3152825\n"
-"66\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. e@0G
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152839\n"
-"67\n"
-"help.text"
-msgid "LINEST(data_Y; data_X; linearType; stats)"
-msgstr "LIN.ILL(y_adatok; x_adatok; egyenes_típusa; statisztika)"
-
-#. %1OZ
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152853\n"
-"68\n"
-"help.text"
-msgid "<emph>data_Y</emph> is a single row or column range specifying the y coordinates in a set of data points."
-msgstr "Az <emph>y_adatok</emph> egy sor- vagy oszloptartomány, amely megadja az y koordinátákat az adatpontok halmazában."
-
-#. VM~$
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154428\n"
-"69\n"
-"help.text"
-msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
-msgstr "Az <emph>x_adatok</emph> az x koordinátákat megadó sor- vagy oszloptartomány. Ha az <emph>x_adatok</emph> nincs megadva, akkor az alapértelmezett <item type=\"literal\">1, 2, 3, ..., n</item> értékeket kapja. Ha több változóhalmaz van, akkor az <emph>x_adatok</emph> tartomány is lehet, a megfelelő több sorral vagy oszloppal."
-
-#. l|fY
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id0811200804502119\n"
-"help.text"
-msgid "LINEST finds a straight line <item type=\"literal\">y = a + bx</item> that best fits the data, using linear regression (the \"least squares\" method). With more than one set of variables the straight line is of the form <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
-msgstr "A LIN.ILL egy <item type=\"literal\">y = a + bx</item> egyenletű egyenest keres, amely a legjobban illeszkedik az adatokra. Lineáris regressziót használ (a „legkisebb négyzetek” módszerrel). Több változóhalmaz esetén az egyenes képlete <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item> lesz."
-
-#. /`fm
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154448\n"
-"70\n"
-"help.text"
-msgid "if<emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
-msgstr "Ha az <emph>egyenes_típusa</emph> értéke HAMIS, akkor az egyenes átmegy az origón (az a konstans nulla, y=bx). Ha nincs megadva, akkor az <emph>egyenes_típusa</emph> értéke IGAZ (az egyenes nem megy át az origón)."
-
-#. (kpK
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154142\n"
-"71\n"
-"help.text"
-msgid "if<emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
-msgstr "Ha a <emph>statisztika</emph> nincs megadva vagy HAMIS, akkor csak a statisztikai táblázat felső sora kerül visszaadásra. Ha IGAZ, akkor a teljes tábla visszaadásra kerül."
-
-#. g=Ps
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id0811200804502261\n"
-"help.text"
-msgid "LINEST returns a table (array) of statistics as below and must be entered as an array formula (for example by using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Return rather than just Return)."
-msgstr "A LIN.ILL egy statisztikatáblázatot (tömböt) ad vissza és tömbképletként kell megadni (például a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter használatával, az Enter helyett)."
-
-#. Wz52
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11416\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. =hS]
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN116C6\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. v%-l
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3154162\n"
-"72\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. V(HN
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154176\n"
-"73\n"
-"help.text"
-msgid "This function returns an array and is handled in the same way as the other array functions. Select a range for the answers and then the function. Select <emph>data_Y</emph>. If you want, you can enter other parameters. Select <emph>Array</emph> and click <emph>OK</emph>."
-msgstr "A függvény eredményül tömböt ad vissza, és a többi tömbfüggvényhez hasonlóan kerül kezelésre. Jelöljön ki egy tömböt a válaszok számára, majd ezt követően jelölje ki a függvényt. Jelölje ki az <emph>y_adatokat</emph>. Ha kívánja, megadhat más paramétereket is. Jelölje ki az <emph>Adattömb</emph> elemet, majd kattintson az <emph>OK</emph> gombra."
-
-#. 761Y
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155468\n"
-"74\n"
-"help.text"
-msgid "The results returned by the system (if <emph>stats</emph> = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>stats</emph> does not equal 0, other results are to be displayed."
-msgstr "A rendszer által eredményül adott eredmények (<emph>statisztika</emph> = 0 esetén) minden esetben megadják legalább a regressziós egyenes meredekségét, illetve az egyenes és az Y tengely metszéspontját. Ha a <emph>statisztika</emph> értéke 0-tól eltérő, akkor más eredmények is megjelenítésre kerülnek."
-
-#. 2Y){
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3155491\n"
-"75\n"
-"help.text"
-msgid "Other LINEST Results:"
-msgstr "Más LIN.ILL-eredmények:"
-
-#. /?Gq
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159291\n"
-"76\n"
-"help.text"
-msgid "Examine the following examples:"
-msgstr "Nézze meg az alábbi példákat:"
-
-#. :|A6
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3157922\n"
-"77\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. #+2[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3157945\n"
-"78\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#. [!Fq
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152486\n"
-"79\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. =amC
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152509\n"
-"80\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#. QP2H
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152532\n"
-"81\n"
-"help.text"
-msgid "E"
-msgstr "E"
-
-#. 9;Fi
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153431\n"
-"82\n"
-"help.text"
-msgid "F"
-msgstr "F"
-
-#. P.AC
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3153454\n"
-"83\n"
-"help.text"
-msgid "G"
-msgstr "G"
-
-#. FIxI
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3154995\n"
-"84\n"
-"help.text"
-msgid "<emph>1</emph>"
-msgstr "<emph>1</emph>"
-
-#. [U$=
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155021\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">x1</item>"
-msgstr "<item type=\"input\">x1</item>"
-
-#. [bWo
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155044\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">x2</item>"
-msgstr "<item type=\"input\">x2</item>"
-
-#. .0.y
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163734\n"
-"87\n"
-"help.text"
-msgid "<item type=\"input\">y</item>"
-msgstr "<item type=\"input\">y</item>"
-
-#. _r!D
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163766\n"
-"88\n"
-"help.text"
-msgid "<item type=\"input\">LIN</item><item type=\"input\">EST value</item>"
-msgstr "<item type=\"input\">LIN</item><item type=\"input\">EST érték</item>"
-
-#. uN8u
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145686\n"
-"89\n"
-"help.text"
-msgid "<emph>2</emph>"
-msgstr "<emph>2</emph>"
-
-#. C}[a
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145713\n"
-"90\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
-
-#. sSrf
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145736\n"
-"91\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
-
-#. ^HZI
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159427\n"
-"92\n"
-"help.text"
-msgid "<item type=\"input\">100</item>"
-msgstr "<item type=\"input\">100</item>"
-
-#. CMg{
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159460\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">4,17</item>"
-msgstr "<item type=\"input\">4,17</item>"
-
-#. cFJD
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159483\n"
-"94\n"
-"help.text"
-msgid "-<item type=\"input\">3,48</item>"
-msgstr "-<item type=\"input\">3,48</item>"
-
-#. O%Fy
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152381\n"
-"95\n"
-"help.text"
-msgid "<item type=\"input\">82,33</item>"
-msgstr "<item type=\"input\">82,33</item>"
-
-#. cM(d
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152408\n"
-"96\n"
-"help.text"
-msgid "<emph>3</emph>"
-msgstr "<emph>3</emph>"
-
-#. =$mv
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152435\n"
-"97\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
-
-#. ]KuU
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152458\n"
-"98\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
-
-#. Vfp7
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155652\n"
-"99\n"
-"help.text"
-msgid "<item type=\"input\">105</item>"
-msgstr "<item type=\"input\">105</item>"
-
-#. ,55-
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155684\n"
-"100\n"
-"help.text"
-msgid "<item type=\"input\">5,46</item>"
-msgstr "<item type=\"input\">5,46</item>"
-
-#. $_6p
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155707\n"
-"101\n"
-"help.text"
-msgid "<item type=\"input\">10,96</item>"
-msgstr "<item type=\"input\">10,96</item>"
-
-#. FecG
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3155730\n"
-"102\n"
-"help.text"
-msgid "<item type=\"input\">9,35</item>"
-msgstr "<item type=\"input\">9,35</item>"
-
-#. 6!?V
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159506\n"
-"103\n"
-"help.text"
-msgid "<emph>4</emph>"
-msgstr "<emph>4</emph>"
-
-#. d!g[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159533\n"
-"104\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
-
-#. \dkE
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159556\n"
-"105\n"
-"help.text"
-msgid "<item type=\"input\">11</item>"
-msgstr "<item type=\"input\">11</item>"
-
-#. l_8{
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159579\n"
-"106\n"
-"help.text"
-msgid "<item type=\"input\">104</item>"
-msgstr "<item type=\"input\">104</item>"
-
-#. lPsn
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3159611\n"
-"107\n"
-"help.text"
-msgid "<item type=\"input\">0,87</item>"
-msgstr "<item type=\"input\">0,87</item>"
-
-#. CE3k
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152606\n"
-"108\n"
-"help.text"
-msgid "<item type=\"input\">5,06</item>"
-msgstr "<item type=\"input\">5,06</item>"
-
-#. AviY
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152629\n"
-"109\n"
-"help.text"
-msgid "<item type=\"input\">#NA</item>"
-msgstr "<item type=\"input\">#HIÁNYZIK</item>"
-
-#. y#9Z
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152655\n"
-"110\n"
-"help.text"
-msgid "<emph>5</emph>"
-msgstr "<emph>5</emph>"
-
-#. 6EOp
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152682\n"
-"111\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
-
-#. ,3eM
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152705\n"
-"112\n"
-"help.text"
-msgid "<item type=\"input\">12</item>"
-msgstr "<item type=\"input\">12</item>"
-
-#. 9(2l
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3152728\n"
-"113\n"
-"help.text"
-msgid "<item type=\"input\">108</item>"
-msgstr "<item type=\"input\">108</item>"
-
-#. A4t!
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144352\n"
-"114\n"
-"help.text"
-msgid "<item type=\"input\">13,21</item>"
-msgstr "<item type=\"input\">13,21</item>"
-
-#. i.6w
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144375\n"
-"115\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
-
-#. -`[f
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144398\n"
-"116\n"
-"help.text"
-msgid "<item type=\"input\">#NA</item>"
-msgstr "<item type=\"input\">#HIÁNYZIK</item>"
-
-#. oLAS
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144425\n"
-"117\n"
-"help.text"
-msgid "<emph>6</emph>"
-msgstr "<emph>6</emph>"
-
-#. v4t[
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144452\n"
-"118\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
-
-#. rJSe
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144475\n"
-"119\n"
-"help.text"
-msgid "<item type=\"input\">15</item>"
-msgstr "<item type=\"input\">15</item>"
-
-#. pN1j
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144498\n"
-"120\n"
-"help.text"
-msgid "<item type=\"input\">111</item>"
-msgstr "<item type=\"input\">111</item>"
-
-#. CTg5
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158233\n"
-"121\n"
-"help.text"
-msgid "<item type=\"input\">675,45</item>"
-msgstr "<item type=\"input\">675,45</item>"
-
-#. ;-gx
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158256\n"
-"122\n"
-"help.text"
-msgid "<item type=\"input\">102,26</item>"
-msgstr "<item type=\"input\">102,26</item>"
-
-#. o=m5
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158279\n"
-"123\n"
-"help.text"
-msgid "<item type=\"input\">#NA</item>"
-msgstr "<item type=\"input\">#HIÁNYZIK</item>"
-
-#. YNp,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158306\n"
-"124\n"
-"help.text"
-msgid "<emph>7</emph>"
-msgstr "<emph>7</emph>"
-
-#. ekkz
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158333\n"
-"125\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
-
-#. S:Nq
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158356\n"
-"126\n"
-"help.text"
-msgid "<item type=\"input\">17</item>"
-msgstr "<item type=\"input\">17</item>"
-
-#. y*xP
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158379\n"
-"127\n"
-"help.text"
-msgid "<item type=\"input\">120</item>"
-msgstr "<item type=\"input\">120</item>"
-
-#. _L}4
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144560\n"
-"128\n"
-"help.text"
-msgid "<emph>8</emph>"
-msgstr "<emph>8</emph>"
-
-#. \{H{
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144586\n"
-"129\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
-
-#. k%l|
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144609\n"
-"130\n"
-"help.text"
-msgid "<item type=\"input\">19</item>"
-msgstr "<item type=\"input\">19</item>"
-
-#. s|K%
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144632\n"
-"131\n"
-"help.text"
-msgid "<item type=\"input\">133</item>"
-msgstr "<item type=\"input\">133</item>"
-
-#. /LJ)
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144687\n"
-"132\n"
-"help.text"
-msgid "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the <emph>Function Wizard</emph>. For the LINEST function to work, you must have marked the <emph>Array</emph> check box in the <emph>Function Wizard</emph>. Next, select the following values in the spreadsheet (or enter them using the keyboard):"
-msgstr "Az A oszlop számos X1 értéket, a B oszlop számos X2 értéket, a C oszlop pedig az Y értékeket tartalmazza. Az értékeket már ezt megelőzően beírta a táblázatba. A táblázatban sikeresen beállította az E2:G6 tartományt, és aktiválta a <emph>Függvénytündér</emph> funkciót. Ahhoz, hogy a LIN.ILL függvény működjön, be kell jelölnie a <emph>Függvénytündér</emph> párbeszédablakban található <emph>Adattömb</emph> jelölőnégyzetet. Ezt követően a táblázatban jelölje ki az alábbi értékeket (vagy írja be őket a billentyűzet segítségével):"
-
-#. O(n3
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158020\n"
-"133\n"
-"help.text"
-msgid "<emph>data_Y</emph> is C2:C8"
-msgstr "<emph>y_adatok</emph>: C2:C8"
-
-#. 5H;H
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158039\n"
-"134\n"
-"help.text"
-msgid "<emph>data_X</emph> is A2:B8"
-msgstr "<emph>x_adatok</emph>: A2:B8"
-
-#. ;\NH
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158058\n"
-"135\n"
-"help.text"
-msgid "<emph>linearType</emph> and <emph>stats</emph> are both set to 1."
-msgstr "Az <emph>egyenes_típusa</emph> és a <emph>statisztika</emph> beállítása egyaránt 1."
-
-#. #5Ol
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158084\n"
-"136\n"
-"help.text"
-msgid "As soon as you click <emph>OK</emph>, $[officename] Calc will fill the above example with the LINEST values as shown in the example."
-msgstr "Amint az <emph>OK</emph> gombra kattint, a $[officename] Calc kitölti a fenti példát a LIN.ILL értékekkel, a példában bemutatott módon."
-
-#. pFWa
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158106\n"
-"137\n"
-"help.text"
-msgid "The formula in the <emph>Formula</emph> Bar corresponds to each cell of the LINEST array <item type=\"input\">{=LINEST(C2:C8;A2:B8;1;1)}</item>"
-msgstr "A <emph>Képlet</emph> eszköztárban megjelenő képlet a LIN.ILL tömb <item type=\"input\">{=LIN.ILL(C2:C8;A2:B8;1;1)}</item> egyes celláinak felel meg."
-
-#. o0]A
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158128\n"
-"138\n"
-"help.text"
-msgid "<emph>This represents the calculated LINEST values:</emph>"
-msgstr "<emph>Ez jelöli a kiszámított LIN.ILL értékeket:</emph>"
-
-#. ALC4
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3158146\n"
-"help.text"
-msgid "<bookmark_value>slopes, see also regression lines</bookmark_value><bookmark_value>regression lines;LINEST function</bookmark_value>"
-msgstr "<bookmark_value>meredekségek, lásd még: regressziós egyenesek</bookmark_value><bookmark_value>regressziós egyenesek;LIN.ILL függvény</bookmark_value>"
-
-#. 0%jm
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158146\n"
-"139\n"
-"help.text"
-msgid "E2 and F2: Slope m of the regression line y=b+m*x for the x1 and x2 values. The values are given in reverse order; that is, the slope for x2 in E2 and the slope for x1 in F2."
-msgstr "E2 és F2: Az y=b+m*x regressziós egyenes m meredeksége az x1 és x2 értékre számítva. Az értékek fordított sorrendben vannak megadva, vagyis az x2 értékre vonatkozó meredekség az E2 cellában, az x1 értékre vonatkozó meredekség pedig az F2 cellában."
-
-#. #e@9
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158184\n"
-"140\n"
-"help.text"
-msgid "G2: Intersection b with the y axis."
-msgstr "G2: Az y tengely b tengelymetszete."
-
-#. $[FM
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3158204\n"
-"help.text"
-msgid "<bookmark_value>standard errors;array functions</bookmark_value>"
-msgstr "<bookmark_value>standard hibák;tömbfüggvények</bookmark_value>"
-
-#. BuQc
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3158204\n"
-"141\n"
-"help.text"
-msgid "E3 and F3: The standard error of the slope value."
-msgstr "E3 és F3: A meredekségérték standard hibája."
-
-#. IjYu
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145845\n"
-"142\n"
-"help.text"
-msgid "G3: The standard error of the intercept"
-msgstr "G3: A tengelymetszet standard hibája."
-
-#. ;2m2
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3145859\n"
-"help.text"
-msgid "<bookmark_value>RSQ calculations</bookmark_value>"
-msgstr "<bookmark_value>RNÉGYZET-számítások</bookmark_value>"
-
-#. GUYq
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145859\n"
-"143\n"
-"help.text"
-msgid "E4: RSQ"
-msgstr "E4: RNÉGYZET"
-
-#. jS*?
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145880\n"
-"144\n"
-"help.text"
-msgid "F4: The standard error of the regression calculated for the Y value."
-msgstr "F4: Az Y értékre számított regressziós együttható standard hibája."
-
-#. C7;7
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145894\n"
-"145\n"
-"help.text"
-msgid "E5: The F value from the variance analysis."
-msgstr "E5: A szórásnégyzet-elemzésből számított F értéke."
-
-#. 05,^
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145915\n"
-"146\n"
-"help.text"
-msgid "F5: The degrees of freedom from the variance analysis."
-msgstr "F5: A szórásnégyzet-analízisből számított szabadsági fokok."
-
-#. iwB^
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145937\n"
-"147\n"
-"help.text"
-msgid "E6: The sum of the squared deviation of the estimated Y values from their linear mean."
-msgstr "E6: Az Y értékek és a négyzetes középérték különbségének négyzetösszege."
-
-#. eRMn
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145952\n"
-"148\n"
-"help.text"
-msgid "F6: The sum of the squared deviation of the estimated Y value from the given Y values."
-msgstr "F6: A becsült Y értékek és a megadott Y értékek különbségének négyzetösszege."
-
-#. EooW
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B04\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. @n1K
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id1596728\n"
-"help.text"
-msgid "<bookmark_value>LOGEST function</bookmark_value>"
-msgstr "<bookmark_value>LOG.ILL függvény</bookmark_value><bookmark_value>LOGEST függvény, lásd: LOG.ILL függvény</bookmark_value>"
-
-#. o@o2
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3146009\n"
-"150\n"
-"help.text"
-msgid "LOGEST"
-msgstr "LOG.ILL"
-
-#. /{/c
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3146037\n"
-"151\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RKP\">This function calculates the adjustment of the entered data as an exponential regression curve (y=b*m^x).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RKP\">E függvény a beírt adatokra igazított exponenciális regressziós görbét számítja ki (y=b*m^x).</ahelp>"
-
-#. -~Lu
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3146056\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. E(u7
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163123\n"
-"153\n"
-"help.text"
-msgid "LOGEST(DataY; DataX; FunctionType; Stats)"
-msgstr "LOG.ILL(y_adatok; x_adatok; függvénytípus; statisztika)"
-
-#. ZG@E
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163137\n"
-"154\n"
-"help.text"
-msgid "<emph>DataY</emph> represents the Y Data array."
-msgstr "Az <emph>y_adatok</emph> az y adattömböt jelöli."
-
-#. cH)M
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163155\n"
-"155\n"
-"help.text"
-msgid "<emph>DataX</emph> (optional) represents the X Data array."
-msgstr "Az <emph>x_adatok</emph> (opcionális) az x adattömböt jelöli."
-
-#. 86SD
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163174\n"
-"156\n"
-"help.text"
-msgid "<emph>FunctionType</emph> (optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
-msgstr "A <emph>függvénytípus</emph> argumentum opcionális. Ha a függvénytípus = 0, akkor az y = m^x formátumú függvények kerülnek kiszámításra. Ellenkező esetben az y = b*m^x függvények kerülnek kiszámításra."
-
-#. ?S\9
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163196\n"
-"157\n"
-"help.text"
-msgid "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is calculated."
-msgstr "A <emph>statisztika</emph> opcionális paraméter. Ha a statisztika=0, akkor csak a regressziós együttható kerül kiszámításra."
-
-#. Urcz
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN118F7\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. qx0:
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11BC3\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. E;bl
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3163216\n"
-"158\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. (H;j
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163230\n"
-"159\n"
-"help.text"
-msgid "See LINEST. However, no square sum will be returned."
-msgstr "Lásd LIN.ILL függvény. Ugyanakkor a négyzetösszegek nem lesznek visszaadva."
-
-#. TFx,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3163286\n"
-"help.text"
-msgid "<bookmark_value>SUMPRODUCT function</bookmark_value><bookmark_value>scalar products</bookmark_value><bookmark_value>dot products</bookmark_value><bookmark_value>inner products</bookmark_value>"
-msgstr "<bookmark_value>SZORZATÖSSZEG függvény</bookmark_value><bookmark_value>SUMPRODUCT függvény, lásd: SZORZATÖSSZEG függvény</bookmark_value><bookmark_value>skaláris szorzat</bookmark_value><bookmark_value>belső szorzat</bookmark_value>"
-
-#. JNT?
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3163286\n"
-"161\n"
-"help.text"
-msgid "SUMPRODUCT"
-msgstr "SZORZATÖSSZEG"
-
-#. },^0
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163314\n"
-"162\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Multiplies corresponding elements in the given arrays, and returns the sum of those products.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Összeszorozza az adott tömbök megfelelő elemeit, és eredményül a szorzatok összegét adja.</ahelp>"
-
-#. se8,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3163334\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. GQ~=
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163347\n"
-"164\n"
-"help.text"
-msgid "SUMPRODUCT(Array1; Array2...Array30)"
-msgstr "SZORZATÖSSZEG(adattömb_1; adattömb_2; ...adattömb_30)"
-
-#. h9).
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163362\n"
-"165\n"
-"help.text"
-msgid "<emph>Array1, Array2...Array30</emph> represent arrays whose corresponding elements are to be multiplied."
-msgstr "Az <emph>adattömb_1, adattömb_2, ...adattömb_30</emph> az összeszorzandó elemeket tartalmazó tömbök."
-
-#. u*sS
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B19\n"
-"help.text"
-msgid "At least one array must be part of the argument list. If only one array is given, all array elements are summed."
-msgstr "Az argumentumlistában legalább egy tömbnek szerepelnie kell. Ha csak egy tömb van megadva, akkor az összes tömbelem össze lesz adva."
-
-#. 56_C
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B1C\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Vdc_
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B2F\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. MYqR
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B35\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#. Z/=o
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B3B\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. ?J!6
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B41\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#. ]4A|
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B48\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. ZF?M
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B4E\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
-
-#. i{R1
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B54\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
-
-#. 02WS
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B5A\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
-
-#. 8gdK
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B60\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
-
-#. 4+%J
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B67\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. M)T1
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B6D\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
-
-#. 5e_p
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B73\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
-
-#. -EMG
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B79\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
-
-#. H$p+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B7F\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
-
-#. F;eX
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B86\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. Yj;9
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B8C\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
-
-#. bSa!
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B92\n"
-"help.text"
-msgid "<item type=\"input\">11</item>"
-msgstr "<item type=\"input\">11</item>"
-
-#. `^,X
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B98\n"
-"help.text"
-msgid "<item type=\"input\">12</item>"
-msgstr "<item type=\"input\">12</item>"
-
-#. *fLR
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11B9E\n"
-"help.text"
-msgid "<item type=\"input\">13</item>"
-msgstr "<item type=\"input\">13</item>"
-
-#. ^TWs
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11BA1\n"
-"help.text"
-msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
-msgstr "A <item type=\"input\">=SZORZATÖSSZEG(A1:B3;C1:D3)</item> a 397 értéket adja vissza."
-
-#. hV[G
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11BA4\n"
-"help.text"
-msgid "Calculation: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
-msgstr "Számítás: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
-
-#. RJ:A
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11BA7\n"
-"help.text"
-msgid "You can use SUMPRODUCT to calculate the scalar product of two vectors."
-msgstr "A SZORZATÖSSZEG függvénnyel két vektor skaláris szorzatát számíthatja ki."
-
-#. 55!*
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11BBC\n"
-"help.text"
-msgid "SUMPRODUCT returns a single number, it is not necessary to enter the function as an array function."
-msgstr "A SZORZATÖSSZEG egy számot ad vissza, nincs szükség rá, hogy a függvényt tömbfüggvényként használja."
-
-#. T=\K
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11C91\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. 7WQ7
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3144842\n"
-"help.text"
-msgid "<bookmark_value>SUMX2MY2 function</bookmark_value>"
-msgstr "<bookmark_value>SZUMX2BŐLY2 függvény</bookmark_value><bookmark_value>SUMX2MY2 függvény, lásd: SZUMX2BŐLY2 függvény</bookmark_value>"
-
-#. ^^1A
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3144842\n"
-"169\n"
-"help.text"
-msgid "SUMX2MY2"
-msgstr "SZUMX2BŐLY2"
-
-#. iVhc
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144871\n"
-"170\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Returns the sum of the difference of squares of corresponding values in two arrays.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Két mátrix megfelelő elemei négyzetének különbségösszegét számítja ki.</ahelp>"
-
-#. o+?K
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3144889\n"
-"171\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 5/vH
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144903\n"
-"172\n"
-"help.text"
-msgid "SUMX2MY2(ArrayX; ArrayY)"
-msgstr "SZUMX2BŐLY2(x_adattömb; y_adattömb)"
-
-#. Xi6z
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144916\n"
-"173\n"
-"help.text"
-msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
-msgstr "Az <emph>x_adattömb</emph> az első tömb, amelynek az elemeit négyzetre kívánja emelni, majd összeadni."
-
-#. pd2;
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3144936\n"
-"174\n"
-"help.text"
-msgid "<emph>ArrayY</emph> represents the second array whose elements are to be squared and subtracted."
-msgstr "Az <emph>y_adattömb</emph> a második tömb, amelynek elemeit négyzetre kívánja emelni, majd összeadni. A függvény az <emph>x_adattömb</emph> és az <emph>y_adattömb</emph> négyzetösszegeinek különbségét adja vissza."
-
-#. AnSW
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11D6B\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. h)d.
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3145026\n"
-"help.text"
-msgid "<bookmark_value>SUMX2PY2 function</bookmark_value>"
-msgstr "<bookmark_value>SZUMX2MEGY2 függvény</bookmark_value><bookmark_value>SUMX2PY2 függvény, lásd: SZUMX2MEGY2 függvény</bookmark_value>"
-
-#. uP58
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3145026\n"
-"178\n"
-"help.text"
-msgid "SUMX2PY2"
-msgstr "SZUMX2MEGY2"
-
-#. p(N+
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3145055\n"
-"179\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Returns the sum of the sum of squares of corresponding values in two arrays.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Két mátrix megfelelő elemeinek négyzetösszegét számítja ki.</ahelp>"
-
-#. ]yVB
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3163390\n"
-"180\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. W#[]
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163404\n"
-"181\n"
-"help.text"
-msgid "SUMX2PY2(ArrayX; ArrayY)"
-msgstr "SZUMX2MEGY2(x_adattömb; y_adattömb)"
-
-#. Go%T
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163417\n"
-"182\n"
-"help.text"
-msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
-msgstr "Az <emph>x_adattömb</emph> az első tömb, amelynek az elemeit négyzetre kívánja emelni, majd összeadni."
-
-#. 5lFR
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163437\n"
-"183\n"
-"help.text"
-msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be squared and added."
-msgstr "Az <emph>y_adattömb</emph> a második tömb, amelynek az elemeit négyzetre kívánja emelni, majd összeadni. A függvény az <emph>x_adattömb</emph> és az <emph>y_adattömb</emph> négyzetösszegeinek összegét adja vissza."
-
-#. *$le
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11E45\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. FS5^
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3163527\n"
-"help.text"
-msgid "<bookmark_value>SUMXMY2 function</bookmark_value>"
-msgstr "<bookmark_value>SZUMXBŐLY2 függvény</bookmark_value><bookmark_value>SUMXMY2 függvény, lásd: SZUMXBŐLY2 függvény</bookmark_value>"
-
-#. 1Q@-
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3163527\n"
-"187\n"
-"help.text"
-msgid "SUMXMY2"
-msgstr "SZUMXBŐLY2"
-
-#. hffU
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163556\n"
-"188\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Adds the squares of the variance between corresponding values in two arrays.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Két mátrix megfelelő elemei négyzetének különbségeit adja össze.</ahelp>"
-
-#. 0Q+F
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3163574\n"
-"189\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. #q~:
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163588\n"
-"190\n"
-"help.text"
-msgid "SUMXMY2(ArrayX; ArrayY)"
-msgstr "SZUMXBŐLY2(x_adattömb; y_adattömb)"
-
-#. nDO;
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163601\n"
-"191\n"
-"help.text"
-msgid "<emph>ArrayX</emph> represents the first array whose elements are to be subtracted and squared."
-msgstr "Az <emph>x_adattömb</emph> az első tömb, amelynek elemeiből az <emph>y_adattömb</emph> megfelelő elemeit ki kell vonni, majd az eredményt négyzetre emelni."
-
-#. [AcM
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3163621\n"
-"192\n"
-"help.text"
-msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be subtracted and squared."
-msgstr "Az <emph>y_adattömb</emph> a második tömb, amelynek elemeit az <emph>x_adattömb</emph> megfelelő elemeiből ki kell vonni, majd az eredményt négyzetre emelni. A függvény a különbségek négyzeteinek összegét adja vissza."
-
-#. 6{:.
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11F1F\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. %B$i
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3166062\n"
-"help.text"
-msgid "<bookmark_value>TREND function</bookmark_value>"
-msgstr "<bookmark_value>TREND függvény</bookmark_value>"
-
-#. [cT`
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3166062\n"
-"196\n"
-"help.text"
-msgid "TREND"
-msgstr "TREND"
-
-#. 3e{y
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166091\n"
-"197\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TREND\">Returns values along a linear trend.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TREND\">Egy lineáris trendnek megfelelő értékeket számít ki.</ahelp>"
-
-#. |pQ8
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3166109\n"
-"198\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. aMM#
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166122\n"
-"199\n"
-"help.text"
-msgid "TREND(DataY; DataX; NewDataX; LinearType)"
-msgstr "TREND(y_adatok; x_adatok; új_x_adatok; egyenes_típusa)"
-
-#. `i%D
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166137\n"
-"200\n"
-"help.text"
-msgid "<emph>DataY</emph> represents the Y Data array."
-msgstr "Az <emph>y_adatok</emph> az y adattömböt jelöli."
-
-#. wdU|
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166156\n"
-"201\n"
-"help.text"
-msgid "<emph>DataX</emph> (optional) represents the X Data array."
-msgstr "Az <emph>x_adatok</emph> (opcionális) az x adattömböt jelöli."
-
-#. pM}J
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166176\n"
-"202\n"
-"help.text"
-msgid "<emph>NewDataX</emph> (optional) represents the array of the X data, which are used for recalculating values."
-msgstr "Az <emph>új_x_adatok</emph> (opcionális) azon X adatok tömbje, amelyek az értékek újraszámítása során kerülnek felhasználásra."
-
-#. D]=c
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166196\n"
-"203\n"
-"help.text"
-msgid "<emph>LinearType</emph>(Optional). If LinearType = 0, then lines will be calculated through the zero point. Otherwise, offset lines will also be calculated. The default is LinearType <> 0."
-msgstr "Az <emph>egyenes_típusa</emph> argumentum opcionális. Ha az <emph>egyenes_típusa</emph> = 0, akkor az origón áthaladó egyenesek lesznek kiszámítva. Ellenkező esetben az eltolt egyenesek is ki lesznek számítva. Az alapértelmezett esetben az <emph>egyenes_típusa</emph> <> 0."
-
-#. (:Yj
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11D2F\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. DHAe
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN12019\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. )rs6
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3166231\n"
-"204\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. zZ%v
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166245\n"
-"205\n"
-"help.text"
-msgid "Select a spreadsheet range in which the trend data will appear. Select the function. Enter the output data or select it with the mouse. Mark the <emph>Array</emph> field. click <emph>OK</emph>. The trend data calculated from the output data is displayed."
-msgstr "Jelöljön ki egy táblázattartományt, amelyen belül a trendadatokat meg kívánja jeleníteni. Jelölje ki a függvényt. Adja meg a kimeneti adatokat, vagy jelölje ki azokat az egér segítségével. Jelölje meg a <emph>Tömb</emph> mezőt, és kattintson az <emph>OK</emph> gombra. Megjelenítésre kerülnek a kimeneti adatok alapján számított trendadatok."
-
-#. ThYP
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"bm_id3166317\n"
-"help.text"
-msgid "<bookmark_value>GROWTH function</bookmark_value><bookmark_value>exponential trends in arrays</bookmark_value>"
-msgstr "<bookmark_value>NÖV függvény</bookmark_value><bookmark_value>GROWTH függvény, lásd: NÖV függvény</bookmark_value><bookmark_value>exponenciális trend adatsorokban</bookmark_value>"
-
-#. d2?w
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3166317\n"
-"207\n"
-"help.text"
-msgid "GROWTH"
-msgstr "NÖV"
-
-#. kE*,
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166346\n"
-"208\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIATION\">Exponenciális trend pontjait számítja ki egy tömbben.</ahelp>"
-
-#. 6=3S
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3166364\n"
-"209\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Q`FW
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166377\n"
-"210\n"
-"help.text"
-msgid "GROWTH(DataY; DataX; NewDataX; FunctionType)"
-msgstr "NÖV(y_adatok; x_adatok; új_x_adatok; függvénytípus)"
-
-#. b25k
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166392\n"
-"211\n"
-"help.text"
-msgid "<emph>DataY</emph> represents the Y Data array."
-msgstr "Az <emph>y_adatok</emph> az y adattömböt jelöli."
-
-#. kx!r
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3166411\n"
-"212\n"
-"help.text"
-msgid "<emph>DataX</emph> (optional) represents the X Data array."
-msgstr "Az <emph>x_adatok</emph> (opcionális) az x adattömböt jelöli."
-
-#. c39V
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3173797\n"
-"213\n"
-"help.text"
-msgid "<emph>NewDataX</emph> (optional) represents the X data array, in which the values are recalculated."
-msgstr "Az <emph>új_x_adatok</emph> (opcionális) azon x adattömböt jelöli, amelyben az értékek újraszámításra kerülnek."
-
-#. 7x,I
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3173817\n"
-"214\n"
-"help.text"
-msgid "<emph>FunctionType</emph>(optional). If FunctionType = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
-msgstr "A <emph>függvénytípus</emph> argumentum opcionális. Ha a függvénytípus = 0, akkor y = m^x formátumú függvények lesznek kiszámítva. Ellenkező esetben y = b*m^x formátumú függvények lesznek kiszámítva."
-
-#. B]@*
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN11DFD\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. 9^uH
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_idN12113\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
-
-#. Z-pk
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"hd_id3173839\n"
-"215\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. t^hr
-#: 04060107.xhp
-msgctxt ""
-"04060107.xhp\n"
-"par_id3173852\n"
-"216\n"
-"help.text"
-msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select DataY. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
-msgstr "A függvény eredményül tömböt ad vissza, és a többi tömbfüggvényhez hasonlóan kerül kezelésre. Jelölje ki azon tartományt, amelyben a válaszokat meg kívánja jeleníteni, majd jelölje ki a függvényt. Jelölje ki az y_adatokat, és ha szükséges, adja meg a többi paramétert. Jelölje be az <emph>Adattömb</emph> jelölőnégyzetet, majd kattintson az <emph>OK</emph> gombra."
-
-#. OUa/
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"tit\n"
-"help.text"
-msgid "DATEDIF"
-msgstr "DÁTUMTÓLIG"
-
-#. Et7(
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"bm_id3155511\n"
-"help.text"
-msgid "<bookmark_value>DATEDIF function</bookmark_value>"
-msgstr "<bookmark_value>DÁTUMTÓLIG függvény</bookmark_value><bookmark_value>DATEDIF függvény, lásd: DÁTUMTÓLIG függvény</bookmark_value>"
-
-#. abI(
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3155511\n"
-"help.text"
-msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
-msgstr "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DÁTUMTÓLIG</link></variable>"
-
-#. uV*T
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153551\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Ez a függvény visszaadja a teljes napok, hónapok vagy évek számát a kezdő dátum és a végdátum között.</ahelp>"
-
-#. ,V\7
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3148590\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. POU,
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3150474\n"
-"help.text"
-msgid "DATEDIF(Start date; End date; Interval)"
-msgstr "DÁTUMTÓLIG(kezdő dátum;végdátum;időköz)"
-
-#. 6jyW
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152815\n"
-"help.text"
-msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
-msgstr "A <emph>kezdő dátum</emph> az a dátum, amelytől a számolást kezdeni kell."
-
-#. b@;M
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3155817\n"
-"help.text"
-msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
-msgstr "A <emph>végdátum</emph> az a dátum, ameddig a számolás végrehajtásra kerül. A végdátumnak későbbinek kell lennie a kezdő dátumnál."
-
-#. ]QgS
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153183\n"
-"help.text"
-msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
-msgstr "Az <emph>időköz</emph> egy karakterlánc, az elfogadott értékek: \"d\", \"m\", \"y\", \"ym\", \"md\" vagy \"yd\"."
-
-#. To-m
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id5735953\n"
-"help.text"
-msgid "Value for \"Interval\""
-msgstr "Az „időköz” értéke"
-
-#. XOg(
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id8360850\n"
-"help.text"
-msgid "Return value"
-msgstr "Visszatérési érték"
-
-#. `[X*
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id9648731\n"
-"help.text"
-msgid "\"d\""
-msgstr "\"d\""
-
-#. nZuo
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id908841\n"
-"help.text"
-msgid "Number of whole days between Start date and End date."
-msgstr "Teljes napok száma a kezdő dátum és a végdátum között."
-
-#. L@m0
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id8193914\n"
-"help.text"
-msgid "\"m\""
-msgstr "\"m\""
-
-#. YbhD
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id9841608\n"
-"help.text"
-msgid "Number of whole months between Start date and End date."
-msgstr "Teljes hónapok száma a kezdő dátum és a végdátum között."
-
-#. YLs(
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id2701803\n"
-"help.text"
-msgid "\"y\""
-msgstr "\"y\""
-
-#. f?\1
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id2136295\n"
-"help.text"
-msgid "Number of whole years between Start date and End date."
-msgstr "Teljes évek száma a kezdő dátum és a végdátum között."
-
-#. AD3y
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id9200109\n"
-"help.text"
-msgid "\"ym\""
-msgstr "\"ym\""
-
-#. ZN@x
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id4186223\n"
-"help.text"
-msgid "Number of whole months when subtracting years from the difference of Start date and End date."
-msgstr "Teljes hónapok száma a kezdő dátum és a végdátum különbségéből az éveket kivonva."
-
-#. 6E+3
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id5766472\n"
-"help.text"
-msgid "\"md\""
-msgstr "\"md\""
-
-#. (.D5
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id1491134\n"
-"help.text"
-msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
-msgstr "Teljes napok száma a kezdő dátum és a végdátum különbségéből az éveket és hónapokat kivonva."
-
-#. Z/)s
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id5866472\n"
-"help.text"
-msgid "\"yd\""
-msgstr "\"yd\""
-
-#. JiU)
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id1591134\n"
-"help.text"
-msgid "Number of whole days when subtracting years from the difference of Start date and End date."
-msgstr "Teljes napok száma a kezdő dátum és a végdátum különbségéből az éveket kivonva."
-
-#. YX)?
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3147477\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. AQKZ
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152589\n"
-"help.text"
-msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
-msgstr "Születésnap számítása. Egy férfi 1974. 04. 17-én született. Ma 2012. 06. 13. van."
-
-#. 1_A8
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3252589\n"
-"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
-msgstr "<item type=\"input\">=DÁTUMTÓLIG(\"1974-04-17\";\"2012-06-13\";\"y\")</item> eredménye 38. <item type=\"input\">=DÁTUMTÓLIG(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> eredménye 1. <item type=\"input\">=DÁTUMTÓLIG(\"1974-04-17\";\"2012-06-13\";\"md\")</item> eredménye 27. Így ő 38 éves, 1 hónapos és 27 napos."
-
-#. 9^rb
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3352589\n"
-"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
-msgstr "<item type=\"input\">=DÁTUMTÓLIG(\"1974-04-17\";\"2012-06-13\";\"m\")</item> eredménye 457, így ő 457 hónapos."
-
-#. 2HN2
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3452589\n"
-"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
-msgstr "<item type=\"input\">=DÁTUMTÓLIG(\"1974-04-17\";\"2012-06-13\";\"d\")</item> eredménye 13937, így ő 13937 napos."
-
-#. 3Gl^
-#: func_datedif.xhp
-msgctxt ""
-"func_datedif.xhp\n"
-"par_id3752589\n"
-"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
-msgstr "<item type=\"input\">=DÁTUMTÓLIG(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> eredménye 57, a születésnapja 57 napja volt."
-
-#. s8^B
-#: 06030200.xhp
-msgctxt ""
-"06030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove Precedents"
-msgstr "Előzmények eltávolítása"
-
-#. Eq!t
-#: 06030200.xhp
-msgctxt ""
-"06030200.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
-msgstr "<bookmark_value>cellák; előzmények eltávolítása</bookmark_value><bookmark_value>képletcellák;előzmények eltávolítása</bookmark_value>"
-
-#. ?\3z
-#: 06030200.xhp
-msgctxt ""
-"06030200.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
-msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Előzmények eltávolítása\">Előzmények eltávolítása</link>"
-
-#. k-(~
-#: 06030200.xhp
-msgctxt ""
-"06030200.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">Törli azon felderítésnyilak egy szintjét, amelyeket az <emph>Előzmények felderítése</emph> parancs hozott létre.</ahelp>"
-
-#. b$Be
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "Automatikus formázás"
-
-#. ?^0;
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149666\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"Automatikus formázás\">Automatikus formázás</link></variable>"
-
-#. 9@#,
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3145367\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
-msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Használja ezt a parancsot egy kijelölt munkalapterület automatikus formázásához, vagy saját Automatikus formázás megadásához.</ahelp></variable>"
-
-#. cfp$
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3148455\n"
-"3\n"
-"help.text"
-msgid "Format"
-msgstr "Formátum"
-
-#. HHP4
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3145799\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Válasszon a munkalap kijelölt területére alkalmazandó automatikus formázást az előre beállítottak közül.</ahelp>"
-
-#. L$0#
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149410\n"
-"5\n"
-"help.text"
-msgid "Add"
-msgstr "Hozzáadás"
-
-#. tUi|
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3154017\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Lehetővé teszi egy legalább 4 x 4 cellából álló tartomány aktuális formázásának hozzáadását az előre megadott automatikus formázások listájába.</ahelp> Ezután megjelenik az <link href=\"text/shared/01/05150101.xhp\" name=\"Automatikus formázás hozzáadása\">Automatikus formázás hozzáadása </link> párbeszédablak."
-
-#. _:B0
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153708\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
-msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Írjon be egy nevet, és kattintson az <emph>OK</emph> gombra. </ahelp>"
-
-#. iV)J
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3150044\n"
-"7\n"
-"help.text"
-msgid "More"
-msgstr "Részletek"
-
-#. L:~D
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3146920\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Megnyitja a <emph>Formázás</emph> szakaszt, amelyben megjelennek a táblázatra alkalmazható formázási felülbírálatok. Egy beállítás kijelölésének megszüntetése megtartja a munkafüzet aktuális formátumát az adott formátumtípusra vonatkozóan.</ahelp>"
-
-#. V`GJ
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155961\n"
-"9\n"
-"help.text"
-msgid "Formatting"
-msgstr "Formázás"
-
-#. ?WZv
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153965\n"
-"10\n"
-"help.text"
-msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
-msgstr "Ebben a szakaszban kijelölheti vagy megszüntetheti az elérhető formázási beállítások kijelölését. Ha szeretné a táblázatban lévő bármely aktuális beállítást megtartani, szüntesse meg a megfelelő beállítás kijelölését."
-
-#. CuL7
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3154021\n"
-"11\n"
-"help.text"
-msgid "Number format"
-msgstr "Számformátum"
-
-#. p_,5
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3159239\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">Bejelölése a kiválasztott formátum számformátumának megtartását jelzi.</ahelp>"
-
-#. WsE3
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149530\n"
-"13\n"
-"help.text"
-msgid "Borders"
-msgstr "Szegélyek"
-
-#. FwF$
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3145259\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">Bejelölése a kiválasztott formátum szegélyének megtartását jelzi.</ahelp>"
-
-#. w0;D
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3154657\n"
-"15\n"
-"help.text"
-msgid "Font"
-msgstr "Betűkészlet"
-
-#. $e7.
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3152990\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">Bejelölése a kiválasztott formátum betűkészletének megtartását jelzi.</ahelp>"
-
-#. ]U+2
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155379\n"
-"17\n"
-"help.text"
-msgid "Pattern"
-msgstr "Mintázat"
-
-#. FZsB
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3150368\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">Bejelölése a kiválasztott formátum mintájának megtartását jelzi.</ahelp>"
-
-#. ^+]2
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3146115\n"
-"19\n"
-"help.text"
-msgid "Alignment"
-msgstr "Igazítás"
-
-#. C$,:
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3156445\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">Bejelölése a kiválasztott formátum igazításának megtartását jelzi.</ahelp>"
-
-#. _-Ba
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155811\n"
-"21\n"
-"help.text"
-msgid "AutoFit width and height"
-msgstr "Szél. és mag. illesztése"
-
-#. OY!8
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3148703\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">Bejelölése azt jelenti, hogy a kiválasztott formátum kiválasztott celláinak a magasságát és szélességét a felhasználó meg akarja tartani.</ahelp>"
-
-#. lb5p
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3159223\n"
-"26\n"
-"help.text"
-msgid "Rename"
-msgstr "Átnevezés"
-
-#. H9N?
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153064\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
-msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Megnyit egy párbeszédablakot, amelyen a kijelölt automatikus formázás beállításait lehet módosítani.</ahelp> A gomb csak akkor látható, ha a <emph>Részletek </emph> gombra kattintott."
-
-#. *uem
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153912\n"
-"28\n"
-"help.text"
-msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr "Megnyílik az <emph>Automatikus formázás átnevezése</emph> párbeszédablak.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Írja be az automatikus formázás új nevét.</ahelp>"
-
-#. g@NJ
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155264\n"
-"23\n"
-"help.text"
-msgid "More"
-msgstr "Részletek"
-
-#. *r`1
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3159094\n"
-"24\n"
-"help.text"
-msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
-msgstr "Bezárja a <emph>Formázás</emph> beállításszakaszt, ha jelenleg nyitva van."
-
-#. H+lD
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"tit\n"
-"help.text"
-msgid "Text Functions"
-msgstr "Szövegfüggvények"
-
-#. $-h3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3145389\n"
-"help.text"
-msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr "<bookmark_value>szöveg cellákban; függvények</bookmark_value><bookmark_value>függvények; szövegfüggvények</bookmark_value><bookmark_value>Függvénytündér;szöveg</bookmark_value>"
-
-#. ;C^6
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3145389\n"
-"1\n"
-"help.text"
-msgid "Text Functions"
-msgstr "Szövegfüggvények"
-
-#. QFwU
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3152986\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
-msgstr "<variable id=\"texttext\">Ez a szakasz a <emph>szövegfeldolgozó</emph> függvényeket ismerteti.</variable>"
-
-#. kK(e
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149384\n"
-"help.text"
-msgid "<bookmark_value>ARABIC function</bookmark_value>"
-msgstr "<bookmark_value>ARABIC függvény</bookmark_value>"
-
-#. ,PFn
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149384\n"
-"239\n"
-"help.text"
-msgid "ARABIC"
-msgstr "ARABIC"
-
-#. ^lIh
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153558\n"
-"240\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">Kiszámítja egy római szám értékét. Az értéktartománynak 0-3999 között kell lennie.</ahelp>"
-
-#. /M6^
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153011\n"
-"241\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 3h:N
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155523\n"
-"242\n"
-"help.text"
-msgid "ARABIC(\"Text\")"
-msgstr "ARABIC(\"szöveg\")"
-
-#. O{4)
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151193\n"
-"243\n"
-"help.text"
-msgid "<emph>Text</emph> is the text that represents a Roman number."
-msgstr "A <emph>szöveg</emph> a római számot jelölő szöveg."
-
-#. vb@?
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155758\n"
-"244\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. gpKJ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154621\n"
-"245\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
-msgstr "Az <item type=\"input\">=ARABIC(\"MXIV\")</item> az 1014 értéket adja vissza."
-
-#. Ev#d
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147553\n"
-"246\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
-msgstr "Az <item type=\"input\">=ARABIC(\"MMII\")</item> a 2002 értéket adja vissza."
-
-#. dpgt
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id8796349\n"
-"help.text"
-msgid "<bookmark_value>ASC function</bookmark_value>"
-msgstr "<bookmark_value>ASC függvény</bookmark_value>"
-
-#. N.a0
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id7723929\n"
-"help.text"
-msgid "ASC"
-msgstr "ASC"
-
-#. L%k9
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id8455153\n"
-"help.text"
-msgid "<ahelp hid=\".\">The ASC function converts full-width to half-width ASCII and katakana characters. Returns a text string.</ahelp>"
-msgstr "<ahelp hid=\".\">Az ASC függvény a teljes szélességű ASCII vagy katakana karaktereket konvertálja félszélességű alakká. Egy szöveget ad vissza.</ahelp>"
-
-#. r.k,
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id9912411\n"
-"help.text"
-msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr "A konverziós táblázatot lásd a <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> oldalon."
-
-#. ArQH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id9204992\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. QYjD
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id1993774\n"
-"help.text"
-msgid "ASC(\"Text\")"
-msgstr "ASC(\"szöveg\")"
-
-#. N4df
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id2949919\n"
-"help.text"
-msgid "<emph>Text</emph> is the text that contains characters to be converted."
-msgstr "A <emph>szöveg</emph> olyan szöveg, amely a konvertálni kívánt karaktereket tartalmazza."
-
-#. ||?6
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id2355113\n"
-"help.text"
-msgid "See also JIS function."
-msgstr "Lásd még: JIS függvény."
-
-#. )2;2
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id9323709\n"
-"help.text"
-msgid "<bookmark_value>BAHTTEXT function</bookmark_value>"
-msgstr "<bookmark_value>BAHTSZÖVEG függvény</bookmark_value><bookmark_value>BAHTTEXT függvény, lásd: BAHTSZÖVEG függvény</bookmark_value>"
-
-#. 7|+p
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id6695455\n"
-"help.text"
-msgid "BAHTTEXT"
-msgstr "BAHTSZÖVEG"
-
-#. QCe9
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id354014\n"
-"help.text"
-msgid "Converts a number to Thai text, including the Thai currency names."
-msgstr "Átvált egy számot thai nyelvű, a thai pénznem nevét is tartalmazó szöveggé."
-
-#. `3@%
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id9942014\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. LmbB
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id8780785\n"
-"help.text"
-msgid "BAHTTEXT(Number)"
-msgstr "BAHTSZÖVEG(szám)"
-
-#. !02[
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id1539353\n"
-"help.text"
-msgid "<emph>Number</emph> is any number. \"Baht\" is appended to the integral part of the number, and \"Satang\" is appended to the decimal part of the number."
-msgstr "A <emph>szám</emph> bármilyen szám lehet. A szám egész része után a „baht” szöveget, a tizedes tört része után a „satang” szöveget illeszti a függvény."
-
-#. Np4n
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id9694814\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. .1AA
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3289284\n"
-"help.text"
-msgid "<item type=\"input\">=BAHTTEXT(12.65)</item> returns a string in Thai characters with the meaning of \"Twelve Baht and sixty five Satang\"."
-msgstr "A <item type=\"input\">=BAHTSZÖVEG(12,65)</item> thai karakterekkel írva a következő jelentésű szöveget adja vissza: „tizenkét baht hatvanöt satang”."
-
-#. S9TF
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3153072\n"
-"help.text"
-msgid "<bookmark_value>BASE function</bookmark_value>"
-msgstr "<bookmark_value>BASE függvény</bookmark_value>"
-
-#. WL;!
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153072\n"
-"213\n"
-"help.text"
-msgid "BASE"
-msgstr "BASE"
-
-#. G)zB
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153289\n"
-"214\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
-msgstr "<ahelp hid=\"HID_FUNC_BASIS\">Egy megadott <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"számrendszerbeli\">számrendszerbeli</link> pozitív egész számot szöveggé alakít.</ahelp> A 0-9 számjegyeket és az A-Z betűket használja."
-
-#. KK\(
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3146097\n"
-"215\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. c=Bt
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155743\n"
-"216\n"
-"help.text"
-msgid "BASE(Number; Radix; [MinimumLength])"
-msgstr "BASE(szám; számrendszer; [minimális_hossz])"
-
-#. 4rrT
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151339\n"
-"217\n"
-"help.text"
-msgid "<emph>Number</emph> is the positive integer to be converted."
-msgstr "A <emph>szám</emph> a konvertálandó pozitív egész szám."
-
-#. -;4:
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3159262\n"
-"218\n"
-"help.text"
-msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
-msgstr "A <emph>számrendszer</emph> a számrendszer alapját adja meg. Egy 2 és 36 közötti egész szám lehet."
-
-#. e):I
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148746\n"
-"219\n"
-"help.text"
-msgid "<emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
-msgstr "A <emph>minimális_hossz</emph> (opcionális) meghatározza a létrehozott karaktersorozat minimális hosszát. Ha a szöveg rövidebb a jelzett minimális hossznál, akkor a karakterlánc bal oldalához a függvény nullákat ad."
-
-#. VH@4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3146323\n"
-"220\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. uyF!
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3156399\n"
-"help.text"
-msgid "<bookmark_value>decimal system; converting to</bookmark_value>"
-msgstr "<bookmark_value>tízes számrendszer; átváltás ebbe</bookmark_value>"
-
-#. ul`M
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156399\n"
-"221\n"
-"help.text"
-msgid "<item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
-msgstr "A <item type=\"input\">=BASE(17;10;4)</item> függvény a 0017 értéket adja vissza a tízes számrendszerben."
-
-#. s{\F
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3157871\n"
-"help.text"
-msgid "<bookmark_value>binary system; converting to</bookmark_value>"
-msgstr "<bookmark_value>kettes számrendszer; átváltás ebbe</bookmark_value>"
-
-#. ]RX,
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3157871\n"
-"222\n"
-"help.text"
-msgid "<item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
-msgstr "A <item type=\"input\">=BASE(17;2)</item> függvény az 10001 értéket adja vissza kettes számrendszerben."
-
-#. SjYH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3145226\n"
-"help.text"
-msgid "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
-msgstr "<bookmark_value>hexadecimális számrendszer; átváltás ebbe</bookmark_value>"
-
-#. p53)
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145226\n"
-"223\n"
-"help.text"
-msgid "<item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
-msgstr "A <item type=\"input\">=BASE(255;16;4)</item> függvény a 00FF értéket adja vissza hexadecimális számrendszerben."
-
-#. N%Gm
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149321\n"
-"help.text"
-msgid "<bookmark_value>CHAR function</bookmark_value>"
-msgstr "<bookmark_value>KARAKTER függvény</bookmark_value><bookmark_value>CHAR függvény, lásd: KARAKTER függvény</bookmark_value>"
-
-#. BMC%
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149321\n"
-"201\n"
-"help.text"
-msgid "CHAR"
-msgstr "KARAKTER"
-
-#. m-Ec
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149150\n"
-"202\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEICHEN\">Converts a number into a character according to the current code table.</ahelp> The number can be a two-digit or three-digit integer number."
-msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\">Egy számot karakterré alakít át, az aktuális kódtábla szerint.</ahelp> A szám egy, két vagy három számjegyű egész szám lehet."
-
-#. pqNH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149945\n"
-"203\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. k`EV
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145634\n"
-"204\n"
-"help.text"
-msgid "CHAR(Number)"
-msgstr "KARAKTER(szám)"
-
-#. W:l4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155906\n"
-"205\n"
-"help.text"
-msgid "<emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
-msgstr "A <emph>szám</emph> 1 és 255 közötti szám, amely a karakter kódértékét jelöli."
-
-#. DV9,
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152982\n"
-"207\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. z9jj
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149890\n"
-"208\n"
-"help.text"
-msgid "<item type=\"input\">=CHAR(100)</item> returns the character d."
-msgstr "A <item type=\"input\">=KARAKTER(100)</item> a d karaktert adja eredményül."
-
-#. l7kx
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id0907200910283297\n"
-"help.text"
-msgid "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
-msgstr "Az =\"abc\" & KARAKTER(10) & \"def\" egy újsor karaktert szúr be a karakterláncba."
-
-#. kVm#
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149009\n"
-"help.text"
-msgid "<bookmark_value>CLEAN function</bookmark_value>"
-msgstr "<bookmark_value>TISZTÍT függvény</bookmark_value><bookmark_value>CLEAN függvény, lásd: TISZTÍT függvény</bookmark_value>"
-
-#. dLY9
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149009\n"
-"132\n"
-"help.text"
-msgid "CLEAN"
-msgstr "TISZTÍT"
-
-#. qbH:
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150482\n"
-"133\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\">Az összes nem nyomtatható karaktert törli a karakterláncból.</ahelp>"
-
-#. fv/$
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3146880\n"
-"134\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2@W`
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147472\n"
-"135\n"
-"help.text"
-msgid "CLEAN(\"Text\")"
-msgstr "TISZTÍT(\"szöveg\")"
-
-#. SpMR
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150695\n"
-"136\n"
-"help.text"
-msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
-msgstr "A <emph>szöveg</emph> az a szöveg, amelyből el kíván távolítani minden nem nyomtatható karaktert."
-
-#. s*$!
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3155498\n"
-"help.text"
-msgid "<bookmark_value>CODE function</bookmark_value>"
-msgstr "<bookmark_value>KÓD függvény</bookmark_value><bookmark_value>CODE függvény, lásd: KÓD függvény</bookmark_value>"
-
-#. .C[[
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155498\n"
-"3\n"
-"help.text"
-msgid "CODE"
-msgstr "KÓD"
-
-#. 8*II
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3152770\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_CODE\">Egy szöveg első karakterének numerikus kódját adja eredményül.</ahelp>"
-
-#. p$sj
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155830\n"
-"5\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. })96
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149188\n"
-"6\n"
-"help.text"
-msgid "CODE(\"Text\")"
-msgstr "KÓD(\"szöveg\")"
-
-#. }+IB
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154383\n"
-"7\n"
-"help.text"
-msgid "<emph>Text</emph> is the text for which the code of the first character is to be found."
-msgstr "A <emph>szöveg</emph> az a szöveg, amelyre vonatkozóan az első karakter kódját meg kívánja állapítani."
-
-#. m.ma
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3154394\n"
-"8\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. dZU0
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3159209\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
-msgstr "A <item type=\"input\">=KÓD(\"Hieronymus\")</item> eredményül 72-t, a <item type=\"input\">=CODE(\"hieroglifa\")</item> pedig 104-et ad."
-
-#. ;]gn
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150280\n"
-"211\n"
-"help.text"
-msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
-msgstr "Az itt használt kódok nem az ASCII-kódokra hivatkoznak, hanem az aktuálisan betöltött kódtáblázatra."
-
-#. vCfk
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149688\n"
-"help.text"
-msgid "<bookmark_value>CONCATENATE function</bookmark_value>"
-msgstr "<bookmark_value>ÖSSZEFŰZ függvény</bookmark_value><bookmark_value>CONCATENATE függvény, lásd: ÖSSZEFŰZ függvény</bookmark_value>"
-
-#. BQs~
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149688\n"
-"167\n"
-"help.text"
-msgid "CONCATENATE"
-msgstr "ÖSSZEFŰZ"
-
-#. rF(X
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154524\n"
-"168\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\">Egyesíti a szöveg karakterláncait egyetlen karakterlánccá.</ahelp>"
-
-#. FKRH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149542\n"
-"169\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. fcgT
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155954\n"
-"170\n"
-"help.text"
-msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")"
-msgstr "ÖSSZEFŰZ(\"szöveg_1\"; ...; \"szöveg_30\")"
-
-#. 9`r=
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3146847\n"
-"171\n"
-"help.text"
-msgid "<emph>Text 1; Text 2; ...</emph> represent up to 30 text passages which are to be combined into one string."
-msgstr "A <emph>szöveg_1; szöveg_2; ...</emph> legfeljebb 30 szöveg, amelyet egyetlen karakterlánccá kíván összevonni."
-
-#. G$(F
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153110\n"
-"172\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Q@o)
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150008\n"
-"173\n"
-"help.text"
-msgid "<item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
-msgstr "Az <item type=\"input\">=ÖSSZEFŰZ(\"Jó \";\"reggelt, \";\"Kovács \";\"Úr!\")</item> eredményül a „Jó reggelt, Kovács Úr!” értéket adja."
-
-#. l/5`
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3145166\n"
-"help.text"
-msgid "<bookmark_value>DECIMAL function</bookmark_value>"
-msgstr "<bookmark_value>DECIMAL függvény</bookmark_value>"
-
-#. xCPk
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3145166\n"
-"225\n"
-"help.text"
-msgid "DECIMAL"
-msgstr "DECIMAL"
-
-#. g!ZO
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156361\n"
-"226\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Egy adott <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"számrendszer\">számrendszer</link> számjegyeit tartalmazó szöveget átalakít a megadott alapú pozitív egészre.</ahelp> A megadott számrendszer alapjának 2 és 36 között kell lennie. A szóközöket és tabulátorokat nem veszi figyelembe. A <emph>szöveg</emph> mező nem különbözteti meg a kis- nagybetűket."
-
-#. Z6rn
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3157994\n"
-"227\n"
-"help.text"
-msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
-msgstr "Ha a számrendszer 16-os, akkor a bevezető x, X, 0x és 0X, valamint a hozzáfűzött h vagy H karakterek figyelmen kívül maradnak. Ha a számrendszer 2-es, akkor a hozzáfűzött b vagy B figyelmen kívül marad. Az egyéb, a számrendszerhez nem tartozó karakterek esetén hibaüzenet jelenik meg."
-
-#. \CYQ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150014\n"
-"228\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. L7r|
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154328\n"
-"229\n"
-"help.text"
-msgid "DECIMAL(\"Text\"; Radix)"
-msgstr "DECIMAL(\"szöveg\"; számrendszer)"
-
-#. \r8l
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150128\n"
-"230\n"
-"help.text"
-msgid "<emph>Text</emph> is the text to be converted. To differentiate between a hexadecimal number, such as A1 and the reference to cell A1, you must place the number in quotation marks, for example, \"A1\" or \"FACE\"."
-msgstr "A <emph>szöveg</emph> a konvertálandó szöveg. Egy hexadecimális szám, például az A1, illetve az A1 cellahivatkozás megkülönböztetéséhez a számot idézőjelek között szükséges megadnia, például \"A1\" vagy \"FACE\"."
-
-#. %;7)
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145241\n"
-"231\n"
-"help.text"
-msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
-msgstr "A <emph>számrendszer</emph> a számrendszer alapját adja meg. Egy 2 és 36 közötti egész szám lehet."
-
-#. +iZ*
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3156062\n"
-"232\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ~t)Q
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145355\n"
-"233\n"
-"help.text"
-msgid "<item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
-msgstr "A <item type=\"input\">=DECIMAL(\"17\";10)</item> eredménye 17."
-
-#. hM_d
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155622\n"
-"234\n"
-"help.text"
-msgid "<item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
-msgstr "A <item type=\"input\">=DECIMAL(\"FACE\";16)</item> eredménye 64206."
-
-#. Fl+9
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151015\n"
-"235\n"
-"help.text"
-msgid "<item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
-msgstr "A <item type=\"input\">=DECIMAL(\"0101\";2)</item> eredménye 5."
-
-#. \N4;
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3148402\n"
-"help.text"
-msgid "<bookmark_value>DOLLAR function</bookmark_value>"
-msgstr "<bookmark_value>FORINT függvény</bookmark_value><bookmark_value>DOLLAR függvény, lásd: FORINT függvény</bookmark_value>"
-
-#. lI(O
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3148402\n"
-"11\n"
-"help.text"
-msgid "DOLLAR"
-msgstr "FORINT"
-
-#. 39Ap
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153049\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places."
-msgstr "<ahelp hid=\"HID_FUNC_DM\">Átvált egy számot pénznem formátumra, a megadott tizedesjegyre kerekítve.</ahelp> Az <item type=\"literal\">érték</item> mezőbe írja be a pénznemmé alakítandó számot. A tizedesjegyek számát a <item type=\"literal\">tizedesjegyek</item> mezőbe írhatja be. Ha nem ad meg értéket, akkor valamennyi pénznemformátumú szám két tizedesjeggyel kerül megjelenítésre."
-
-#. sAJm
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151280\n"
-"263\n"
-"help.text"
-msgid "You set the currency format in your system settings."
-msgstr "A pénznem beállítást a rendszerbeállításoknál adhatja meg."
-
-#. yL1%
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150569\n"
-"13\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. -00!
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154188\n"
-"14\n"
-"help.text"
-msgid "DOLLAR(Value; Decimals)"
-msgstr "FORINT(érték; tizedesjegyek)"
-
-#. Qj1G
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145299\n"
-"15\n"
-"help.text"
-msgid "<emph>Value</emph> is a number, a reference to a cell containing a number, or a formula which returns a number."
-msgstr "Az <emph>érték</emph> lehet szám, számot tartalmazó cellára mutató hivatkozás vagy számot eredményező képlet."
-
-#. B3n(
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145629\n"
-"16\n"
-"help.text"
-msgid "<emph>Decimals</emph> is the optional number of decimal places."
-msgstr "A <emph>tizedesjegyek</emph> (opcionális) a tizedesjegyek száma."
-
-#. ^]0h
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149030\n"
-"17\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Xff1
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153546\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "A <item type=\"input\">=FORINT(255)</item> függvény a 255,00 Ft értéket adja vissza."
-
-#. o4hG
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154635\n"
-"19\n"
-"help.text"
-msgid "<item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>."
-msgstr "A <item type=\"input\">=FORINT(367,456;2)</item> eredményül 367,46 Ft értéket ad. Használja az <link href=\"text/shared/optionen/01140000.xhp\" name=\"aktuális területi beállítások\">aktuális területi beállításoknak</link> megfelelő tizedeselválasztó jelet."
-
-#. =V;u
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3150685\n"
-"help.text"
-msgid "<bookmark_value>EXACT function</bookmark_value>"
-msgstr "<bookmark_value>AZONOS függvény</bookmark_value><bookmark_value>EXACT függvény, lásd: AZONOS függvény</bookmark_value>"
-
-#. _#AH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150685\n"
-"78\n"
-"help.text"
-msgid "EXACT"
-msgstr "AZONOS"
-
-#. ?*:S
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3158413\n"
-"79\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compares two text strings and returns TRUE if they are identical.</ahelp> This function is case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\">Összehasonlít két szöveges karakterláncot. Ha azok megegyeznek, IGAZ értéket ad vissza.</ahelp> Ez a függvény különbséget tesz kis- és nagybetűk között."
-
-#. Gz09
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152817\n"
-"80\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. e+=f
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148594\n"
-"81\n"
-"help.text"
-msgid "EXACT(\"Text1\"; \"Text2\")"
-msgstr "AZONOS(\"szöveg_1\"; \"szöveg_2\")"
-
-#. %irl
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153224\n"
-"82\n"
-"help.text"
-msgid "<emph>Text1</emph> refers to the first text to compare."
-msgstr "A <emph>szöveg_1</emph> az első összehasonlítandó szöveg."
-
-#. l=of
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148637\n"
-"83\n"
-"help.text"
-msgid "<emph>Text2</emph> is the second text to compare."
-msgstr "A <emph>szöveg_2</emph> a második összehasonlítandó szöveg."
-
-#. =J*P
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149777\n"
-"84\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. VkhY
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156263\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
-msgstr "Az <item type=\"input\">=AZONOS(\"microsystems\";\"Microsystems\")</item> függvény HAMIS értéket ad vissza."
-
-#. |^[%
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3152589\n"
-"help.text"
-msgid "<bookmark_value>FIND function</bookmark_value>"
-msgstr "<bookmark_value>SZÖVEG.TALÁL függvény</bookmark_value><bookmark_value>FIND függvény, lásd: SZÖVEG.TALÁL függvény</bookmark_value>"
-
-#. JFEU
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152589\n"
-"44\n"
-"help.text"
-msgid "FIND"
-msgstr "SZÖVEG.TALÁL"
-
-#. )2_-
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3146149\n"
-"45\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Looks for a string of text within another string.</ahelp> You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">Szöveget keres egy másik szövegben.</ahelp> Meghatározhatja azt is, hogy a keresés hol kezdődjön. A keresési kifejezés lehet szám, illetve tetszőleges karakterlánc. A keresés megkülönbözteti a kis- és nagybetűket."
-
-#. :3`n
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3083284\n"
-"46\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. TF|d
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3083452\n"
-"47\n"
-"help.text"
-msgid "FIND(\"FindText\"; \"Text\"; Position)"
-msgstr "SZÖVEG.TALÁL(\"keresendő_szöveg\"; \"szöveg\"; pozíció)"
-
-#. {PlD
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150608\n"
-"48\n"
-"help.text"
-msgid "<emph>FindText</emph> refers to the text to be found."
-msgstr "A <emph>keresendő_szöveg</emph> a keresendő szöveg."
-
-#. 94OQ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3152374\n"
-"49\n"
-"help.text"
-msgid "<emph>Text</emph> is the text where the search takes place."
-msgstr "A <emph>szöveg</emph> az a szöveg, amelyen belül a keresés végrehajtásra kerül."
-
-#. ==1^
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3152475\n"
-"50\n"
-"help.text"
-msgid "<emph>Position</emph> (optional) is the position in the text from which the search starts."
-msgstr "A <emph>pozíció</emph> (opcionális) a keresés kiindulási helyét jelölő szövegpozíció."
-
-#. rQml
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3154812\n"
-"51\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. rG+8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156375\n"
-"52\n"
-"help.text"
-msgid "<item type=\"input\">=FIND(76;998877665544)</item> returns 6."
-msgstr "A <item type=\"input\">=SZÖVEG.TALÁL(76;998877665544)</item> függvény a 6 értéket adja vissza."
-
-#. ChHm
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149268\n"
-"help.text"
-msgid "<bookmark_value>FIXED function</bookmark_value>"
-msgstr "<bookmark_value>FIX függvény</bookmark_value><bookmark_value>FIXED függvény, lásd: FIX függvény</bookmark_value>"
-
-#. r.Bw
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149268\n"
-"34\n"
-"help.text"
-msgid "FIXED"
-msgstr "FIX"
-
-#. UkRc
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155833\n"
-"35\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Egy számot szöveggé alakít, figyelembe véve a megadott tizedesjegyek számát és az esetleges ezreselválasztót.</ahelp>"
-
-#. TSC:
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152470\n"
-"36\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. N3u@
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147567\n"
-"37\n"
-"help.text"
-msgid "FIXED(Number; Decimals; NoThousandsSeparators)"
-msgstr "FIX(szám; tizedesjegyek; nincs_ezreselválasztó)"
-
-#. a4!o
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151272\n"
-"38\n"
-"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "A <emph>szám</emph> a formázni kívánt szám."
-
-#. xXyo
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156322\n"
-"39\n"
-"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "A <emph>tizedesjegyek</emph> a megjelenítendő tizedesjegyek száma."
-
-#. 4n9(
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150877\n"
-"40\n"
-"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "A <emph>nincs_ezreselválasztó</emph> (opcionális) meghatározza, hogy van-e ezreselválasztó használatban. Ha a paraméter nullától eltérő szám, akkor nem jelennek meg az ezreselválasztók. Ha a paraméter nulla vagy hiányzik, akkor az <link href=\"text/shared/optionen/01140000.xhp\" name=\"aktuális területi beállítások\">aktuális területi beállításoknak</link> megfelelő ezreselválasztók jelennek meg."
-
-#. mZpn
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149040\n"
-"41\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9(6O
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145208\n"
-"42\n"
-"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
-msgstr "A <item type=\"input\">=FIX(1234567,89;3)</item> eredményül az 1 234 567,890 karakterláncot adja."
-
-#. W~h+
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id5282143\n"
-"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "A <item type=\"input\">=FIX(1234567,89;3;1)</item> eredményül az 1234567,890 karakterláncot adja."
-
-#. Q6a2
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id7319864\n"
-"help.text"
-msgid "<bookmark_value>JIS function</bookmark_value>"
-msgstr "<bookmark_value>JIS függvény</bookmark_value>"
-
-#. F^gh
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3666188\n"
-"help.text"
-msgid "JIS"
-msgstr "JIS"
-
-#. 5qPm
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id964384\n"
-"help.text"
-msgid "<ahelp hid=\".\">The JIS function converts half-width to full-width ASCII and katakana characters. Returns a text string.</ahelp>"
-msgstr "<ahelp hid=\".\">A JIS függvény a félszélességű ASCII vagy katakana karaktereket konvertálja teljes szélességű alakká. Egy szöveget ad vissza.</ahelp>"
-
-#. f#\,
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id1551561\n"
-"help.text"
-msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr "A konverziós táblázatot lásd a <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> oldalon."
-
-#. ljZ[
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id2212897\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7iw4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id2504654\n"
-"help.text"
-msgid "JIS(\"Text\")"
-msgstr "JIS(\"szöveg\")"
-
-#. rrB8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id5292519\n"
-"help.text"
-msgid "<emph>Text</emph> is the text that contains characters to be converted."
-msgstr "A <emph>szöveg</emph> olyan szöveg, amely a konvertálni kívánt karaktereket tartalmazza."
-
-#. jq23
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3984496\n"
-"help.text"
-msgid "See also ASC function."
-msgstr "Lásd még: ASC függvény."
-
-#. FYzg
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3147083\n"
-"help.text"
-msgid "<bookmark_value>LEFT function</bookmark_value>"
-msgstr "<bookmark_value>BAL függvény</bookmark_value><bookmark_value>LEFT függvény, lásd: BAL függvény</bookmark_value><bookmark_value>BAL függvény, lásd: LEFT függvény</bookmark_value>"
-
-#. K@.N
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3147083\n"
-"95\n"
-"help.text"
-msgid "LEFT"
-msgstr "BAL"
-
-#. EONB
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153622\n"
-"96\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LINKS\">Egy szöveg első (néhány) karakterét adja vissza.</ahelp>"
-
-#. 7li5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3156116\n"
-"97\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. }sJC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3146786\n"
-"98\n"
-"help.text"
-msgid "LEFT(\"Text\"; Number)"
-msgstr "BAL(\"szöveg\"; szám)"
-
-#. 2-un
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147274\n"
-"99\n"
-"help.text"
-msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
-msgstr "A <emph>szöveg</emph>, amelyben a kezdő karakterek keresendők."
-
-#. ngZS
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153152\n"
-"100\n"
-"help.text"
-msgid "<emph>Number</emph> (optional) specifies the number of characters for the start text. If this parameter is not defined, one character is returned."
-msgstr "A <emph>szám</emph> (opcionális) a kezdő szövegből kiválasztásra kerülő karakterek száma. Ha a paraméter nincs megadva, akkor egy karakter kerül visszaadásra."
-
-#. UWj4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150260\n"
-"101\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @bZ4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149141\n"
-"102\n"
-"help.text"
-msgid "<item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
-msgstr "A <item type=\"input\">=BAL(\"kimenet\";2)</item> eredménye „ki”."
-
-#. 7;hi
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3156110\n"
-"help.text"
-msgid "<bookmark_value>LEN function</bookmark_value>"
-msgstr "<bookmark_value>HOSSZ függvény</bookmark_value><bookmark_value>LEN függvény, lásd: HOSSZ függvény</bookmark_value>"
-
-#. j2yt
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3156110\n"
-"104\n"
-"help.text"
-msgid "LEN"
-msgstr "HOSSZ"
-
-#. QE7R
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150147\n"
-"105\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LAENGE\">Egy szövegnek a szóközökkel együtt vett hosszát adja eredményül.</ahelp>"
-
-#. ioVl
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155108\n"
-"106\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. K@Id
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154063\n"
-"107\n"
-"help.text"
-msgid "LEN(\"Text\")"
-msgstr "HOSSZ(\"szöveg\")"
-
-#. iG?o
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3146894\n"
-"108\n"
-"help.text"
-msgid "<emph>Text</emph> is the text whose length is to be determined."
-msgstr "A <emph>szöveg</emph> az a szöveg, amelynek hosszát meg kívánja határozni."
-
-#. j2B#
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153884\n"
-"109\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9N7+
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156008\n"
-"110\n"
-"help.text"
-msgid "<item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
-msgstr "A <item type=\"input\">=HOSSZ(\"Jó napot\")</item> eredménye 8."
-
-#. 5`I;
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154300\n"
-"111\n"
-"help.text"
-msgid "<item type=\"input\">=LEN(12345.67)</item> returns 8."
-msgstr "A <item type=\"input\">=HOSSZ(12345,67)</item> eredménye 8."
-
-#. jWF1
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3153983\n"
-"help.text"
-msgid "<bookmark_value>LOWER function</bookmark_value>"
-msgstr "<bookmark_value>KISBETŰ függvény</bookmark_value><bookmark_value>LOWER függvény, lásd: KISBETŰ függvény</bookmark_value>"
-
-#. Zk[.
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153983\n"
-"87\n"
-"help.text"
-msgid "LOWER"
-msgstr "KISBETŰ"
-
-#. $$Ng
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3152791\n"
-"88\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KLEIN\">Egy szövegrész minden nagybetűjét kisbetűre cseréli.</ahelp>"
-
-#. UL6@
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155902\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. YhC%
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150121\n"
-"90\n"
-"help.text"
-msgid "LOWER(\"Text\")"
-msgstr "KISBETŰ(\"szöveg\")"
-
-#. $XML
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153910\n"
-"91\n"
-"help.text"
-msgid "<emph>Text</emph> refers to the text to be converted."
-msgstr "A <emph>szöveg</emph> a konvertálandó szöveg."
-
-#. =MdH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3159343\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. BM7v
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155329\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
-msgstr "A <item type=\"input\">=KISBETŰ(\"Sun\")</item> függvény a „sun” értéket adja vissza."
-
-#. `VLg
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3154589\n"
-"help.text"
-msgid "<bookmark_value>MID function</bookmark_value>"
-msgstr "<bookmark_value>KÖZÉP függvény</bookmark_value><bookmark_value>MID függvény, lásd: KÖZÉP függvény</bookmark_value>"
-
-#. V!5U
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3154589\n"
-"148\n"
-"help.text"
-msgid "MID"
-msgstr "KÖZÉP"
-
-#. +Vr3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154938\n"
-"149\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TEIL\">Eredményül egy karakterlánc egy darabját adja vissza. A kezdőpozíciót, illetve a karakterek számát a paraméterek határozzák meg.</ahelp>"
-
-#. d2A4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3148829\n"
-"150\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ry3Q
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150526\n"
-"151\n"
-"help.text"
-msgid "MID(\"Text\"; Start; Number)"
-msgstr "KÖZÉP(\"szöveg\"; kezdés; szám)"
-
-#. _#mE
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148820\n"
-"152\n"
-"help.text"
-msgid "<emph>Text</emph> is the text containing the characters to extract."
-msgstr "A <emph>szöveg</emph> olyan szöveg, amely a kinyerni kívánt karaktereket tartalmazza."
-
-#. \*Sq
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150774\n"
-"153\n"
-"help.text"
-msgid "<emph>Start</emph> is the position of the first character in the text to extract."
-msgstr "A <emph>kezdés</emph> a kinyerni kívánt szöveg első karakterének pozíciója a szövegen belül."
-
-#. J)o^
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153063\n"
-"154\n"
-"help.text"
-msgid "<emph>Number</emph> specifies the number of characters in the part of the text."
-msgstr "A <emph>szám</emph> a szövegrész karaktereinek számát jelöli."
-
-#. )KSR
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150509\n"
-"155\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. c^JH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3158407\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
-msgstr "A <item type=\"input\">=KÖZÉP(\"office\";2;2)</item> képlet az ff értéket adja vissza."
-
-#. _(ro
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3159143\n"
-"help.text"
-msgid "<bookmark_value>PROPER function</bookmark_value>"
-msgstr "<bookmark_value>TNÉV függvény</bookmark_value><bookmark_value>PROPER függvény, lásd: TNÉV függvény</bookmark_value>"
-
-#. }8s;
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3159143\n"
-"70\n"
-"help.text"
-msgid "PROPER"
-msgstr "TNÉV"
-
-#. @-Yi
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149768\n"
-"71\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GROSS2\">Nagybetűsre változtatja egy szöveg minden szavának első betűjét.</ahelp>"
-
-#. k%uZ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153573\n"
-"72\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. /o3A
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154260\n"
-"73\n"
-"help.text"
-msgid "PROPER(\"Text\")"
-msgstr "TNÉV(\"szöveg\")"
-
-#. @Jds
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147509\n"
-"74\n"
-"help.text"
-msgid "<emph>Text</emph> refers to the text to be converted."
-msgstr "A <emph>szöveg</emph> a konvertálandó szöveg."
-
-#. Oh?^
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3147529\n"
-"75\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. qy2_
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155364\n"
-"76\n"
-"help.text"
-msgid "<item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
-msgstr "A <item type=\"input\">=TNÉV(\"open office\")</item> képlet az Open Office értéket adja vissza."
-
-#. }IZf
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149171\n"
-"help.text"
-msgid "<bookmark_value>REPLACE function</bookmark_value>"
-msgstr "<bookmark_value>CSERE függvény</bookmark_value><bookmark_value>REPLACE függvény, lásd: CSERE függvény</bookmark_value>"
-
-#. +YnF
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149171\n"
-"22\n"
-"help.text"
-msgid "REPLACE"
-msgstr "CSERE"
-
-#. ,U4T
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148925\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
-msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">Kicseréli egy karakterlánc részét egy másik karakterláncra.</ahelp> A függvény használható mind karakterek, mind pedig számok cseréjére (az utóbbi esetben a számok automatikusan szöveggé konvertálódnak). A függvény eredménye mindig szövegformátumban kerül megjelenítésre. Ha további számításokat kíván végezni a szövegre cserélt számmal, akkor azt vissza kell konvertálnia szám formátumba az <link href=\"text/scalc/01/04060110.xhp\" name=\"ÉRTÉK\">ÉRTÉK</link> függvény segítségével."
-
-#. 062+
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3158426\n"
-"24\n"
-"help.text"
-msgid "Any text containing numbers must be enclosed in quotation marks if you do not want it to be interpreted as a number and automatically converted to text."
-msgstr "Minden számot tartalmazó szöveget idézőjelek közé kell tenni, ha nem szeretné azt számként értelmezni, és automatikusan szöveggé alakítani."
-
-#. d:(@
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149159\n"
-"25\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. `JV-
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147286\n"
-"26\n"
-"help.text"
-msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
-msgstr "CSERE(\"szöveg\"; pozíció; hossz; \"új_szöveg\")"
-
-#. LK[j
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149797\n"
-"27\n"
-"help.text"
-msgid "<emph>Text</emph> refers to text of which a part will be replaced."
-msgstr "A <emph>szöveg</emph> az a szöveg, amelynek egy része lecserélésre kerül."
-
-#. ^\**
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3166451\n"
-"28\n"
-"help.text"
-msgid "<emph>Position</emph> refers to the position within the text where the replacement will begin."
-msgstr "A <emph>pozíció</emph> a szövegen belüli pozíció, amely a csere kezdőpontját jelöli."
-
-#. 7N.s
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156040\n"
-"29\n"
-"help.text"
-msgid "<emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
-msgstr "A <emph>hossz</emph> a <emph>szövegen</emph> belül lecserélendő karakterek száma."
-
-#. Cr4(
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3159188\n"
-"30\n"
-"help.text"
-msgid "<emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
-msgstr "Az <emph>új_szöveg</emph> a <emph>szöveget</emph> felváltó új szöveg."
-
-#. No=n
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3146958\n"
-"31\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. B}f\
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154096\n"
-"32\n"
-"help.text"
-msgid "<item type=\"input\">=REPLACE(\"1234567\";1;1;\"444\")</item> returns \"444234567\". One character at position 1 is replaced by the complete <item type=\"literal\">NewText</item>."
-msgstr "A <item type=\"input\">=CSERE(\"1234567\";1;1;\"444\")</item> eredményül „444234567” értéket ad. Az 1. pozíción található egy karakter a teljes <item type=\"literal\">új_szövegre</item> módosul"
-
-#. Sb{|
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149741\n"
-"help.text"
-msgid "<bookmark_value>REPT function</bookmark_value>"
-msgstr "<bookmark_value>SOKSZOR függvény</bookmark_value><bookmark_value>REPT függvény, lásd: SOKSZOR függvény</bookmark_value>"
-
-#. [L%*
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149741\n"
-"193\n"
-"help.text"
-msgid "REPT"
-msgstr "SOKSZOR"
-
-#. lg4.
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153748\n"
-"194\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">A megadott <emph>számszor</emph> ismétel egy karaktersorozatot.</ahelp>"
-
-#. HzY4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152884\n"
-"195\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. SjZ^
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150494\n"
-"196\n"
-"help.text"
-msgid "REPT(\"Text\"; Number)"
-msgstr "SOKSZOR(\"szöveg\"; szám)"
-
-#. hzV}
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154859\n"
-"197\n"
-"help.text"
-msgid "<emph>Text</emph> is the text to be repeated."
-msgstr "A <emph>szöveg</emph> az ismétlendő szöveg."
-
-#. 9T1N
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150638\n"
-"198\n"
-"help.text"
-msgid "<emph>Number</emph> is the number of repetitions."
-msgstr "A <emph>szám</emph> az ismétlések száma."
-
-#. :JZy
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149922\n"
-"212\n"
-"help.text"
-msgid "The result can be a maximum of 255 characters."
-msgstr "Az eredmény maximum 255 karakter hosszú lehet."
-
-#. (TrU
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3156213\n"
-"199\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. C2\@
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148626\n"
-"200\n"
-"help.text"
-msgid "<item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
-msgstr "A <item type=\"input\">=SOKSZOR(\"Jó reggelt\";2)</item> eredménye Jó reggeltJó reggelt."
-
-#. =UvY
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149805\n"
-"help.text"
-msgid "<bookmark_value>RIGHT function</bookmark_value>"
-msgstr "<bookmark_value>JOBB függvény</bookmark_value><bookmark_value>RIGHT függvény, lásd: JOBB függvény</bookmark_value><bookmark_value>JOBB függvény, lásd: RIGHT függvény</bookmark_value>"
-
-#. 4X0a
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149805\n"
-"113\n"
-"help.text"
-msgid "RIGHT"
-msgstr "JOBB"
-
-#. BTOz
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145375\n"
-"114\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">Egy szöveg utolsó (néhány) karakterét adja vissza.</ahelp>"
-
-#. AeIK
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150837\n"
-"115\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Ct%@
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154344\n"
-"116\n"
-"help.text"
-msgid "RIGHT(\"Text\"; Number)"
-msgstr "JOBB(\"szöveg\"; szám)"
-
-#. DKaq
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149426\n"
-"117\n"
-"help.text"
-msgid "<emph>Text</emph> is the text of which the right part is to be determined."
-msgstr "A <emph>szöveg</emph> a szöveg, amelynek jobb oldali részét meg kívánja határozni."
-
-#. L_3v
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153350\n"
-"118\n"
-"help.text"
-msgid "<emph>Number</emph> (optional) is the number of characters from the right part of the text."
-msgstr "A <emph>szám</emph> (opcionális) a karakterek száma a szöveg jobb oldali részéről."
-
-#. 66C)
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3148661\n"
-"119\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. +V3,
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151132\n"
-"120\n"
-"help.text"
-msgid "<item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
-msgstr "A <item type=\"input\">=JOBB(\"Sun\";2)</item> eredménye un."
-
-#. kZ4W
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3153534\n"
-"help.text"
-msgid "<bookmark_value>ROMAN function</bookmark_value>"
-msgstr "<bookmark_value>RÓMAI függvény</bookmark_value><bookmark_value>ROMAN függvény, lásd: RÓMAI függvény</bookmark_value>"
-
-#. kouo
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153534\n"
-"248\n"
-"help.text"
-msgid "ROMAN"
-msgstr "RÓMAI"
-
-#. ehg2
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151256\n"
-"249\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">Római számmá konvertálja a számot. Az értéktartománynak 0-3999 között kell lennie, a mód 0-4 közötti egész szám lehet.</ahelp>"
-
-#. e^IL
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149299\n"
-"250\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. G=xc
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150593\n"
-"251\n"
-"help.text"
-msgid "ROMAN(Number; Mode)"
-msgstr "RÓMAI(szám; mód)"
-
-#. \Rm%
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156139\n"
-"252\n"
-"help.text"
-msgid "<emph>Number</emph> is the number that is to be converted into a Roman numeral."
-msgstr "A <emph>szám</emph> maga a római számmá konvertálni kívánt szám."
-
-#. XYD?
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153318\n"
-"253\n"
-"help.text"
-msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
-msgstr "A <emph>mód</emph>: (opcionális) az egyszerűsítés mértékét jelöli. Minél nagyobb az érték, annál nagyobb a római szám egyszerűsítése."
-
-#. +@u4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3145306\n"
-"254\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. +~Y]
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151371\n"
-"255\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
-msgstr "A <item type=\"input\">=RÓMAI(999)</item> eredménye CMXCIX."
-
-#. Y7r;
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153938\n"
-"256\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
-msgstr "A <item type=\"input\">=RÓMAI(999;0)</item> eredménye CMXCIX."
-
-#. ?9PL
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148412\n"
-"257\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
-msgstr "A <item type=\"input\">=RÓMAI (999;1)</item> eredménye LMVLIV."
-
-#. 41DQ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155421\n"
-"258\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
-msgstr "A <item type=\"input\">=RÓMAI(999;2)</item> eredménye XMIX."
-
-#. ckI#
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149235\n"
-"259\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
-msgstr "A <item type=\"input\">=RÓMAI(999;3)</item> eredménye VMIV."
-
-#. z:(T
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150624\n"
-"260\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;4)</item> returns IM"
-msgstr "A <item type=\"input\">=RÓMAI(999;4)</item> eredménye IM."
-
-#. 3$w1
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3151005\n"
-"help.text"
-msgid "<bookmark_value>SEARCH function</bookmark_value>"
-msgstr "<bookmark_value>SZÖVEG.KERES függvény</bookmark_value><bookmark_value>SEARCH függvény, lásd: SZÖVEG.KERES függvény</bookmark_value>"
-
-#. v!._
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3151005\n"
-"122\n"
-"help.text"
-msgid "SEARCH"
-msgstr "SZÖVEG.KERES"
-
-#. qDfP
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148692\n"
-"123\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUCHEN\">Returns the position of a text segment within a character string.</ahelp> You can set the start of the search as an option. The search text can be a number or any sequence of characters. The search is not case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\">Egy szövegrész karakterláncon belüli helyzetét adja eredményül.</ahelp> A keresés kezdőpontját paraméterként adhatja meg. A keresési szöveg lehet szám, illetve karakterek tetszőleges sora. A keresés nem különbözteti meg a kis- és nagybetűket."
-
-#. zGP`
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152964\n"
-"124\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. sq*[
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154671\n"
-"125\n"
-"help.text"
-msgid "SEARCH(\"FindText\"; \"Text\"; Position)"
-msgstr "SZÖVEG.KERES(\"keresendő_szöveg\"; \"szöveg\"; pozíció)"
-
-#. 4*UH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3146080\n"
-"126\n"
-"help.text"
-msgid "<emph>FindText</emph> is the text to be searched for."
-msgstr "A <emph>keresendő_szöveg</emph> a keresendő szöveg."
-
-#. gFz5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154111\n"
-"127\n"
-"help.text"
-msgid "<emph>Text</emph> is the text where the search will take place."
-msgstr "A <emph>szöveg</emph> a szöveg, amelyen belül a keresés végrehajtásra kerül."
-
-#. `g(g
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149559\n"
-"128\n"
-"help.text"
-msgid "<emph>Position</emph> (optional) is the position in the text where the search is to start."
-msgstr "A <emph>pozíció</emph> (opcionális) a keresés kiindulási helyét jelölő szövegpozíció."
-
-#. MB7M
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3147322\n"
-"129\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. JVW3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154564\n"
-"130\n"
-"help.text"
-msgid "<item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
-msgstr "A <item type=\"input\">=SZÖVEG.KERES(54;998877665544)</item> eredménye 10."
-
-#. fx6/
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3154830\n"
-"help.text"
-msgid "<bookmark_value>SUBSTITUTE function</bookmark_value>"
-msgstr "<bookmark_value>HELYETTE függvény</bookmark_value><bookmark_value>SUBSTITUTE függvény, lásd: HELYETTE függvény</bookmark_value>"
-
-#. ;LRm
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3154830\n"
-"174\n"
-"help.text"
-msgid "SUBSTITUTE"
-msgstr "HELYETTE"
-
-#. n2ye
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153698\n"
-"175\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\">Régi szöveg újra kicserélése egy karakterláncban.</ahelp>"
-
-#. 4*X3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150994\n"
-"176\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. }.Hg
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147582\n"
-"177\n"
-"help.text"
-msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
-msgstr "HELYETTE(\"szöveg\"; \"keresendő_szöveg\"; \"új_szöveg\"; előfordulás)"
-
-#. rZRg
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153675\n"
-"178\n"
-"help.text"
-msgid "<emph>Text</emph> is the text in which text segments are to be exchanged."
-msgstr "A <emph>szöveg</emph> a kicserélni kívánt szövegszegmenseket tartalmazó szöveg."
-
-#. FoY-
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156155\n"
-"179\n"
-"help.text"
-msgid "<emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
-msgstr "A <emph>keresendő_szöveg</emph> (a meghatározott számú alkalommal) kicserélésre kerülő szöveg."
-
-#. ^MY8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3145779\n"
-"180\n"
-"help.text"
-msgid "<emph>NewText</emph> is the text that is to replace the text segment."
-msgstr "Az <emph>új_szöveg</emph> a régi szövegszegmenst felváltó szöveg."
-
-#. i9aA
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150348\n"
-"181\n"
-"help.text"
-msgid "<emph>Occurrence</emph> (optional) indicates which occurrence of the search text is to be replaced. If this parameter is missing the search text is replaced throughout."
-msgstr "Az <emph>előfordulás</emph> (opcionális) meghatározza, hogy a keresett szöveg melyik előfordulása legyen lecserélve. Ha a paraméter nincs megadva, akkor a keresett szöveg valamennyi előfordulása le lesz cserélve."
-
-#. ]|;Z
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150946\n"
-"182\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [e[C
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150412\n"
-"183\n"
-"help.text"
-msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
-msgstr "A <item type=\"input\">=HELYETTE(\"123123123\";\"3\";\"abc\")</item> eredménye 12abc12abc12abc."
-
-#. VNJ5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154915\n"
-"238\n"
-"help.text"
-msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
-msgstr "A <item type=\"input\">=HELYETTE(\"123123123\";\"3\";\"abc\";2)</item> eredménye 12312abc123."
-
-#. ciBJ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3148977\n"
-"help.text"
-msgid "<bookmark_value>T function</bookmark_value>"
-msgstr "<bookmark_value>T függvény</bookmark_value><bookmark_value>K függvény, lásd: T függvény</bookmark_value>"
-
-#. fb=`
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3148977\n"
-"140\n"
-"help.text"
-msgid "T"
-msgstr "T"
-
-#. 6R%}
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154359\n"
-"141\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_T\">A függvény az argumentumként megadott szöveget adja vissza, vagy üres szöveget ad vissza, ha az argumentum nem szöveg.</ahelp>"
-
-#. 20G]
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155858\n"
-"142\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. F3E)
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155871\n"
-"143\n"
-"help.text"
-msgid "T(Value)"
-msgstr "T(érték)"
-
-#. P{vQ
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154726\n"
-"144\n"
-"help.text"
-msgid "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
-msgstr "Ha az <emph>érték</emph> karakterlánc vagy karakterláncra mutató hivatkozás, akkor a T a karakterláncot adja vissza, ellenkező esetben üres karakterláncot ad vissza."
-
-#. mqjr
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3155544\n"
-"145\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. cIl8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151062\n"
-"146\n"
-"help.text"
-msgid "<item type=\"input\">=T(12345)</item> returns an empty string."
-msgstr "A <item type=\"input\">=T(12345)</item> üres karakterláncot adja vissza."
-
-#. nc4Z
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id4650105\n"
-"help.text"
-msgid "<item type=\"input\">=T(\"12345\")</item> returns the string 12345."
-msgstr "A <item type=\"input\">=T(\"12345\")</item> eredménye az 12345 karakterlánc."
-
-#. O|`V
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3147132\n"
-"help.text"
-msgid "<bookmark_value>TEXT function</bookmark_value>"
-msgstr "<bookmark_value>SZÖVEG függvény</bookmark_value><bookmark_value>TEXT függvény, lásd: SZÖVEG függvény</bookmark_value>"
-
-#. xSr$
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3147132\n"
-"158\n"
-"help.text"
-msgid "TEXT"
-msgstr "SZÖVEG"
-
-#. 6EyO
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147213\n"
-"159\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TEXT\">Converts a number into text according to a given format.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TEXT\">Egy számot szöveggé alakít át, a megadott formátum szerint.</ahelp>"
-
-#. \~C]
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153129\n"
-"160\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 0-V3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147377\n"
-"161\n"
-"help.text"
-msgid "TEXT(Number; Format)"
-msgstr "SZÖVEG(szám; formátum)"
-
-#. O;6n
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147389\n"
-"162\n"
-"help.text"
-msgid "<emph>Number</emph> is the numerical value to be converted."
-msgstr "A <emph>szám</emph> a konvertálni kívánt számérték."
-
-#. 9H*B
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156167\n"
-"163\n"
-"help.text"
-msgid "<emph>Format</emph> is the text which defines the format. Use decimal and thousands separators according to the language set in the cell format."
-msgstr "A <emph>formátum</emph> a formátumot meghatározó szöveg. A tizedes-, illetve ezreselválasztókat a cellaformátum nyelvi beállításai szerint használja."
-
-#. pZ4n
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id1243629\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. i4jx
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id9044770\n"
-"help.text"
-msgid "<item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
-msgstr "A <item type=\"input\">=SZÖVEG(12,34567;\"###,##\")</item> eredménye a 12,35 szöveg."
-
-#. lJc_
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3674123\n"
-"help.text"
-msgid "<item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
-msgstr "A <item type=\"input\">=SZÖVEG(12,34567;\"000,00\")</item> eredménye a 012,35 szöveg."
-
-#. GjE+
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3151039\n"
-"help.text"
-msgid "<bookmark_value>TRIM function</bookmark_value>"
-msgstr "<bookmark_value>TRIM függvény</bookmark_value>"
-
-#. =R^!
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3151039\n"
-"54\n"
-"help.text"
-msgid "TRIM"
-msgstr "TRIM"
-
-#. Bn_}
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3157888\n"
-"55\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">Eltávolítja a szóközöket egy karakterláncból, a szavak között csak egy szóköz marad.</ahelp>"
-
-#. vpe=
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152913\n"
-"56\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. `#76
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151349\n"
-"57\n"
-"help.text"
-msgid "TRIM(\"Text\")"
-msgstr "TRIM(\"szöveg\")"
-
-#. FGS9
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151362\n"
-"58\n"
-"help.text"
-msgid "<emph>Text</emph> refers to text in which spaces are removed."
-msgstr "A <emph>szöveg</emph> az a szöveg, amelyből a szóközök eltávolításra kerülnek."
-
-#. =)K4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3146838\n"
-"59\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. a+)4
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156074\n"
-"60\n"
-"help.text"
-msgid "<item type=\"input\">=TRIM(\"hello\")</item> returns hello."
-msgstr "A <item type=\"input\">=TRIM(\"hello\")</item> eredménye hello."
-
-#. -ERu
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id0907200904030935\n"
-"help.text"
-msgid "<bookmark_value>UNICHAR function</bookmark_value>"
-msgstr "<bookmark_value>UNICHAR függvény</bookmark_value>"
-
-#. i\Pc
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id0907200904022525\n"
-"help.text"
-msgid "UNICHAR"
-msgstr "UNICHAR"
-
-#. i0IX
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id0907200904022538\n"
-"help.text"
-msgid "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
-msgstr "<ahelp hid=\".\">Numerikus kód Unicode karakterré vagy betűvé konvertálása.</ahelp>"
-
-#. Sz5~
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id0907200904123753\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 6a~,
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id0907200904123753\n"
-"help.text"
-msgid "UNICHAR(number)"
-msgstr "UNICHAR(szám)"
-
-#. B?3.
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id0907200904123720\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. n9yd
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id090720090412378\n"
-"help.text"
-msgid "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
-msgstr "A =UNICHAR(169) a copyright karaktert <emph>©</emph> adja eredményül."
-
-#. A/)/
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id0907200904033543\n"
-"help.text"
-msgid "<bookmark_value>UNICODE function</bookmark_value>"
-msgstr "<bookmark_value>UNICODE függvény</bookmark_value>"
-
-#. O$VW
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id0907200904022588\n"
-"help.text"
-msgid "UNICODE"
-msgstr "UNICODE"
-
-#. !r`D
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id0907200904022594\n"
-"help.text"
-msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
-msgstr "<ahelp hid=\".\">A karakterlánc első Unicode karakterének numerikus kódját adja vissza.</ahelp>"
-
-#. MR:d
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id0907200904123874\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 4$=d
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id0907200904123846\n"
-"help.text"
-msgid "UNICODE(\"Text\")"
-msgstr "UNICODE(\"szöveg\")"
-
-#. p^/J
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id0907200904123899\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. kmse
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id0907200904123919\n"
-"help.text"
-msgid "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
-msgstr "A =UNICODE(\"©\") a copyright karakter Unicode kódját, a 169-et adja eredményül."
-
-#. C8RY
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3145178\n"
-"help.text"
-msgid "<bookmark_value>UPPER function</bookmark_value>"
-msgstr "<bookmark_value>NAGYBETŰS függvény</bookmark_value><bookmark_value>UPPER függvény, lásd: NAGYBETŰS függvény</bookmark_value>"
-
-#. jJTq
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3145178\n"
-"62\n"
-"help.text"
-msgid "UPPER"
-msgstr "NAGYBETŰS"
-
-#. }D0R
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3162905\n"
-"63\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GROSS\">A szövegmezőben kijelölt <emph>szöveget</emph> nagybetűssé alakítja.</ahelp>"
-
-#. =pmS
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3148526\n"
-"64\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. N8W]
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148539\n"
-"65\n"
-"help.text"
-msgid "UPPER(\"Text\")"
-msgstr "NAGYBETŰS(\"szöveg\")"
-
-#. bsHt
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148496\n"
-"66\n"
-"help.text"
-msgid "<emph>Text</emph> refers to the lower case letters you want to convert to upper case."
-msgstr "A <emph>szöveg</emph> a nagybetűssé konvertálandó kisbetűk sorozata."
-
-#. {MbI
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3148516\n"
-"67\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. +p\/
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3146757\n"
-"68\n"
-"help.text"
-msgid "<item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
-msgstr "Az <item type=\"input\">=NAGYBETŰS(\"Jó reggelt\")</item> eredményül a JÓ REGGELT karakterláncot adja."
-
-#. `o!5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3150802\n"
-"help.text"
-msgid "<bookmark_value>VALUE function</bookmark_value>"
-msgstr "<bookmark_value>ÉRTÉK függvény</bookmark_value><bookmark_value>VALUE függvény, lásd: ÉRTÉK függvény</bookmark_value>"
-
-#. ut\$
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3150802\n"
-"185\n"
-"help.text"
-msgid "VALUE"
-msgstr "ÉRTÉK"
-
-#. @%g2
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3152551\n"
-"186\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WERT\">Egy szöveget számmá alakít.</ahelp>"
-
-#. R/?r
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3152568\n"
-"187\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. fxS-
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153638\n"
-"188\n"
-"help.text"
-msgid "VALUE(\"Text\")"
-msgstr "ÉRTÉK(\"szöveg\")"
-
-#. 4cr7
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153651\n"
-"189\n"
-"help.text"
-msgid "<emph>Text</emph> is the text to be converted to a number."
-msgstr "A <emph>szöveg</emph> a számmá alakítandó szöveg."
-
-#. 47(S
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3144719\n"
-"190\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. _YMR
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3144733\n"
-"191\n"
-"help.text"
-msgid "<item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
-msgstr "A <item type=\"input\">=ÉRTÉK(\"4321\")</item> a 4321 értéket adja vissza."
-
-#. dq#{
-#: 04020000.xhp
-#, fuzzy
-msgctxt ""
-"04020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Cells"
-msgstr "Cellák beszúrása"
-
-#. \,ir
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"bm_id3156023\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; cellák beszúrása</bookmark_value><bookmark_value>cellák; beszúrás</bookmark_value><bookmark_value>beszúrás; cellák</bookmark_value>"
-
-#. _`dO
-#: 04020000.xhp
-#, fuzzy
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3156023\n"
-"1\n"
-"help.text"
-msgid "Insert Cells"
-msgstr "Cellák beszúrása"
-
-#. @h{X
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3150542\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
-msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Megnyitja a <emph>Cellák beszúrása</emph> párbeszédablakot, ahol különböző beállításokkal cellákat szúrhat be.</ahelp></variable> Cellákat a <link href=\"text/scalc/01/02160000.xhp\" name=\"Szerkesztés - Cellák törlése\"><emph>Szerkesztés - Cellák törlése</emph></link> menüparancs segítségével törölhet."
-
-#. *}@=
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3153768\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Kijelölés"
-
-#. HOpb
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3149262\n"
-"4\n"
-"help.text"
-msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
-msgstr "A terület tartalmazza a cellák munkalapba beszúrása során rendelkezésre álló lehetőségeket. A cellák számát, illetve elhelyezkedését az előzőleg a munkalapon kijelölt cellatartomány határozza meg."
-
-#. ,f!C
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3146120\n"
-"5\n"
-"help.text"
-msgid "Shift cells down"
-msgstr "Cellákat lefelé tolja"
-
-#. mFFi
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3152596\n"
-"6\n"
-"help.text"
-msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
-msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Cellák beszúrásakor lefelé mozgatja a kijelölt tartományt.</ahelp></variable>"
-
-#. uILB
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3147434\n"
-"7\n"
-"help.text"
-msgid "Shift cells right"
-msgstr "Cellákat jobbra tolja"
-
-#. vAjt
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3144764\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
-msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Cellák beszúrásakor jobbra mozgatja a kijelölt tartományt.</ahelp></variable>"
-
-#. NF3Z
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3153877\n"
-"9\n"
-"help.text"
-msgid "Entire row"
-msgstr "Egész sort szúr be"
-
-#. gSs-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155417\n"
-"10\n"
-"help.text"
-msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
-msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Egy teljes sort szúr be. A sor helyét a munkalapon található kijelölés határozza meg.</ahelp></variable> A beszúrt sorok száma a kijelölt sorok számától függ. Az eredeti sorok tartalma lefelé tolódik."
-
-#. ]1y@
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3146971\n"
-"11\n"
-"help.text"
-msgid "Entire column"
-msgstr "Egész oszlopot szúr be"
-
-#. QiRQ
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155068\n"
-"12\n"
-"help.text"
-msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
-msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Egy teljes oszlopot szúr be. A beszúrásra kerülő oszlopok számát a kijelölésben található oszlopok száma határozza meg.</ahelp></variable> Az eredeti oszlopok tartalmát jobbra tolja."
-
-#. 3+tx
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rename Sheet"
-msgstr "Munkalap átnevezése"
-
-#. 9)K9
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"bm_id3147336\n"
-"help.text"
-msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
-msgstr "<bookmark_value>munkafüzet-nevek</bookmark_value><bookmark_value>módosítása; munkalapnevek</bookmark_value><bookmark_value>munkalapok; átnevezés</bookmark_value>"
-
-#. K=NL
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"hd_id3147336\n"
-"1\n"
-"help.text"
-msgid "Rename Sheet"
-msgstr "Munkalap átnevezése"
-
-#. 2SCq
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"par_id3150792\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
-msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Ez a parancs megnyit egy párbeszédablakot, ahol az aktuális munkalaphoz hozzárendelhet egy eltérő nevet.</ahelp></variable>"
-
-#. .(6j
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"hd_id3153968\n"
-"3\n"
-"help.text"
-msgid "Name"
-msgstr "Név"
-
-#. W8b~
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"par_id3155131\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Itt adja meg a munkalap új nevét.</ahelp>"
-
-#. e=Ut
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"par_id3153092\n"
-"5\n"
-"help.text"
-msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
-msgstr "A <emph>Munkalap átnevezése</emph> párbeszédablakot a helyi menü segítségével is megnyithatja, ha az egérmutatót az ablak alján található munkalapcímkére viszi, majd <switchinline select=\"sys\"><caseinline select=\"MAC\">a Ctrl billentyű nyomva tartása mellett kattint az egérgombbal</caseinline><defaultinline>kattint a jobb oldali egérgombbal</defaultinline></switchinline>."
-
-#. gH04
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"par_id3147396\n"
-"6\n"
-"help.text"
-msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
-msgstr "Alternatív megoldásként kattintson a munkalapcímkére a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> billentyű lenyomva tartása mellett. Most már közvetlenül módosíthatja a nevet. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
-
-#. :u(!
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Protect Document"
-msgstr "Dokumentum védelme"
-
-#. `87O
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
-msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Dokumentum védelme\">Dokumentum védelme</link>"
-
-#. pa`\
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3153362\n"
-"2\n"
-"help.text"
-msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr "A <emph>Dokumentum védelme</emph> parancs megakadályozza a munkalapcellák és a dokumentum-munkalapok módosítását. Lehetőség van jelszó megadására is. Ha megad egy jelszót, a védelem eltávolításához előbb be kell írnia a helyes jelszót."
-
-#. /Tir
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3147228\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
-msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Munkalapok\">Munkalapok</link>"
-
-#. ?M3*
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3153768\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
-msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Dokumentumok\">Dokumentumok</link>"
-
-#. 2^z6
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_idN10622\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
-
-#. Dq#C
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"tit\n"
-"help.text"
-msgid "Bit Operation Functions"
-msgstr "Bitműveletek függvényei"
-
-#. *,DA
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4149052\n"
-"1\n"
-"help.text"
-msgid "Bit Operation Functions"
-msgstr "Bitműveletek függvényei"
-
-#. m%hp
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"bm_id4150026\n"
-"help.text"
-msgid "<bookmark_value>BITAND function</bookmark_value>"
-msgstr "<bookmark_value>BITAND függvény</bookmark_value>"
-
-#. _NL:
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4150026\n"
-"238\n"
-"help.text"
-msgid "BITAND"
-msgstr "BITAND"
-
-#. :+Ny
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4146942\n"
-"239\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BITAND\">A paraméterek között a bitek szerinti logikai „és” műveletet végzi el.</ahelp>"
-
-#. F8eu
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4150459\n"
-"240\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. mD;l
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4146878\n"
-"241\n"
-"help.text"
-msgid "BITAND(number1; number2)"
-msgstr "BITAND(szám1; szám2)"
-
-#. 0fp.
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4151228\n"
-"242\n"
-"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
-msgstr "A <emph>szám1</emph> és a <emph>szám2</emph> 2⁴⁸-nál (281 474 976 710 656-nál) kisebb pozitív egészek."
-
-#. ;9__
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4148582\n"
-"248\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. %zKb
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4149246\n"
-"250\n"
-"help.text"
-msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
-msgstr "A <item type=\"input\">=BITAND(6;10)</item> eredménye 2 (0110 & 1010 = 0010)."
-
-#. OytN
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"bm_id4146139\n"
-"help.text"
-msgid "<bookmark_value>BITOR function</bookmark_value>"
-msgstr "<bookmark_value>BITOR függvény</bookmark_value>"
-
-#. @zAL
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4146139\n"
-"252\n"
-"help.text"
-msgid "BITOR"
-msgstr "BITOR"
-
-#. KQr9
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4150140\n"
-"253\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BITOR\">A paraméterek között a bitek szerinti logikai „vagy” műveletet végzi el.</ahelp>"
-
-#. ?T)Z
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4149188\n"
-"254\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 3i71
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4148733\n"
-"255\n"
-"help.text"
-msgid "BITOR(number1; number2)"
-msgstr "BITOR(szám1; szám2)"
-
-#. %LW?
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4150864\n"
-"256\n"
-"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
-msgstr "A <emph>szám1</emph> és a <emph>szám2</emph> 2⁴⁸-nál (281 474 976 710 656-nál) kisebb pozitív egészek."
-
-#. 9O3{
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4149884\n"
-"264\n"
-"help.text"
-msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
-msgstr "A <item type=\"input\">=BITOR(6;10)</item> eredménye 14 (0110 | 1010 = 1110)."
-
-#. 6mHI
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"bm_id4150019\n"
-"help.text"
-msgid "<bookmark_value>BITXOR function</bookmark_value>"
-msgstr "<bookmark_value>BITXOR függvény</bookmark_value>"
-
-#. LbFU
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4150019\n"
-"182\n"
-"help.text"
-msgid "BITXOR"
-msgstr "BITXOR"
-
-#. 0aD#
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4145246\n"
-"183\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BITXOR\">A paraméterek között a bitek szerinti logikai „kizáró vagy” műveletet végzi el.</ahelp>"
-
-#. BKgl
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4153047\n"
-"184\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ~@C:
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4157970\n"
-"185\n"
-"help.text"
-msgid "BITXOR(number1; number2)"
-msgstr "BITXOR(szám1; szám2)"
-
-#. d:p*
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4145302\n"
-"186\n"
-"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
-msgstr "A <emph>szám1</emph> és a <emph>szám2</emph> 2⁴⁸-nál (281 474 976 710 656-nál) kisebb pozitív egészek."
-
-#. l2E\
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4150269\n"
-"192\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [GGa
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4149394\n"
-"196\n"
-"help.text"
-msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
-msgstr "A <item type=\"input\">=BITXOR(6;10)</item> eredménye 12 (0110 ^ 1010 = 1100)"
-
-#. m:ms
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"bm_id4155370\n"
-"help.text"
-msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
-msgstr "<bookmark_value>BITLSHIFT függvény</bookmark_value>"
-
-#. U?DH
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4155370\n"
-"266\n"
-"help.text"
-msgid "BITLSHIFT"
-msgstr "BITLSHIFT"
-
-#. uV*-
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4158411\n"
-"267\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BITLSHIFT\">A paraméterként megadott számot bitenként balra tolja a megadott mértékben.</ahelp>"
-
-#. wZ^}
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4155814\n"
-"268\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 95JU
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4147536\n"
-"269\n"
-"help.text"
-msgid "BITLSHIFT(number; shift)"
-msgstr "BITLSHIFT(szám; eltolás)"
-
-#. eU%Q
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4150475\n"
-"270\n"
-"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
-msgstr "A <emph>szám</emph> 2^48-nál (281 474 976 710 656) kisebb pozitív egész."
-
-#. UJaG
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4153921\n"
-"271\n"
-"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
-msgstr "Az <emph>eltolás</emph> az a szám, ahány bittel balra kell tolni az értéket. A negatív eltolás ugyanazt jelenti, mint a pozitív értékkel való jobbra eltolás, azaz BITLSHIFT(szám; eltolás) = BITRSHIFT(szám; -eltolás)."
-
-#. g\Ri
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4153723\n"
-"276\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. FiC{
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4149819\n"
-"278\n"
-"help.text"
-msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
-msgstr "A <item type=\"input\">=BITLSHIFT(6;1)</item> eredménye 12 (0110 << 1 = 1100)."
-
-#. e#W:
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"bm_id4083280\n"
-"help.text"
-msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
-msgstr "<bookmark_value>BITRSHIFT függvény</bookmark_value>"
-
-#. 5\|(
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4083280\n"
-"165\n"
-"help.text"
-msgid "BITRSHIFT"
-msgstr "BITRSHIFT"
-
-#. BJE;
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4152482\n"
-"166\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BITRSHIFT\">A paraméterként megadott számot bitenként jobbra tolja a megadott mértékben.</ahelp>"
-
-#. 6b!Y
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4149713\n"
-"167\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. K@lp
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4145087\n"
-"168\n"
-"help.text"
-msgid "BITRSHIFT(number; shift)"
-msgstr "BITRSHIFT(szám; eltolás)"
-
-#. \3QM
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4149277\n"
-"169\n"
-"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
-msgstr "A <emph>szám</emph> 2^48-nál (281 474 976 710 656) kisebb pozitív egész."
-
-#. ;X0%
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4149270\n"
-"170\n"
-"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
-msgstr "Az <emph>eltolás</emph> az a szám, ahány bittel jobbra kell tolni az értéket. A negatív eltolás ugyanazt jelenti, mint a pozitív értékkel való balra eltolás, azaz BITRSHIFT(szám; eltolás) = BITLSHIFT(szám; -eltolás)."
-
-#. *7-`
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"hd_id4152933\n"
-"175\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. JQL*
-#: 04060120.xhp
-msgctxt ""
-"04060120.xhp\n"
-"par_id4156130\n"
-"179\n"
-"help.text"
-msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
-msgstr "A <item type=\"input\">=BITRSHIFT(6;1)</item> eredménye 3 (0110 >> 1 = 0011)."
-
-#. D9(A
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Protection"
-msgstr "Cellavédelem"
-
-#. VSDg
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3145119\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
-msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cellavédelem\">Cellavédelem</link>"
-
-#. BYk.
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3150398\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Védelmi beállításokat határoz meg a kijelölt cellák számára.</ahelp>"
-
-#. fcqO
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Protection"
-msgstr "Védelem"
-
-#. ;(ss
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3125864\n"
-"9\n"
-"help.text"
-msgid "Hide all"
-msgstr "Teljes tartalom elrejtése"
-
-#. ^]/!
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3153768\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulas and contents of the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Elrejti a kijelölt cellák tartalmát és képleteit.</ahelp>"
-
-#. k~A1
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3153190\n"
-"5\n"
-"help.text"
-msgid "Protected"
-msgstr "Védett"
-
-#. (R`6
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3151119\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">A kijelölt cellákat óvja meg a módosítástól.</ahelp>"
-
-#. /:8$
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3156283\n"
-"15\n"
-"help.text"
-msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
-msgstr "A cellavédelem csak akkor lép érvénybe, ha az aktuális munkalapot is védelem alá helyezi (<emph>Eszközök - Dokumentum védelme - Munkalap</emph>)."
-
-#. B-[D
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3149377\n"
-"7\n"
-"help.text"
-msgid "Hide formula"
-msgstr "Képletek elrejtése"
-
-#. uh~s
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3154510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulas in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Elrejti a kijelölt cellák képleteit.</ahelp>"
-
-#. 3CzL
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3155602\n"
-"11\n"
-"help.text"
-msgid "Print"
-msgstr "Nyomtatás"
-
-#. tL,0
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3153836\n"
-"12\n"
-"help.text"
-msgid "Defines print options for the sheet."
-msgstr "A munkalappal kapcsolatos nyomtatási beállításokat határozza meg."
-
-#. haE:
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3155065\n"
-"13\n"
-"help.text"
-msgid "Hide when printing"
-msgstr "Nem nyomtatható"
-
-#. }*vc
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"par_id3155443\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">A kijelölt cellákat nem engedi nyomtatni.</ahelp>"
-
-#. `CDT
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Format Cells"
-msgstr "Cellák formázása"
-
-#. Y/k5
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3148663\n"
-"help.text"
-msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
-msgstr "<bookmark_value>cellajellemzők</bookmark_value><bookmark_value>jellemzők;cellák</bookmark_value><bookmark_value>formázás;cellák</bookmark_value><bookmark_value>cellák;formázás párbeszédpanel</bookmark_value>"
-
-#. Yyw%
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3148663\n"
-"1\n"
-"help.text"
-msgid "Format Cells"
-msgstr "Cellák formázása"
-
-#. ad/j
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3150448\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
-msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">A kijelölt cellák sokféle formázási beállítását adhatja meg, és további jellemzőket állíthat be.</ahelp></variable>"
-
-#. 5$ru
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Számok\">Számok</link>"
-
-#. ZBK8
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3146119\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Betűkészlet\">Betűkészlet</link>"
-
-#. kh6[
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"tit\n"
-"help.text"
-msgid "WEEKNUM"
-msgstr "WEEKNUM"
-
-#. L+ON
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"bm_id3159161\n"
-"help.text"
-msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
-msgstr "<bookmark_value>WEEKNUM függvény</bookmark_value>"
-
-#. Sk3u
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3159161\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
-msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
-
-#. N9sM
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149770\n"
-"55\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">A WEEKNUM függvény a belső dátumszámhoz tartozó hétszámot számítja ki.</ahelp>"
-
-#. gT_W
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_idN105E4\n"
-"help.text"
-msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
-msgstr "Az ISO 8601 nemzetközi szabványban rögzítetteknek megfelelően a hétfő a hét első napja. Egy egyik évből a másikba átnyúló hét abba az évbe tartozik, amelyben több napja szerepel a hétnek. Ez azt jelenti, hogy bármely év első hete az a hét, amelynek része január 4-e."
-
-#. :?=W
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3153055\n"
-"56\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. q(fB
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147236\n"
-"57\n"
-"help.text"
-msgid "WEEKNUM(Number; Mode)"
-msgstr "WEEKNUM(szám; mód)"
-
-#. CGXO
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147511\n"
-"58\n"
-"help.text"
-msgid "<emph>Number</emph> is the internal date number."
-msgstr "A <emph>szám</emph> egy belső dátumszám."
-
-#. kQ#m
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154269\n"
-"59\n"
-"help.text"
-msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
-msgstr "A <emph>mód</emph> beállítja, hogy melyik legyen a hét első napja, illetve a számítás típusát."
-
-#. JIF$
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3148930\n"
-"60\n"
-"help.text"
-msgid "1 = Sunday"
-msgstr "1 = vasárnap"
-
-#. #1(F
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154280\n"
-"61\n"
-"help.text"
-msgid "2 = Monday"
-msgstr "2 = hétfő"
-
-#. M?dO
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3146948\n"
-"62\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. /rOa
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3150704\n"
-"65\n"
-"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
-msgstr "A =WEEKNUM(\"1995-01-01\";1) eredménye 1."
-
-#. yc;.
-#: func_weeknum.xhp
-msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149792\n"
-"64\n"
-"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
-msgstr "A =WEEKNUM(\"1995-01-01\";2) 52-t ad vissza. Ha a hét hétfővel kezdődik, akkor a vasárnap az előző év utolsó hetéhez fog tartozni."
-
-#. M7;g
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fill Sheet"
-msgstr "Munkalap kitöltése"
-
-#. :Im5
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"hd_id3153897\n"
-"1\n"
-"help.text"
-msgid "Fill Sheet"
-msgstr "Munkalap kitöltése"
-
-#. {\#,
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3150791\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
-msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Megadja a beállításokat a munkalapok, vagy egyes munkalap-tartományok átviteléhez.</ahelp></variable>"
-
-#. p+)f
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3150767\n"
-"3\n"
-"help.text"
-msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
-msgstr "A területek vágólapra helyezésével szemben, itt lehetőség nyílik bizonyos információk szűrésére, illetve értékek számítására. A parancs csak akkor látható, ha a dokumentumban két munkalapot jelölt ki. Több munkalap kijelöléséhez tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> vagy Shift billentyűt, majd kattintson az egyes munkalap-füleken."
-
-#. x,V,
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"hd_id3155131\n"
-"4\n"
-"help.text"
-msgid "Filling a Sheet"
-msgstr "Munkalap kitöltése"
-
-#. $Bw6
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3146119\n"
-"5\n"
-"help.text"
-msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
-msgstr "Kattintson a munkalap bal felső sarkában található szürke dobozra, és jelölje ki a teljes munkafüzetet. Kijelölheti a munkalap másolni kívánt területét is."
-
-#. }VJe
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3153726\n"
-"6\n"
-"help.text"
-msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
-msgstr "Nyomja meg a <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, majd kattintson azon munkalap fülére, ahova a tartalmat be kívánja szúrni."
-
-#. `uBy
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3147436\n"
-"7\n"
-"help.text"
-msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
-msgstr "Válassza a <emph>Szerkesztés - Kitöltés - Munkalap</emph> parancsot. Ha műveleteket értékekkel kíván egyesíteni, akkor a megjelenő párbeszédablakban a <emph>Számok</emph> jelölőnégyzetnek kijelölve kell lennie (vagy <emph>Mindent beilleszt</emph>). Ezen kívül itt nyílik lehetősége a kívánt művelet kiválasztására is."
-
-#. H92h
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3154942\n"
-"8\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Kattintson az <emph>OK</emph> gombra."
-
-#. RGp=
-#: 02140500.xhp
-msgctxt ""
-"02140500.xhp\n"
-"par_id3156283\n"
-"9\n"
-"help.text"
-msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
-msgstr "A párbeszédablak hasonló a <link href=\"text/shared/01/02070000.xhp\" name=\"Tartalom beillesztése\">Tartalom beillesztése</link> párbeszédablakhoz, ahol további tippeket talál."
-
-#. s!KB
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sheet"
-msgstr "Munkalap"
-
-#. WLwg
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"bm_id3150542\n"
-"help.text"
-msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
-msgstr "<bookmark_value>oldalak; sorrend nyomtatáskor</bookmark_value><bookmark_value>nyomtatás; oldalsorrend</bookmark_value>"
-
-#. gkpY
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3156329\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Munkalap\">Munkalap</link>"
-
-#. *cKg
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3151384\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_TABLE\">Meghatározza, hogy az aktuális oldalstílussal rendelkező összes munkalap nyomtatásban melyik elemeket tartalmazza. Ezenkívül beállíthatja a nyomtatási sorrendet, az első oldalszámot, illetve az oldal méretezését.</ahelp>"
-
-#. UnyP
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3150542\n"
-"3\n"
-"help.text"
-msgid "Print"
-msgstr "Nyomtatás"
-
-#. Uj6O
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3125863\n"
-"4\n"
-"help.text"
-msgid "Defines which elements of the spreadsheet are to be printed."
-msgstr "Megadja, hogy a táblázat mely elemei legyenek kinyomtatva."
-
-#. $W}k
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3151041\n"
-"5\n"
-"help.text"
-msgid "Column and row headers"
-msgstr "Oszlop- és sorfejlécek"
-
-#. +z[B
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3147228\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Megadja, hogy a sor- és oszlopfejlécek kinyomtatásra kerüljenek-e.</ahelp>"
-
-#. HE3;
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3150439\n"
-"7\n"
-"help.text"
-msgid "Grid"
-msgstr "Rács"
-
-#. ZxQZ
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3147436\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Az egyes cellák szegélyét rácsként nyomtatja.</ahelp> A képernyőn megjelenő nézethez válassza ki a megfelelő beállításokat az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Nézet\"><emph>Nézet</emph></link> - <emph>Rácsvonalak</emph> pontban."
-
-#. -^2b
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3145750\n"
-"9\n"
-"help.text"
-msgid "Comments"
-msgstr "Megjegyzések"
-
-#. _0mz
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Kinyomtatja a munkafüzetben definiált megjegyzéseket.</ahelp> Külön oldalakon lesznek kinyomtatva a megfelelő cellahivatkozással."
-
-#. cG,2
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3154944\n"
-"11\n"
-"help.text"
-msgid "Objects/graphics"
-msgstr "Objektumok/képek"
-
-#. !)wQ
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3149581\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Minden objektumot (ha nyomtatható) és képet megjelenít a nyomtatott dokumentumon.</ahelp>"
-
-#. Rb,g
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3149377\n"
-"13\n"
-"help.text"
-msgid "Charts"
-msgstr "Diagramok"
-
-#. _%*b
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3148455\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">A munkafüzetbe beszúrt diagramokat nyomtatja.</ahelp>"
-
-#. mIUG
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3153418\n"
-"15\n"
-"help.text"
-msgid "Drawing Objects"
-msgstr "Rajzobjektumok"
-
-#. %I-=
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3149122\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Minden rajzobjektumot belevesz a kinyomtatott dokumentumba.</ahelp>"
-
-#. F./^
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3150330\n"
-"17\n"
-"help.text"
-msgid "Formulas"
-msgstr "Képletek"
-
-#. R094
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3153715\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">A cellákban lévő képleteket nyomtatja, nem pedig azok eredményeit.</ahelp>"
-
-#. M?$b
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3156385\n"
-"19\n"
-"help.text"
-msgid "Zero Values"
-msgstr "Zérus értékek"
-
-#. 4GVa
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3149258\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Megadja, hogy a zérus értékű cellák nyomtatásra kerüljenek-e.</ahelp>"
-
-#. b6?J
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3154022\n"
-"21\n"
-"help.text"
-msgid "Page Order"
-msgstr "Oldalak sorrendje"
-
-#. m+cn
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3166423\n"
-"22\n"
-"help.text"
-msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
-msgstr "Meghatározza, hogy az adatok milyen sorrendben kerüljenek nyomtatásra és számozásra, ha nem férnek rá egy kinyomtatott oldalra."
-
-#. KECF
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3152580\n"
-"23\n"
-"help.text"
-msgid "Top to bottom, then right"
-msgstr "Fentről lefelé, majd jobbra"
-
-#. FgI3
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3150205\n"
-"24\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Függőlegesen nyomtat a bal oszloptól a munkalap aljáig.</ahelp>"
-
-#. =ch(
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3150786\n"
-"25\n"
-"help.text"
-msgid "Left to right, then down"
-msgstr "Balról jobbra, majd le"
-
-#. 8HT\
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3154657\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Vízszintesen nyomtat a munkalap felső sorától a jobb oszlopig.</ahelp>"
-
-#. vXN1
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3150887\n"
-"27\n"
-"help.text"
-msgid "First page number"
-msgstr "Oldalszámozás kezdete"
-
-#. UL.Y
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3155378\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Akkor válassza ezt a lehetőséget, ha az oldalszámozást nem 1-gyel szeretné kezdeni.</ahelp>"
-
-#. q,3:
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3145389\n"
-"35\n"
-"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Enter the number of the first page.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Írja be a kezdő oldal számát.</ahelp>"
-
-#. }OlG
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3146978\n"
-"29\n"
-"help.text"
-msgid "Scale"
-msgstr "Méretezés"
-
-#. iVAo
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3149408\n"
-"30\n"
-"help.text"
-msgid "Defines a page scale for the printed spreadsheet."
-msgstr "Meghatározza a nyomtatott táblázat oldalarányait."
-
-#. qZ!L
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN1096D\n"
-"help.text"
-msgid "Scaling mode"
-msgstr "Méretezés módja"
-
-#. s^8P
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN10971\n"
-"help.text"
-msgid "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
-msgstr "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Válasszon egy méretezésmódot a listapanelből. A megfelelő vezérlőelemek megjelennek a listapanel oldalán.</ahelp>"
-
-#. !6~*
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3155089\n"
-"31\n"
-"help.text"
-msgid "Reduce/enlarge printout"
-msgstr "Nyomtatási kép nagyítása/kicsinyítése"
-
-#. +Iq8
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3159171\n"
-"32\n"
-"help.text"
-msgid "Specifies a scaling factor to scale all printed pages."
-msgstr "Meghatároz egy aránytényezőt a nyomtatott oldalak átméretezéséhez."
-
-#. Ruq3
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN1099A\n"
-"help.text"
-msgid "Scaling factor"
-msgstr "Méretezési faktor"
-
-#. #hog
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3152899\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
-msgstr "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Adjon meg egy aránytényezőt. A 100-nál kisebb tényezők lecsökkentik, a nagyobb tényezők felnagyítják az oldalakat.</ahelp>"
-
-#. Jg(d
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109B2\n"
-"help.text"
-msgid "Fit print range(s) to width/height"
-msgstr "Nyomtatási tartományok illesztése a szélességhez/magassághoz"
-
-#. HgYC
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109B5\n"
-"help.text"
-msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
-msgstr "Megadja az oldalak maximális vízszintes számát (szélesség) és függőleges számát (magasság), amelyre minden, az aktuális oldalformátummal rendelkező lap nyomtatásra kerüljön."
-
-#. d,E#
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109BB\n"
-"help.text"
-msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
-msgstr "A nyomtatási tartományok mindig arányosan lesznek méretezve, így a végén még a megadottnál is kevesebb oldal lehet."
-
-#. P)BD
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109BF\n"
-"help.text"
-msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
-msgstr "Törölheti az egyik jelölőnégyzetet, így a nem megadott méret mindig annyi oldalt fog felhasználni, amennyire szükség van."
-
-#. cb,w
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109C3\n"
-"help.text"
-msgid "If you clear both boxes, this will result in a scaling factor of 100%."
-msgstr "Ha törli a jelölőnégyzeteket, akkor a méretezési faktor 100% lesz."
-
-#. qnN=
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109CE\n"
-"help.text"
-msgid "Width in pages"
-msgstr "Szélesség oldalakban"
-
-#. %Dhs
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109D1\n"
-"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
-msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Adja meg a vízszintesen nyomtatható oldalak legnagyobb megengedett számát.</ahelp>"
-
-#. q6`0
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109E8\n"
-"help.text"
-msgid "Height in pages"
-msgstr "Magasság oldalakban"
-
-#. 9eRR
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN109EB\n"
-"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
-msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Adja meg a függőlegesen nyomtatható oldalak legnagyobb megengedett számát.</ahelp>"
-
-#. Yp~5
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"hd_id3148868\n"
-"33\n"
-"help.text"
-msgid "Fit print range(s) on number of pages"
-msgstr "Nyomtatási tartományok illesztése az oldalak számához"
-
-#. |d5_
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3145074\n"
-"34\n"
-"help.text"
-msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
-msgstr "Megadja azt a maximális oldalszámot, amelyre minden, az aktuális oldalformátummal rendelkező lap nyomtatásra kerüljön. A dokumentum méretaránya szükség szerint csökkentésre kerül, hogy ráférjen a megadott oldalszámra."
-
-#. pM[J
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_idN10A26\n"
-"help.text"
-msgid "Number of pages"
-msgstr "Oldalak száma"
-
-#. qFCu
-#: 05070500.xhp
-msgctxt ""
-"05070500.xhp\n"
-"par_id3144507\n"
-"37\n"
-"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Adja meg a nyomtatható oldalak legnagyobb megengedett számát.</ahelp>"
-
-#. 7+qS
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"tit\n"
-"help.text"
-msgid "WEEKNUM_ADD"
-msgstr "WEEKNUM_ADD"
-
-#. TA!C
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"bm_id3166443\n"
-"help.text"
-msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
-msgstr "<bookmark_value>WEEKNUM_ADD függvény</bookmark_value>"
-
-#. {/cy
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3166443\n"
-"222\n"
-"help.text"
-msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
-msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
-
-#. oO+C
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3152945\n"
-"223\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">Az eredmény egy dátum naptári hetének a számát jelzi.</ahelp>"
-
-#. fN.X
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_idN105DD\n"
-"help.text"
-msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
-msgstr "A WEEKNUM_ADD függvény pontosan úgy számítja a hetek sorszámát, ahogy azt a Microsoft Excel teszi. Használja a <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> függvényt, vagy formázza a dátumot a WW formátumkóddal, ha az ISO 8601-es szabványnak megfelelő hétszámokat akar."
-
-#. T,0/
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3153745\n"
-"224\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. voDR
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3153685\n"
-"225\n"
-"help.text"
-msgid "WEEKNUM_ADD(Date; ReturnType)"
-msgstr "WEEKNUM_ADD(dátum; típus)"
-
-#. K5uz
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3159277\n"
-"226\n"
-"help.text"
-msgid "<emph>Date</emph> is the date within the calendar week."
-msgstr "A <emph>dátum</emph> a naptári héten belül levő dátuma."
-
-#. SIJI
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3154098\n"
-"227\n"
-"help.text"
-msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
-msgstr "A <emph>típus</emph> 1, ha a hét vasárnappal kezdődik és 2, ha a hét hétfővel kezdődik."
-
-#. q\6%
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3152886\n"
-"228\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. l*Fy
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149973\n"
-"229\n"
-"help.text"
-msgid "In which week number does 12.24.2001 fall?"
-msgstr "Melyik hétre esik 2001. december 24-e?"
-
-#. 4Sed
-#: func_weeknumadd.xhp
-msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149914\n"
-"230\n"
-"help.text"
-msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
-msgstr "A <item type=\"input\">=WEEKNUM_ADD(2001-12-24;1)</item> függvény az 52 értéket adja vissza."
-
-#. R/1.
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"tit\n"
-"help.text"
-msgid "MONTH"
-msgstr "HÓNAP"
-
-#. ^F.#
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"bm_id3149936\n"
-"help.text"
-msgid "<bookmark_value>MONTH function</bookmark_value>"
-msgstr "<bookmark_value>HÓNAP függvény</bookmark_value><bookmark_value>MONTH függvény, lásd: HÓNAP függvény</bookmark_value>"
-
-#. rPCQ
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"hd_id3149936\n"
-"76\n"
-"help.text"
-msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
-msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">HÓNAP</link></variable>"
-
-#. rmY?
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"par_id3153538\n"
-"77\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
-msgstr "<ahelp hid=\"HID_FUNC_MONAT\">Kiszámítja a megadott dátum hónapját.</ahelp> A hónapot 1 és 12 közé eső egész számként adja vissza."
-
-#. OqXD
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"hd_id3149517\n"
-"78\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7Woa
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"par_id3145602\n"
-"79\n"
-"help.text"
-msgid "MONTH(Number)"
-msgstr "HÓNAP(szám)"
-
-#. H`oO
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"par_id3149485\n"
-"80\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
-msgstr "A <emph>szám</emph> időértékként egy tizedesszám, amelyre vonatkozóan a hónap sorszámát meg kívánja kapni."
-
-#. RbcL
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"hd_id3153322\n"
-"81\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. )e;b
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"par_id3149244\n"
-"83\n"
-"help.text"
-msgid "=MONTH(NOW()) returns the current month."
-msgstr "A =HÓNAP(MOST()) visszaadja az aktuális hónapot."
-
-#. iMK0
-#: func_month.xhp
-msgctxt ""
-"func_month.xhp\n"
-"par_id3154790\n"
-"84\n"
-"help.text"
-msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
-msgstr "A =HÓNAP(C4) eredménye 7, ha a C4 cellába a 2007-07-07 értéket írta be (miután megnyomta az Enter billentyűt, a dátum más formátumot nyerhet)."
-
-#. ,d?A
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"tit\n"
-"help.text"
-msgid "Solver"
-msgstr "Megoldó"
-
-#. ]h-3
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"bm_id7654652\n"
-"help.text"
-msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
-msgstr "<bookmark_value>célértékkeresés;megoldó</bookmark_value><bookmark_value>„mi lenne, ha” művelet;megoldó</bookmark_value><bookmark_value>visszalépéses keresés</bookmark_value><bookmark_value>megoldó</bookmark_value>"
-
-#. `78g
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"hd_id9216284\n"
-"help.text"
-msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
-msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Megoldó</link></variable>"
-
-#. *j7V
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id9210486\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
-msgstr "<ahelp hid=\".\">Megnyitja a Megoldó párbeszédablakot. A megoldó a célértékkereső módszer használatával lehetővé teszi több ismeretlenes egyenletek megoldását.</ahelp>"
-
-#. R;PH
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id8538773\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a célcellát, vagy kattintson a célcella hivatkozására. Ez a mező veszi fel a cella címét, amelynek értékét optimalizálni kell.</ahelp>"
-
-#. 2j[/
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id7564012\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megpróbálja megoldani az egyenletet a célcella maximális értékére.</ahelp>"
-
-#. LVMN
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id1186254\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megpróbálja megoldani az egyenletet a célcella minimális értékére.</ahelp>"
-
-#. )Dq:
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id7432477\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megpróbálja megoldani az egyenletet a célcella egy adott értékének megközelítésével.</ahelp>"
-
-#. ;@rz
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id7141026\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be az értéket vagy a cellahivatkozást.</ahelp>"
-
-#. BmPb
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id8531449\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be azt a cellatartomány, amely módosítható.</ahelp>"
-
-#. 0)\|
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id9183935\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írjon be egy cellahivatkozást.</ahelp>"
-
-#. @\1;
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id946684\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">A listából válasszon operátort.</ahelp>"
-
-#. ?G4a
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id9607226\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írjon be egy értéket vagy egy cellahivatkozást.</ahelp>"
-
-#. i*1\
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id1939451\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">A párbeszédablakot kattintással lekicsinyítheti vagy visszaállíthatja. A munkalapon a cellákra rákattinthat vagy kijelölheti azokat. A beviteli mezőbe kézzel is beírhat cellahivatkozást.</ahelp>"
-
-#. nv0%
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id9038972\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintással törölheti a sort a listából. A sor alatt lévő sorok feljebb ugranak.</ahelp>"
-
-#. Fkbn
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id2423780\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyitja a Beállítások párbeszédablakot.</ahelp>"
-
-#. h(Ak
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id2569658\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintással az aktuális beállításokkal megoldja az egyenletet. A párbeszédablak beállításai megmaradnak, amíg be nem zárja az aktuális dokumentumot.</ahelp>"
-
-#. P,B)
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id5474410\n"
-"help.text"
-msgid "To solve equations with the solver"
-msgstr "Az egyenlet megoldása a megoldóval"
-
-#. .2_{
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id2216559\n"
-"help.text"
-msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
-msgstr "A megoldás folyamatának a célja az egyenlet azon változó értékeinek megkeresése, amelyek a <emph>célcellában</emph> optimális eredményt adnak. Kiválasztható, hogy a célcellában az érték maximális, minimális vagy egy adott értéket megközelítő legyen."
-
-#. ?E[*
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id7869502\n"
-"help.text"
-msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
-msgstr "A program a kezdő változóértékeket beilleszti abba a téglalap alakú cellatartományba, amelyek a <emph>Cellák módosításával</emph> mezőben vannak megadva."
-
-#. Tji#
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id9852900\n"
-"help.text"
-msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
-msgstr "Meghatározhat egy sor korlátozó feltételt is, amelyek korlátozásokat állítanak be egyes cellákra. Például beállíthat olyan korlátozást, amely szerint valamelyik változónak vagy cellának nagyobbnak kell lennie egy másiknál, vagy nagyobbnak egy adott értéknél. Olyan korlátozást is beállíthat, amely szerint egy vagy több változónak egész számnak (tizedesek nélküli érték) vagy bináris értéknek kell lennie (ahol csak 0 és 1 engedélyezett)."
-
-#. TpcE
-#: solver.xhp
-msgctxt ""
-"solver.xhp\n"
-"par_id5323953\n"
-"help.text"
-msgid "The default solver engine supports only linear equations."
-msgstr "Az alapértelmezett megoldóprogram csak a lineáris egyenleteket támogatja."
-
-#. :@zQ
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Define Database Range"
-msgstr "Adatbázis-tartomány megadása"
-
-#. 9YYy
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"hd_id3157909\n"
-"1\n"
-"help.text"
-msgid "Define Database Range"
-msgstr "Adatbázis-tartomány megadása"
-
-#. EeK_
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"par_id3155922\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
-msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Adatbázis-tartományt hoz létre a munkalapon kiválasztott cellatartomány alapján.</ahelp></variable>"
-
-#. [5)C
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"par_id3149456\n"
-"5\n"
-"help.text"
-msgid "You can only select a rectangular cell range."
-msgstr "Csak egy négyszögletű cellatartományt jelölhet ki."
-
-#. $?-(
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"hd_id3156422\n"
-"3\n"
-"help.text"
-msgid "Name"
-msgstr "Név"
-
-#. -zRD
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"par_id3150770\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Írja be a meghatározandó adatbázis-tartomány nevét, vagy válasszon ki egy már létezőt a listából.</ahelp>"
-
-#. BeyV
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"hd_id3147228\n"
-"6\n"
-"help.text"
-msgid "Range"
-msgstr "Tartomány"
-
-#. @H~#
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"par_id3150441\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Megjeleníti a kijelölt cellatartományt.</ahelp>"
-
-#. \n5G
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"hd_id3153188\n"
-"10\n"
-"help.text"
-msgid "Add/Modify"
-msgstr "Hozzáadás/Módosítás"
-
-#. ~`j/
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"par_id3153726\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">A kijelölt cellatartományt hozzáadja az adatbázistartomány-listához, vagy egy meglévő adatbázis-tartományt módosít.</ahelp>"
-
-#. q|]p
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"hd_id3150010\n"
-"12\n"
-"help.text"
-msgid "More >>"
-msgstr "Részletek >>"
-
-#. MGG[
-#: 12010000.xhp
-msgctxt ""
-"12010000.xhp\n"
-"par_id3153144\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">További <link href=\"text/scalc/01/12010100.xhp\" name=\"beállításokat\">beállításokat</link> jelenít meg.</ahelp>"
-
-#. etMa
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "1st, 2nd, 3rd Group"
-msgstr "Első, második, harmadik csoport"
-
-#. doZR
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"hd_id3149784\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
-msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"Első, második, harmadik csoport\">Első, második, harmadik csoport</link>"
-
-#. y-sy
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Adja meg maximum három részösszegcsoport beállításait. Az egyes lapok elrendezése megegyezik.</ahelp>"
-
-#. r32y
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3148797\n"
-"3\n"
-"help.text"
-msgid "To insert subtotal values into a table:"
-msgstr "Részösszegek táblázatba való beszúrásához:"
-
-#. A.@f
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3154908\n"
-"13\n"
-"help.text"
-msgid "Ensure that the columns of the table have labels."
-msgstr "Győződjön meg arról, hogy a táblázat oszlopai rendelkeznek címkével."
-
-#. R%/}
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3153968\n"
-"4\n"
-"help.text"
-msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
-msgstr "Válassza ki azt a táblázatot vagy táblázatterületet, amelyre vonatkozóan a részösszegeket ki kívánja számítani, majd válassza az <emph>Adatok - Részösszegek</emph> lehetőséget."
-
-#. 5~XT
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3161831\n"
-"5\n"
-"help.text"
-msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
-msgstr "A <emph>Csoportosítási szempont</emph> listából jelölje ki azt az oszlopot, amelyhez a részösszegeket hozzá kívánja adni."
-
-#. 4jam
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3153188\n"
-"6\n"
-"help.text"
-msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
-msgstr "A <emph>Részösszegek számítása ehhez:</emph> mezőben jelölje ki a részösszeg-számítás értékeit tartalmazó oszlopok jelölőnégyzeteit."
-
-#. 0:RQ
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3152460\n"
-"14\n"
-"help.text"
-msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
-msgstr "A <emph>Függvény használata</emph> mezőben válassza ki a részösszegek számítása során használni kívánt függvényt."
-
-#. EcTu
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3154321\n"
-"15\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Kattintson az <emph>OK</emph> gombra."
-
-#. )jJA
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"hd_id3156441\n"
-"7\n"
-"help.text"
-msgid "Group by"
-msgstr "Csoportosítási szempont"
-
-#. 5f3C
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3154013\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Válassza ki a részösszegszámító eljárással ellenőrizni kívánt oszlopot. Ha a kijelölt oszlop tartalma megváltozik, a program automatikusan újraszámolja a részösszegeket.</ahelp>"
-
-#. %ENN
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"hd_id3154943\n"
-"9\n"
-"help.text"
-msgid "Calculate subtotals for"
-msgstr "Részösszegek számítása ehhez:"
-
-#. c[3T
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3147125\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Jelölje ki azokat az oszlopokat, amelyek a részösszegszámításhoz használni kívánt értékeket tartalmazzák.</ahelp>"
-
-#. 9m-8
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"hd_id3156283\n"
-"11\n"
-"help.text"
-msgid "Use function"
-msgstr "Függvény használata"
-
-#. Q(c\
-#: 12050100.xhp
-msgctxt ""
-"12050100.xhp\n"
-"par_id3145647\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Válassza ki a részösszeg kiszámításakor használni kívánt matematikai függvényt.</ahelp>"
-
-#. \Tj^
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Create Scenario"
-msgstr "Eset létrehozása"
-
-#. pip?
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3156023\n"
-"1\n"
-"help.text"
-msgid "Create Scenario"
-msgstr "Eset létrehozása"
-
-#. PiFK
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3150541\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
-msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">A kijelölt munkalapterülethez esetet hoz létre.</ahelp></variable>"
-
-#. qZ7c
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_idN10637\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
-
-#. =TYk
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
-"help.text"
-msgid "Name of scenario"
-msgstr "Eset neve"
-
-#. 4L?u
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3151041\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Az eset nevét adja meg. Válasszon egyszerű és egyedi nevet, így később gyorsan meg tudja majd találni az esetet.</ahelp> Ezenkívül esetnevet is módosíthat a Navigátorban a <emph>Tulajdonságok</emph> helyimenü-parancs segítségével."
-
-#. 286E
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3153954\n"
-"14\n"
-"help.text"
-msgid "Comment"
-msgstr "Megjegyzés"
-
-#. ?C60
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3155411\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">További információkat ad meg az esettel kapcsolatban. Ezek az információk a <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigátorban\">Navigátorban</link> jelennek meg, amikor az <emph>Esetek</emph> ikonra kattint, és kiválaszt egy esetet.</ahelp> Ezeket az információkat a Navigátorban is módosíthatja a helyi menü <emph>Tulajdonságok</emph> pontjában."
-
-#. 8XM2
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3145273\n"
-"16\n"
-"help.text"
-msgid "Settings"
-msgstr "Beállítások"
-
-#. e4*^
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3153364\n"
-"17\n"
-"help.text"
-msgid "This section is used to define some of the settings used in the scenario display."
-msgstr "Ebben a szakaszban adhatja meg az eset megjelenítésére vonatkozó beállítás némelyikét."
-
-#. H1kG
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3145367\n"
-"18\n"
-"help.text"
-msgid "Display border"
-msgstr "Szegély megjelenítése"
-
-#. ix$6
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3151073\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Az esetet szegéllyel emeli ki a táblázatban. A szegély színe a jelen beállítástól jobbra eső mezőben van megadva.</ahelp> A szegély rendelkezni fog egy címmezővel, amely a legutóbbi eset nevét tartalmazza. Az eset szegélyének jobb oldalán lévő gomb áttekintést nyújt a területen lévő összes esetről, amennyiben többet határozott meg. Bármelyik esetet kiválaszthatja a listából megszorítás nélkül."
-
-#. we.O
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3149582\n"
-"20\n"
-"help.text"
-msgid "Copy back"
-msgstr "Visszamásolás"
-
-#. |=1*
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3154942\n"
-"21\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">A módosított cellák értékeit átmásolja az aktív esetbe. Ha nem választja ki ezt a lehetőséget, az eset nem módosul a cellaértékek módosításakor. A <emph>Visszamásolás</emph> beállítás a cella- és a munkalapvédelemtől, valamint a <emph>Változások megakadályozása</emph> beállítástól függ.</ahelp>"
-
-#. k`*c
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id3149402\n"
-"22\n"
-"help.text"
-msgid "Copy entire sheet"
-msgstr "Teljes munkalap másolása"
-
-#. rFGc
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_id3146969\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Az egész munkalapot további eseti munkalapba másolja. </ahelp>"
-
-#. _,8K
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_idN1075A\n"
-"help.text"
-msgid "Prevent changes"
-msgstr "Változások megakadályozása"
-
-#. 3+03
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_idN1075E\n"
-"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Megakadályozza az aktív eset módosítását. A <emph>Visszamásolás</emph> beállítás a cella- és a munkalapvédelemtől, valamint a <emph>Változások megakadályozása</emph> beállítástól függ.</ahelp>"
-
-#. ?_7y
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_idN10778\n"
-"help.text"
-msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
-msgstr "Csak az esettulajdonságokat tudja módosítani, ha a <emph>Változások megakadályozása</emph> beállítás nincs kiválasztva, és ha a munkalap nem védett."
-
-#. mcT.
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_idN10780\n"
-"help.text"
-msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
-msgstr "Csak a cellaértékeket tudja módosítani, ha a <emph>Változások megakadályozása</emph> beállítás ki van választva, ha a <emph>Visszamásolás</emph> lehetőség nincs kiválasztva, és ha a cellák nem védettek."
-
-#. fV,L
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"par_idN1078C\n"
-"help.text"
-msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
-msgstr "Csak az eset cellaértékeit tudja módosítani, és vissza tudja írni azokat az esetbe, ha a <emph>Változások megakadályozása</emph> beállítás nincs kiválasztva, ha a <emph>Visszamásolás</emph> lehetőség ki van választva, és ha a cellák nem védettek."
-
-#. D#JY
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data Field Options"
-msgstr "Adatmező beállításai"
-
-#. J%-S
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"bm_id711386\n"
-"help.text"
-msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
-msgstr "<bookmark_value>elrejtés; adatmezők, számítás elől a kimutatástáblában</bookmark_value><bookmark_value>megjelenítési beállítások a kimutatástáblában</bookmark_value><bookmark_value>rendezés;beállítások a kimutatástáblában</bookmark_value><bookmark_value>adatmező-beállítások a kimutatástáblában</bookmark_value>"
-
-#. KoKQ
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "Data Field Options"
-msgstr "Adatmező beállításai"
-
-#. T54D
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
-msgstr "További beállításokat adhat meg az oszlop-, sor- és oldal-adatmezők számára a <link href=\"text/scalc/01/12090105.xhp\">kimutatástáblában</link>."
-
-#. S-wo
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10557\n"
-"help.text"
-msgid "Sort by"
-msgstr "Rendezési szempont"
-
-#. $Ir$
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr "<ahelp hid=\"1495387653\">Válassza ki az adatmezőt, amely alapján rendezni kívánja az oszlopokat vagy a sorokat.</ahelp>"
-
-#. M]dP
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Ascending"
-msgstr "Növekvő"
-
-#. `S+d
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384580\">Az értékeket növekvő sorrendben rendezi. Ha a kijelölt mező az, amelyhez a párbeszédablak megnyílt, az elemek név szerint lesznek sorrendbe állítva. Ha egy adatmezőt választott ki, az elemek a kijelölt adatmező eredményértéke alapján lesznek sorba állítva.</ahelp>"
-
-#. )~,C
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Descending"
-msgstr "Csökkenő"
-
-#. 5OJt
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384581\">Az értékeket csökkenő sorrendben rendezi. Ha a kijelölt mező az, amelyhez a párbeszédablak megnyílt, az elemek név szerint lesznek sorrendbe állítva. Ha egy adatmezőt választott ki, az elemek a kijelölt adatmező eredményértéke alapján lesznek sorba állítva.</ahelp>"
-
-#. 0Pto
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Manual"
-msgstr "Kézi"
-
-#. k^(2
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
-msgstr "<ahelp hid=\"1495384582\">Az értékeket betűrend szerint rendezi.</ahelp>"
-
-#. Zrkp
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "Display options"
-msgstr "Megjelenítési beállítások"
-
-#. Jlqj
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10589\n"
-"help.text"
-msgid "You can specify the display options for all row fields except for the last, innermost row field."
-msgstr "Mindegyik sor megjelenítési beállítását megadhatja, kivéve az utolsó, legbelsőbb sormezőét."
-
-#. 5jO^
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "Layout"
-msgstr "Elrendezés"
-
-#. |i]f
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr "<ahelp hid=\"1495387654\">Válassza ki a mező elrendezésmódját a listapanelből.</ahelp>"
-
-#. r[Br
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10593\n"
-"help.text"
-msgid "Empty line after each item"
-msgstr "Üres sor minden elem után"
-
-#. z\`*
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"1495385090\">Egy üres sort ad a kimutatástábla minden elemének adata után.</ahelp>"
-
-#. T/J5
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN1059A\n"
-"help.text"
-msgid "Show automatically"
-msgstr "Automatikus megjelenítés"
-
-#. Dv+J
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN1059E\n"
-"help.text"
-msgid "Displays the top or bottom nn items when you sort by a specified field."
-msgstr "Megjeleníti a felső vagy alsó nn elemet, amikor egy adott mező alapján rendez."
-
-#. 3RnW
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105A1\n"
-"help.text"
-msgid "Show"
-msgstr "Megjelenítés"
-
-#. `t:p
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105A5\n"
-"help.text"
-msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
-msgstr "<ahelp hid=\"1495385091\">Bekapcsolja az automatikus megjelenítést.</ahelp>"
-
-#. 70?;
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105A8\n"
-"help.text"
-msgid "items"
-msgstr "elemek"
-
-#. ZDF:
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105AC\n"
-"help.text"
-msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr "<ahelp hid=\"1495390209\">Adja meg az automatikusan megjeleníteni kívánt elemek maximális számát.</ahelp>"
-
-#. |@\i
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105AF\n"
-"help.text"
-msgid "From"
-msgstr "Honnan"
-
-#. \@U)
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105B3\n"
-"help.text"
-msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr "<ahelp hid=\"1495387655\">Megjeleníti a felső vagy az alsó elemeket a megadott rendezési sorrendben.</ahelp>"
-
-#. 4,UH
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105B6\n"
-"help.text"
-msgid "Using field"
-msgstr "Mező használatával"
-
-#. `H:p
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105BA\n"
-"help.text"
-msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr "<ahelp hid=\"1495387656\">Válassza ki az adatmezőt, amely alapján rendezni kívánja az adatokat.</ahelp>"
-
-#. ~+Ap
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105BD\n"
-"help.text"
-msgid "Hide items"
-msgstr "Elemek elrejtése"
-
-#. IF;b
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr "<ahelp hid=\"59010\">Jelölje ki a számítások elől elrejteni kívánt elemeket.</ahelp>"
-
-#. q^m4
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105C4\n"
-"help.text"
-msgid "Hierarchy"
-msgstr "Hierarchia"
-
-#. !C;O
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_idN105C8\n"
-"help.text"
-msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
-msgstr "<ahelp hid=\"1495387657\">Válassza ki a használni kívánt hierarchiát. A kimutatástáblának olyan külső adatforráson kell alapulnia, amely adathierarchiákat tartalmaz.</ahelp>"
-
-#. V9.g
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Recalculate"
-msgstr "Újraszámolás"
-
-#. ]4Z3
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"bm_id3157909\n"
-"help.text"
-msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
-msgstr "<bookmark_value>újraszámolás; munkalapok minden képlete</bookmark_value><bookmark_value>képletek; újraszámolás kézzel</bookmark_value><bookmark_value>cellatartalmak; újraszámolás</bookmark_value><bookmark_value>képletek újraszámolás kézzel</bookmark_value>"
-
-#. vFL,
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"hd_id3157909\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
-msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Újraszámolás\">Újraszámolás</link>"
-
-#. M.i\
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3154758\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
-msgstr "<ahelp hid=\".uno:Calculate\">Minden megváltozott képletet újraszámol. Ha az Automatikus számítás engedélyezve van, akkor az Újraszámolás parancs csak az olyan képletekre hat, mint például VÉL és a MOST.</ahelp>"
-
-#. RE7~
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id315475899\n"
-"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
-msgstr "Nyomja meg az F9 billentyűt az újraszámításhoz. Nyomja meg a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 billentyűkombinációt a dokumentum összes képletének újraszámításához."
-
-#. 9K#^
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"5\n"
-"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
-msgstr "A dokumentum újraszámolása után a képernyő frissülni fog. Az összes diagram is frissülni fog."
-
-#. !R.j
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id315475855\n"
-"help.text"
-msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
-msgstr "A kiegészítőkből származó függvények, például a RANDBETWEEN, jelenleg nem reagálnak az Újraszámítás parancsra vagy az F9-re. Nyomja meg a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 billentyűkombinációt az összes képlet, beleértve a kiegészítőkből származó függvényeket tartalmazó képletek újraszámításához."
-
-#. U`ms
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sheet"
-msgstr "Munkalap"
-
-#. ^;%N
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"bm_id1245460\n"
-"help.text"
-msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>CTL;jobbról balra írt munkalap</bookmark_value><bookmark_value>munkalapok;jobbról balra</bookmark_value><bookmark_value>jobbról balra írt szöveg;munkafüzetek</bookmark_value>"
-
-#. 7Ym`
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3155923\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Munkalap\">Munkalap</link>"
-
-#. QJL9
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_id3154758\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
-msgstr "<ahelp hid=\".\">Beállítja a munkalapnevet, és elrejti vagy megjeleníti a kijelölt munkalapokat.</ahelp>"
-
-#. ,C)n
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
-msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Átnevezés</link>"
-
-#. !eL3
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3145787\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Megjelenítés\">Megjelenítés</link>"
-
-#. 9Ix0
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_id3150542\n"
-"5\n"
-"help.text"
-msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
-msgstr "Ha vannak elrejtett munkalapok, akkor megnyílik a Munkalap megjelenítése párbeszédablak, amelyben kijelölheti az ismételten megjeleníteni kívánt munkalapot."
-
-#. QdN[
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "Right-To-Left"
-msgstr "Jobbról balra"
-
-#. mdTP
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_idN1065A\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".uno:SheetRightToLeft\">Az aktuális munkalap tájolását Jobbról balra értékre állítja, ha a <link href=\"text/shared/optionen/01150300.xhp\">komplex szövegelrendezés (CTL)</link> támogatása engedélyezve van.</ahelp>"
-
-#. i*Z.
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide"
-msgstr "Elrejtés"
-
-#. ?mU@
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"bm_id3147265\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; függvények elrejtése</bookmark_value><bookmark_value>elrejtés; sorok</bookmark_value><bookmark_value>elrejtés; oszlopok</bookmark_value><bookmark_value>elrejtés; munkalapok</bookmark_value><bookmark_value>munkalapok;elrejtés</bookmark_value><bookmark_value>oszlopok;elrejtés</bookmark_value><bookmark_value>sorok;elrejtés</bookmark_value>"
-
-#. 0hX4
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3147265\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
-msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Elrejtés\">Elrejtés</link>"
-
-#. E}8c
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id3156281\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
-msgstr "<ahelp hid=\".uno:Hide\">Elrejti a kijelölt sorokat, oszlopokat vagy önálló munkalapokat.</ahelp>"
-
-#. ~3lo
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id3148645\n"
-"3\n"
-"help.text"
-msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
-msgstr "Jelölje ki az elrejteni kívánt sorokat vagy oszlopokat, majd válassza a <emph>Formátum - Sor - Elrejtés</emph> vagy a <emph>Formátum - Oszlop - Elrejtés</emph> lehetőséget."
-
-#. Om#:
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id3147427\n"
-"6\n"
-"help.text"
-msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
-msgstr "Egy munkalap elrejtéséhez jelölje ki a munkalapfület, majd válassza a <emph>Formátum - Munkalap - Elrejtés</emph> lehetőséget. Az elrejtett munkalapok nem kerülnek nyomtatásra, kivéve ha egy <link href=\"text/scalc/01/05080000.xhp\" name=\"nyomtatási tartomány\">nyomtatási tartomány</link> részét képezik."
-
-#. DnVV
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id3153157\n"
-"5\n"
-"help.text"
-msgid "A break in the row or column header indicates whether the row or column is hidden."
-msgstr "A sor vagy oszlop fejlécében előforduló törés jelzi, hogy a sor rejtett vagy látható."
-
-#. tQD:
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id3145251\n"
-"4\n"
-"help.text"
-msgid "To display hidden rows, columns or sheets"
-msgstr "A rejtett sorok, oszlopok vagy munkalapok megjelenítése"
-
-#. R[3S
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id8337046\n"
-"help.text"
-msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
-msgstr "Jelölje ki a rejtett objektumokat tartalmazó tartományt. Az 1. sor felett és az A oszlop mellett lévő mezőt is használhatja. Munkalapok esetén ez a lépés nem szükséges."
-
-#. aYJa
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"par_id5532090\n"
-"help.text"
-msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr "Válassza a <link href=\"text/scalc/01/05030400.xhp\" name=\"Formátum - Sor/Oszlop - Megjelenítés\">Formátum - Sor/Oszlop - Megjelenítés</link> vagy a <link href=\"text/scalc/01/05050300.xhp\" name=\"Formátum - Munkalap - Megjelenítés\">Formátum - Munkalap - Megjelenítés</link> lehetőséget."
-
-#. WT`/
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Data Source"
-msgstr "Adatforrás kiválasztása"
-
-#. :Tr^
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"hd_id3143268\n"
-"1\n"
-"help.text"
-msgid "Select Data Source"
-msgstr "Adatforrás kiválasztása"
-
-#. KGms
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"par_id3148552\n"
-"2\n"
-"help.text"
-msgid "Select the database and the table or query containing the data that you want to use."
-msgstr "Válassza ki a használni kívánt adatbázist és az adatot tartalmazó táblázatot vagy lekérdezést."
-
-#. U0uK
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Kijelölés"
-
-#. l^PM
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"par_id3125863\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
-msgstr "<ahelp hid=\".\">Csak olyan adatbázisokat választhat ki, amelyek regisztrálva vannak a %PRODUCTNAME programban.</ahelp> Egy adatforrás regisztrálásához válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Base - Adatbázisok</emph> lehetőséget."
-
-#. nz*1
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"hd_id3151041\n"
-"5\n"
-"help.text"
-msgid "Database"
-msgstr "Adatbázis"
-
-#. 3:n=
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Válassza ki azt az adatbázist, amely a felhasználandó adatforrást tartalmazza.</ahelp>"
-
-#. QXa6
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"hd_id3145364\n"
-"7\n"
-"help.text"
-msgid "Data source"
-msgstr "Adatforrás"
-
-#. K78U
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"par_id3149260\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Válassza ki a használni kívánt adatforrást.</ahelp>"
-
-#. s!m)
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"hd_id3147428\n"
-"9\n"
-"help.text"
-msgid "Type"
-msgstr "Típus"
-
-#. P?is
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Kattintson a kiválasztott adatforrásnak megfelelő forrástípusra.</ahelp> Négy forrástípus közül választhat: „Munkalap”, „Lekérdezés”, „SQL” vagy „SQL [natív]”."
-
-#. mp38
-#: 12090101.xhp
-msgctxt ""
-"12090101.xhp\n"
-"par_id3147348\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Kimutatástábla párbeszédablak\">Kimutatástábla párbeszédablak</link>"
-
-#. /:_#
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sheet"
-msgstr "Munkalap"
-
-#. lC+n
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"hd_id3146794\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Munkalap\">Munkalap</link>"
-
-#. lHEA
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
-msgstr "<ahelp hid=\".\">Teljes munkalapot szerkesztő parancsok.</ahelp>"
-
-#. PGkH
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"hd_id3150792\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
-msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Áthelyezés/másolás\">Áthelyezés/másolás</link>"
-
-#. j3-/
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"hd_id3153968\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
-msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Kiválasztás\">Kiválasztás</link>"
-
-#. MJ+6
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"hd_id3163708\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Törlés\">Törlés</link>"
-
-#. IHt3
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"hd_id3163733308\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Események\">Események</link>"
-
-#. %lpd
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoInput"
-msgstr "Automatikus bevitel"
-
-#. Hd+\
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"bm_id2486037\n"
-"help.text"
-msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
-msgstr "<bookmark_value>bejegyzések bevitele az Automatikus bevitel funkcióval</bookmark_value><bookmark_value>nagybetűk;Automatikus bevitel funkció</bookmark_value>"
-
-#. 3%N6
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"hd_id3148492\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Automatikus bevitel\">Automatikus bevitel</link>"
-
-#. \;Iu
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3150793\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
-msgstr "<ahelp hid=\".uno:AutoComplete\">Az Automatikus bevitel funkciót kapcsolja ki vagy be. Ez a funkció bevitel közben automatikusan kiegészíti az elemeket a korábban ebbe az oszlopba bevitt elemek alapján.</ahelp> Az oszlopban legfeljebb 2000 cellára vagy 200 különböző karakterláncra keres rá."
-
-#. JOc*
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3156422\n"
-"8\n"
-"help.text"
-msgid "The completion text is highlighted."
-msgstr "A kiegészítésszöveg kiemelésre kerül."
-
-#. V7G2
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_idN1065D\n"
-"help.text"
-msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
-msgstr "A kiegészítés elfogadásához nyomja meg az <item type=\"keycode\">Enter</item> vagy az egyik kurzorbillentyűt."
-
-#. LA/L
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_idN10665\n"
-"help.text"
-msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
-msgstr "Szöveg hozzáfűzéséhez vagy a kiegészítés szerkesztéséhez nyomja meg az <item type=\"keycode\">F2</item> billentyűt."
-
-#. ;St#
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_idN1066D\n"
-"help.text"
-msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
-msgstr "A további kiegészítések megtekintéséhez nyomja meg a <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> billentyűt, ha előre kíván görgetni, illetve a <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> billentyűket, ha visszafelé akar görgetni."
-
-#. +fa0
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_idN10679\n"
-"help.text"
-msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
-msgstr "Az aktuális oszlop összes elérhető automatikusbevitelelem-listájának megtekintéséhez nyomja meg az <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Lefelé nyíl</item> billentyűkombinációt>."
-
-#. *aAP
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3150439\n"
-"3\n"
-"help.text"
-msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
-msgstr "Amikor az előző bejegyzésekkel egyező karakterek felhasználásával ír be képleteket, egy súgótippben megjelenik a legutóbb használt tíz függvény a <emph>Függvénytündérből</emph>, az összes megadott tartománynévből, az összes adatbázis-tartományból és az összes címketartomány-tartalomból."
-
-#. TMeK
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153363\n"
-"5\n"
-"help.text"
-msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
-msgstr "Az Automatikus bevitel megkülönbözteti a kis- és nagybetűket. Ha például egy cellába az „Összesen” karakterláncot írta be, akkor ugyanazon oszlop másik cellájában nem adhatja meg az „összesen” karakterláncot az Automatikus adatbevitel előzetes leállítása nélkül."
-
-#. rCso
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hyphenation"
-msgstr "Elválasztás"
-
-#. =p6D
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"bm_id3159399\n"
-"help.text"
-msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>automatikus elválasztás munkafüzetekben</bookmark_value><bookmark_value>elválasztás;munkafüzetekben</bookmark_value><bookmark_value>szótagok munkafüzetekben</bookmark_value>"
-
-#. :OMz
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"hd_id3159399\n"
-"1\n"
-"help.text"
-msgid "Hyphenation"
-msgstr "Elválasztás"
-
-#. ,-{a
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
-msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">Az <emph>Elválasztás</emph> parancs hatására megnyílik a $[officename] Calc elválasztási beállításait szabályozó párbeszédablak.</ahelp></variable>"
-
-#. kW03
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3154366\n"
-"3\n"
-"help.text"
-msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
-msgstr "A $[officename] Calc elválasztási szolgáltatását csak akkor kapcsolhatja be, amikor a <link href=\"text/shared/01/05340300.xhp\" name=\"sortörés\">sortörés</link> funkció aktív."
-
-#. #(}d
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"hd_id3153192\n"
-"4\n"
-"help.text"
-msgid "Hyphenation for selected cells."
-msgstr "Elválasztás a kijelölt cellákban"
-
-#. #q3j
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3150868\n"
-"5\n"
-"help.text"
-msgid "Select the cells for which you want to change the hyphenation."
-msgstr "Jelölje ki azokat a cellákat, amelyekben módosítani szeretné az elválasztást."
-
-#. 9.t2
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3150440\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
-msgstr "Válassza az <emph>Eszközök - Nyelv - Elválasztás</emph> menüparancsot."
-
-#. QF$I
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3156441\n"
-"7\n"
-"help.text"
-msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
-msgstr "Megjelenik a <emph>Cellák formázása</emph> párbeszédablak <emph>Igazítás</emph> oldala."
-
-#. DNTm
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3149260\n"
-"12\n"
-"help.text"
-msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
-msgstr "Jelölje be az <emph>Automatikus szövegtördelés</emph> és az <emph>Elválasztás aktív</emph> jelölőnégyzeteket."
-
-#. lP[t
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"hd_id3153094\n"
-"8\n"
-"help.text"
-msgid "Hyphenation for Drawing Objects"
-msgstr "Elválasztás rajzobjektumokban"
-
-#. Qr{l
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3148577\n"
-"9\n"
-"help.text"
-msgid "Select a drawing object."
-msgstr "Válasszon ki egy rajzobjektumot."
-
-#. 4(T$
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3156285\n"
-"10\n"
-"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
-msgstr "Válassza az <emph>Eszközök - Nyelv - Elválasztás</emph> menüparancsot."
-
-#. CQJp
-#: 06020000.xhp
-msgctxt ""
-"06020000.xhp\n"
-"par_id3147394\n"
-"11\n"
-"help.text"
-msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
-msgstr "Mindig, amikor meghívja a parancsot, a rajzobjektum számára az elválasztást ki vagy bekapcsolja. Egy pipa mutatja az aktuális állapotot."
-
-#. l{Ff
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"tit\n"
-"help.text"
-msgid "Financial Functions Part Two"
-msgstr "Pénzügyi függvények - második rész"
-
-#. X/#a
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149052\n"
-"1\n"
-"help.text"
-msgid "Financial Functions Part Two"
-msgstr "Pénzügyi függvények - második rész"
-
-#. g%8B
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148742\n"
-"343\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Vissza a pénzügyi függvények első részéhez\">Vissza a pénzügyi függvények első részéhez</link>"
-
-#. .x3k
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151341\n"
-"344\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
-msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Pénzügyi függvények - harmadik rész\">Pénzügyi függvények - harmadik rész</link>"
-
-#. /0*P
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3150026\n"
-"help.text"
-msgid "<bookmark_value>PPMT function</bookmark_value>"
-msgstr "<bookmark_value>PRÉSZLET függvény</bookmark_value><bookmark_value>PPMT függvény, lásd: PRÉSZLET függvény</bookmark_value>"
-
-#. ;@Mr
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150026\n"
-"238\n"
-"help.text"
-msgid "PPMT"
-msgstr "PRÉSZLET"
-
-#. 5Z),
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146942\n"
-"239\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KAPZ\">Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KAPZ\">Egy hiteltörlesztésen belül a tőketörlesztés nagyságát számítja ki egy adott időszakra, adott nagyságú állandó törlesztőrészletek és állandó kamatláb mellett.</ahelp>"
-
-#. x`g6
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150459\n"
-"240\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. PuUp
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146878\n"
-"241\n"
-"help.text"
-msgid "PPMT(Rate; Period; NPer; PV; FV; Type)"
-msgstr "PRÉSZLET(kamatláb; időszak; időszakok_száma; jelenérték; jövőérték; típus)"
-
-#. X%aw
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151228\n"
-"242\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. 2AkM
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148887\n"
-"243\n"
-"help.text"
-msgid "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
-msgstr "Az <emph>időszak</emph> az amortizációs időszak. Az időszak=1 az első, illetve az időszak=időszakok_száma az utolsó időszak esetében."
-
-#. i@#P
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148436\n"
-"244\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
-msgstr "Az <emph>időszakok_száma</emph> a kifizetési időszakok összesített száma, ahol járadék fizetése történik."
-
-#. qt./
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153035\n"
-"245\n"
-"help.text"
-msgid "<emph>PV</emph> is the present value in the sequence of payments."
-msgstr "A <emph>jelenérték</emph> a kifizetési folyamat során az aktuális érték."
-
-#. WrVv
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147474\n"
-"246\n"
-"help.text"
-msgid "<emph>FV</emph> (optional) is the desired (future) value."
-msgstr "A <emph>jövőérték</emph> (opcionális) a kívánt (jövőbeli) érték."
-
-#. ej1|
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3144744\n"
-"247\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) defines the due date. F = 1 for payment at the beginning of a period and F = 0 for payment at the end of a period."
-msgstr "A <emph>típus</emph> (opcionális) meghatározza az esedékesség dátumát. A típus 1 az időszak elején esedékes fizetések, illetve 0 az időszak végén esedékes fizetések esetén."
-
-#. g!6C
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_idN1067C\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. 9UhL
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3148582\n"
-"248\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [}d$
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154811\n"
-"249\n"
-"help.text"
-msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units."
-msgstr "Milyen magas az időszakos havi törlesztőrészlet, ha az éves kamatláb 8,75% egy 3 éves időszak alatt? A pénzérték 5000 pénzegység, amely az időszak elején kerül befizetésre. A jövőérték 8000 pénzegység."
-
-#. l:ko
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149246\n"
-"250\n"
-"help.text"
-msgid "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
-msgstr "A <item type=\"input\">=PRÉSZLET(8,75%/12;1;36;5000;8000;1)</item> = -350,99 pénzegység."
-
-#. 4\Ye
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3146139\n"
-"help.text"
-msgid "<bookmark_value>calculating; total amortizement rates</bookmark_value><bookmark_value>total amortizement rates</bookmark_value><bookmark_value>amortization installment</bookmark_value><bookmark_value>repayment installment</bookmark_value><bookmark_value>CUMPRINC function</bookmark_value>"
-msgstr "<bookmark_value>számítás; teljes amortizációs ráták</bookmark_value><bookmark_value>teljes amortizációs ráták</bookmark_value><bookmark_value>amortizációs részlet</bookmark_value><bookmark_value>törlesztőrészlet</bookmark_value><bookmark_value>CUMPRINC függvény</bookmark_value>"
-
-#. %N9L
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3146139\n"
-"252\n"
-"help.text"
-msgid "CUMPRINC"
-msgstr "CUMPRINC"
-
-#. m2S@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150140\n"
-"253\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Returns the cumulative interest paid for an investment period with a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Kiszámítja egy befektetés összes kamatrészét egy adott időszakra, állandó kamatszint mellett.</ahelp>"
-
-#. fH[k
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149188\n"
-"254\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. dhjI
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148733\n"
-"255\n"
-"help.text"
-msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
-msgstr "CUMPRINC(kamatláb; időszakok_száma; jelenérték; kezdő_időszak; utolsó_időszak; típus)"
-
-#. AR/R
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150864\n"
-"256\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. C;My
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3166052\n"
-"257\n"
-"help.text"
-msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
-msgstr "Az <emph>időszakok_száma</emph> a kifizetési időszak és az időszakok száma összesen. Az időszakok száma lehet nem egész érték is."
-
-#. uY:l
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150007\n"
-"258\n"
-"help.text"
-msgid "<emph>PV</emph> is the current value in the sequence of payments."
-msgstr "A <emph>jelenérték</emph> a kifizetési folyamat során az aktuális érték."
-
-#. 2[Kk
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153112\n"
-"259\n"
-"help.text"
-msgid "<emph>S</emph> is the first period."
-msgstr "A <emph>kezdő_időszak</emph> az első időszak."
-
-#. /BWy
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146847\n"
-"260\n"
-"help.text"
-msgid "<emph>E</emph> is the last period."
-msgstr "Az <emph>utolsó_időszak</emph> az utolsó időszak."
-
-#. Phfj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145167\n"
-"261\n"
-"help.text"
-msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
-msgstr "A <emph>típus</emph> a kifizetés esedékességének dátuma minden egyes időszak elején vagy végén."
-
-#. cD,O
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154502\n"
-"262\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. I!W.
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153570\n"
-"263\n"
-"help.text"
-msgid "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period."
-msgstr "Milyen összegű kifizetésekre kerül sor akkor, ha az éves kamatláb 5,5% 36 hónapon keresztül? A készpénzérték 15000 pénzegység. A kifizetési összegek a 10-18. időszak között kerülnek kiszámításra. Az esedékesség az időszak vége."
-
-#. Myj%
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149884\n"
-"264\n"
-"help.text"
-msgid "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 currency units. The payoff amount between the 10th and 18th period is 3669.74 currency units."
-msgstr "A <item type=\"input\">=CUMPRINC(5,5%/12;36;15000;10;18;0)</item> = -3669,74 pénzegység. A kifizetési összeg a 10–18. időszak között 3669,74 pénzegység."
-
-#. E#6R
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3150019\n"
-"help.text"
-msgid "<bookmark_value>CUMPRINC_ADD function</bookmark_value>"
-msgstr "<bookmark_value>CUMPRINC_ADD függvény</bookmark_value>"
-
-#. \-nP
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150019\n"
-"182\n"
-"help.text"
-msgid "CUMPRINC_ADD"
-msgstr "CUMPRINC_ADD"
-
-#. UouU
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145246\n"
-"183\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Kiszámítja egy kölcsön egy időszakra eső halmozott törlesztési értékét.</ahelp>"
-
-#. iOea
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153047\n"
-"184\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. PIQN
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3157970\n"
-"185\n"
-"help.text"
-msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
-msgstr "CUMPRINC_ADD(kamatláb; időszakok_száma; jelenérték; kezdő_időszak; utolsó_időszak; típus)"
-
-#. x*TI
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145302\n"
-"186\n"
-"help.text"
-msgid "<emph>Rate</emph> is the interest rate for each period."
-msgstr "A <emph>kamatláb</emph> az összes időszakra vonatkozó kamatláb."
-
-#. ,8f.
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151017\n"
-"187\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
-msgstr "Az <emph>időszakok_száma</emph> a fizetési időszakok összes száma. A kamatlábnak, illetve az időszakok számának ugyanazon egységre kell vonatkoznia, tehát mindkettőt havi vagy éves szinten kell kiszámítani."
-
-#. }IH`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155620\n"
-"188\n"
-"help.text"
-msgid "<emph>PV</emph> is the current value."
-msgstr "A <emph>jelenérték</emph> az aktuális érték."
-
-#. Ij52
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145352\n"
-"189\n"
-"help.text"
-msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
-msgstr "A <emph>kezdő_időszak</emph> a számítás során az első kifizetési időszak."
-
-#. gNjP
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3157986\n"
-"190\n"
-"help.text"
-msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
-msgstr "Az <emph>utolsó_időszak</emph> a számítás során az utolsó kifizetési időszak."
-
-#. 02Q8
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150570\n"
-"191\n"
-"help.text"
-msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
-msgstr "A <emph>típus</emph> azt adja meg, hogy a kifizetés az időszakok elején (típus = 0) vagy a végén (típus = 1) történik-e."
-
-#. J\%-
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150269\n"
-"192\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. RmOJ
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148774\n"
-"193\n"
-"help.text"
-msgid "The following mortgage loan is taken out on a house:"
-msgstr "A következő jelzálogkölcsönt kapja egy házra:"
-
-#. i4Ui
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150661\n"
-"194\n"
-"help.text"
-msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units."
-msgstr "Kamat: 9,00 százalék évenként (9% / 12 = 0,0075), időtartam: 30 év (kifizetési időszakok = 30 * 12 = 360), nettó jelenérték: 125000 pénzegység."
-
-#. +*$;
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155512\n"
-"195\n"
-"help.text"
-msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
-msgstr "Mennyit fizet vissza a jelzálogkölcsön második évében (tehát a 13. és 24. időszak között)?"
-
-#. /cr(
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149394\n"
-"196\n"
-"help.text"
-msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
-msgstr "A <item type=\"input\">=CUMPRINC_ADD(0,0075;360;125000;13;24;0)</item> képlet eredménye -934,1071."
-
-#. cx5C
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149026\n"
-"197\n"
-"help.text"
-msgid "In the first month you will be repaying the following amount:"
-msgstr "Az első hónapban a következő összeget fizeti ki:"
-
-#. b|b9
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154636\n"
-"198\n"
-"help.text"
-msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
-msgstr "A <item type=\"input\">=CUMPRINC_ADD(0,0075;360;125000;1;1;0)</item> képlet eredménye -68,27827."
-
-#. [EuL
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3155370\n"
-"help.text"
-msgid "<bookmark_value>calculating; accumulated interests</bookmark_value><bookmark_value>accumulated interests</bookmark_value><bookmark_value>CUMIPMT function</bookmark_value>"
-msgstr "<bookmark_value>számítás; felhalmozott kamat</bookmark_value><bookmark_value>felhalmozott kamat</bookmark_value><bookmark_value>CUMIPMT függvény</bookmark_value>"
-
-#. 2D?F
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155370\n"
-"266\n"
-"help.text"
-msgid "CUMIPMT"
-msgstr "CUMIPMT"
-
-#. GG^M
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3158411\n"
-"267\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calculates the cumulative interest payments, that is, the total interest, for an investment based on a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Egy állandó kamatlábra alapozott befektetés halmozott kamatkifizetéseit (vagyis a teljes kamatát) számítja ki.</ahelp>"
-
-#. E@Na
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155814\n"
-"268\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. f.dE
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147536\n"
-"269\n"
-"help.text"
-msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
-msgstr "CUMIPMT(kamatláb; időszakok_száma; jelenérték; kezdő_időszak; utolsó_időszak; típus)"
-
-#. OAS7
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150475\n"
-"270\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. @Uc]
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153921\n"
-"271\n"
-"help.text"
-msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
-msgstr "Az <emph>időszakok_száma</emph> a kifizetési időszak és az időszakok száma összesen. Az időszakok száma lehet nem egész érték is."
-
-#. .=Oi
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153186\n"
-"272\n"
-"help.text"
-msgid "<emph>PV</emph> is the current value in the sequence of payments."
-msgstr "A <emph>jelenérték</emph> a kifizetési folyamat során az aktuális érték."
-
-#. zc[I
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156259\n"
-"273\n"
-"help.text"
-msgid "<emph>S</emph> is the first period."
-msgstr "A <emph>kezdő_időszak</emph> az első időszak."
-
-#. c,`X
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155990\n"
-"274\n"
-"help.text"
-msgid "<emph>E</emph> is the last period."
-msgstr "Az <emph>utolsó_időszak</emph> az utolsó időszak."
-
-#. \HJZ
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149777\n"
-"275\n"
-"help.text"
-msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
-msgstr "A <emph>típus</emph> a kifizetés esedékességének dátuma minden egyes időszak elején vagy végén."
-
-#. l!r=
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153723\n"
-"276\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. XsRh
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147478\n"
-"277\n"
-"help.text"
-msgid "What are the interest payments at a yearly interest rate of 5.5 %, a payment period of monthly payments for 2 years and a current cash value of 5,000 currency units? The start period is the 4th and the end period is the 6th period. The payment is due at the beginning of each period."
-msgstr "Milyen magasak a kamatkifizetések 5,5 %-os éves kamat, 2 éven keresztül tartó havi kifizetések, illetve 5000 pénzegység értékű jelenlegi készpénzérték esetén? Az első időszak a negyedik, az utolsó pedig a hatodik időszak. A fizetés az egyes időszakok elején esedékes."
-
-#. 5X2P
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149819\n"
-"278\n"
-"help.text"
-msgid "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 currency units. The interest payments for between the 4th and 6th period are 57.54 currency units."
-msgstr "A <item type=\"input\">=CUMIPMT(5,5%/12;24;5000;4;6;1)</item> = -57,54 pénzegység. A negyedik és hatodik időszakok között esedékes kamatfizetések összege 57,54 pénzegység."
-
-#. z%y{
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3083280\n"
-"help.text"
-msgid "<bookmark_value>CUMIPMT_ADD function</bookmark_value>"
-msgstr "<bookmark_value>CUMIPMT_ADD függvény</bookmark_value>"
-
-#. COEd
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3083280\n"
-"165\n"
-"help.text"
-msgid "CUMIPMT_ADD"
-msgstr "CUMIPMT_ADD"
-
-#. f}UD
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3152482\n"
-"166\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Az időszakra vonatkozó felhalmozott kamatot számolja ki.</ahelp>"
-
-#. _2Xd
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149713\n"
-"167\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. /H*R
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145087\n"
-"168\n"
-"help.text"
-msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
-msgstr "CUMIPMT_ADD(kamatláb; időszakok_száma; jelenérték; kezdő_időszak; utolsó_időszak; típus)"
-
-#. X|lX
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149277\n"
-"169\n"
-"help.text"
-msgid "<emph>Rate</emph> is the interest rate for each period."
-msgstr "A <emph>kamatláb</emph> az összes időszakra vonatkozó kamatláb."
-
-#. 9m..
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149270\n"
-"170\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
-msgstr "Az <emph>időszakok_száma</emph> a fizetési időszakok összes száma. A kamatlábnak, illetve az időszakok számának ugyanazon egységre kell vonatkoznia, tehát mindkettőt havi vagy éves szinten szükséges kiszámítani."
-
-#. hU7x
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3152967\n"
-"171\n"
-"help.text"
-msgid "<emph>PV</emph> is the current value."
-msgstr "A <emph>jelenérték</emph> az aktuális érték."
-
-#. TshJ
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156308\n"
-"172\n"
-"help.text"
-msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
-msgstr "A <emph>kezdő_időszak</emph> a számítás során az első kifizetési időszak."
-
-#. R}fF
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149453\n"
-"173\n"
-"help.text"
-msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
-msgstr "Az <emph>utolsó_időszak</emph> a számítás során az utolsó kifizetési időszak."
-
-#. `YI$
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150962\n"
-"174\n"
-"help.text"
-msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
-msgstr "A <emph>típus</emph> azt adja meg, hogy a kifizetés az időszakok elején (típus = 0) vagy a végén (típus = 1) történik-e."
-
-#. NQ?#
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3152933\n"
-"175\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. VKz.
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156324\n"
-"176\n"
-"help.text"
-msgid "The following mortgage loan is taken out on a house:"
-msgstr "A következő jelzálogkölcsönt kapja egy házra:"
-
-#. %OC!
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147566\n"
-"177\n"
-"help.text"
-msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units."
-msgstr "Kamat: 9,00 százalék évenként (9% / 12 = 0,0075), időtartam: 30 év (kifizetési időszakok = 30 * 12 = 360), jövőérték: 125000 pénzegység."
-
-#. r(/:
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151272\n"
-"178\n"
-"help.text"
-msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
-msgstr "Mennyit kamatot fizet a jelzálogkölcsön második évében (tehát a 13. és 24. időszak között)?"
-
-#. 3d:r
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156130\n"
-"179\n"
-"help.text"
-msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
-msgstr "A <item type=\"input\">=CUMIPMT_ADD(0,0075;360;125000;13;24;0)</item> képlet eredménye -11135,23."
-
-#. BjnD
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150764\n"
-"180\n"
-"help.text"
-msgid "How much interest must you pay in the first month?"
-msgstr "Mennyi kamatot fizet az első hónapban?"
-
-#. ]9mD
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146857\n"
-"181\n"
-"help.text"
-msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
-msgstr "A <item type=\"input\">=CUMIPMT_ADD(0,0075;360;125000;1;1;0)</item> képlet eredménye -937,50."
-
-#. 9Z?1
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3150878\n"
-"help.text"
-msgid "<bookmark_value>PRICE function</bookmark_value><bookmark_value>prices; fixed interest securities</bookmark_value><bookmark_value>sales values;fixed interest securities</bookmark_value>"
-msgstr "<bookmark_value>PRICE függvény</bookmark_value><bookmark_value>árak; rögzített kamatozású értékpapírok</bookmark_value><bookmark_value>eladási érték;rögzített kamatozású értékpapírok</bookmark_value>"
-
-#. ;7.d
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150878\n"
-"9\n"
-"help.text"
-msgid "PRICE"
-msgstr "PRICE"
-
-#. mPz*
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153210\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calculates the market value of a fixed interest security with a par value of 100 currency units as a function of the forecast yield.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Kiszámítja egy rögzített kamatozású értékpapír piaci értékét 100 pénzegység névértékével, mint egy előre jelzett hozam függvénye.</ahelp>"
-
-#. *vR`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154646\n"
-"11\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. U6Q;
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3152804\n"
-"12\n"
-"help.text"
-msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "PRICE(kifizetés; esedékesség; kamatláb; hozam; visszaváltás; gyakoriság; alap)"
-
-#. -S?x
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156121\n"
-"13\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. X!6$
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149983\n"
-"14\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. @]{!
-#: 04060119.xhp
-#, fuzzy
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153755\n"
-"15\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
-msgstr "A <emph>kamatláb</emph> az évi nominális kamatláb (szelvény kamatlába)."
-
-#. fh#U
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155999\n"
-"16\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "A <emph>hozam</emph> az értékpapír éves hozama."
-
-#. tVL#
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156114\n"
-"17\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. OrO,
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155846\n"
-"18\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. Zpo6
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153148\n"
-"19\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. NOmC
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150260\n"
-"20\n"
-"help.text"
-msgid "A security is purchased on 1999-02-15; the maturity date is 2007-11-15. The nominal rate of interest is 5.75%. The yield is 6.5%. The redemption value is 100 currency units. Interest is paid half-yearly (frequency is 2). With calculation on basis 0, the price is as follows:"
-msgstr "Egy értékpapírt 1999. február 15-én vásárol, az esedékesség dátuma 2007. november 15-e. A névleges kamatláb 5,75%. A hozam 6,5%. A visszaváltási érték 100 pénzegység. A kamat félévente kerül kifizetésre (a gyakoriság 2). Az alap 0 melletti számítás mellett az ár:"
-
-#. Xg~l
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147273\n"
-"21\n"
-"help.text"
-msgid "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
-msgstr "A =PRICE(\"1999-2-15\"; \"2007-11-15\"; 0,0575; 0,065; 100; 2; 0) eredményül 95,04287-et ad."
-
-#. .6T_
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3151297\n"
-"help.text"
-msgid "<bookmark_value>PRICEDISC function</bookmark_value><bookmark_value>prices;non-interest-bearing securities</bookmark_value><bookmark_value>sales values;non-interest-bearing securities</bookmark_value>"
-msgstr "<bookmark_value>PRICEDISC függvény</bookmark_value><bookmark_value>árak;nem kamatozó értékpapírok</bookmark_value><bookmark_value>érték;nem kamatozó értékpapírok</bookmark_value>"
-
-#. S1%x
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3151297\n"
-"22\n"
-"help.text"
-msgid "PRICEDISC"
-msgstr "PRICEDISC"
-
-#. W=gj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155100\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calculates the price per 100 currency units of par value of a non-interest- bearing security.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Egy nem kamatozó értékpapír 100 pénzegységre eső árát számítja ki.</ahelp>"
-
-#. N2-v
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149294\n"
-"24\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. o-LQ
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146084\n"
-"25\n"
-"help.text"
-msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
-msgstr "PRICEDISC(kifizetés; esedékesség; leszámítolás; visszaváltás; alap)"
-
-#. aW8.
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3159179\n"
-"26\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. -mL-
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154304\n"
-"27\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. azmS
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156014\n"
-"28\n"
-"help.text"
-msgid "<emph>Discount</emph> is the discount of a security as a percentage."
-msgstr "A <emph>leszámítolás</emph> egy értékpapír leárazása százalékban megadva."
-
-#. 9eB-
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147489\n"
-"29\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. 3O-U
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3152794\n"
-"30\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 1h{`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149198\n"
-"31\n"
-"help.text"
-msgid "A security is purchased on 1999-02-15; the maturity date is 1999-03-01. Discount in per cent is 5.25%. The redemption value is 100. When calculating on basis 2 the price discount is as follows:"
-msgstr "Egy értékpapírt 1999. február 15-én vásárolt; az esedékesség dátuma 1999. március 1. A leszámítolás 5,25%. A visszaváltási érték 100 pénzegység. Az alap 0 értéke melletti számításkor az ár:"
-
-#. .}eS
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151178\n"
-"32\n"
-"help.text"
-msgid "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
-msgstr "A =PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0,0525; 100; 2) eredményül 99,79583-at ad."
-
-#. TPDk
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3154693\n"
-"help.text"
-msgid "<bookmark_value>PRICEMAT function</bookmark_value><bookmark_value>prices;interest-bearing securities</bookmark_value>"
-msgstr "<bookmark_value>PRICEMAT függvény</bookmark_value><bookmark_value>árak;kamatozó értékpapírok</bookmark_value>"
-
-#. lEq-
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154693\n"
-"33\n"
-"help.text"
-msgid "PRICEMAT"
-msgstr "PRICEMAT"
-
-#. V*A3
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153906\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calculates the price per 100 currency units of par value of a security, that pays interest on the maturity date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Egy lejáratkor kamatot fizető értékpapír névértékének 100 pénzegységre eső árát számítja ki.</ahelp>"
-
-#. 8x+H
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154933\n"
-"35\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. cA3(
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155393\n"
-"36\n"
-"help.text"
-msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
-msgstr "PRICEMAT(kifizetés; esedékesség; kibocsátás; kamatláb; hozam; alap)"
-
-#. ,u%B
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153102\n"
-"37\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. I%[$
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150530\n"
-"38\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. M!98
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149903\n"
-"39\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "A <emph>kibocsátás</emph> az értékpapír kibocsátásának dátuma."
-
-#. 4pMh
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148828\n"
-"40\n"
-"help.text"
-msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
-msgstr "A <emph>kamatláb</emph> az értékpapír kamatlába a kiadás napján."
-
-#. ~eN(
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146993\n"
-"41\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "A <emph>hozam</emph> az értékpapír éves hozama."
-
-#. @:vu
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150507\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. C9KT
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154289\n"
-"43\n"
-"help.text"
-msgid "Settlement date: February 15 1999, maturity date: April 13 1999, issue date: November 11 1998. Interest rate: 6.1 per cent, yield: 6.1 per cent, basis: 30/360 = 0."
-msgstr "Kifizetés dátuma: 1999. február 15., esedékesség dátuma: 1999. április 13., kibocsátás dátuma: 1998. november 11., kamatláb: 6,1 százalék, hozam: 6,1 százalék, alap: 30/360 = 0."
-
-#. lQ6#
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154905\n"
-"44\n"
-"help.text"
-msgid "The price is calculated as follows:"
-msgstr "Az árat a következőképpen számíthatja ki:"
-
-#. h=[~
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3158409\n"
-"45\n"
-"help.text"
-msgid "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
-msgstr "A =PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0,061; 0,061;0) eredményül 99,98449888-at ad."
-
-#. 2b-b
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3148448\n"
-"help.text"
-msgid "<bookmark_value>calculating; durations</bookmark_value><bookmark_value>durations;calculating</bookmark_value><bookmark_value>DURATION function</bookmark_value>"
-msgstr "<bookmark_value>számítás; időtartamok</bookmark_value><bookmark_value>időtartamok; számítás</bookmark_value><bookmark_value>DURATION függvény</bookmark_value>"
-
-#. D^)j
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3148448\n"
-"280\n"
-"help.text"
-msgid "DURATION"
-msgstr "DURATION"
-
-#. MUHd
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153056\n"
-"281\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calculates the number of periods required by an investment to attain the desired value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Kiszámolja, hogy a befektetés hány periódus alatt éri el a kívánt értéket.</ahelp>"
-
-#. S\%{
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3145421\n"
-"282\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. tJ!K
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148933\n"
-"283\n"
-"help.text"
-msgid "DURATION(Rate; PV; FV)"
-msgstr "DURATION(kamatláb; jelenérték; jövőérték)"
-
-#. k^06
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148801\n"
-"284\n"
-"help.text"
-msgid "<emph>Rate</emph> is a constant. The interest rate is to be calculated for the entire duration (duration period). The interest rate per period is calculated by dividing the interest rate by the calculated duration. The internal rate for an annuity is to be entered as Rate/12."
-msgstr "A <emph>kamatláb</emph> konstans. A kamatlábat a teljes időtartamra (futamidő) kívánja meghatározni. Az időszakos kamatláb a kamatláb és a kiszámított időtartam hányadosaként kerül meghatározásra. A részlet belső rátáját kamatláb/12 formában kell megadni."
-
-#. V`Ij
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147239\n"
-"285\n"
-"help.text"
-msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
-msgstr "A <emph>jelenérték</emph> a jelenérték. A készpénzérték a készpénzletét vagy a természetbeni juttatás aktuális készpénzértéke. Letétértékként pozitív értéket kell megadni. A letétérték nem lehet 0, illetve <0."
-
-#. c8Aq
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147515\n"
-"286\n"
-"help.text"
-msgid "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
-msgstr "A <emph>jövőérték</emph> a várt érték. A jövőérték határozza meg a letét kívánt (jövőbeni) értékét."
-
-#. nnZ,
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153579\n"
-"287\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9f$Z
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148480\n"
-"288\n"
-"help.text"
-msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
-msgstr "Ha a kamatláb 4,75%, a készpénzérték 25 000 pénzegység, a jövőérték 1 000 000 pénzegység, akkor eredményül a függvény 79,49 fizetési időszakot ad. Az időszakos fizetés a jövőérték, illetve az időtartam eredményül kapott hányadosa, jelen esetben 1000000/79,49=12850,20."
-
-#. 2C}6
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3148912\n"
-"help.text"
-msgid "<bookmark_value>calculating;linear depreciations</bookmark_value><bookmark_value>depreciations;linear</bookmark_value><bookmark_value>linear depreciations</bookmark_value><bookmark_value>straight-line depreciations</bookmark_value><bookmark_value>SLN function</bookmark_value>"
-msgstr "<bookmark_value>számítás;lineáris értékcsökkenés</bookmark_value><bookmark_value>értékcsökkenések;lineáris</bookmark_value><bookmark_value>lineáris értékcsökkenés</bookmark_value><bookmark_value>egyenes vonalú értékcsökkenés</bookmark_value><bookmark_value>LCSA függvény</bookmark_value><bookmark_value>SLN függvény, lásd: LCSA függvény</bookmark_value>"
-
-#. fCho
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3148912\n"
-"290\n"
-"help.text"
-msgid "SLN"
-msgstr "LCSA"
-
-#. iWH@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149154\n"
-"291\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LIA\">Returns the straight-line depreciation of an asset for one period.</ahelp> The amount of the depreciation is constant during the depreciation period."
-msgstr "<ahelp hid=\"HID_FUNC_LIA\">Kiszámítja a vagyontárgy egyenletes értékcsökkenését egyetlen időszakra vonatkoztatva.</ahelp> Az értékcsökkenés mértéke konstans az értékcsökkenés időszaka alatt."
-
-#. (v}z
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153240\n"
-"292\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. J6GJ
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3166456\n"
-"293\n"
-"help.text"
-msgid "SLN(Cost; Salvage; Life)"
-msgstr "LCSA(költség; maradványérték; leírási_idő)"
-
-#. Gs./
-#: 04060119.xhp
-#, fuzzy
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146955\n"
-"294\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "A <emph>költség</emph> az eszköz kezdeti ára."
-
-#. c/60
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149796\n"
-"295\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "A <emph>maradványérték</emph> az eszköz értéke az értékcsökkenés végén."
-
-#. ez7O
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3166444\n"
-"296\n"
-"help.text"
-msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
-msgstr "A <emph>leírási_idő</emph> az értékcsökkenési időtartam, amely meghatározza a vagyontárgy értékcsökkenési időszakainak számát."
-
-#. *q1Q
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155579\n"
-"297\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. `1.s
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154098\n"
-"298\n"
-"help.text"
-msgid "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units."
-msgstr "Egy eredetileg 50000 pénzegység értékű irodai eszközre kívánja a 7 év alatt bekövetkező értékcsökkenést meghatározni. Az értékcsökkenés végén az érték legyen 3500 pénzegység."
-
-#. qKTp
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153390\n"
-"299\n"
-"help.text"
-msgid "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units. The periodic monthly depreciation of the office equipment is 553.57 currency units."
-msgstr "Az <item type=\"input\">=LCSA(50000;3,500;84)</item> = 553,57 pénzegység. Az irodai eszköz időszakos havi értékcsökkenése 553,57 pénzegység."
-
-#. FTC0
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3153739\n"
-"help.text"
-msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
-msgstr "<bookmark_value>MDURATION függvény</bookmark_value><bookmark_value>Macauley-féle időtartam</bookmark_value>"
-
-#. 3zx/
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153739\n"
-"217\n"
-"help.text"
-msgid "MDURATION"
-msgstr "MDURATION"
-
-#. $^#K
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149923\n"
-"218\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Kiszámítja egy rögzített kamatozású értékpapír Macauley-féle módosított időtartamát években kifejezve.</ahelp>"
-
-#. ZcI6
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149964\n"
-"219\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. \Ko/
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148987\n"
-"220\n"
-"help.text"
-msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
-msgstr "MDURATION(kifizetés; esedékesség; kamatláb; hozam; gyakoriság; alap)"
-
-#. R559
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148619\n"
-"221\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. p|(y
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149805\n"
-"222\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. H7:F
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154338\n"
-"223\n"
-"help.text"
-msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
-msgstr "A <emph>kamatláb</emph> az éves névleges kamatláb (szelvény kamatlába)."
-
-#. 3;9V
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148466\n"
-"224\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "A <emph>hozam</emph> az értékpapír éves hozama."
-
-#. )0eo
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149423\n"
-"225\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. #p1`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154602\n"
-"226\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. JNJ7
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148652\n"
-"227\n"
-"help.text"
-msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The nominal rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the modified duration?"
-msgstr "Az értékpapír vásárlási dátuma: 2001. január 1., az esedékesség dátuma 2006. január 1., a névleges kamatláb 8%, a hozam 9,0%. A kamatot félévente fizeti (a gyakoriság 2). A kamatot naponta számolják (alap 3), milyen hosszú a módosított időtartam?"
-
-#. ogh8
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145378\n"
-"228\n"
-"help.text"
-msgid "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) returns 4.02 years."
-msgstr "Az =MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0,08; 0,09; 2; 3) eredménye 4,02 év."
-
-#. QB}@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3149242\n"
-"help.text"
-msgid "<bookmark_value>calculating;net present values</bookmark_value><bookmark_value>net present values</bookmark_value><bookmark_value>NPV function</bookmark_value>"
-msgstr "<bookmark_value>számítás;nettó jelenérték</bookmark_value><bookmark_value>nettó jelenértékek</bookmark_value><bookmark_value>NMÉ függvény</bookmark_value><bookmark_value>NPV függvény, lásd: NMÉ függvény</bookmark_value>"
-
-#. 0=LK
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149242\n"
-"301\n"
-"help.text"
-msgid "NPV"
-msgstr "NMÉ"
-
-#. 7RH[
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145308\n"
-"302\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NBW\">Kiszámítja egy periodikus pénzforgalom sorozatán és a leszámítolási kamatlábon alapuló befektetés nettó jelenértékét.</ahelp>"
-
-#. tnNN
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149937\n"
-"303\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ho;_
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153321\n"
-"304\n"
-"help.text"
-msgid "NPV(Rate; Value1; Value2; ...)"
-msgstr "NMÉ(kamatláb; érték_1; érték_2; ...)"
-
-#. 6cJ?
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150630\n"
-"305\n"
-"help.text"
-msgid "<emph>Rate</emph> is the discount rate for a period."
-msgstr "A <emph>kamatláb</emph> egy időtartam leszámítolási kamatlába."
-
-#. ,r0^
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150427\n"
-"306\n"
-"help.text"
-msgid "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
-msgstr "Az <emph>érték_1;...</emph> legfeljebb 30 érték, amelyek letéteket vagy pénzkivételeket jelölnek."
-
-#. WxS@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153538\n"
-"307\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. p/Q[
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154800\n"
-"308\n"
-"help.text"
-msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units."
-msgstr "Mi a nettó jelenértéke annak a rendszeres kifizetésnek, amely 10, 20 és 30 pénzegységenként történik 8,75%-os leszámítolási kamatlábbal? A kezdő időpontban a költségek -40 pénzegységként kerültek kifizetésre."
-
-#. P?RS
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3143270\n"
-"309\n"
-"help.text"
-msgid "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 currency units. The net present value is the returned value minus the initial costs of 40 currency units, therefore 9.43 currency units."
-msgstr "Az <item type=\"input\">=NMÉ(8,75%;10;20;30)</item> = 49,43 pénzegység. A nettó jelenérték a visszaadott érték, mínusz a 40 pénzegységnyi kezdő költség, tehát 9,43 pénzegység."
-
-#. }*Sd
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3149484\n"
-"help.text"
-msgid "<bookmark_value>calculating;nominal interest rates</bookmark_value><bookmark_value>nominal interest rates</bookmark_value><bookmark_value>NOMINAL function</bookmark_value>"
-msgstr "<bookmark_value>számítás;névleges kamatláb</bookmark_value><bookmark_value>névleges kamatláb</bookmark_value><bookmark_value>NOMINAL függvény</bookmark_value>"
-
-#. ]/Tj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149484\n"
-"311\n"
-"help.text"
-msgid "NOMINAL"
-msgstr "NOMINAL"
-
-#. CfZV
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149596\n"
-"312\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NOMINAL\">Calculates the yearly nominal interest rate, given the effective rate and the number of compounding periods per year.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\">Kiszámolja az éves névleges kamatlábat az effektív kamatláb és az évenkénti kamatperiódusok száma alapján.</ahelp>"
-
-#. nB?_
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3151252\n"
-"313\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. SkI5
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3152769\n"
-"314\n"
-"help.text"
-msgid "NOMINAL(EffectiveRate; NPerY)"
-msgstr "NOMINAL(effektív_kamatláb; időszakok_száma)"
-
-#. |BM6
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147521\n"
-"315\n"
-"help.text"
-msgid "<emph>EffectiveRate</emph> is the effective interest rate"
-msgstr "Az <emph>effektív_kamatláb</emph> az effektív kamatláb."
-
-#. ih_m
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156334\n"
-"316\n"
-"help.text"
-msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
-msgstr "Az <emph>időszakok_száma</emph> a kamatkifizetések évenkénti időszakainak száma."
-
-#. [eC$
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154473\n"
-"317\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. zHH1
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147091\n"
-"318\n"
-"help.text"
-msgid "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year."
-msgstr "Mennyi a névleges kamatláb éves szinten, ha az effektív kamatláb 13,5%, és tizenkét kifizetés történik évente?"
-
-#. |kA;
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154831\n"
-"319\n"
-"help.text"
-msgid "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
-msgstr "A <item type=\"input\">=NOMINAL(13,5%;12)</item> = 12,73%. Az éves névleges kamatláb 12,73%."
-
-#. =1tS
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3155123\n"
-"help.text"
-msgid "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
-msgstr "<bookmark_value>NOMINAL_ADD függvény</bookmark_value>"
-
-#. u;Na
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155123\n"
-"229\n"
-"help.text"
-msgid "NOMINAL_ADD"
-msgstr "NOMINAL_ADD"
-
-#. Ybu4
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148671\n"
-"230\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Az éves névleges kamatlábat számítja ki az érvényes kamatláb és az évenkénti kamatfizetések száma alapján.</ahelp>"
-
-#. _oj=
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155611\n"
-"231\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. P;85
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156157\n"
-"232\n"
-"help.text"
-msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
-msgstr "NOMINAL_ADD(effektív_kamatláb; időszakok_száma)"
-
-#. S\E_
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153777\n"
-"233\n"
-"help.text"
-msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
-msgstr "Az <emph>effektív_kamatláb</emph> az éves effektív kamatláb."
-
-#. $7;B
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150409\n"
-"234\n"
-"help.text"
-msgid "<emph>NPerY</emph> the number of interest payments per year."
-msgstr "Az <emph>időszakok_száma</emph> a kamatkifizetések évenkénti időszakainak száma."
-
-#. _G+L
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3146789\n"
-"235\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. YLdj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145777\n"
-"236\n"
-"help.text"
-msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
-msgstr "Mennyi a névleges kamatláb, ha az effektív kamatláb 5,3543% és a fizetés negyedévenként történik?"
-
-#. vl)9
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156146\n"
-"237\n"
-"help.text"
-msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
-msgstr "A <item type=\"input\">=NOMINAL_ADD(5,3543%;4)</item> képlet eredménye 0,0525 vagy 5,25%."
-
-#. {)T]
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3159087\n"
-"help.text"
-msgid "<bookmark_value>DOLLARFR function</bookmark_value><bookmark_value>converting;decimal fractions, into mixed decimal fractions</bookmark_value>"
-msgstr "<bookmark_value>DOLLARFR függvény</bookmark_value><bookmark_value>átalakítás;tizedes törteket vegye tizedes törtekké</bookmark_value>"
-
-#. Z9c*
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3159087\n"
-"208\n"
-"help.text"
-msgid "DOLLARFR"
-msgstr "DOLLARFR"
-
-#. !+34
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150593\n"
-"209\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Converts a quotation that has been given as a decimal number into a mixed decimal fraction.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Átvált egy tizedes számként megadott értéket vegyes tizedes törtté.</ahelp>"
-
-#. a1l_
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3151106\n"
-"210\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. u.61
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3152959\n"
-"211\n"
-"help.text"
-msgid "DOLLARFR(DecimalDollar; Fraction)"
-msgstr "DOLLARFR(tizedes_tört; tört_nevező)"
-
-#. %U\q
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149558\n"
-"212\n"
-"help.text"
-msgid "<emph>DecimalDollar</emph> is a decimal number."
-msgstr "A <emph>tizedes_tört</emph> egy decimális szám."
-
-#. S(6=
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153672\n"
-"213\n"
-"help.text"
-msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
-msgstr "A <emph>tört_nevező</emph> egy egész szám, amelyet a tizedes tört nevezőjeként használ."
-
-#. %Z9:
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3156274\n"
-"214\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [6LU
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153795\n"
-"215\n"
-"help.text"
-msgid "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
-msgstr "A <item type=\"input\">=DOLLARFR(1,125;16)</item> tizenhatodokra konvertál. Az eredmény 1,02, azaz 1 egész 2/16-od."
-
-#. :(k!
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150995\n"
-"216\n"
-"help.text"
-msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
-msgstr "A <item type=\"input\">=DOLLARFR(1,125;8)</item> nyolcadokra konvertál. Az eredmény 1,1, azaz 1 egész 1/8-ad."
-
-#. XU].
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3154671\n"
-"help.text"
-msgid "<bookmark_value>fractions; converting</bookmark_value><bookmark_value>converting;decimal fractions, into decimal numbers</bookmark_value><bookmark_value>DOLLARDE function</bookmark_value>"
-msgstr "<bookmark_value>törtek; átalakítás</bookmark_value><bookmark_value>átalakítás;közönséges törtet tizedes törtté</bookmark_value><bookmark_value>DOLLARDE függvény</bookmark_value>"
-
-#. 29dD
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154671\n"
-"199\n"
-"help.text"
-msgid "DOLLARDE"
-msgstr "DOLLARDE"
-
-#. XMlk
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154418\n"
-"200\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Converts a quotation that has been given as a decimal fraction into a decimal number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Átvált egy tizedes törtként megadott értéket tizedes számmá.</ahelp>"
-
-#. CE7q
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3146124\n"
-"201\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. `fAj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150348\n"
-"202\n"
-"help.text"
-msgid "DOLLARDE(FractionalDollar; Fraction)"
-msgstr "DOLLARDE(tört_érték; tört_nevező)"
-
-#. ^l]!
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154111\n"
-"203\n"
-"help.text"
-msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
-msgstr "A <emph>tört_érték</emph> egy tizedes törtként megadott szám."
-
-#. 70$0
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153695\n"
-"204\n"
-"help.text"
-msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
-msgstr "A <emph>tört_nevező</emph> egy egész szám, amit a tizedes tört nevezőjeként használ."
-
-#. OgrG
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153884\n"
-"205\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. \u=5
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150941\n"
-"206\n"
-"help.text"
-msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
-msgstr "A <item type=\"input\">=DOLLARDE(1,02;16)</item> jelentése 1 és 2/16. Az eredmény 1,125."
-
-#. dD]O
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150830\n"
-"207\n"
-"help.text"
-msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
-msgstr "A <item type=\"input\">=DOLLARDE(1,1;8)</item> jelentése 1 és 1/8. Az eredmény 1,125."
-
-#. +Ln8
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3148974\n"
-"help.text"
-msgid "<bookmark_value>calculating;modified internal rates of return</bookmark_value><bookmark_value>modified internal rates of return</bookmark_value><bookmark_value>MIRR function</bookmark_value><bookmark_value>internal rates of return;modified</bookmark_value>"
-msgstr "<bookmark_value>számítás;módosított belső megtérülési ráta</bookmark_value><bookmark_value>módosított belső megtérülési ráta</bookmark_value><bookmark_value>MEGTÉRÜLÉS függvény</bookmark_value><bookmark_value>MIRR függvény, lásd: MEGTÉRÜLÉS függvény</bookmark_value><bookmark_value>belső megtérülési ráta;módosított</bookmark_value>"
-
-#. -6rg
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3148974\n"
-"321\n"
-"help.text"
-msgid "MIRR"
-msgstr "MEGTÉRÜLÉS"
-
-#. ECkU
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155497\n"
-"322\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QIKV\">Kiszámítja egy befektetéssorozat módosított belső megtérülési rátáját.</ahelp>"
-
-#. vIf|
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154354\n"
-"323\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7Lq+
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148399\n"
-"324\n"
-"help.text"
-msgid "MIRR(Values; Investment; ReinvestRate)"
-msgstr "MEGTÉRÜLÉS(értékek; hitelkamat; újrabefektetési_ráta)"
-
-#. #;$^
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155896\n"
-"325\n"
-"help.text"
-msgid "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
-msgstr "Az <emph>értékek</emph> az a tömb- vagy cellahivatkozás, amelynek tartalma a befizetéseket tartalmazza."
-
-#. Ku7@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149998\n"
-"326\n"
-"help.text"
-msgid "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
-msgstr "A <emph>hitelkamat</emph> a befektetés kamatlába (a tömb negatív értékei)"
-
-#. %!;y
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3159408\n"
-"327\n"
-"help.text"
-msgid "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
-msgstr "Az <emph>újrabefektetési_ráta</emph> az újrabefektetés kamatlába (a tömb pozitív értékei)"
-
-#. Z*xT
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154714\n"
-"328\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. \bN~
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147352\n"
-"329\n"
-"help.text"
-msgid "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, and A4 = <item type=\"input\">8</item>, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%."
-msgstr "Ha a cellák tartalma A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, és A4 = <item type=\"input\">8</item> és a befektetési érték 0,5, az újrabefektetési érték 0,1, akkor az eredmény 94,16%."
-
-#. a%G;
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3149323\n"
-"help.text"
-msgid "<bookmark_value>YIELD function</bookmark_value><bookmark_value>rates of return;securities</bookmark_value><bookmark_value>yields, see also rates of return</bookmark_value>"
-msgstr "<bookmark_value>YIELD függvény</bookmark_value><bookmark_value>hozam;értékpapírok</bookmark_value>"
-
-#. hm8a
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149323\n"
-"129\n"
-"help.text"
-msgid "YIELD"
-msgstr "YIELD"
-
-#. p-gk
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150643\n"
-"130\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Kiszámítja egy értékpapír hozamát.</ahelp>"
-
-#. C8B^
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149344\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. q^\R
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149744\n"
-"132\n"
-"help.text"
-msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "YIELD(kifizetés; esedékesség; kamatláb; érték; visszaváltás; gyakoriság; alap)"
-
-#. ES5)
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154526\n"
-"133\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. ])nW
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153266\n"
-"134\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. fa;t
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151284\n"
-"135\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "A <emph>kamatláb</emph> az éves kamatláb."
-
-#. [.Aq
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147314\n"
-"136\n"
-"help.text"
-msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
-msgstr "Az <emph>érték</emph> az értékpapír ára (vásárlási ára) 100 egységnyi névértékre vonatkoztatva."
-
-#. KCi+
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145156\n"
-"137\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. V*Yz
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3159218\n"
-"138\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "A <emph>gyakoriság</emph> a kamatfizetések száma évente (1, 2 vagy 4)."
-
-#. EK}P
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3147547\n"
-"139\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @/2`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151214\n"
-"140\n"
-"help.text"
-msgid "A security is purchased on 1999-02-15. It matures on 2007-11-15. The rate of interest is 5.75%. The price is 95.04287 currency units per 100 units of par value, the redemption value is 100 units. Interest is paid half-yearly (frequency = 2) and the basis is 0. How high is the yield?"
-msgstr "Az értékpapír vásárlási dátuma 1999. február 15. Az esedékesség dátuma 2007. november 15. Az érték 95,04287 pénzegység 100 pénzegységre vetítve, a visszaváltás 100 pénzegységnyi. A kamatot félévente fizeti (a gyakoriság 2) és az alap 0. Milyen magas a hozam?"
-
-#. @llT
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154194\n"
-"141\n"
-"help.text"
-msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent."
-msgstr "A =YIELD(\"1999-02-15\"; \"2007-11-15\"; 0,0575; 95,04287; 100; 2; 0) eredményül 0,065-öt, vagyis 6,5%-ot ad."
-
-#. 5J%q
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3150100\n"
-"help.text"
-msgid "<bookmark_value>YIELDDISC function</bookmark_value><bookmark_value>rates of return;non-interest-bearing securities</bookmark_value>"
-msgstr "<bookmark_value>YIELDDISC függvény</bookmark_value><bookmark_value>hozam;nem kamatozó értékpapírok</bookmark_value>"
-
-#. qnUK
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150100\n"
-"142\n"
-"help.text"
-msgid "YIELDDISC"
-msgstr "YIELDDISC"
-
-#. ^OgK
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150486\n"
-"143\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Kiszámítja egy nem kamatozó értékpapír éves hozamát.</ahelp>"
-
-#. 6MPQ
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149171\n"
-"144\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 0?Dx
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3159191\n"
-"145\n"
-"help.text"
-msgid "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
-msgstr "YIELDDISC(kifizetés; esedékesség; érték; visszaváltás; alap)"
-
-#. q]qP
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150237\n"
-"146\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. VQEr
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146924\n"
-"147\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. {5KV
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151201\n"
-"148\n"
-"help.text"
-msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
-msgstr "Az <emph>érték</emph> az értékpapír ára (vásárlási ára) 100 egységnyi névértékre vonatkoztatva."
-
-#. 8n69
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156049\n"
-"149\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "A <emph>visszaváltás</emph> az értékpapír visszaváltási értéke 100 egységnyi névértékre vonatkoztatva."
-
-#. z%_1
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3154139\n"
-"150\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. AQ3H
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3163815\n"
-"151\n"
-"help.text"
-msgid "A non-interest-bearing security is purchased on 1999-02-15. It matures on 1999-03-01. The price is 99.795 currency units per 100 units of par value, the redemption value is 100 units. The basis is 2. How high is the yield?"
-msgstr "Egy nem kamatozó értékpapír vásárlási dátuma 1999. február 15. Az esedékesség 1999. március 1. Az ár 99,795 pénzegység 100 pénzegységre vetítve, a visszaváltás 100 pénzegység. Az alap 2. Milyen magas a hozam?"
-
-#. m`Vc
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155187\n"
-"152\n"
-"help.text"
-msgid "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) returns 0.052823 or 5.2823 per cent."
-msgstr "A =YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99,795; 100; 2) eredményül 0,052823-t, vagyis 5,2823%-ot ad."
-
-#. C4Y{
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3155140\n"
-"help.text"
-msgid "<bookmark_value>YIELDMAT function</bookmark_value><bookmark_value>rates of return;securities with interest paid on maturity</bookmark_value>"
-msgstr "<bookmark_value>YIELDMAT függvény</bookmark_value><bookmark_value>hozam;lejáratkor kamatot fizető értékpapírok</bookmark_value>"
-
-#. owcB
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155140\n"
-"153\n"
-"help.text"
-msgid "YIELDMAT"
-msgstr "YIELDMAT"
-
-#. ;`@J
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151332\n"
-"154\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calculates the annual yield of a security, the interest of which is paid on the date of maturity.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Kiszámítja egy, a lejáratkor kamatot fizető értékpapír éves hozamát.</ahelp>"
-
-#. +Vs^
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3159100\n"
-"155\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. EO*Z
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3159113\n"
-"156\n"
-"help.text"
-msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
-msgstr "YIELDMAT(kifizetés; esedékesség; kibocsátás; kamatláb; érték; alap)"
-
-#. {bF=
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149309\n"
-"157\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. ##F#
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151381\n"
-"158\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. EKn}
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153302\n"
-"159\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "A <emph>kibocsátás</emph> az értékpapír kibocsátásának dátuma."
-
-#. VBGv
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147140\n"
-"160\n"
-"help.text"
-msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
-msgstr "A <emph>kamatláb</emph> az értékpapír kamatlába a kiadás napján."
-
-#. T7#u
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3151067\n"
-"161\n"
-"help.text"
-msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
-msgstr "Az <emph>érték</emph> az értékpapír ára (vásárlási ára) 100 egységnyi névértékre vonatkoztatva."
-
-#. ^rH`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155342\n"
-"162\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. _foX
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3163717\n"
-"163\n"
-"help.text"
-msgid "A security is purchased on 1999-03-15. It matures on 1999-11-03. The issue date was 1998-11-08. The rate of interest is 6.25%, the price is 100.0123 units. The basis is 0. How high is the yield?"
-msgstr "Egy értékpapírt 1999. március 15-én vásárolt. 1999. november 3-ára esik az esedékesség. A kiadás dátuma 1998. november 8. A kamatláb 6,25%, az ár 100,0123 pénzegység. Az alap 0. Milyen magas a hozam?"
-
-#. s^-U
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155311\n"
-"164\n"
-"help.text"
-msgid "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) returns 0.060954 or 6.0954 per cent."
-msgstr "A =YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0,0625; 100,0123; 0) eredményül 0,060954-et, vagyis 6,0954%-ot ad."
-
-#. _=(4
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3149577\n"
-"help.text"
-msgid "<bookmark_value>calculating;annuities</bookmark_value><bookmark_value>annuities</bookmark_value><bookmark_value>PMT function</bookmark_value>"
-msgstr "<bookmark_value>számítás;éves járadékok</bookmark_value><bookmark_value>éves járadékok</bookmark_value><bookmark_value>RÉSZLET függvény</bookmark_value><bookmark_value>PMT függvény, lásd: RÉSZLET függvény</bookmark_value>"
-
-#. q^1y
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149577\n"
-"330\n"
-"help.text"
-msgid "PMT"
-msgstr "RÉSZLET"
-
-#. a_$@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148563\n"
-"331\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RMZ\">A kölcsönre vonatkozó törlesztési összeget számítja ki állandó kamatláb esetén.</ahelp>"
-
-#. 9[{n
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3145257\n"
-"332\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. {J5]
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147278\n"
-"333\n"
-"help.text"
-msgid "PMT(Rate; NPer; PV; FV; Type)"
-msgstr "RÉSZLET(kamatláb; időszakok_száma; jelenérték; jövőérték; típus)"
-
-#. 1k)G
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3147291\n"
-"334\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "A <emph>kamatláb</emph> az időszakos kamatláb."
-
-#. hEd`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148641\n"
-"335\n"
-"help.text"
-msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
-msgstr "Az <emph>időszakok_száma</emph> a kifizetési időszakok összesített száma, ahol járadék fizetése történik."
-
-#. vOMK
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156360\n"
-"336\n"
-"help.text"
-msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "A <emph>jelenérték</emph> a kifizetések jelenértéke."
-
-#. }OI5
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154920\n"
-"337\n"
-"help.text"
-msgid "<emph>FV</emph> (optional) is the desired value (future value) to be reached at the end of the periodic payments."
-msgstr "A <emph>jövőérték</emph> (opcionális): A kívánt érték (jövőbeli érték), amelyet a periodikus kifizetések végén szeretne elérni."
-
-#. e3i9
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156434\n"
-"338\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) is the due date for the periodic payments. Type=1 is payment at the beginning and Type=0 is payment at the end of each period."
-msgstr "A <emph>típus</emph> (opcionális): a törlesztőrészletek esedékességének dátuma. A típus=1 az egyes időszakok elején, típus=0 az egyes időszakok végén."
-
-#. {|[7
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_idN11645\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. [\N~
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3152358\n"
-"339\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. *RXO
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154222\n"
-"340\n"
-"help.text"
-msgid "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12."
-msgstr "Milyen magasak az időszakos fizetések, ha az éves kamatláb 1,99%, a fizetési idő 3 év, a készpénzérték pedig 25 000 pénzegység? A 36 fizetési időszak 36 hónapra esik, a fizetési időszakra eső kamatláb pedig 1,99%/12."
-
-#. pJs-
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155943\n"
-"341\n"
-"help.text"
-msgid "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 currency units. The periodic monthly payment is therefore 715.96 currency units."
-msgstr "A <item type=\"input\">=RÉSZLET(1,99%/12;36;25000)</item> = -715,96 pénzegység. Tehát a havi időszakos fizetés 715,96 pénzegység."
-
-#. ;,Dj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3155799\n"
-"help.text"
-msgid "<bookmark_value>TBILLEQ function</bookmark_value><bookmark_value>treasury bills;annual return</bookmark_value><bookmark_value>annual return on treasury bills</bookmark_value>"
-msgstr "<bookmark_value>TBILLEQ függvény</bookmark_value><bookmark_value>kincstárjegyek;éves hozam</bookmark_value><bookmark_value>éves hozam;kincstárjegyek</bookmark_value>"
-
-#. L(F]
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155799\n"
-"58\n"
-"help.text"
-msgid "TBILLEQ"
-msgstr "TBILLEQ"
-
-#. +n.{
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154403\n"
-"59\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Kiszámítja a kincstárjegy éves hozamát.</ahelp> A kincstárjegy a kifizetési napon kerül megvásárlásra, majd teljes névértéken eladásra kerül az esedékesség napján, még ugyanazon évben. A leszámítolás levonásra kerül a vásárlási árból."
-
-#. Z~2|
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3155080\n"
-"60\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 1.Z:
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150224\n"
-"61\n"
-"help.text"
-msgid "TBILLEQ(Settlement; Maturity; Discount)"
-msgstr "TBILLEQ(kifizetés; esedékesség; leszámítolás;)"
-
-#. c$-j
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156190\n"
-"62\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. p%ZW
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153827\n"
-"63\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. #V?{
-#: 04060119.xhp
-#, fuzzy
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150310\n"
-"64\n"
-"help.text"
-msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
-msgstr "A <emph>leszámítolás</emph> az értékpapír beszerzési árának diszkont rátája (leszámítolási százaléka)."
-
-#. fIt-
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3150324\n"
-"65\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 4+q.
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153173\n"
-"66\n"
-"help.text"
-msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
-msgstr "Kifizetés napja: 1999. március 31.,az esedékesség napja 1999. június 1., a leszámítolás 9,14 százalék."
-
-#. qi^p
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3153520\n"
-"67\n"
-"help.text"
-msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
-msgstr "A kincstárjegyen szerzett hasznot, ami összhangban van az értékpapírral a következőképpen számíthatja ki:"
-
-#. $[*`
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154382\n"
-"68\n"
-"help.text"
-msgid "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) returns 0.094151 or 9.4151 per cent."
-msgstr "A =TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0,0914) eredményül 0,094151-t, azaz 9,4151 %-ot ad."
-
-#. E5gH
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3151032\n"
-"help.text"
-msgid "<bookmark_value>TBILLPRICE function</bookmark_value><bookmark_value>treasury bills;prices</bookmark_value><bookmark_value>prices;treasury bills</bookmark_value>"
-msgstr "<bookmark_value>TBILLPRICE függvény</bookmark_value><bookmark_value>kincstárjegyek;árak</bookmark_value><bookmark_value>árak;kincstárjegyek</bookmark_value>"
-
-#. VD1j
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3151032\n"
-"69\n"
-"help.text"
-msgid "TBILLPRICE"
-msgstr "TBILLPRICE"
-
-#. 3XK=
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3157887\n"
-"70\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Egy kincstárjegy 100 pénzegységre eső árát számítja ki.</ahelp>"
-
-#. iblW
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3156374\n"
-"71\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. M:[{
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3150284\n"
-"72\n"
-"help.text"
-msgid "TBILLPRICE(Settlement; Maturity; Discount)"
-msgstr "TBILLPRICE(kifizetés; esedékesség; leszámítolás;)"
-
-#. lh1f
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154059\n"
-"73\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. IfCI
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154073\n"
-"74\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. f,rt
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145765\n"
-"75\n"
-"help.text"
-msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
-msgstr "A <emph>leszámítolás</emph> az értékpapír beszerzési árának diszkont rátája (leszámítolási százaléka)."
-
-#. =s#K
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3153373\n"
-"76\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. yihX
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3155542\n"
-"77\n"
-"help.text"
-msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
-msgstr "Kifizetés dátuma: 1999. március 31., esedékesség dátuma: 1999. június 1., leszámítolás: 9%."
-
-#. L.33
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154578\n"
-"78\n"
-"help.text"
-msgid "The price of the treasury bill is worked out as follows:"
-msgstr "A kincstárjegy árát a következőképpen számíthatja ki:"
-
-#. hxit
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3154592\n"
-"79\n"
-"help.text"
-msgid "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
-msgstr "A =TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0,09) eredménye 98,45."
-
-#. gZCq
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"bm_id3152912\n"
-"help.text"
-msgid "<bookmark_value>TBILLYIELD function</bookmark_value><bookmark_value>treasury bills;rates of return</bookmark_value><bookmark_value>rates of return of treasury bills</bookmark_value>"
-msgstr "<bookmark_value>TBILLYIELD függvény</bookmark_value><bookmark_value>kincstárjegyek;hozam</bookmark_value><bookmark_value>hozam;kincstárjegyek</bookmark_value>"
-
-#. a3)0
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3152912\n"
-"80\n"
-"help.text"
-msgid "TBILLYIELD"
-msgstr "TBILLYIELD"
-
-#. 4W11
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145560\n"
-"81\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Kiszámítja egy kincstárjegy hozamát.</ahelp>"
-
-#. #lJF
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3145578\n"
-"82\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. lG=k
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156077\n"
-"83\n"
-"help.text"
-msgid "TBILLYIELD(Settlement; Maturity; Price)"
-msgstr "TBILLYIELD(kifizetés; esedékesség; érték;)"
-
-#. 8ZXC
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3156091\n"
-"84\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "A <emph>kifizetés</emph> az értékpapír vásárlásának dátuma."
-
-#. K4n2
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3157856\n"
-"85\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Az <emph>esedékesség</emph> az értékpapír esedékességének (lejáratának) dátuma."
-
-#. |N#j
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3149627\n"
-"86\n"
-"help.text"
-msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
-msgstr "Az <emph>érték</emph> a kincstárjegy ára (vásárlási ára) 100 egységnyi névértékre vonatkoztatva."
-
-#. 5Pt@
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"hd_id3149642\n"
-"87\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 1RU)
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145178\n"
-"88\n"
-"help.text"
-msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
-msgstr "Kifizetés napja: 1999. március 31., esedékesség napja: 1999. június 1., ár: 98,45 pénzegység."
-
-#. 4;tj
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3145193\n"
-"89\n"
-"help.text"
-msgid "The yield of the treasury bill is worked out as follows:"
-msgstr "A kincstárjegy hozamát a következőképpen számíthatja ki:"
-
-#. s@sS
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148528\n"
-"90\n"
-"help.text"
-msgid "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
-msgstr "A =TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98,45) eredményül 0,091417-t, azaz 9,1417 %-ot ad."
-
-#. ,W6z
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3148546\n"
-"345\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Vissza a pénzügyi függvények első részéhez\">Vissza a pénzügyi függvények első részéhez</link>"
-
-#. ga9W
-#: 04060119.xhp
-msgctxt ""
-"04060119.xhp\n"
-"par_id3146762\n"
-"346\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
-msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Pénzügyi függvények - harmadik rész\">Pénzügyi függvények - harmadik rész</link>"
-
-#. tn0D
-#: 02190000.xhp
-msgctxt ""
-"02190000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete Manual Breaks"
-msgstr "Töréspont törlése"
-
-#. J`b5
-#: 02190000.xhp
-msgctxt ""
-"02190000.xhp\n"
-"hd_id3150541\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
-msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Töréspont törlése\">Töréspont törlése</link>"
-
-#. %csp
-#: 02190000.xhp
-msgctxt ""
-"02190000.xhp\n"
-"par_id3154365\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
-msgstr "<ahelp hid=\".\">Válassza ki a törlendő törésponttípust.</ahelp>"
-
-#. HJt.
-#: 05100200.xhp
-msgctxt ""
-"05100200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Cells"
-msgstr "Cellák felosztása"
-
-#. `XHH
-#: 05100200.xhp
-msgctxt ""
-"05100200.xhp\n"
-"hd_id3154654\n"
-"help.text"
-msgid "Split Cells"
-msgstr "Cellák felosztása"
-
-#. _j/H
-#: 05100200.xhp
-msgctxt ""
-"05100200.xhp\n"
-"par_id3083451\n"
-"help.text"
-msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
-msgstr "<ahelp hid=\".\">Korábban egyesített cellák felosztása.</ahelp>"
-
-#. djn$
-#: 05100200.xhp
-msgctxt ""
-"05100200.xhp\n"
-"par_id3154023\n"
-"help.text"
-msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
-msgstr "Válassza a <emph>Formátum - Cellák egyesítése - Cellák szétvágása</emph> menüparancsot"
-
-#. Q%U;
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Columns"
-msgstr "Oszlopok"
-
-#. ZK`a
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; oszlopok beszúrása</bookmark_value><bookmark_value>beszúrás;oszlopok</bookmark_value><bookmark_value>oszlopok; beszúrás</bookmark_value>"
-
-#. 4)XE
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Oszlopok\">Oszlopok</link>"
-
-#. PLmZ
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"par_id3150791\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
-msgstr "<ahelp hid=\".uno:InsertColumns\">Az aktuális cellától balra új oszlopot szúr be.</ahelp> A beszúrt oszlopok száma megegyezik a kijelölt oszlopok számával. A már létező oszlopok jobbra tolódnak."
-
-#. o9r1
-#: 12080000.xhp
-msgctxt ""
-"12080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Group and Outline"
-msgstr "Csoportosítás és vázlat"
-
-#. IMHe
-#: 12080000.xhp
-msgctxt ""
-"12080000.xhp\n"
-"bm_id3152350\n"
-"help.text"
-msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
-msgstr "<bookmark_value>munkalapok; kivonatok</bookmark_value><bookmark_value>kivonatok; munkalapok</bookmark_value><bookmark_value>elrejtés; munkalaprészletek</bookmark_value><bookmark_value>megjelenítés; munkalaprészletek</bookmark_value><bookmark_value>csoportosítás;cellák</bookmark_value>"
-
-#. ]RW_
-#: 12080000.xhp
-msgctxt ""
-"12080000.xhp\n"
-"hd_id3152350\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
-msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Csoportosítás és vázlat\">Csoportosítás és vázlat</link>"
-
-#. /$*[
-#: 12080000.xhp
-msgctxt ""
-"12080000.xhp\n"
-"par_id3150793\n"
-"2\n"
-"help.text"
-msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
-msgstr "Létrehozhat egy kivonatot az adatokról, és csoportosíthatja a sorokat és az oszlopokat, hogy egyetlen kattintással összecsukhassa és kibonthassa a csoportokat."
-
-#. q;Xr
-#: 12080000.xhp
-msgctxt ""
-"12080000.xhp\n"
-"hd_id3147229\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Csoportosítás\">Csoportosítás</link>"
-
-#. x[af
-#: 12080000.xhp
-msgctxt ""
-"12080000.xhp\n"
-"hd_id3153188\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Csoport szétbontása\">Csoport szétbontása</link>"
-
-#. Ns~#
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"tit\n"
-"help.text"
-msgid "YEAR"
-msgstr "ÉV"
-
-#. Kw;y
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"bm_id3153982\n"
-"help.text"
-msgid "<bookmark_value>YEAR function</bookmark_value>"
-msgstr "<bookmark_value>ÉV függvény</bookmark_value><bookmark_value>YEAR függvény, lásd: ÉV függvény</bookmark_value>"
-
-#. mPOW
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"hd_id3153982\n"
-"37\n"
-"help.text"
-msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
-msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">ÉV</link></variable>"
-
-#. |p?.
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3147496\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Kiszámítja az év számértékét a belső számítási szabályoknak megfelelően.</ahelp>"
-
-#. [^+c
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"hd_id3146090\n"
-"39\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. D1Gf
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3154304\n"
-"40\n"
-"help.text"
-msgid "YEAR(Number)"
-msgstr "ÉV(szám)"
-
-#. zl+N
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3156013\n"
-"41\n"
-"help.text"
-msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
-msgstr "A <emph>szám</emph> jelöli azt a belső dátumértéket, amelyre vonatkozóan az évet meg kívánja határozni."
-
-#. =1a7
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"hd_id3152797\n"
-"42\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. )e\H
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3145668\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
-msgstr "Az <item type=\"input\">=ÉV(1)</item> az 1899 értéket adja vissza."
-
-#. k-@^
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3151168\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
-msgstr "Az <item type=\"input\">=ÉV(2)</item> az 1900 értéket adja vissza."
-
-#. 4f*)
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3150115\n"
-"45\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
-msgstr "Az <item type=\"input\">=ÉV(33333,33)</item> az 1991 értéket adja vissza."
-
-#. y#r8
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"tit\n"
-"help.text"
-msgid "DAY"
-msgstr "NAP"
-
-#. 0D~j
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"bm_id3147317\n"
-"help.text"
-msgid "<bookmark_value>DAY function</bookmark_value>"
-msgstr "<bookmark_value>NAP függvény</bookmark_value><bookmark_value>DAY függvény, lásd: NAP függvény</bookmark_value>"
-
-#. Q),p
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"hd_id3147317\n"
-"106\n"
-"help.text"
-msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
-msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">NAP</link></variable>"
-
-#. K0om
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3147584\n"
-"107\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
-msgstr "<ahelp hid=\"HID_FUNC_TAG\">A megadott dátumérték napját adja eredményül.</ahelp> A nap egy 1 és 31 közötti egész szám. Negatív dátum-/időértéket is megadhat."
-
-#. VG(I
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"hd_id3150487\n"
-"108\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. wflG
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149430\n"
-"109\n"
-"help.text"
-msgid "DAY(Number)"
-msgstr "NAP(szám)"
-
-#. xoUR
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149443\n"
-"110\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
-msgstr "A <emph>szám</emph> egy időérték, amelyre vonatkozóan a napértéket meg kívánja kapni."
-
-#. r(K}
-#: func_day.xhp
-#, fuzzy
-msgctxt ""
-"func_day.xhp\n"
-"hd_id3163809\n"
-"111\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. #C{c
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3151200\n"
-"112\n"
-"help.text"
-msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
-msgstr "A NAP(1) eredményül 31-et ad (mivel a $[officename] a számozást 1899. december 30-tól, nullától kezdi)."
-
-#. :\}9
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3154130\n"
-"113\n"
-"help.text"
-msgid "DAY(NOW()) returns the current day."
-msgstr "A NAP(MOST()) az aktuális napot adja vissza."
-
-#. FU+J
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3159190\n"
-"114\n"
-"help.text"
-msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
-msgstr "A =NAP(C4) eredménye 5, ha a C4 cellába az 1901-08-05 értéket írta be (miután megnyomta az Enter billentyűt, a dátum más formátumot nyerhet)."
-
-#. ,aN0
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Munkafüzetfüggvények"
-
-#. .@QN
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3148522\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; függvények</bookmark_value><bookmark_value>Függvénytündér; munkafüzetek</bookmark_value><bookmark_value>függvények; munkafüzetek</bookmark_value>"
-
-#. ;j/[
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148522\n"
-"1\n"
-"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Munkafüzetfüggvények"
-
-#. KM;m
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3144508\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
-msgstr "<variable id=\"tabelletext\">Ez a szakasz tartalmazza a <emph>munkafüzet-kezelő</emph> függvények példával szemléltetett leírását. </variable>"
-
-#. :0BP
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3146968\n"
-"help.text"
-msgid "<bookmark_value>ADDRESS function</bookmark_value>"
-msgstr "<bookmark_value>CÍM függvény</bookmark_value><bookmark_value>ADDRESS függvény, lásd: CÍM függvény</bookmark_value>"
-
-#. F,Ko
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3146968\n"
-"3\n"
-"help.text"
-msgid "ADDRESS"
-msgstr "CÍM"
-
-#. /q+|
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155762\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
-msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Egy cella címét (hivatkozását) adja eredményül szövegként, a meghatározott sor és oszlop száma szerint.</ahelp> Meghatározhatja, hogy a címzés abszolút címzésként (például: $A$1), relatív címzésként (például: A1) vagy esetleg a kettő ötvözeteként (A$1 vagy $A1) kerül értelmezésre. Ezen kívül megadhatja a munkalap nevét is."
-
-#. phvC
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301348\n"
-"help.text"
-msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
-msgstr "Kompatibilitási okból a CÍM és INDIREKT függvények támogatnak egy opcionális paramétert, amellyel megadható hogy az R1C1 (S1O1) jelölés használandó-e a megszokott A1 stílus helyett."
-
-#. c*X#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301445\n"
-"help.text"
-msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
-msgstr "A CÍM esetén a paraméter a negyedik paraméterként kerül megadásra, eltolva az opcionális munkalapnév paramétert az ötödik pozícióra."
-
-#. ]a%~
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230153\n"
-"help.text"
-msgid "In INDIRECT, the parameter is appended as the second parameter."
-msgstr "Az INDIREKT esetén a paraméter második paraméterként kerül felhasználásra."
-
-#. v}r?
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230151\n"
-"help.text"
-msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
-msgstr "Mindkét függvény esetén az argumentum 0 értéke az R1C1 jelölés használatát jelenti. Ha az argumentum nincs megadva, vagy értéke nem nulla, akkor az A1 jelölés kerül felhasználásra."
-
-#. \zzO
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301556\n"
-"help.text"
-msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
-msgstr "Az R1C1 jelölés esetén a CÍM a cím karakterláncokat a munkalapnév-elválasztóként felkiáltójelet (!) használva adja vissza, az INDIREKT pedig felkiáltójeleket vár munkalapnév-elválasztóként. Mindkét függvény továbbra is a pont (.) munkalapnév-elválasztót használja az A1 jelölés esetén."
-
-#. \m/f
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301521\n"
-"help.text"
-msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
-msgstr "Az ODF 1.0/1.1 formátumú dokumentumok megnyitásakor a munkalap nevét negyedik paraméterként megjelenítő CÍM függvények el lesznek tolva, hogy a munkalapnév az ötödik paraméter legyen. Egy új, 1 értékű negyedik paraméter kerül beszúrásra."
-
-#. +hpm
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301650\n"
-"help.text"
-msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
-msgstr "A dokumentum ODF 1.0/1.1 formátumba mentésekor a CÍM függvények negyedik paramétere, ha van, eltávolításra kerül."
-
-#. O?k@
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230162\n"
-"help.text"
-msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
-msgstr "Ne mentse a táblázatot a régi ODF 1.0/1.1 formátumba, ha a CÍM függvény új negyedik paraméterét 0 értékkel használja."
-
-#. O%UV
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301756\n"
-"help.text"
-msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
-msgstr "Az INDIREKT függvény az ODF 1.0/1.1 formátumra átalakítás nélkül kerül mentésre. Ha a második paraméter jelen volt, a Calc régebbi verziója hibát ad vissza arra a függvényre."
-
-#. dXsG
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3151196\n"
-"5\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. :poK
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154707\n"
-"6\n"
-"help.text"
-msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
-msgstr "CÍM(sor; oszlop; absz.; A1; \"munkalap\")"
-
-#. 8::@
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147505\n"
-"7\n"
-"help.text"
-msgid "<emph>Row</emph> represents the row number for the cell reference"
-msgstr "A <emph>sor</emph> a cellahivatkozás sorszámát jelöli."
-
-#. T$45
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3145323\n"
-"8\n"
-"help.text"
-msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
-msgstr "Az <emph>oszlop</emph> a cellahivatkozás oszlopszámát (nem betűjelét) jelöli."
-
-#. t[00
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153074\n"
-"9\n"
-"help.text"
-msgid "<emph>Abs</emph> determines the type of reference:"
-msgstr "Az <emph>absz.</emph> meghatározza a hivatkozás típusát:"
-
-#. Ithp
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153298\n"
-"10\n"
-"help.text"
-msgid "1: absolute ($A$1)"
-msgstr "1: abszolút ($A$1)"
-
-#. ZRcV
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150431\n"
-"11\n"
-"help.text"
-msgid "2: row reference type is absolute; column reference is relative (A$1)"
-msgstr "2: a sorhivatkozás abszolút, az oszlophivatkozás relatív (A$1)"
-
-#. wi[L
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3146096\n"
-"12\n"
-"help.text"
-msgid "3: row (relative); column (absolute) ($A1)"
-msgstr "3: sor (relatív); oszlop (abszolút) ($A1)"
-
-#. 5)#q
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153334\n"
-"13\n"
-"help.text"
-msgid "4: relative (A1)"
-msgstr "4: relatív (A1)"
-
-#. ;gsk
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802465915\n"
-"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr "<emph>A1</emph> (opcionális) – ha 0, akkor az R1C1 jelölés érvényes. Ha a paraméter hiányzik, vagy nem 0, akkor az A1 jelölés érvényes."
-
-#. d`_j
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153962\n"
-"14\n"
-"help.text"
-msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
-msgstr "A <emph>munkalap</emph> megadja a munkalap nevét. A nevet idézőjelek közé kell tenni."
-
-#. B!PU
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3147299\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. -Hb6
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148744\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
-msgstr "A <item type=\"input\">=CÍM(1;1;2;;\"Munkalap2\")</item> a következőt adja eredményül: Munkalap2.A$1."
-
-#. EIJd
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3159260\n"
-"17\n"
-"help.text"
-msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
-msgstr "Ha a Munkalap2 A1 cellája <item type=\"input\">-6</item> értéket tartalmaz, akkor közvetett módon is hivatkozhat a hivatkozott cellára a B2 cellában elhelyezett függvény segítségével. Ehhez írja be az <item type=\"input\">=ABS(INDIREKT(B2))</item> függvényt. Az eredmény a B2 cellában megadott cellahivatkozás abszolút értéke, vagyis ebben az esetben 6."
-
-#. _u!7
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3150372\n"
-"help.text"
-msgid "<bookmark_value>AREAS function</bookmark_value>"
-msgstr "<bookmark_value>TERÜLET függvény</bookmark_value><bookmark_value>AREAS függvény, lásd: TERÜLET függvény</bookmark_value>"
-
-#. bH,3
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3150372\n"
-"19\n"
-"help.text"
-msgid "AREAS"
-msgstr "TERÜLET"
-
-#. H.yh
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150036\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
-msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Azon tartományok számát adja eredményül, amelyek egy többszörös tartományba tartoznak.</ahelp> Egy tartomány összefüggő cellákból vagy egy magában álló cellából állhat."
-
-#. #W`U
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id061020090307073\n"
-"help.text"
-msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
-msgstr "A függvény egyetlen argumentumot vár. Ha több tartományt ad meg, akkor ezeket további zárójelek közé kell tenni. Több tartomány pontosvesszővel (;) elválasztva írható be, de ez automatikusan a tilde (~) operátorrá lesz alakítva. A tilde használatos tartományok összekapcsolására."
-
-#. t3J+
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3145222\n"
-"21\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. WNDE
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155907\n"
-"22\n"
-"help.text"
-msgid "AREAS(Reference)"
-msgstr "TERÜLET(hivatkozás)"
-
-#. VQ`:
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153118\n"
-"23\n"
-"help.text"
-msgid "Reference represents the reference to a cell or cell range."
-msgstr "A Hivatkozás a cellához vagy cellatartományhoz tartozó hivatkozást jelöli."
-
-#. :1dY
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148891\n"
-"24\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ojM#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149946\n"
-"25\n"
-"help.text"
-msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
-msgstr "Az <item type=\"input\">=TERÜLET(A1:B3;F2;G1)</item> függvény a 3 értéket adja vissza, mert ez három cellára és/vagy területre való hivatkozást tartalmaz. A bevitel után ez a =TERÜLET((A1:B3~F2~G1)) képletté konvertálódik."
-
-#. wbLO
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3146820\n"
-"26\n"
-"help.text"
-msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
-msgstr "Az <item type=\"input\">=TERÜLET(Minden)</item> eredményül 1-et ad akkor, ha megadott egy Minden nevű területet az <emph>Adatok - Tartomány definiálása</emph> párbeszédablakban."
-
-#. 4)S^
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3148727\n"
-"help.text"
-msgid "<bookmark_value>DDE function</bookmark_value>"
-msgstr "<bookmark_value>DDE függvény</bookmark_value>"
-
-#. gTum
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148727\n"
-"28\n"
-"help.text"
-msgid "DDE"
-msgstr "DDE"
-
-#. trJv
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149434\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
-msgstr "<ahelp hid=\"HID_FUNC_DDE\">Egy DDE-alapú hivatkozás eredményét adja vissza.</ahelp> Ha a csatolt tartomány, illetve szakasz tartalma módosul, akkor az eredményül kapott érték maga is módosul. Ilyenkor újra kell töltenie a munkafüzetet, vagy a <emph>Szerkesztés - Hivatkozások</emph> menüparancsot kell választania a frissített hivatkozások megjelenítéséhez. A keresztplatformos hivatkozások (például Windows-gépen futó <item type=\"productname\">%PRODUCTNAME</item> telepítésből Linux-gépen létrehozott dokumentumra) nem megengedettek."
-
-#. /-!4
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3150700\n"
-"30\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ?P0d
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148886\n"
-"31\n"
-"help.text"
-msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
-msgstr "DDE(\"kiszolgáló\"; \"fájl\"; \"tartomány\"; mód)"
-
-#. R;v%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154842\n"
-"32\n"
-"help.text"
-msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
-msgstr "A <emph>kiszolgáló</emph> a kiszolgálóalkalmazás neve. A <item type=\"productname\">%PRODUCTNAME</item>-alkalmazások kiszolgálóneve: „soffice”."
-
-#. hZ.l
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153034\n"
-"33\n"
-"help.text"
-msgid "<emph>File</emph> is the complete file name, including path specification."
-msgstr "A <emph>fájl</emph> elérési utat is tartalmazó teljes fájlnév."
-
-#. W/7X
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147472\n"
-"34\n"
-"help.text"
-msgid "<emph>Range</emph> is the area containing the data to be evaluated."
-msgstr "A <emph>tartomány</emph> a kiértékelni kívánt adatokat tartalmazó terület."
-
-#. 7S;)
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3152773\n"
-"184\n"
-"help.text"
-msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
-msgstr "A <emph>mód</emph> opcionális paraméter, amely szabályozza, hogy a DDE-kiszolgáló milyen módon konvertálja az adatokat számokká."
-
-#. =/F]
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154383\n"
-"185\n"
-"help.text"
-msgid "<emph>Mode</emph>"
-msgstr "<emph>Mód</emph>"
-
-#. 2O:3
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3145146\n"
-"186\n"
-"help.text"
-msgid "<emph>Effect</emph>"
-msgstr "<emph>Hatás</emph>"
-
-#. Q[@]
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154558\n"
-"187\n"
-"help.text"
-msgid "0 or missing"
-msgstr "0 vagy nincs megadva."
-
-#. Wpp,
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3145596\n"
-"188\n"
-"help.text"
-msgid "Number format from the \"Default\" cell style"
-msgstr "Számformátum az „Alapértelmezett” cellastílusból"
-
-#. YnKF
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3152785\n"
-"189\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. 87+e
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154380\n"
-"190\n"
-"help.text"
-msgid "Data are always interpreted in the standard format for US English"
-msgstr "Az adatokat mindig a sztenderd amerikai angol szerint értelmezi"
-
-#. UP%`
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150279\n"
-"191\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. \fHY
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153775\n"
-"192\n"
-"help.text"
-msgid "Data are retrieved as text; no conversion to numbers"
-msgstr "Az adatot szövegként kapja meg; nem alakítja át számokká"
-
-#. ,#4%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3149546\n"
-"35\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. s?$P
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148734\n"
-"36\n"
-"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
-msgstr "A <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"Munkalap1.A1\")</item> beolvassa a data1.sxc <item type=\"productname\">%PRODUCTNAME</item>-munkafüzet Munkalap1 nevű munkalapjának A1 celláját."
-
-#. ?0vi
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153081\n"
-"37\n"
-"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr "<item type=\"input\">A =DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Nap idézete\")</item> eredményül egy – a képletet tartalmazó cellában található – idézetet ad. Először írjon be egy idézetet tartalmazó sort a motto.sxw dokumentumba, majd határozza meg a sort a <item type=\"literal\">Nap idézete</item> szakasz első soraként (az <item type=\"productname\">%PRODUCTNAME</item> Writer <emph>Létrehozás - Szakasz</emph> parancsának segítségével). Ha az idézetet módosítja a <item type=\"productname\">%PRODUCTNAME</item> Writer-dokumentumban (és a dokumentumot menti), akkor az idézet az összes olyan <item type=\"productname\">%PRODUCTNAME</item> Calc-cellában frissítésre kerül, amelyben a DDE-hivatkozás szerepel."
-
-#. !D#B
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3153114\n"
-"help.text"
-msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
-msgstr "<bookmark_value>HIBA.TÍPUS függvény</bookmark_value><bookmark_value>ERRORTYPE függvény, lásd: HIBA.TÍPUS függvény</bookmark_value>"
-
-#. J$0?
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153114\n"
-"38\n"
-"help.text"
-msgid "ERRORTYPE"
-msgstr "HIBA.TÍPUS"
-
-#. 09=p
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148568\n"
-"39\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
-msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Egy másik cellában fellépő <link href=\"text/scalc/05/02140000.xhp\" name=\"hibaértéknek\">hibaértéknek</link> megfelelő számot ad eredményül.</ahelp> Ezeknek a számoknak a segítségével hibaüzeneteket hozhat létre."
-
-#. kG*!
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149877\n"
-"40\n"
-"help.text"
-msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
-msgstr "Ha a hibát tartalmazó cellára kattint, akkor az Állapotsorban megjelenik a <item type=\"productname\">%PRODUCTNAME</item> termékben előre meghatározott hibakód."
-
-#. [ciU
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3154327\n"
-"41\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 4fiF
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3151322\n"
-"42\n"
-"help.text"
-msgid "ERRORTYPE(Reference)"
-msgstr "HIBA.TÍPUS(hivatkozás)"
-
-#. RA@C
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150132\n"
-"43\n"
-"help.text"
-msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
-msgstr "A <emph>hivatkozás</emph> a hibát tartalmazó cella címzése."
-
-#. (*#[
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3145248\n"
-"44\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. #V+a
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3146904\n"
-"45\n"
-"help.text"
-msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
-msgstr "Ha az A1 cella a Hiba:518 hibakódot jeleníti meg, a <item type=\"input\">=HIBA.TÍPUS(A1)</item> függvény az 518 értéket adja vissza."
-
-#. INE9
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3151221\n"
-"help.text"
-msgid "<bookmark_value>INDEX function</bookmark_value>"
-msgstr "<bookmark_value>INDEX függvény</bookmark_value>"
-
-#. I);/
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3151221\n"
-"47\n"
-"help.text"
-msgid "INDEX"
-msgstr "INDEX"
-
-#. ky_O
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150268\n"
-"48\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_INDEX\">Az INDEX egy altartományt ad vissza, amelyet sor- vagy oszlopszám, illetve egy opcionális tartományindex határoz meg. A kontextustól függően az INDEX hivatkozást vagy tartalmat ad vissza.</ahelp>"
-
-#. XWEg
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3156063\n"
-"49\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. TEt\
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149007\n"
-"50\n"
-"help.text"
-msgid "INDEX(Reference; Row; Column; Range)"
-msgstr "INDEX(hivatkozás; sor; oszlop; tartomány)"
-
-#. XYVF
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153260\n"
-"51\n"
-"help.text"
-msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
-msgstr "A <emph>hivatkozás</emph> közvetlenül vagy tartománynév megadásával meghatározott cellahivatkozás. Ha a hivatkozás több tartományból áll, akkor a hivatkozást, illetve tartománynevet zárójelek között szükséges megadni."
-
-#. E^YG
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3145302\n"
-"52\n"
-"help.text"
-msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
-msgstr "A <emph>sor</emph> (opcionális) a hivatkozástartomány sorindexe, amelyre vonatkozóan egy értéket meg kíván kapni. Nulla érték esetén (nincs megadva sor) visszaad minden hivatkozott sort."
-
-#. 1TEP
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154628\n"
-"53\n"
-"help.text"
-msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
-msgstr "Az <emph>oszlop</emph> (opcionális) a hivatkozástartomány oszlopindexe, amelyre vonatkozóan egy értéket meg kíván kapni. Nulla érték esetén (nincs megadva oszlop) visszaad minden hivatkozott oszlopot."
-
-#. 04[2
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155514\n"
-"54\n"
-"help.text"
-msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
-msgstr "A <emph>tartomány</emph> (opcionális) az altartomány indexelése, több tartományt tartalmazó hivatkozás esetén."
-
-#. vp^8
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3145264\n"
-"55\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 6JP%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3159112\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
-msgstr "Az <item type=\"input\">=INDEX(Árak;4;1)</item> eredményül az <emph>Adatok - Tartomány definiálása</emph> párbeszédablakban <emph>Árak</emph> néven megadott adatbázis-tartomány 4. sorának 1. oszlopában található értéket adja vissza."
-
-#. *6ZY
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150691\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "Az <item type=\"input\">=INDEX(SumX;4;1)</item> eredményül a <emph>Beszúrás - Nevek - Megadás</emph> párbeszédablakban a <emph>SumX</emph> néven megadott adatbázis-tartomány 4. sorának 1. oszlopában található értéket adja vissza."
-
-#. ;eg%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id4109012\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
-msgstr "Az <item type=\"input\">=INDEX(A1:B6;1)</item> az A1:B6 első sorára mutató hivatkozást adja vissza."
-
-#. 3lR*
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id9272133\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
-msgstr "Az <item type=\"input\">=INDEX(A1:B6;0;1)</item> az A1:B6 első oszlopára mutató hivatkozást adja vissza."
-
-#. (3Z!
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3158419\n"
-"58\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "Az <item type=\"input\">=INDEX((multi);4;1)</item> eredményül a <emph>Beszúrás - Nevek - Megadás</emph> párbeszédablakban a <emph>multi</emph> néven megadott adatbázis-tartomány 4. sorának 1. oszlopában található értéket adja vissza. A többszörös tartomány több téglalap alakú tartományból állhat, és mindegyik rendelkezhet 4. sorral és 1. oszloppal. Ha a többszörös tartomány második blokkját kívánja meghívni, akkor <emph>tartomány</emph> paraméterként adjon meg <item type=\"input\">2</item>-t."
-
-#. .Hz;
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148595\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
-msgstr "Az <item type=\"input\">=INDEX(A1:B6;1;1)</item> az A1:B6 tartomány bal felső értékét jelöli."
-
-#. a_L7
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id9960020\n"
-"help.text"
-msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
-msgstr "Az <item type=\"input\">=INDEX((multi);0;0;2)</item> a többszörös tartomány második tartományára mutató hivatkozást adja vissza."
-
-#. Z]Wj
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3153181\n"
-"help.text"
-msgid "<bookmark_value>INDIRECT function</bookmark_value>"
-msgstr "<bookmark_value>INDIREKT függvény</bookmark_value><bookmark_value>INDIRECT függvény, lásd: INDIREKT függvény</bookmark_value>"
-
-#. n]^T
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153181\n"
-"62\n"
-"help.text"
-msgid "INDIRECT"
-msgstr "INDIREKT"
-
-#. )\C#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147169\n"
-"63\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
-msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Egy karaktersorozat által meghatározott <emph>hivatkozást</emph> adja vissza.</ahelp> Ezzel a függvénnyel a megfelelő karakterlánc területét is vissza lehet adni."
-
-#. rUV\
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153717\n"
-"64\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. d\5_
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149824\n"
-"65\n"
-"help.text"
-msgid "INDIRECT(Ref; A1)"
-msgstr "INDIREKT(hivatkozás; A1)"
-
-#. rA3}
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154317\n"
-"66\n"
-"help.text"
-msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
-msgstr "A <emph>hivatkozás</emph> cella- vagy területhivatkozás (szöveges formátumban), amelyre vonatkozóan a tartalmat meg kívánja kapni."
-
-#. @-:2
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802470312\n"
-"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr "<emph>A1</emph> (opcionális) – ha 0, akkor az R1C1 jelölés érvényes. Ha a paraméter hiányzik, vagy nem 0, akkor az A1 jelölés érvényes."
-
-#. *IjB
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN10CAE\n"
-"help.text"
-msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
-msgstr "Ha megnyit egy Excel-munkafüzetet, amely karakterlánc-függvényekből számolt közvetett címet tartalmaz, a munkalapcímek nem lesznek automatikusan lefordítva. Például az INDIREKT(\"fájlnév!munkalapnév\"&B1) Excel-cím nem lesz automatikusan konvertálva Calc-címmé az INDIRECT(\"fájlnév.munkalapnév\"&B1) képletben."
-
-#. fHDI
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3150389\n"
-"67\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 2%.4
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150608\n"
-"68\n"
-"help.text"
-msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
-msgstr "Az <item type=\"input\">=INDIREKT(A1)</item> 100-zal egyenlő, ha az A1 cella a C108-as cellára való hivatkozást tartalmazza, és a C108 cella a <item type=\"input\">100</item> értéket tartalmazza."
-
-#. b7j:
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3083286\n"
-"181\n"
-"help.text"
-msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
-msgstr "A <item type=\"input\">=SZUM(INDIREKT(\"A1:\" & CÍM(1;3)))</item> összegzi azon cellákat, amelyek az A1 cellától azon celláig terjedő területen találhatók, amely címét az 1. sor 3. oszlopában meghatározta. Tehát, az A1:C1 terület lesz összegezve."
-
-#. =n1X
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3154818\n"
-"help.text"
-msgid "<bookmark_value>COLUMN function</bookmark_value>"
-msgstr "<bookmark_value>OSZLOP függvény</bookmark_value><bookmark_value>COLUMN függvény, lásd: OSZLOP függvény</bookmark_value>"
-
-#. yG[S
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3154818\n"
-"70\n"
-"help.text"
-msgid "COLUMN"
-msgstr "OSZLOP"
-
-#. _Yd1
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149711\n"
-"193\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
-msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Egy cellahivatkozás oszlopszámát adja eredményül.</ahelp> Ha a hivatkozás cella, akkor a cella oszlopszámát adja eredményül. Ha a paraméter cellaterület, akkor a függvény a vonatkozó oszlopszámokat adja eredményül egy egyetlen sorból álló <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"tömb\">tömb</link> formájában, feltéve, hogy a képlet <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"tömbképletként\">tömbképletként</link> kerül megadásra. Ha a területhivatkozás-paraméterrel rendelkező OSZLOP függvényt nem tömbképletre használja, akkor csak a területen belül található első cella oszlopszáma kerül meghatározásra."
-
-#. IPv8
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3149283\n"
-"72\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. m[j[
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149447\n"
-"73\n"
-"help.text"
-msgid "COLUMN(Reference)"
-msgstr "OSZLOP(hivatkozás)"
-
-#. Uq(M
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3156310\n"
-"74\n"
-"help.text"
-msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
-msgstr "A <emph>hivatkozás</emph> a cella-, illetve cellaterület-hivatkozás, amelyre vonatkozóan az első oszlop számát meg kívánja határozni."
-
-#. )0jH
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155837\n"
-"194\n"
-"help.text"
-msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr "Ha a hivatkozás értékének nem ad meg semmit, a képletet tartalmazó cella oszlopának számát adja vissza. A <item type=\"productname\">%PRODUCTNAME</item> Calc a hivatkozást automatikusan az aktuális cellára állítja."
-
-#. b.Ka
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3152932\n"
-"75\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. C@(s
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147571\n"
-"76\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
-msgstr "Az <item type=\"input\">=OSZLOP(A1)</item> képlet az 1 értéket adja vissza. Az A oszlop a táblázat első oszlopa."
-
-#. csg3
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147079\n"
-"77\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
-msgstr "Az <item type=\"input\">=OSZLOP(C3:E3)</item> képlet 3-mal egyenlő. A C oszlop a táblázat harmadik oszlopa."
-
-#. t23|
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3146861\n"
-"195\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
-msgstr "Az <item type=\"input\">=OSZLOP(D3:G10)</item> eredményül 4-et ad, mivel a D oszlop a táblázat negyedik oszlopa, és az OSZLOP függvényt nem tömbképletként használta. (Ebben az esetben eredményül a függvény mindig a tömb első értékét adja vissza.)"
-
-#. Li7D
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3156320\n"
-"196\n"
-"help.text"
-msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
-msgstr "Az <item type=\"input\">{=OSZLOP(B2:B7)}</item> és a <item type=\"input\">=OSZLOP(B2:B7)</item> eredményül egyaránt 2-t ad, mivel a hivatkozás csak a B oszlopot tartalmazza a táblázat második oszlopaként. Mivel az egyetlen oszlopból álló területek csak egy oszlopszámmal rendelkeznek, nem számít, hogy a képletet tömbképletként használja-e."
-
-#. yDd?
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150872\n"
-"197\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
-msgstr "Az <item type=\"input\">=OSZLOP()</item> képlet a 3 értéket adja vissza, ha a képlet a C oszlopban lett megadva."
-
-#. z?]G
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153277\n"
-"198\n"
-"help.text"
-msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
-msgstr "Az <item type=\"input\">{=OSZLOP(Nyúl)}</item> egy egyetlen sorból álló tömböt (3, 4) ad eredményül, ha a (C1:D3) terület neve „Nyúl”."
-
-#. Puun
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3154643\n"
-"help.text"
-msgid "<bookmark_value>COLUMNS function</bookmark_value>"
-msgstr "<bookmark_value>OSZLOPOK függvény</bookmark_value><bookmark_value>COLUMNS függvény, lásd: OSZLOPOK függvény</bookmark_value>"
-
-#. k!^s
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3154643\n"
-"79\n"
-"help.text"
-msgid "COLUMNS"
-msgstr "OSZLOPOK"
-
-#. RTVP
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3151182\n"
-"80\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Az adott hivatkozásban szereplő oszlopok számát adja eredményül.</ahelp>"
-
-#. ^weB
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3149141\n"
-"81\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. [%_3
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154047\n"
-"82\n"
-"help.text"
-msgid "COLUMNS(Array)"
-msgstr "OSZLOPOK(tömb)"
-
-#. bUQ#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154745\n"
-"83\n"
-"help.text"
-msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
-msgstr "A <emph>tömb</emph> az a cellatartomány-hivatkozás, amelyre vonatkozóan az oszlopok számát meg kívánja határozni. Az argumentum lehet egyetlen cella is."
-
-#. IfYn
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153622\n"
-"84\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. M`0L
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149577\n"
-"200\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
-msgstr "Az <item type=\"input\">=OSZLOPOK(B5)</item> függvény az 1 értéket adja vissza, mert a cella csak egy oszlopot tartalmaz."
-
-#. %d2a
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3145649\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
-msgstr "Az <item type=\"input\">=OSZLOPOK(A1:C5)</item> függvény értéke 3. A hivatkozás három oszlopot tartalmaz."
-
-#. @c4F
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155846\n"
-"201\n"
-"help.text"
-msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
-msgstr "Az <item type=\"input\">=OSZLOPOK(Nyúl)</item> eredményül 2-t ad, ha a (C1:D3) tartomány neve <item type=\"literal\">Nyúl</item>."
-
-#. g-[:
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3153152\n"
-"help.text"
-msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>függőleges keresési függvény</bookmark_value><bookmark_value>FKERES függvény</bookmark_value><bookmark_value>VLOOKUP függvény, lásd: FKERES függvény</bookmark_value>"
-
-#. FaCb
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153152\n"
-"87\n"
-"help.text"
-msgid "VLOOKUP"
-msgstr "FKERES"
-
-#. -cLH
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149984\n"
-"88\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Függőleges keresés hivatkozással a jobb oldali szomszédos cellákra.</ahelp> Ez a függvény azt vizsgálja, hogy egy adott érték szerepel-e egy tömb első oszlopában. A függvény ezt az értéket adja vissza az <item type=\"literal\">index</item> nevű oszlop azonos sorában. Ha a <item type=\"literal\">rendezett</item> paraméter nincs megadva, IGAZ értékre, illetve 1-re van állítva, akkor a függvény úgy veszi, hogy az adatok növekvő sorrendben vannak. Ebben az esetben, ha nem található pontosan a <item type=\"literal\">keresési_feltétel</item>, akkor a keresési feltételnél kisebb utolsó érték lesz visszaadva. Ha a <item type=\"literal\">rendezett</item> paraméter HAMIS vagy nulla, akkor pontos találatra van szükség, ellenkező esetben a <emph>Hiba: Érték nem érhető el</emph> hiba lesz az eredmény. A nulla érték mellett nem szükséges növekvő sorrendbe rendezni az adatokat."
-
-#. oE[A
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3146898\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ~jUi
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150156\n"
-"90\n"
-"help.text"
-msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
-msgstr "=FKERES(keresési_feltétel; tömb; index; rendezett)"
-
-#. (1Tp
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149289\n"
-"91\n"
-"help.text"
-msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
-msgstr "A <emph>keresési_feltétel</emph> a tömb első oszlopában keresett érték."
-
-#. 4kSJ
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153884\n"
-"92\n"
-"help.text"
-msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
-msgstr "A <emph>tömb</emph> legalább két oszlopból álló hivatkozás."
-
-#. )|/-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3156005\n"
-"93\n"
-"help.text"
-msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
-msgstr "Az <emph>index</emph> a visszakapni kívánt értéket tartalmazó oszlop száma a tömbben. Az első oszlop száma 1."
-
-#. [W0~
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3151208\n"
-"94\n"
-"help.text"
-msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
-msgstr "A <emph>rendezett</emph> opcionális paraméter, amely azt jelöli, hogy a tömb első oszlopa növekvő sorrendben van-e rendezve. Ha az első oszlop nincs növekvő sorrendben rendezve, akkor írja be a logikai HAMIS vagy a nulla értéket. A rendezett oszlopokban a keresés sokkal gyorsabb, illetve a függvény minden esetben visszaad egy értéket. Ez igaz még akkor is, ha a függvény a keresési értékkel nem talált pontos egyezést, feltéve, hogy az érték a rendezett lista legmagasabb és a legalacsonyabb rendezett értéke között található. Nem rendezett listák esetén a keresési értéknek pontosan egyeznie kell. Ha nem így van, a függvény a következő üzenetet adja vissza: <emph>Hiba: Érték nem érhető el</emph>."
-
-#. L@Ko
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3147487\n"
-"95\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. nmEZ
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154129\n"
-"96\n"
-"help.text"
-msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
-msgstr "A menün található egyik étel számát meg kívánja adni az A1 cellában úgy, hogy az étel neve – szövegként – azonnal megjelenjen a szomszédos (B1) cellában. A Szám-Név hozzárendelést a D1:E100 tömb tartalmazza. A D1 <item type=\"input\">100</item>-at tartalmaz, E1 a <item type=\"input\">Zöldségleves</item> nevet tartalmazza, és így tovább, mind a száz menütételre. A D oszlop számai növekvő sorrendben rendezettek, tehát az opcionális <item type=\"literal\">rendezett</item> paramétert nem szükséges megadni."
-
-#. Pt]7
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3145663\n"
-"97\n"
-"help.text"
-msgid "Enter the following formula in B1:"
-msgstr "Adja meg a B1-es cellába a következő képletet:"
-
-#. d}Vt
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3151172\n"
-"98\n"
-"help.text"
-msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
-msgstr "<item type=\"input\">=FKERES(A1;D1:E100;2)</item>"
-
-#. Kscf
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149200\n"
-"99\n"
-"help.text"
-msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
-msgstr "Amint az A1 cellában megadja a számot, a B1 megjeleníti a D1:E100 hivatkozás második oszlopából a vonatkozó szöveget. Ha nem létező számot ad meg, akkor a következő számhoz tartozó szöveg jelenik meg. Ennek megakadályozására a képlet utolsó paramétereként adja meg a HAMIS értéket. Ennek eredményeként egy nem létező szám beírásakor hibaüzenet jelenik meg."
-
-#. lFB-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3153905\n"
-"help.text"
-msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
-msgstr "<bookmark_value>munkalapszámok; keresés</bookmark_value><bookmark_value>SHEET függvény</bookmark_value><bookmark_value>LAP függvény, lásd: SHEET függvény</bookmark_value>"
-
-#. `}(|
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153905\n"
-"215\n"
-"help.text"
-msgid "SHEET"
-msgstr "SHEET"
-
-#. 6G)#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150309\n"
-"216\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">A hivatkozás munkalapszámát vagy egy munkalapnevet képviselő karaktersorozatot ad eredményül.</ahelp> Ha nem ad meg paramétereket, az eredmény a képletet tartalmazó munkalap száma a táblázatban."
-
-#. 61u*
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148564\n"
-"217\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. x#Mp
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153095\n"
-"218\n"
-"help.text"
-msgid "SHEET(Reference)"
-msgstr "SHEET(hivatkozás)"
-
-#. ^X]#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154588\n"
-"219\n"
-"help.text"
-msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
-msgstr "A <emph>hivatkozás</emph> opcionális cella- vagy területhivatkozás, illetve munkalapnév-karakterlánc."
-
-#. !(7R
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3155399\n"
-"220\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. I5.7
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3146988\n"
-"221\n"
-"help.text"
-msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
-msgstr "A <item type=\"input\">=SHEET(Munkalap2.A1)</item> függvény a 2 értéket adja vissza, ha a Munkalap2 a munkafüzet-dokumentum második munkalapja."
-
-#. Ck\`
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3148829\n"
-"help.text"
-msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
-msgstr "<bookmark_value>munkalapok száma; függvények</bookmark_value><bookmark_value>SHEETS függvény</bookmark_value>"
-
-#. ccKb
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148829\n"
-"222\n"
-"help.text"
-msgid "SHEETS"
-msgstr "SHEETS"
-
-#. dL.P
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148820\n"
-"223\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Megállapítja a hivatkozás munkalapjainak számát.</ahelp> Ha nem ad meg paramétereket, az aktuális dokumentum munkalapjainak számát adja vissza."
-
-#. D(X2
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3154220\n"
-"224\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Xoc_
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150777\n"
-"225\n"
-"help.text"
-msgid "SHEETS(Reference)"
-msgstr "SHEETS(hivatkozás)"
-
-#. [;vj
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153060\n"
-"226\n"
-"help.text"
-msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
-msgstr "A <emph>hivatkozás</emph> munkalap- vagy területhivatkozás. A paraméter megadása nem kötelező."
-
-#. gB.d
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3149766\n"
-"227\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 2SF%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150507\n"
-"228\n"
-"help.text"
-msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
-msgstr "A <item type=\"input\">=SHEETS(Munkalap1.A1:Munkalap3.G12)</item> függvény a 3 értéket adja vissza, ha a Munkalap1, Munkalap2 és Munkalap3 munkalapok a megadott sorrendben vannak."
-
-#. q%0E
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3158407\n"
-"help.text"
-msgid "<bookmark_value>MATCH function</bookmark_value>"
-msgstr "<bookmark_value>HOL.VAN függvény</bookmark_value><bookmark_value>MATCH függvény, lásd: HOL.VAN függvény</bookmark_value>"
-
-#. nQ@r
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3158407\n"
-"101\n"
-"help.text"
-msgid "MATCH"
-msgstr "HOL.VAN"
-
-#. ?BBx
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154896\n"
-"102\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
-msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Kiszámítja a megadott értékkel egyező tömb egy elemének relatív helyzetét.</ahelp> A függvény számként adja vissza a Keresési tömb segítségével megtalált érték helyzetét."
-
-#. Ix6l
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153834\n"
-"103\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ZJa0
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3159152\n"
-"104\n"
-"help.text"
-msgid "MATCH(SearchCriterion; LookupArray; Type)"
-msgstr "HOL.VAN(keresési_feltétel; keresési_tömb; típus)"
-
-#. ^!I^
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149336\n"
-"105\n"
-"help.text"
-msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
-msgstr "A <emph>keresési_feltétel</emph> az egyetlen sorból, illetve oszlopból álló tömbben keresendő érték."
-
-#. D)4\
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3159167\n"
-"106\n"
-"help.text"
-msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
-msgstr "A <emph>keresési_tömb</emph> a keresés helyét megadó hivatkozás. A keresési tömb állhat egyetlen sorból vagy oszlopból, illetve lehet egy sor vagy oszlop egy része."
-
-#. iUL;
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147239\n"
-"107\n"
-"help.text"
-msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
-msgstr "A <emph>típus</emph> az 1, 0, illetve -1 értékek valamelyikét veheti fel. Ha a <emph>típus</emph> = 1, illetve a választható paraméter nincs megadva, akkor a függvény feltételezi, hogy a keresési tömb első oszlopa növekvő sorrendben rendezett. Ha a <emph>típus</emph> = -1, akkor a függvény feltételezi, hogy az oszlop csökkenő sorrendben rendezett. Ez megegyezik a Microsoft Excel hasonló funkciójával."
-
-#. pI+W
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154265\n"
-"231\n"
-"help.text"
-msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
-msgstr "Ha a <emph>típus</emph> = 0, akkor a függvény kizárólag a pontos egyezéseket találja meg. Ha a keresési feltétel több találatot eredményez, akkor a függvény az első találatot adja eredményül. Reguláris kifejezésekre csak a <emph>típus</emph> = 0 esetén kereshet."
-
-#. 5NeF
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147528\n"
-"232\n"
-"help.text"
-msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
-msgstr "Ha a <emph>típus</emph> = 1 vagy a harmadik paraméter nincs megadva, akkor eredményül a függvény az utolsóként előforduló, a keresési feltételnél kisebb vagy azzal egyenlő érték indexét adja vissza. Ez abban az esetben is igaz, ha a keresési tömb nincs rendezve. Ha a <emph>típus</emph> = -1, a függvény eredményül az első nagyobb vagy egyenlő értéket adja vissza."
-
-#. y]Q]
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3155119\n"
-"108\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. -!O[
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155343\n"
-"109\n"
-"help.text"
-msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
-msgstr "A <item type=\"input\">=HOL.VAN(200;D1:D100)</item> a D oszlop szerint rendezett D1:D100 területen belül keresi a 200 értéket. Amint a függvény eléri ezt az értéket, az értéket tartalmazó sor száma visszaadásra kerül. Ha az oszlop keresése során a függvény ennél nagyobb értéket talál, akkor az előző sor száma kerül visszaadásra."
-
-#. ejGJ
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3158430\n"
-"help.text"
-msgid "<bookmark_value>OFFSET function</bookmark_value>"
-msgstr "<bookmark_value>OFSZET függvény</bookmark_value><bookmark_value>OFFSET függvény, lásd: OFSZET függvény</bookmark_value>"
-
-#. S}Ad
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3158430\n"
-"111\n"
-"help.text"
-msgid "OFFSET"
-msgstr "OFSZET"
-
-#. AzId
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149167\n"
-"112\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Egy adott hivatkozási ponttól megadott számú sorral és oszloppal eltolt cella értékét adja eredményül.</ahelp>"
-
-#. D`NH
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3146952\n"
-"113\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. SUV3
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3159194\n"
-"114\n"
-"help.text"
-msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
-msgstr "OFSZET(hivatkozás; sorok; oszlopok; magasság; szélesség)"
-
-#. (E:T
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3152360\n"
-"115\n"
-"help.text"
-msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
-msgstr "A <emph>hivatkozás</emph> azon hivatkozás, amelytől kezdve a függvény az új hivatkozást keresi."
-
-#. K[^|
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3156032\n"
-"116\n"
-"help.text"
-msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
-msgstr "A <emph>sorok</emph> azon sorok száma, amellyel a hivatkozás felfelé (negatív érték) vagy lefelé korrigálásra kerül."
-
-#. oe@g
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3166458\n"
-"117\n"
-"help.text"
-msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
-msgstr "Az <emph>oszlopok</emph> (opcionális) azon oszlopok száma, amellyel a hivatkozás balra (negatív érték) vagy jobbra korrigálásra kerül."
-
-#. kbM0
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150708\n"
-"118\n"
-"help.text"
-msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
-msgstr "A <emph>magasság</emph> (opcionális) az új hivatkozáspozíción kezdődő terület függőleges magassága."
-
-#. p(?l
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147278\n"
-"119\n"
-"help.text"
-msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
-msgstr "A <emph>szélesség</emph> (opcionális) az új hivatkozáspozíción kezdődő terület vízszintes szélessége."
-
-#. R/+6
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id8662373\n"
-"help.text"
-msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
-msgstr "A <emph>sorok</emph> és az <emph>oszlopok</emph> argumentumok nem mutathatnak nulla vagy negatív kezdetű sorra vagy oszlopra."
-
-#. Y^9h
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id9051484\n"
-"help.text"
-msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
-msgstr "A <emph>magasság</emph> és a <emph>szélesség</emph> argumentumok nem mutathatnak nulla vagy negatív számú sorra vagy oszlopra."
-
-#. A2)A
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN1104B\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. .}9Q
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3155586\n"
-"120\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. -]{+
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149744\n"
-"121\n"
-"help.text"
-msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
-msgstr "Az <item type=\"input\">=OFSZET(A1;2;2)</item> eredményül a C3 cellában található értéket adja (A1-től két oszloppal jobbra és két sorral lefelé). Ha a C3 cella a 100 értéket tartalmazza, akkor a függvény eredményül a <item type=\"input\">100</item> értéket adja vissza."
-
-#. 5uo\
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id7439802\n"
-"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
-msgstr "Az <item type=\"input\">=OFSZET(B2:C3;1;1)</item> a B2:C3 hivatkozástól az 1 sorral lejjebb és 1 oszloppal jobbra levő hivatkozást (C3:D4) adja vissza."
-
-#. l0EJ
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3009430\n"
-"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
-msgstr "Az <item type=\"input\">=OFSZET(B2:C3;-1;-1)</item> a B2:C3 hivatkozástól az 1 sorral feljebb és 1 oszloppal balra levő hivatkozást (A1:B2) adja vissza."
-
-#. {8%A
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id2629169\n"
-"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
-msgstr "Az <item type=\"input\">=OFSZET(B2:C3;0;0;3;4)</item> a B2:C3 hivatkozásból a 3 sorra és 4 oszlopra átméretezett hivatkozást (B2:E4) adja vissza."
-
-#. Sh=$
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id6668599\n"
-"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
-msgstr "Az <item type=\"input\">=OFSZET(B2:C3;1;0;3;4)</item> a B2:C3 hivatkozásból az 1 sorral lejjebb tolt és 3 sorra és 4 oszlopra átméretezett hivatkozást (B2:E4) adja vissza."
-
-#. LV}K
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153739\n"
-"122\n"
-"help.text"
-msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
-msgstr "A <item type=\"input\">=SZUM(OFSZET(A1;2;2;5;6))</item> a C3 cellánál kezdődő, 5 sor magas, és 6 oszlop széles terület (terület=C3:H7) összegét határozza meg."
-
-#. 2d$4
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3159273\n"
-"help.text"
-msgid "<bookmark_value>LOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>KUTAT függvény</bookmark_value><bookmark_value>LOOKUP függvény, lásd: KUTAT függvény</bookmark_value>"
-
-#. WMUR
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3159273\n"
-"123\n"
-"help.text"
-msgid "LOOKUP"
-msgstr "KUTAT"
-
-#. 1D;$
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153389\n"
-"124\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Egy egysoros vagy egyoszlopos cellatartományból származó cella tartalmát adja eredményül.</ahelp> Esetleg a hozzárendelt érték (azonos indexszel) egy másik sorban, illetve oszlopban kerül visszaadásra. Az <link href=\"text/scalc/01/04060109.xhp\" name=\"FKERES\">FKERES</link> és a <link href=\"text/scalc/01/04060109.xhp\" name=\"VKERES\">VKERES</link> függvénnyel ellentétben a keresési, illetve az eredményvektorok lehetnek eltérő helyeken, nem kell szomszédosnak lenniük. Ezen kívül a KUTAT keresési vektorját növekvő sorrendbe kell rendezni, ellenkező esetben a keresés nem jár használható eredménnyel."
-
-#. _J#X
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id4484084\n"
-"help.text"
-msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
-msgstr "Ha a KUTAT nem találja a keresési feltételt, a keresési vektor legnagyobb értékére illeszkedik, amely kisebb vagy egyenlő, mint a keresési feltétel."
-
-#. 2/%_
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3152947\n"
-"125\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ]CIi
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154104\n"
-"126\n"
-"help.text"
-msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
-msgstr "KUTAT(keresési_feltétel; keresési_vektor; eredményvektor)"
-
-#. QdIJ
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150646\n"
-"127\n"
-"help.text"
-msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
-msgstr "A <emph>keresési_feltétel</emph> a keresendő érték; lehet közvetlenül vagy hivatkozásként beírva."
-
-#. 6=kx
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154854\n"
-"128\n"
-"help.text"
-msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
-msgstr "A <emph>keresési_vektor</emph> az egyetlen sorból vagy egyetlen oszlopból álló terület, ahol keresni kell."
-
-#. UhWv
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149925\n"
-"129\n"
-"help.text"
-msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
-msgstr "Az <emph>eredményvektor</emph> egy másik egyetlen sorból vagy egyetlen oszlopból álló tartomány, amelyből a függvény eredménye kiválasztásra kerül. Az eredmény az eredményvektor azon cellája, amely a keresési vektorban megtalált példánnyal azonos indexszel rendelkezik."
-
-#. |UA(
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148624\n"
-"130\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. byha
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149809\n"
-"131\n"
-"help.text"
-msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
-msgstr "A <item type=\"input\">=KUTAT(A1;D1:D100;F1:F100)</item> a D1:D100 tartomány vonatkozó cellájában keresi az A1 cellában megadott értéket. A megadott példányra a függvény megállapítja az indexet, például a tartomány 12. cellája. Ezt követően a 12. cella tartalma kerül visszaadásra a függvény eredményeként (az eredmény vektorban)."
-
-#. dYY/
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3149425\n"
-"help.text"
-msgid "<bookmark_value>STYLE function</bookmark_value>"
-msgstr "<bookmark_value>STYLE függvény</bookmark_value><bookmark_value>STÍLUS függvény, lásd: STYLE függvény</bookmark_value>"
-
-#. ;Lg0
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3149425\n"
-"133\n"
-"help.text"
-msgid "STYLE"
-msgstr "STYLE"
-
-#. l\R;
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150826\n"
-"134\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
-msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Stílust alkalmaz a képletet tartalmazó cellára.</ahelp> Adott idő elteltével másik stílus alkalmazható. A függvény eredményül mindig 0-t ad, így tetszőleges függvényhez hozzáadhatja az érték módosítása nélkül. A CURRENT függvénnyel együtt meghatározhatja a cella színét, tekintet nélkül a cella értékére. Például: a =...+STYLE(HA(CURRENT()>3;\"vörös\";\"zöld\")) a „vörös” stílust alkalmazza a cellára, ha az érték 3-nál nagyobb. Ellenkező esetben a „zöld” stílus kerül alkalmazásra. Mindkét cellaformátumot használat előtt meg kell határoznia."
-
-#. obNQ
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3145373\n"
-"135\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. :]2Y
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149302\n"
-"136\n"
-"help.text"
-msgid "STYLE(\"Style\"; Time; \"Style2\")"
-msgstr "STYLE(\"stílus\"; idő; \"stílus_2\")"
-
-#. #]Qp
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150596\n"
-"137\n"
-"help.text"
-msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
-msgstr "A <emph>stílus</emph> a cellához rendelt stílus neve. A stílusneveket idézőjelek között kell megadni."
-
-#. _D{y
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3156149\n"
-"138\n"
-"help.text"
-msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
-msgstr "Az <emph>idő</emph> (opcionális) másodpercekben megadott időtartomány. Ha a paraméter nincs megadva, akkor a stílus nem kerül módosításra egy adott idő elteltével."
-
-#. pJHa
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149520\n"
-"139\n"
-"help.text"
-msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
-msgstr "A <emph>stílus_2</emph> (opcionális) a cellához egy bizonyos idő elteltével hozzárendelésre kerülő stílus neve. Ha a paraméter nincs megadva, akkor a függvény az „Alapértelmezett” stílust használja."
-
-#. DI7!
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN111CA\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. BaN7
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3159254\n"
-"140\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @$on
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3151374\n"
-"141\n"
-"help.text"
-msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
-msgstr "A <item type=\"input\">=STYLE(\"Láthatatlan\";60;\"Alapértelmezett\")</item> a cellát átlátszó formátummal formázza a dokumentum újraszámítását, illetve betöltését követően 60 másodpercig, majd az Alapértelmezett formátum kerül a cellához hozzárendelésre. Mindkét cellaformátumot használat előtt meg kell határoznia."
-
-#. j%,N
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id8056886\n"
-"help.text"
-msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
-msgstr "Mivel a STYLE() függvény visszatérési értéke a nulla szám, ez az érték hozzáíródik a karakterlánchoz. Ez elkerülhető a T() használatával, mint azt az alábbi példa bemutatja."
-
-#. +Ode
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3668935\n"
-"help.text"
-msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
-msgstr "<item type=\"input\">=\"Szöveg\"&T(STYLE(\"Saját stílus\"))</item>"
-
-#. 6X5B
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3042085\n"
-"help.text"
-msgid "See also CURRENT() for another example."
-msgstr "Egy másik példáért lásd még a CURRENT() leírását."
-
-#. GyBc
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3150430\n"
-"help.text"
-msgid "<bookmark_value>CHOOSE function</bookmark_value>"
-msgstr "<bookmark_value>VÁLASZT függvény</bookmark_value><bookmark_value>CHOOSE függvény, lásd: VÁLASZT függvény</bookmark_value>"
-
-#. wnki
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3150430\n"
-"142\n"
-"help.text"
-msgid "CHOOSE"
-msgstr "VÁLASZT"
-
-#. %b/g
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3143270\n"
-"143\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Egy 1-től 30-ig terjedő listából index használatával visszaad egy értéket.</ahelp>"
-
-#. nD\l
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3153533\n"
-"144\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. #!%;
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155425\n"
-"145\n"
-"help.text"
-msgid "CHOOSE(Index; Value1; ...; Value30)"
-msgstr "VÁLASZT(index; érték_1; ...érték_30)"
-
-#. WODj
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3144755\n"
-"146\n"
-"help.text"
-msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
-msgstr "Az <emph>index</emph> 1–30 közötti érték vagy hivatkozás, amely meghatározza, hogy a lista melyik eleme kerül visszaadásra."
-
-#. ?.Uf
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149939\n"
-"147\n"
-"help.text"
-msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr "Az <emph>érték_1...érték_30</emph> az értékek felsorolása, cellahivatkozásokként vagy egyedi értékekként megadva."
-
-#. [d!s
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3151253\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. no`Y
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150625\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
-msgstr "A <item type=\"input\">=VÁLASZT(A1;B1;B2;B3;\"Ma\";\"Tegnap\";\"Holnap\")</item> például a B2 cella tartalmát adja eredményül A1 = 2 esetén. A1 = 4 esetén a függvény a „Ma” szöveget adja eredményül."
-
-#. U)$2
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3151001\n"
-"help.text"
-msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>VKERES függvény</bookmark_value><bookmark_value>HLOOKUP függvény, lásd: VKERES függvény</bookmark_value>"
-
-#. }D%h
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3151001\n"
-"151\n"
-"help.text"
-msgid "HLOOKUP"
-msgstr "VKERES"
-
-#. UagN
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148688\n"
-"152\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
-msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">A kijelölt terület alatti cellákhoz értéket és hivatkozást keres.</ahelp> A függvény ellenőrzi, hogy egy tömb első sora tartalmaz-e egy bizonyos értéket. A függvény ezután visszaadja a tömb egy sorának az <emph>index</emph> oszlopban megnevezett értékét ugyanabban az oszlopban."
-
-#. pks,
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3154661\n"
-"153\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. @M5i
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3146070\n"
-"154\n"
-"help.text"
-msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
-msgstr "VKERES(keresési_feltétel; tömb; index; rendezett)"
-
-#. i\2r
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148672\n"
-"155\n"
-"help.text"
-msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr "Lásd még: <link href=\"text/scalc/01/04060109.xhp\" name=\"FKERES\">FKERES</link> (oszlopok és sorok felcserélésre kerülnek)."
-
-#. hshP
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3147321\n"
-"help.text"
-msgid "<bookmark_value>ROW function</bookmark_value>"
-msgstr "<bookmark_value>SOR függvény</bookmark_value><bookmark_value>ROW függvény, lásd: SOR függvény</bookmark_value>"
-
-#. 3YB`
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3147321\n"
-"157\n"
-"help.text"
-msgid "ROW"
-msgstr "SOR"
-
-#. lc(Z
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154564\n"
-"203\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
-msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">A cellahivatkozás sorának számát adja eredményül.</ahelp> Ha a hivatkozás cella, akkor eredményül a cella sorszámát adja vissza. Ha a hivatkozás cellatartomány, akkor a függvény eredményül a vonatkozó sorszámokat adja egy egyoszlopos <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"tömb\">tömb</link> formájában, ha a képlet <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"tömbképletként\">tömbképletként</link> került megadásra. Ha a tartományhivatkozással rendelkező SOR függvényt nem tömbképlet részeként használja, akkor a függvény csak a tartomány első cellájának sorszámát adja eredményül."
-
-#. A9[6
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3158439\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. rq!1
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154916\n"
-"160\n"
-"help.text"
-msgid "ROW(Reference)"
-msgstr "SOR(hivatkozás)"
-
-#. A`sq
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3156336\n"
-"161\n"
-"help.text"
-msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
-msgstr "A <emph>hivatkozás</emph> egy cella, egy terület vagy egy területnév."
-
-#. PB,+
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3151109\n"
-"204\n"
-"help.text"
-msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr "Ha nem jelöl ki hivatkozást, a képletet tartalmazó cella sorának számát adja vissza. A <item type=\"productname\">%PRODUCTNAME</item> Calc a hivatkozást automatikusan az aktuális cellára állítja."
-
-#. `Jc%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3155609\n"
-"162\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ia-^
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154830\n"
-"205\n"
-"help.text"
-msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
-msgstr "A <item type=\"input\">=SOR(B3)</item> képlet a 3 értéket adja vissza, mert a hivatkozás a táblázat harmadik sorára hivatkozik."
-
-#. pMnl
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3147094\n"
-"206\n"
-"help.text"
-msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
-msgstr "A <item type=\"input\">{=SOR(D5:D8)}</item> képlet a (5, 6, 7, 8) egyoszlopos tömböt adja vissza, mert a megadott hivatkozás az 5 és 8 közötti sorokat tartalmazza."
-
-#. i\S!
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153701\n"
-"207\n"
-"help.text"
-msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
-msgstr "A <item type=\"input\">=SOR(D5:D8)</item> képlet az 5 értéket adja vissza, mert a ROW függvényt nem tömbhivatkozásként használta, és csak a hivatkozás első sorának számát adja vissza."
-
-#. NQO@
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150996\n"
-"208\n"
-"help.text"
-msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
-msgstr "A <item type=\"input\">{=SOR(A1:E1)}</item> és a <item type=\"input\">=ROW(A1:E1)</item> egyaránt 1-et ad vissza, mivel a hivatkozás csak az 1. sort tartalmazza a táblázat első soraként. (Mivel az egyetlen sorból álló területek csak egy sorszámmal rendelkeznek, nem számít, hogy a képletet tömbképletként használja-e.)"
-
-#. ,mO*
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153671\n"
-"209\n"
-"help.text"
-msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
-msgstr "A <item type=\"input\">=SOR()</item> képlet a 3 értéket adja vissza, ha a képletet a 3. sorba írja be."
-
-#. -SVK
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3153790\n"
-"210\n"
-"help.text"
-msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
-msgstr "A <item type=\"input\">{=SOR(Nyúl)}</item> egy egyetlen sorból álló tömböt (1, 2, 3) ad eredményül, ha a (C1:D3) terület neve „Nyúl”."
-
-#. g^m@
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id3145772\n"
-"help.text"
-msgid "<bookmark_value>ROWS function</bookmark_value>"
-msgstr "<bookmark_value>SOROK függvény</bookmark_value><bookmark_value>ROWS függvény, lásd: SOROK függvény</bookmark_value>"
-
-#. 1bPm
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3145772\n"
-"166\n"
-"help.text"
-msgid "ROWS"
-msgstr "SOROK"
-
-#. ]Q4W
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3148971\n"
-"167\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Egy hivatkozás vagy tömb sorainak számát adja eredményül.</ahelp>"
-
-#. ~lGY
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3156051\n"
-"168\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ]*/#
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154357\n"
-"169\n"
-"help.text"
-msgid "ROWS(Array)"
-msgstr "SOROK(tömb)"
-
-#. 31fi
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155942\n"
-"170\n"
-"help.text"
-msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
-msgstr "A <emph>tömb</emph> az a hivatkozás vagy névvel ellátott terület, amelyre vonatkozóan a sorok számát meg kívánja határozni."
-
-#. c0=+
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3155869\n"
-"171\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 7R)m
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3154725\n"
-"212\n"
-"help.text"
-msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
-msgstr "A <item type=\"input\">=SOROK(B5)</item> képlet az 1 értéket adja vissza, mert a cella csak egy oszlopot tartalmaz."
-
-#. oGGi
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150102\n"
-"172\n"
-"help.text"
-msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
-msgstr "A <item type=\"input\">=SOROK(A10:B12)</item> képlet a 3 értéket adja vissza."
-
-#. AEO%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3155143\n"
-"213\n"
-"help.text"
-msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
-msgstr "A <item type=\"input\">=SOROK(Nyúl)</item> eredményül 3-at ad, ha a (C1:D3) terület neve „Nyúl”."
-
-#. LDn1
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id9959410\n"
-"help.text"
-msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
-msgstr "<bookmark_value>HIPERHIVATKOZÁS függvény</bookmark_value><bookmark_value>HYPERLINK függvény, lásd: HIPERHIVATKOZÁS függvény</bookmark_value>"
-
-#. `Z-E
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11798\n"
-"help.text"
-msgid "HYPERLINK"
-msgstr "HIPERHIVATKOZÁS"
-
-#. cSi-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN117F1\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">Ha olyan cellára kattint, amely a HIPERHIVATKOZÁS függvényt tartalmazza, a hiperhivatkozás megnyílik.</ahelp>"
-
-#. y0Fa
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11800\n"
-"help.text"
-msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
-msgstr "Ha a kiegészítő <emph>cella szövege</emph> paramétert is megadja, akkor a képlet megkeresi az URL-t, majd megjeleníti a szöveget."
-
-#. *QNR
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11803\n"
-"help.text"
-msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
-msgstr "Ha billentyűzetről akar megnyitni egy hiperhivatkozást tartalmazó cellát, jelölje ki a cellát, Szerkesztés módba történő váltáshoz nyomja meg az F2 billentyűt, vigye a kurzort a hiperhivatkozás elé, nyomja meg a Shift+F10 billentyűkombinációt, majd válassza a <emph>Hiperhivatkozás megnyitása</emph> menüparancsot."
-
-#. \E+\
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN1180A\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 1^24
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN1180E\n"
-"help.text"
-msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
-msgstr "HIPERHIVATKOZÁS(\"URL\") vagy HIPERHIVATKOZÁS(\"URL\"; \"cella szövege\")"
-
-#. RTj1
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11811\n"
-"help.text"
-msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
-msgstr "Az <emph>URL</emph> a hivatkozás célja. A kiegészítő <emph>cella szövege</emph> paraméter jelenik meg a cellában, és ezt adja vissza a függvény. Ha nincs megadva a <emph>cella szövege</emph> paraméter, akkor az <emph>URL</emph> jelenik meg a cellában, és ezt adja vissza a függvény."
-
-#. RP)1
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224576\n"
-"help.text"
-msgid "The number 0 is returned for empty cells and matrix elements."
-msgstr "Üres cellákra és mátrixelemekre a 0 számot adja vissza."
-
-#. ,j0?
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11823\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 3zG`
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11827\n"
-"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "A <item type=\"input\">=HIPERHIVATKOZÁS(\"http://www.példa.hu\")</item> a „http://www.példa.hu” szöveget jeleníti meg, és a http://www.példa.hu címre ugrik, ha rákattint."
-
-#. pjth
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN1182A\n"
-"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "A <item type=\"input\">=HIPERHIVATKOZÁS(\"http://www.példa.hu\";\"Kattintson ide\")</item> a „Kattintson ide” szöveget jeleníti meg, és a http://www.példa.hu címre ugrik, ha rákattint."
-
-#. GRh)
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224534\n"
-"help.text"
-msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
-msgstr "A =HIPERHIVATKOZÁS(\"http://www.példa.hu\";12345) az 12345 számot jeleníti meg, és a http://www.példa.hu címre ugrik, ha rákattint."
-
-#. ^1U5
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN1182D\n"
-"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "A <item type=\"input\">=HIPERHIVATKOZÁS($B4)</item>, ahol a B4 cella tartalma a <item type=\"input\">http://www.példa.hu</item>. A függvény a http://www.példa.hu címet adja hozzá a hiperhivatkozás-cella URL-jéhez, és ugyanazt a szöveget adja vissza, amely a képlet eredménye."
-
-#. z;#E
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_idN11830\n"
-"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "A <item type=\"input\">=HIPERHIVATKOZÁS(\"http://www.\";\"Kattintson ide:\") & \"példa.hu\"</item> a „Kattintson ide: példa.hu” szöveget jeleníti meg, és a http://www.példa.hu címre ugrik, ha rákattint."
-
-#. I)8n
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id8859523\n"
-"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
-msgstr "A <item type=\"input\">=HIPERHIVATKOZÁS(\"#Munkalap1.A1\";\"Ugrás a lap tetejére\")</item> megjeleníti az „Ugrás a lap tetejére” szöveget, és a dokumentum Munkalap1.A1 cellájára ugrik."
-
-#. 0U!.
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id2958769\n"
-"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr "A <item type=\"input\">=HIPERHIVATKOZÁS(\"file:///C:/writer.odt#Specifikáció\";\"Ugrás a Writer-könyvjelzőre\")</item> megjeleníti az Ugrás a Writer-könyvjelzőre szöveget, és a „Specifikáció” könyvjelzőre ugrik."
-
-#. `nsc
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"bm_id7682424\n"
-"help.text"
-msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
-msgstr "<bookmark_value>GETPIVOTDATA függvény</bookmark_value>"
-
-#. jM0I
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3747062\n"
-"help.text"
-msgid "GETPIVOTDATA"
-msgstr "GETPIVOTDATA"
-
-#. `@#=
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3593859\n"
-"help.text"
-msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
-msgstr "<ahelp hid=\".\">A GETPIVOTDATA függvény egy kimutatástáblából adja vissza az eredményt. Az érték címzése mező- és elemnevek használatával történik, így az érvényes marad akkor is, ha a kimutatástábla elrendezése megváltozik.</ahelp>"
-
-#. }pz(
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id9741508\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. WlLY
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id909451\n"
-"help.text"
-msgid "Two different syntax definitions can be used:"
-msgstr "Két különböző szintaxis használható:"
-
-#. #S=f
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1665089\n"
-"help.text"
-msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
-msgstr "GETPIVOTDATA(célmező; kimutatástábla; [ 1. mező; 1. elem; ... ])"
-
-#. VC_I
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id4997100\n"
-"help.text"
-msgid "GETPIVOTDATA(pivot table; Constraints)"
-msgstr "GETPIVOTDATA(kimutatástábla; kényszerfeltételek)"
-
-#. F0_F
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1672109\n"
-"help.text"
-msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
-msgstr "A második szintaxis feltételezi, hogy pontosan két paraméter van megadva, és ezek közül az első egy cella- vagy cellatartomány-hivatkozás. Az első szintaxis van feltételezve minden más esetben. A Függvénytündér az első szintaxist jeleníti meg."
-
-#. +1=9
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id9464094\n"
-"help.text"
-msgid "First Syntax"
-msgstr "Első szintaxis"
-
-#. ib5:
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id9302346\n"
-"help.text"
-msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
-msgstr "A <emph>célmező</emph> egy karakterlánc, amely kijelöli a kimutatástábla adatmezőinek egyikét. A karakterlánc lehet egy forrásoszlop neve, vagy az adatcímke neve, ahogy az a táblázatban látható (például „Összeg - Eladások”)."
-
-#. U2N:
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id8296151\n"
-"help.text"
-msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
-msgstr "A <emph>kimutatástábla</emph> egy hivatkozás egy cellára vagy cellatartományra, amely a kimutatástáblán belül van, vagy egy kimutatástáblát tartalmaz. Ha a cellatartomány több kimutatástáblát tartalmaz, akkor az utoljára létrehozott táblázat lesz használva."
-
-#. Qn?r
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id4809411\n"
-"help.text"
-msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
-msgstr "Ha nincsenek megadva <emph>n. mező / n. elem</emph> párok, akkor az összeg lesz az eredmény. Egyébként mindegyik pár egy kényszerfeltételt ad hozzá, amelyet az eredménynek ki kell elégítenie. Az <emph>n. mező</emph> a kimutatástábla egyik mezőjének a neve. Az <emph>n. elem</emph> az abban a mezőben levő elem neve."
-
-#. 2VZ%
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id6454969\n"
-"help.text"
-msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
-msgstr "Ha a kimutatástábla csak egyetlen olyan eredményértéket tartalmaz, amely kielégíti a kényszerfeltételeket, vagy az összes illeszkedő értéket összegző részösszegeredményt, akkor az az eredmény lesz visszaadva. Ha nincs illeszkedő eredmény, vagy több van részösszeg nélkül, akkor hibajelzés lesz visszaadva. Ezek a feltételek a kimutatástáblában megtalálható eredményekre lesznek alkalmazva."
-
-#. @:wq
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id79042\n"
-"help.text"
-msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
-msgstr "Ha a forrásadatok olyan bejegyzéseket tartalmaznak, amelyek a kimutatástábla beállításai miatt el vannak rejtve, akkor ezek nem lesznek figyelembe véve. A mező/elem párok sorrendje nem lényeges. A mező- és elemneveknél a kis- és nagybetűk nincsenek megkülönböztetve."
-
-#. hLIM
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id7928708\n"
-"help.text"
-msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr "Ha nincs megadva kényszerfeltétel egy oldalmezőre, akkor a mező kijelölt értéke lesz közvetve használva. Ha meg van adva kényszerfeltétel egy oldalmezőre, akkor annak illeszkednie kell a mező kijelölt értékéhez, különben hiba lesz visszaadva. Az oldalmezők egy kimutatástábla bal felső mezői, amelyek a kimutatástábla Elrendezés párbeszédablakának „Oldalmezők” területének használatával vannak kitöltve. Minden oldalmezőből egy elem (érték) jelölhető ki, ami csak azt jelenti, hogy az elem része lesz a számításnak."
-
-#. O-wf
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3864253\n"
-"help.text"
-msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
-msgstr "A kimutatástáblából származó részösszegértékek csak akkor lesznek használva, ha azok az „auto” függvényt használják (kivéve ha a kényszerfeltételben van megadva, lásd alább a <item type=\"literal\">Második szintaxis</item> részt)."
-
-#. Gcd3
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3144016\n"
-"help.text"
-msgid "Second Syntax"
-msgstr "Második szintaxis"
-
-#. UjR,
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id9937131\n"
-"help.text"
-msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
-msgstr "A <emph>kimutatástábla</emph> jelentése ugyanaz, mint az első szintaxisban."
-
-#. bH3-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id5616626\n"
-"help.text"
-msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
-msgstr "A <emph>kényszerfeltételek</emph> egy szóközökkel elválasztott lista. Az elemeit aposztrófok közé lehet tenni. A teljes karakterláncot idézőjelek közé kell tenni, hacsak nem hivatkozik a karakterláncra egy másik cellából."
-
-#. jd2F
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id4076357\n"
-"help.text"
-msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
-msgstr "A bejegyzések egyike lehet az adatmező neve. Az adatmező neve kihagyható, ha a kimutatástábla csak egy adatmezőt tartalmaz, különben kötelező."
-
-#. 8j,9
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id8231757\n"
-"help.text"
-msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
-msgstr "Minden más bejegyzés egy kényszerfeltételt határoz meg a <item type=\"literal\">Mező[Elem]</item> (a [ és ] karakterrel) vagy csak az <item type=\"literal\">Elem</item> formában, ha az elem neve egyedi a kimutatástáblában használt összes mező között."
-
-#. k4T@
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3168736\n"
-"help.text"
-msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
-msgstr "A függvény neve a <emph>Mező[Elem;Függvény]</emph> formában adható meg, amely azt eredményezi, hogy a kényszerfeltétel csak azokra a részösszegekre illeszkedik, amelyek ezt a függvényt használják. A lehetséges függvénynevek: Összeg, Darab, Átlag, Maximum, Minimum, Szorzat, Darab (csak számok), Szórás (minta), SzórásP (sokaság), Variancia (minta) és VarianciaP (sokaság), a kis- és nagybetűk között nincs különbség."
-
-#. ;ox}
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error Alert"
-msgstr "Figyelmeztetés hibára"
-
-#. u95P
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3153821\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
-msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Figyelmeztetés hibára\">Figyelmeztetés hibára</link>"
-
-#. `@{b
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3153379\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">A cellába érvénytelen adat bevitelekor megjelenítendő hibaüzenet adható meg.</ahelp>"
-
-#. [uU]
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3154138\n"
-"25\n"
-"help.text"
-msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
-msgstr "Egy makrót is elindíthat a hibaüzenettel. Ezen oldal alján található egy példamakró."
-
-#. G[lk
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3156280\n"
-"3\n"
-"help.text"
-msgid "Show error message when invalid values are entered."
-msgstr "Hibaüzenet megjelenítése érvénytelen érték bevitele esetén."
-
-#. k1x_
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3150768\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
-msgstr "<ahelp hid=\".\">Megjeleníti a <emph>Tartalom</emph> részbe beírt hibaüzenetet, ha érvénytelen adatot írnak be egy cellába.</ahelp> Ha engedélyezve van, az érvénytelen érték beírásának megelőzése céljából megjelenik az üzenet."
-
-#. [bQ%
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3146984\n"
-"5\n"
-"help.text"
-msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
-msgstr "Mindkét esetben, ha a „Leállítás” lehetőséget választja, az érvénytelen érték törlődik, és helyette újra az előző érték jelenik meg a cellában. Ugyanez vonatkozik azon esetekre, amikor a „Figyelmeztetés”, illetve az „Információk” párbeszédablakokat a <emph>Mégse</emph> gomb segítségével bezárja. Ha a párbeszédablakokat az <emph>OK</emph> gomb megnyomásával zárja be, akkor az érvénytelen bejegyzés nem törlődik."
-
-#. 4N0n
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3152460\n"
-"6\n"
-"help.text"
-msgid "Contents"
-msgstr "Tartalom"
-
-#. OnBE
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3148646\n"
-"8\n"
-"help.text"
-msgid "Action"
-msgstr "Művelet"
-
-#. O855
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3151115\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Válassza ki a cellába érvénytelen adat kerülése esetén végrehajtani kívánt műveletet.</ahelp> A „Leállítás” művelet visszautasítja az érvénytelen bejegyzést, és megjelenít egy párbeszédablakot, amelyet az <emph>OK</emph> gombbal kell bezárni. A „Figyelmeztetés”, illetve az „Információk” műveletek olyan párbeszédablakot jelenítenek meg, amelyet az <emph>OK</emph>, illetve a <emph>Mégse</emph> gomb segítségével zárhat be. Az érvénytelen bejegyzés csak akkor kerül visszautasításra, ha a <emph>Mégse</emph> gombra kattint."
-
-#. /0\O
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3156441\n"
-"10\n"
-"help.text"
-msgid "Browse"
-msgstr "Tallózás"
-
-#. 6p;J
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3153160\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Megnyitja a <link href=\"text/shared/01/06130000.xhp\" name=\"Makró\">Makró</link> párbeszédablakot, ebben kiválaszthatja azt a makrót, amely érvénytelen értékek cellába kerülésekor indul el. A makró a hibaüzenet megjelenítése után kerül lefuttatásra.</ahelp>"
-
-#. Bb.H
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3153876\n"
-"12\n"
-"help.text"
-msgid "Title"
-msgstr "Cím"
-
-#. ngR4
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3149410\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Írja be a cellában az érvénytelen adat megadásakor megjeleníteni kívánt makró vagy hibaüzenet címét.</ahelp>"
-
-#. %h6;
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"hd_id3154510\n"
-"14\n"
-"help.text"
-msgid "Error message"
-msgstr "Hibaüzenet"
-
-#. ?JcL
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3149122\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Írja be a cellába érvénytelen adat kerülése esetén megjeleníteni kívánt üzenetet.</ahelp>"
-
-#. :[c0
-#: 12120300.xhp
-msgctxt ""
-"12120300.xhp\n"
-"par_id3150752\n"
-"16\n"
-"help.text"
-msgid "<emph>Sample macro:</emph>"
-msgstr "<emph>Példamakró:</emph>"
-
-#. 4R8N
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Goal Seek"
-msgstr "Célértékkeresés"
-
-#. UX/Y
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3155629\n"
-"1\n"
-"help.text"
-msgid "Goal Seek"
-msgstr "Célértékkeresés"
-
-#. 8*av
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3145119\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
-msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Megnyit egy párbeszédablakot, amelyen egy változóval megoldhat egy egyenletet.</ahelp></variable> A sikeres keresés után megnyílik egy párbeszédablak az eredménnyel, így közvetlenül alkalmazhatja az eredményt és a célértéket a cellába."
-
-#. 1zU!
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Default"
-msgstr "Alapbeállítások"
-
-#. -R]k
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3151211\n"
-"4\n"
-"help.text"
-msgid "In this section, you can define the variables in your formula."
-msgstr "Ebben a szakaszban meghatározhatja a képlet változóit."
-
-#. 6!5G
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3150869\n"
-"5\n"
-"help.text"
-msgid "Formula cell"
-msgstr "Képletcella"
-
-#. HkkX
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">A képletcellába írja be a képletet tartalmazó cella hivatkozását. Ez tartalmazza az aktuális cellahivatkozást.</ahelp> Kattintson a munkalap egy másik cellájára a hivatkozás szövegdobozbeli alkalmazásához."
-
-#. \+34
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3154685\n"
-"7\n"
-"help.text"
-msgid "Target value"
-msgstr "Célérték"
-
-#. awnX
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3146984\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Megadja azt az értéket, amelyet új eredményként kíván elérni.</ahelp>"
-
-#. .=w?
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3150012\n"
-"9\n"
-"help.text"
-msgid "Variable cell"
-msgstr "Változó cella"
-
-#. Wqd,
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3147427\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Megadja azt a cellahivatkozást, amely a beállítandó értéket tartalmazza a célérték eléréséhez.</ahelp>"
-
-#. oEz~
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions by Category"
-msgstr "Függvények kategória szerint"
-
-#. 5(9t
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"bm_id3148575\n"
-"help.text"
-msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
-msgstr "<bookmark_value>függvények;lista kategória szerint</bookmark_value> <bookmark_value>függvénykategóriák</bookmark_value> <bookmark_value>lista a függvényekről</bookmark_value>"
-
-#. oP[8
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3154944\n"
-"16\n"
-"help.text"
-msgid "Functions by Category"
-msgstr "Függvények kategória szerint"
-
-#. :sR.
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"par_id3149378\n"
-"2\n"
-"help.text"
-msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
-msgstr "Ez a rész a $[officename] Calc függvényeit írja le. A Függvénytündérben a függvények kategóriákba vannak sorolva."
-
-#. }Db{
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"par_id0120200910234570\n"
-"help.text"
-msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
-msgstr "A Calc függvényeiről részletes magyarázatokat, ábrákat és példákat talál a <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_Functions_listed_by_category\">LibreOffice WikiHelpben</link>."
-
-#. ]nIN
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3146972\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
-msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Adatbázis\">Adatbázis</link>"
-
-#. $kvc
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3155443\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
-msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Dátum és idő\">Dátum és idő</link>"
-
-#. F7?d
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3147339\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Pénzügyi\">Pénzügyi</link>"
-
-#. h$^=
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3153963\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
-msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Információ\">Információ</link>"
-
-#. @L!.
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3146316\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
-msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logikai\">Logikai</link>"
-
-#. w)a2
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3148485\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
-msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Matematikai\">Matematikai</link>"
-
-#. V#-$
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3150363\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
-msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Mátrix\">Tömb</link>"
-
-#. #r6;
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3150208\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
-msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statisztikai\">Statisztikai</link>"
-
-#. oi:H
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3166428\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Munkafüzet\">Munkafüzet</link>"
-
-#. *|cY
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3145585\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Szöveg\">Szöveg</link>"
-
-#. s;KW
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3156449\n"
-"13\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Kiegészítő\">Kiegészítő</link>"
-
-#. SS5_
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"par_id3150715\n"
-"14\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
-msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operátorok\">Operátorok</link> is használhatók."
-
-#. SRp!
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"par_id0902200809540918\n"
-"help.text"
-msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
-msgstr "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc függvények kategória szerint</link> a LibreOffice WikiHelpben</variable>"
-
-#. `fKQ
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Filter"
-msgstr "Szűrő"
-
-#. V=rM
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3153970\n"
-"1\n"
-"help.text"
-msgid "Filter"
-msgstr "Szűrő"
-
-#. qJ3g
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3150448\n"
-"2\n"
-"help.text"
-msgid "Set the filtering options for the data."
-msgstr "Állítsa be az adatok szűrési beállításait."
-
-#. Mlf`
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3151043\n"
-"3\n"
-"help.text"
-msgid "Filter Criteria"
-msgstr "Szűrőfeltétel"
-
-#. -s*C
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3150440\n"
-"4\n"
-"help.text"
-msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
-msgstr "Meghatározhat egy alapértelmezett szűrőt például a mezőnevek szűrése alapján, logikaikifejezés-argumentumok kombinációinak használatával."
-
-#. u9t@
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3159153\n"
-"5\n"
-"help.text"
-msgid "Operator"
-msgstr "Operátor"
-
-#. BfYw
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3153093\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Válasszon logikai műveletet a szűrőhöz.</ahelp>"
-
-#. {Bs*
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3152462\n"
-"7\n"
-"help.text"
-msgid "Field name"
-msgstr "Mezőnév"
-
-#. k#[b
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3155306\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Válassza ki a szűrőben használni kívánt mezőt. Ha a mezők nevei ismeretlenek, az oszlopcímkék közül lehet választani.</ahelp>"
-
-#. F`:s
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3148575\n"
-"9\n"
-"help.text"
-msgid "Condition"
-msgstr "Feltétel"
-
-#. +9$)
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3147394\n"
-"10\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Válasszon operátort a <emph>Mezőnév</emph> és az <emph>Érték</emph> bejegyzések összehasonlításához.</ahelp>"
-
-#. xd;7
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3144764\n"
-"11\n"
-"help.text"
-msgid "The following operators are available:"
-msgstr "A következő operátorok érhetőek el:"
-
-#. %nFX
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3153415\n"
-"12\n"
-"help.text"
-msgid "<emph>Conditions:</emph>"
-msgstr "<emph>Feltételek:</emph>"
-
-#. Ehsm
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3150324\n"
-"13\n"
-"help.text"
-msgid "="
-msgstr "="
-
-#. B2si
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3153714\n"
-"14\n"
-"help.text"
-msgid "equal"
-msgstr "egyenlő"
-
-#. !R6{
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3154254\n"
-"15\n"
-"help.text"
-msgid "<"
-msgstr "<"
-
-#. ::l^
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3154703\n"
-"16\n"
-"help.text"
-msgid "less than"
-msgstr "kisebb mint"
-
-#. j%2T
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3155335\n"
-"17\n"
-"help.text"
-msgid ">"
-msgstr ">"
-
-#. cMVp
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3147003\n"
-"18\n"
-"help.text"
-msgid "greater than"
-msgstr "nagyobb mint"
-
-#. +Cnn
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3153270\n"
-"19\n"
-"help.text"
-msgid "<="
-msgstr "<="
-
-#. 42SZ
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3145257\n"
-"20\n"
-"help.text"
-msgid "less than or equal to"
-msgstr "kisebb vagy egyenlő"
-
-#. fQw]
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3145134\n"
-"21\n"
-"help.text"
-msgid ">="
-msgstr ">="
-
-#. 7!D)
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3151214\n"
-"22\n"
-"help.text"
-msgid "greater than or equal to"
-msgstr "nagyobb vagy egyenlő"
-
-#. J6.f
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3150345\n"
-"23\n"
-"help.text"
-msgid "<>"
-msgstr "<>"
-
-#. ZEk0
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3159101\n"
-"24\n"
-"help.text"
-msgid "not equal to"
-msgstr "nem egyenlő"
-
-#. O(ec
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3150886\n"
-"25\n"
-"help.text"
-msgid "Value"
-msgstr "Érték"
-
-#. Ifbg
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"par_id3155506\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Válassza ki az értéket, amelyet a kijelölt mezővel össze akar hasonlítani.</ahelp>"
-
-#. 9ry|
-#: 12090103.xhp
-msgctxt ""
-"12090103.xhp\n"
-"hd_id3146980\n"
-"27\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Részletek>>\">Részletek>></link>"
-
-#. QFf_
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add-in Functions"
-msgstr "Kiegészítő függvények"
-
-#. ?zkB
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3150870\n"
-"help.text"
-msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
-msgstr "<bookmark_value>kiegészítők; függvények</bookmark_value><bookmark_value>függvények; kiegészítő függvények</bookmark_value><bookmark_value>Függvénytündér; kiegészítők</bookmark_value>"
-
-#. J9X@
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3150870\n"
-"1\n"
-"help.text"
-msgid "Add-in Functions"
-msgstr "Kiegészítő függvények"
-
-#. $#P*
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3147427\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
-msgstr "<variable id=\"addintext\">Itt olvasható néhány elérhető kiegészítő függvény felsorolása és ismertetése. </variable>"
-
-#. hdT!
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3163713\n"
-"75\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
-msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">A kiegészítő fogalma</link>"
-
-#. @/:x
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3146120\n"
-"5\n"
-"help.text"
-msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
-msgstr "Az <link href=\"text/scalc/01/04060112.xhp\">$[officename] Calc kiegészítőfelületéről bővebb információt</link> a súgóban talál. Ezenfelül a fontos függvények és paramétereik <switchinline select=\"sys\"><caseinline select=\"UNIX\">a megosztott programkönyvtár</caseinline><defaultinline>a $[officename] Calc kiegészítő-DLL</defaultinline></switchinline> súgójában is le vannak írva."
-
-#. 4+6M
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3151075\n"
-"7\n"
-"help.text"
-msgid "Add-ins supplied"
-msgstr "Kiegészítők készlete"
-
-#. LT:?
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3156285\n"
-"8\n"
-"help.text"
-msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
-msgstr "A $[officename] tartalmaz példákat a $[officename] Calc kiegészítőinek programozási felületéhez."
-
-#. LP=J
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3159267\n"
-"76\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060115.xhp\">Műszaki függvények - első rész</link>"
-
-#. AMjK
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3154703\n"
-"77\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\">Műszaki függvények - második rész</link>"
-
-#. {%fA
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3149566\n"
-"help.text"
-msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
-msgstr "<bookmark_value>ISLEAPYEAR függvény</bookmark_value><bookmark_value>szökőév meghatározása</bookmark_value>"
-
-#. !I+E
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3149566\n"
-"14\n"
-"help.text"
-msgid "ISLEAPYEAR"
-msgstr "ISLEAPYEAR"
-
-#. gxDz
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150297\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
-msgstr "<ahelp hid=\".\">Meghatározza, hogy egy évszám szökőév-e.</ahelp> Ha igen, akkor a függvény az 1-es (IGAZ) értéket; ha nem, akkor a 0 (HAMIS) értéket adja vissza."
-
-#. pYVd
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3148487\n"
-"16\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. zP`q
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150205\n"
-"17\n"
-"help.text"
-msgid "ISLEAPYEAR(\"Date\")"
-msgstr "ISLEAPYEAR(\"dátum\")"
-
-#. p0FN
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3159239\n"
-"18\n"
-"help.text"
-msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "A függvény meghatározza, hogy a megadott <emph>dátum</emph> szökőévre esik-e. A dátum paraméternek a %PRODUCTNAME területi beállításai szerinti érvényes dátumnak kell lennie."
-
-#. vT(P
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3149817\n"
-"19\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. SB[{
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150786\n"
-"20\n"
-"help.text"
-msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
-msgstr "Az =ISLEAPYEAR(A1) az 1 értéket adja vissza, ha az A1 cella az 1968-02-09 értéket tartalmazza, amely az 1968. február 29. dátum területi beállításoknak megfelelő alakja."
-
-#. i[+C
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_idN107E7\n"
-"help.text"
-msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
-msgstr "Használhatja az =ISLEAPYEAR(\"1968-02-29\") vagy az =ISLEAPYEAR(\"2/29/68\") képletet is."
-
-#. =ZVg
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_idN107EA\n"
-"help.text"
-msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
-msgstr "Soha ne használja az =ISLEAPYEAR(2/29/68), képletet, mert azt a program úgy értékelné ki, mint 2 osztva 29-cel osztva 68-cal, és az ISLEAPYEAR függvény ennek a kis számnak az értékét venné dátumszámnak."
-
-#. B$rR
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3154656\n"
-"help.text"
-msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
-msgstr "<bookmark_value>YEARS függvény</bookmark_value><bookmark_value>évek száma két dátum között</bookmark_value>"
-
-#. IsND
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3154656\n"
-"21\n"
-"help.text"
-msgid "YEARS"
-msgstr "YEARS"
-
-#. ~tX_
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150886\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Kiszámítja két dátum különbségét években kifejezve.</ahelp>"
-
-#. HjO4
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3154370\n"
-"23\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. `m[7
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3146114\n"
-"24\n"
-"help.text"
-msgid "YEARS(StartDate; EndDate; Type)"
-msgstr "YEARS(kezdő_dátum; befejező_dátum; típus)"
-
-#. f8v$
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3145387\n"
-"25\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "A <emph>kezdő_dátum</emph> az első dátum."
-
-#. LEJh
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3156290\n"
-"26\n"
-"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "A <emph>befejező_dátum</emph> a második dátum."
-
-#. -Ar2
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3152893\n"
-"27\n"
-"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
-msgstr "A <emph>típus</emph> értékétől függ a különbség típusa. Lehetséges értékek: 0 (időköz), illetve 1 (naptári években)."
-
-#. {u!r
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3152898\n"
-"help.text"
-msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
-msgstr "<bookmark_value>MONTHS függvény</bookmark_value><bookmark_value>hónapok száma két dátum között</bookmark_value>"
-
-#. *FIe
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3152898\n"
-"28\n"
-"help.text"
-msgid "MONTHS"
-msgstr "MONTHS"
-
-#. XjNJ
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3153066\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Kiszámítja két dátum különbségét hónapokban kifejezve.</ahelp>"
-
-#. I(yH
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3151240\n"
-"30\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. *g4]
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3146869\n"
-"31\n"
-"help.text"
-msgid "MONTHS(StartDate; EndDate; Type)"
-msgstr "MONTHS(kezdő_dátum; befejező_dátum; típus)"
-
-#. ZEw:
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3145075\n"
-"32\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "A <emph>kezdő_dátum</emph> az első dátum."
-
-#. +Q2*
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3157981\n"
-"33\n"
-"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "A <emph>befejező_dátum</emph> a második dátum."
-
-#. 9[nR
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150111\n"
-"34\n"
-"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
-msgstr "A <emph>típus</emph> értékétől függ a különbség típusa. Lehetséges értékek: 0 (időköz), illetve 1 (naptári hónapokban)."
-
-#. :vVI
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3159094\n"
-"help.text"
-msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
-msgstr "<bookmark_value>ROT13 függvény</bookmark_value><bookmark_value>szöveg titkosítása</bookmark_value>"
-
-#. SKNc
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3159094\n"
-"35\n"
-"help.text"
-msgid "ROT13"
-msgstr "ROT13"
-
-#. vg2[
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3146781\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
-msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Titkosít egy karaktersort, a karakterek ABC szerinti helyének 13 pozícióval történő megváltoztatásával.</ahelp> A Z betű után az ábécé újrakezdődik (körforgás). A szöveg visszafejtéséhez ismételten alkalmazza a titkosítási függvényt az eredményül kapott kódra."
-
-#. r0M-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3150893\n"
-"37\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Uc}(
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3159205\n"
-"38\n"
-"help.text"
-msgid "ROT13(Text)"
-msgstr "ROT13(szöveg)"
-
-#. S0AZ
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3153249\n"
-"39\n"
-"help.text"
-msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
-msgstr "A <emph>szöveg</emph> a titkosítani kívánt karakterlánc. A ROT13(ROT13(szöveg)) visszafejti a kódot."
-
-#. +f@.
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3151300\n"
-"help.text"
-msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
-msgstr "<bookmark_value>DAYSINYEAR függvény</bookmark_value><bookmark_value>napok száma; adott évben</bookmark_value>"
-
-#. .lE9
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3151300\n"
-"43\n"
-"help.text"
-msgid "DAYSINYEAR"
-msgstr "DAYSINYEAR"
-
-#. :i:p
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3143220\n"
-"44\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">A megadott dátumban szereplő év napjainak számát adja eredményül.</ahelp>"
-
-#. `;Pp
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3145358\n"
-"45\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. )La4
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3154651\n"
-"46\n"
-"help.text"
-msgid "DAYSINYEAR(Date)"
-msgstr "DAYSINYEAR(dátum)"
-
-#. I}LG
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3153803\n"
-"47\n"
-"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "A <emph>dátum</emph> tetszőleges dátum a kívánt évből. A dátum paraméternek a %PRODUCTNAME területi beállításai szerinti érvényes dátumnak kell lennie."
-
-#. 3A(o
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3153487\n"
-"48\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. FBM(
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3153811\n"
-"49\n"
-"help.text"
-msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
-msgstr "A =DAYSINYEAR(A1) a 366 értéket adja vissza, ha az A1 cella az 1968-02-29 értéket tartalmazza, amely az 1968-as év egy érvényes dátuma."
-
-#. W9wb
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3154737\n"
-"help.text"
-msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
-msgstr "<bookmark_value>DAYSINMONTH függvény</bookmark_value><bookmark_value>napok száma;év adott hónapjában</bookmark_value>"
-
-#. r0JG
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3154737\n"
-"50\n"
-"help.text"
-msgid "DAYSINMONTH"
-msgstr "DAYSINMONTH"
-
-#. @E,B
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3149316\n"
-"51\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">A megadott dátumban szereplő hónap napjainak számát adja eredményül.</ahelp>"
-
-#. ]SPP
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3145114\n"
-"52\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. +DSj
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150955\n"
-"53\n"
-"help.text"
-msgid "DAYSINMONTH(Date)"
-msgstr "DAYSINMONTH(dátum)"
-
-#. 5ZN6
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3147501\n"
-"54\n"
-"help.text"
-msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "A <emph>dátum</emph> tetszőleges dátum a kívánt év megfelelő hónapjából. A dátum paraméternek a %PRODUCTNAME területi beállításai szerinti érvényes dátumnak kell lennie."
-
-#. r?_$
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3149871\n"
-"55\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. \9mP
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3155742\n"
-"56\n"
-"help.text"
-msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
-msgstr "A =DAYSINMONTH(A1) a 29 értéket adja vissza, ha az A1 cella az 1968-02-17 értéket tartalmazza, amely 1968 februárjának egy érvényes dátuma."
-
-#. ^nMw
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3149048\n"
-"help.text"
-msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
-msgstr "<bookmark_value>WEEKS függvény</bookmark_value><bookmark_value>hetek száma;két dátum között</bookmark_value>"
-
-#. QlYF
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3149048\n"
-"57\n"
-"help.text"
-msgid "WEEKS"
-msgstr "WEEKS"
-
-#. K:h3
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3153340\n"
-"58\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Kiszámítja két dátum különbségét hetekben kifejezve.</ahelp>"
-
-#. j=,8
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3150393\n"
-"59\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. p%PD
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3147402\n"
-"60\n"
-"help.text"
-msgid "WEEKS(StartDate; EndDate; Type)"
-msgstr "WEEKS(kezdő_dátum; befejező_dátum; típus)"
-
-#. ^byD
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3151387\n"
-"61\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "A <emph>kezdő_dátum</emph> az első dátum."
-
-#. }6S)
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3146324\n"
-"62\n"
-"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "A <emph>befejező_dátum</emph> a második dátum."
-
-#. 1F3F
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3166467\n"
-"63\n"
-"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
-msgstr "A <emph>típus</emph> értékétől függ a különbség típusa. Lehetséges értékek: 0 (időköz), illetve 1 (hetek számában)."
-
-#. ^O?s
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3145237\n"
-"help.text"
-msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
-msgstr "<bookmark_value>WEEKSINYEAR függvény</bookmark_value><bookmark_value>hetek száma;adott évben</bookmark_value>"
-
-#. ^@~d
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3145237\n"
-"64\n"
-"help.text"
-msgid "WEEKSINYEAR"
-msgstr "WEEKSINYEAR"
-
-#. HQ[q
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3147410\n"
-"65\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
-msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">A megadott dátumban szereplő év heteinek számát adja eredményül.</ahelp> A hetek száma a következőképpen van meghatározva: az a hét, amely átlóg a következő évre is, ahhoz az évhez lesz hozzáadva, amelyben a legtöbb napja van."
-
-#. P4;R
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3149719\n"
-"66\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. b7.Y
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3145638\n"
-"67\n"
-"help.text"
-msgid "WEEKSINYEAR(Date)"
-msgstr "WEEKSINYEAR(dátum)"
-
-#. T;%g
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3149946\n"
-"68\n"
-"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "A <emph>dátum</emph> tetszőleges dátum a kívánt évből. A dátum paraméternek a %PRODUCTNAME területi beállításai szerinti érvényes dátumnak kell lennie."
-
-#. PN4*
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3150037\n"
-"69\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ~fP1
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3147614\n"
-"70\n"
-"help.text"
-msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
-msgstr "A WEEKSINYEAR(A1) az 53 értéket adja vissza, ha az A1 cella az 1970-02-17 értéket tartalmazza, amely az 1970-es év egy érvényes dátuma."
-
-#. qQ95
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3157901\n"
-"72\n"
-"help.text"
-msgid "Add-ins through %PRODUCTNAME API"
-msgstr "A %PRODUCTNAME API-n keresztül elérhető kiegészítők"
-
-#. +1?*
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3149351\n"
-"73\n"
-"help.text"
-msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
-msgstr "A kiegészítők a %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>-n keresztül is megvalósíthatók."
-
-#. FSoq
-#: 12080600.xhp
-msgctxt ""
-"12080600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove"
-msgstr "Eltávolítás"
-
-#. |5@I
-#: 12080600.xhp
-msgctxt ""
-"12080600.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Eltávolítás\">Eltávolítás</link>"
-
-#. ?idw
-#: 12080600.xhp
-msgctxt ""
-"12080600.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Eltávolítja a vázlatot a kijelölt cellatartományról.</ahelp>"
-
-#. 2BhU
-#: 12090000.xhp
-msgctxt ""
-"12090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Pivot Table"
-msgstr "Kimutatástábla"
-
-#. *vCt
-#: 12090000.xhp
-msgctxt ""
-"12090000.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
-msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"Kimutatástábla\">Kimutatástábla</link>"
-
-#. 0Op|
-#: 12090000.xhp
-msgctxt ""
-"12090000.xhp\n"
-"par_id3153562\n"
-"2\n"
-"help.text"
-msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
-msgstr "Egy kimutatástábla nagy mennyiségű adat összesítéséhez használható. Ezután újrarendezheti a kimutatástáblát az adatok különböző összesítésének megtekintéséhez."
-
-#. Gp\{
-#: 12090000.xhp
-msgctxt ""
-"12090000.xhp\n"
-"hd_id3155923\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
-msgstr "<link href=\"text/scalc/01/12090100.xhp\" name=\"Létrehozás\">Létrehozás</link>"
-
-#. R/WL
-#: 12090000.xhp
-msgctxt ""
-"12090000.xhp\n"
-"par_idN105FB\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Kimutatástábla párbeszédablak\">Kimutatástábla párbeszédablak</link>"
-
-#. `B+J
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grouping"
-msgstr "Csoportosítás"
-
-#. hT8M
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1054D\n"
-"help.text"
-msgid "Grouping"
-msgstr "Csoportosítás"
-
-#. N_RJ
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10551\n"
-"help.text"
-msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
-msgstr "A kimutatástáblák csoportosítása megjeleníti a <emph>Csoportosítás</emph> párbeszédablakot az értékek vagy a dátumok számára."
-
-#. ij\A
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Start"
-msgstr "Kezdet"
-
-#. tw54
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Specifies the start of the grouping."
-msgstr "Megadja a csoportosítás elejét."
-
-#. $wJS
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Automatically"
-msgstr "Automatikusan"
-
-#. 4}91
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "Specifies whether to start grouping at the smallest value."
-msgstr "Megadja, hogy elkezdje-e a csoportosítást a legkisebb értéknél."
-
-#. -Agj
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "Manually at"
-msgstr "Kézzel"
-
-#. G1rL
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1057A\n"
-"help.text"
-msgid "Specifies whether to enter the start value for grouping yourself."
-msgstr "Megadja, hogy kézzel kell-e megadni a csoportosítás kezdőértékét."
-
-#. fGLw
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "End"
-msgstr "Vége"
-
-#. P]u3
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10581\n"
-"help.text"
-msgid "Specifies the end of the grouping."
-msgstr "Megadja a csoportosítás végét."
-
-#. )?kZ
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10584\n"
-"help.text"
-msgid "Automatically"
-msgstr "Automatikusan"
-
-#. ?cH5
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Specifies whether to end grouping at the largest value."
-msgstr "Megadja, hogy kell-e végcsoportosítás a legnagyobb értéknél."
-
-#. |KA]
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1058B\n"
-"help.text"
-msgid "Manually at"
-msgstr "Kézzel"
-
-#. *gTM
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1058F\n"
-"help.text"
-msgid "Specifies whether to enter the end value for grouping yourself."
-msgstr "Megadja, hogy kézzel kell-e megadni a csoportosítás végértékét."
-
-#. %lA(
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10592\n"
-"help.text"
-msgid "Group by"
-msgstr "Csoportosítási szempont"
-
-#. Wsx}
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10596\n"
-"help.text"
-msgid "Specifies the value range by which every group's limits are calculated."
-msgstr "Megadja azt az adattartományt, amely alapján minden csoport határa kiszámításra kerül."
-
-#. 6?3A
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN10599\n"
-"help.text"
-msgid "Number of days"
-msgstr "Napok száma"
-
-#. 7]o2
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN1059D\n"
-"help.text"
-msgid "In the case of grouping date values, specifies the number of days to group by."
-msgstr "Dátumértékek csoportosításakor megadja a csoportosítandó napok számát."
-
-#. tAgg
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN105A0\n"
-"help.text"
-msgid "Intervals"
-msgstr "Intervallumok"
-
-#. b,DE
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN105A4\n"
-"help.text"
-msgid "In the case of grouping date values, specifies the intervals to group by."
-msgstr "Dátumértékek csoportosításakor megadja a csoportosítandó intervallumokat."
-
-#. e7D_
-#: 12090400.xhp
-msgctxt ""
-"12090400.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
-
-#. oULu
-#: 06030700.xhp
-msgctxt ""
-"06030700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fill Mode"
-msgstr "Kitöltési mód"
-
-#. +y9v
-#: 06030700.xhp
-msgctxt ""
-"06030700.xhp\n"
-"bm_id3145119\n"
-"help.text"
-msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
-msgstr "<bookmark_value>cellák; felderítés kitöltési módja</bookmark_value><bookmark_value>cellák; több cella előzménye</bookmark_value>"
-
-#. Ien=
-#: 06030700.xhp
-msgctxt ""
-"06030700.xhp\n"
-"hd_id3145119\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
-msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Kitöltési mód\">Kitöltési mód</link>"
-
-#. Z)^V
-#: 06030700.xhp
-msgctxt ""
-"06030700.xhp\n"
-"par_id3151246\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
-msgstr "<ahelp hid=\".uno:AuditingFillMode\">Bekapcsolja a detektív kitöltési módját. Az egérmutató speciális jellé válik, és bármelyik cellára kattintva felderítheti annak előzményeit.</ahelp> Ha ki kíván lépni ebből módból, nyomja meg az Escape billentyűt, vagy kattintson a helyi menü <emph>Kilépés a kitöltő módból</emph> parancsára."
-
-#. jCst
-#: 06030700.xhp
-msgctxt ""
-"06030700.xhp\n"
-"par_id3151211\n"
-"3\n"
-"help.text"
-msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
-msgstr "A <emph>Kitöltési mód</emph> funkció megegyezik az <link href=\"text/scalc/01/06030100.xhp\" name=\"Előzmények felderítése\">Előzmények felderítése</link> paranccsal, ha ezt a módot első alkalommal hívja meg. A Kitöltési mód további beállításait a helyi menü segítségével adhatja meg, illetve innen is léphet ki a Kitöltési módból."
-
-#. aZH7
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Five"
-msgstr "Statisztikai függvények - ötödik rész"
-
-#. 2n%S
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147072\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
-msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statisztikai függvények - ötödik rész\">Statisztikai függvények - ötödik rész</link></variable>"
-
-#. hR2d
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3155071\n"
-"help.text"
-msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
-msgstr "<bookmark_value>SORSZÁM függvény</bookmark_value><bookmark_value>RANK függvény, lásd: SORSZÁM függvény</bookmark_value><bookmark_value>számok;sorszámok meghatározása</bookmark_value>"
-
-#. *W#:
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155071\n"
-"2\n"
-"help.text"
-msgid "RANK"
-msgstr "SORSZÁM"
-
-#. 1RD}
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153976\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RANG\">A szám egy mintában vett rangját számítja ki.</ahelp>"
-
-#. Wpk{
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3159206\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. B23M
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153250\n"
-"5\n"
-"help.text"
-msgid "RANK(Value; Data; Type)"
-msgstr "SORSZÁM(érték; adatok; típus)"
-
-#. sX(b
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154543\n"
-"6\n"
-"help.text"
-msgid "<emph>Value</emph> is the value, whose rank is to be determined."
-msgstr "Az <emph>érték</emph> azon érték, amelynek helyezését meg kívánja határozni."
-
-#. 0FZm
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149130\n"
-"7\n"
-"help.text"
-msgid "<emph>Data</emph> is the array or range of data in the sample."
-msgstr "Az <emph>adatok</emph> a minta adatait tartalmazó tömb, illetve tartomány."
-
-#. tPq-
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150215\n"
-"8\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) is the sequence order."
-msgstr "A <emph>típus</emph> (opcionális) a sorozat sorrendje. Az = 0 növekvő, az = 1 csökkenő sorrendet jelöl."
-
-#. _G@m
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id9305398\n"
-"help.text"
-msgid "Type = 0 means descending from the last item of the array to the first (this is the default),"
-msgstr "A típus = 0 csökkenő sorrendet jelent a tömb utolsó elemétől az elsőig (ez az alapértelmezett)."
-
-#. bVyN
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id9996948\n"
-"help.text"
-msgid "Type = 1 means ascending from the first item of the range to the last."
-msgstr "A típus = 1 növekvő sorrendet jelent a tartomány első elemétől az utolsóig."
-
-#. Z}3I
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3143223\n"
-"9\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 6E|^
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155919\n"
-"10\n"
-"help.text"
-msgid "<item type=\"input\">=RANK(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
-msgstr "A <item type=\"input\">=SORSZÁM(A10;A1:A50)</item> az A10 cellában található érték az A1:A50 értéktartományban elfoglalt helyét adja eredményül. Ha az <item type=\"literal\">érték</item> nem létezik a tartományon belül, akkor hibaüzenet jelenik meg."
-
-#. Y$^f
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3153556\n"
-"help.text"
-msgid "<bookmark_value>SKEW function</bookmark_value>"
-msgstr "<bookmark_value>FERDESÉG függvény</bookmark_value><bookmark_value>SKEW függvény, lásd: FERDESÉG függvény</bookmark_value>"
-
-#. 2J6d
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153556\n"
-"12\n"
-"help.text"
-msgid "SKEW"
-msgstr "FERDESÉG"
-
-#. h##z
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153485\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\">Kiszámítja egy eloszlás torzulását.</ahelp>"
-
-#. YQ,L
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154733\n"
-"14\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 1%Pm
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151191\n"
-"15\n"
-"help.text"
-msgid "SKEW(Number1; Number2; ...Number30)"
-msgstr "FERDESÉG(szám_1; szám_2; ...szám_30)"
-
-#. qf/t
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155757\n"
-"16\n"
-"help.text"
-msgid "<emph>Number1, Number2...Number30</emph> are numerical values or ranges."
-msgstr "A <emph>szám_1; szám_2; ...szám_30</emph> numerikus értékek vagy tartományok."
-
-#. -Bdj
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153297\n"
-"17\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @|I/
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3145118\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=SKEW(A1:A50)</item> calculates the value of skew for the data referenced."
-msgstr "A <item type=\"input\">=FERDESÉG(A1:A50)</item> képlet a hivatkozott adatokra vonatkozó ferdeségértékét számítja ki."
-
-#. !6YE
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3149051\n"
-"help.text"
-msgid "<bookmark_value>regression lines;FORECAST function</bookmark_value> <bookmark_value>extrapolations</bookmark_value> <bookmark_value>FORECAST function</bookmark_value>"
-msgstr "<bookmark_value>regressziós egyenesek;ELŐREJELZÉS függvény</bookmark_value><bookmark_value>extrapoláció</bookmark_value><bookmark_value>ELŐREJELZÉS függvény</bookmark_value><bookmark_value>FORECAST függvény, lásd: ELŐREJELZÉS függvény</bookmark_value>"
-
-#. K%b5
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149051\n"
-"20\n"
-"help.text"
-msgid "FORECAST"
-msgstr "ELŐREJELZÉS"
-
-#. 6/82
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153290\n"
-"21\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">Jövőbeli értékeket extrapolál létező x és y értékek alapján.</ahelp>"
-
-#. m],7
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3151343\n"
-"22\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. =QM-
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3147404\n"
-"23\n"
-"help.text"
-msgid "FORECAST(Value; DataY; DataX)"
-msgstr "ELŐREJELZÉS(érték; y_adatok; x_adatok)"
-
-#. p87(
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148743\n"
-"24\n"
-"help.text"
-msgid "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
-msgstr "Az <emph>érték</emph> azon x érték, amelyre vonatkozóan a lineáris regresszión elhelyezkedő y értéket meg kívánja kapni."
-
-#. 0XNk
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3146325\n"
-"25\n"
-"help.text"
-msgid "<emph>DataY</emph> is the array or range of known y's."
-msgstr "Az <emph>y_adatok</emph> az ismert y-okat tartalmazó tömb, illetve tartomány."
-
-#. 1y2k
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150536\n"
-"26\n"
-"help.text"
-msgid "<emph>DataX</emph> is the array or range of known x's."
-msgstr "Az <emph>x_adatok</emph> az ismert x-eket tartalmazó tömb, illetve tartomány."
-
-#. KPE_
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147416\n"
-"27\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. BRSw
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3157874\n"
-"28\n"
-"help.text"
-msgid "<item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
-msgstr "Az <item type=\"input\">=ELŐREJELZÉS(50;A1:A50;B1;B50)</item> képlet az X=50 értékre várt Y értéket adja vissza, ha a hivatkozásokban megadott X és Y értékek között lineáris összefüggés van."
-
-#. 1TT$
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3149143\n"
-"help.text"
-msgid "<bookmark_value>STDEV function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
-msgstr "<bookmark_value>SZÓRÁS függvény</bookmark_value><bookmark_value>STDEV függvény, lásd: SZÓRÁS függvény</bookmark_value><bookmark_value>szórás statisztikákban;minta alapján</bookmark_value>"
-
-#. +$ND
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149143\n"
-"30\n"
-"help.text"
-msgid "STDEV"
-msgstr "SZÓRÁS"
-
-#. aX!+
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3146888\n"
-"31\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABW\">Minta alapján becslést ad a szórásra.</ahelp>"
-
-#. GYuz
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3146815\n"
-"32\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. sPLK
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149946\n"
-"33\n"
-"help.text"
-msgid "STDEV(Number1; Number2; ...Number30)"
-msgstr "SZÓRÁS(szám_1; szám_2; ...szám_30)"
-
-#. rt*b
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3157904\n"
-"34\n"
-"help.text"
-msgid "<emph>Number1, Number2, ... Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr "A <emph>szám_1, szám_2, ...szám_30</emph> egy teljes sokaságon alapuló mintát képviselő numerikus értékek vagy tartományok."
-
-#. gIK^
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3150650\n"
-"35\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. A$N)
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149434\n"
-"36\n"
-"help.text"
-msgid "<item type=\"input\">=STDEV(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
-msgstr "A <item type=\"input\">=SZÓRÁS(A1:A50)</item> függvény a hivatkozott adatok alapján kiszámolja a becsült szórást."
-
-#. =IDm
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3144745\n"
-"help.text"
-msgid "<bookmark_value>STDEVA function</bookmark_value>"
-msgstr "<bookmark_value>SZÓRÁSA függvény</bookmark_value><bookmark_value>STDEVA függvény, lásd: SZÓRÁSA függvény</bookmark_value>"
-
-#. !GpJ
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3144745\n"
-"186\n"
-"help.text"
-msgid "STDEVA"
-msgstr "SZÓRÁSA"
-
-#. !h]*
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151234\n"
-"187\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABWA\">Kiszámítja a szórást, minta alapján történő becsléssel.</ahelp>"
-
-#. r2Nd
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3148884\n"
-"188\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. +zQs
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3147422\n"
-"189\n"
-"help.text"
-msgid "STDEVA(Value1;Value2;...Value30)"
-msgstr "SZÓRÁSA(érték_1; érték_2; ...érték_30)"
-
-#. C@Oy
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154547\n"
-"190\n"
-"help.text"
-msgid "<emph>Value1, Value2, ...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
-msgstr "Az <emph>érték1, érték2, ...érték30</emph> a teljes sokaságból vett mintát képviselő értékek vagy tartományok. A szöveg 0 értékű."
-
-#. 9O#1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155829\n"
-"191\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Z4bs
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148581\n"
-"192\n"
-"help.text"
-msgid "<item type=\"input\">=STDEVA(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
-msgstr "A <item type=\"input\">=SZÓRÁSA(A1:A50)</item> függvény a hivatkozott adatok alapján kiszámolja a becsült szórást."
-
-#. N#k5
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3149734\n"
-"help.text"
-msgid "<bookmark_value>STDEVP function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
-msgstr "<bookmark_value>SZÓRÁSP függvény</bookmark_value><bookmark_value>STDEVP függvény, lásd: SZÓRÁSP függvény</bookmark_value><bookmark_value>szórás statisztikákban;sokaság alapján</bookmark_value>"
-
-#. 1\la
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149734\n"
-"38\n"
-"help.text"
-msgid "STDEVP"
-msgstr "SZÓRÁSP"
-
-#. DvjL
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149187\n"
-"39\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Kiszámítja a teljes sokaságra vett szórást.</ahelp>"
-
-#. 33Yq
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154387\n"
-"40\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. :B%L
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154392\n"
-"41\n"
-"help.text"
-msgid "STDEVP(Number1;Number2;...Number30)"
-msgstr "SZÓRÁSP(szám_1; szám_2; ...szám_30)"
-
-#. b=:.
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155261\n"
-"42\n"
-"help.text"
-msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr "A <emph>szám_1, szám_2, ...szám_30</emph> egy teljes sokaságon alapuló mintát képviselő numerikus értékek vagy tartományok."
-
-#. \;Tc
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3145591\n"
-"43\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. FXSw
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153933\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
-msgstr "A <item type=\"input\">=SZÓRÁSP(A1:A50)</item> függvény a hivatkozott adatok szórását adja meg."
-
-#. nr9-
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3154522\n"
-"help.text"
-msgid "<bookmark_value>STDEVPA function</bookmark_value>"
-msgstr "<bookmark_value>SZÓRÁSPA függvény</bookmark_value><bookmark_value>STDEVPA függvény, lásd: SZÓRÁSPA függvény</bookmark_value>"
-
-#. ,G;j
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154522\n"
-"194\n"
-"help.text"
-msgid "STDEVPA"
-msgstr "SZÓRÁSPA"
-
-#. }@jO
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149549\n"
-"195\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABWNA\">Kiszámítja a teljes sokaságra vett szórást.</ahelp>"
-
-#. %g-Q
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155950\n"
-"196\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. F4)~
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3146851\n"
-"197\n"
-"help.text"
-msgid "STDEVPA(Value1;Value2;...Value30)"
-msgstr "SZÓRÁSPA(érték_1; érték_2; ...érték_30)"
-
-#. QBqy
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153109\n"
-"198\n"
-"help.text"
-msgid "<emph>Value1,value2,...value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
-msgstr "Az <emph>érték_1, érték_2, ...érték_30</emph> a teljes sokaságból vett mintát képviselő értékek vagy tartományok. A szöveg 0 értékű."
-
-#. %}oS
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154506\n"
-"199\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9A1d
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3145163\n"
-"200\n"
-"help.text"
-msgid "<item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
-msgstr "A <item type=\"input\">=SZÓRÁSPA(A1:A50)</item> függvény a hivatkozott adatok alapján kiszámolja a becsült szórást."
-
-#. QRRC
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3155928\n"
-"help.text"
-msgid "<bookmark_value>STANDARDIZE function</bookmark_value> <bookmark_value>converting;random variables, into normalized values</bookmark_value>"
-msgstr "<bookmark_value>NORMALIZÁLÁS függvény</bookmark_value><bookmark_value>STANDARDIZE függvény, lásd: NORMALIZÁLÁS függvény</bookmark_value><bookmark_value>átalakítás;véletlen változók normalizált értékekké</bookmark_value>"
-
-#. x~Wn
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155928\n"
-"46\n"
-"help.text"
-msgid "STANDARDIZE"
-msgstr "NORMALIZÁLÁS"
-
-#. -FK#
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149883\n"
-"47\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Egy véletlen számot normalizált értékűvé alakít.</ahelp>"
-
-#. d.Xq
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154330\n"
-"48\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 0BqT
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150132\n"
-"49\n"
-"help.text"
-msgid "STANDARDIZE(Number; Mean; StDev)"
-msgstr "NORMALIZÁLÁS(szám; középérték; szórás)"
-
-#. ;Fb0
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3159139\n"
-"50\n"
-"help.text"
-msgid "<emph>Number</emph> is the value to be standardized."
-msgstr "A <emph>szám</emph> a standardizálni kívánt érték."
-
-#. {#qr
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3145241\n"
-"51\n"
-"help.text"
-msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
-msgstr "A <emph>középérték</emph> az eloszlás aritmetikai közepe."
-
-#. ZH)2
-#: 04060185.xhp
-#, fuzzy
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148874\n"
-"52\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the distribution."
-msgstr "A <emph>szórás</emph> az eloszlás szórását jelöli."
-
-#. =]PV
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3145351\n"
-"53\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Sp-9
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156067\n"
-"54\n"
-"help.text"
-msgid "<item type=\"input\">=STANDARDIZE(11;10;1)</item> returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution."
-msgstr "A <item type=\"input\">=NORMALIZÁLÁS(11;10;1)</item> képlet eredménye 1. Egy normális eloszlás 11-es értéke, ha a középérték 10 és a szórás 1, annyival van a 10-es középérték felett, mint ahogy az 1 felette van a standard normális eloszlás középértékének."
-
-#. ITO]
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3157986\n"
-"help.text"
-msgid "<bookmark_value>NORMSINV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
-msgstr "<bookmark_value>INVERZ.STNORM függvény</bookmark_value><bookmark_value>NORMSINV függvény, lásd: INVERZ.STNORM függvény</bookmark_value><bookmark_value>normál eloszlás;standard inverze</bookmark_value>"
-
-#. .BGD
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3157986\n"
-"56\n"
-"help.text"
-msgid "NORMSINV"
-msgstr "INVERZ.STNORM"
-
-#. */$C
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151282\n"
-"57\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Kiszámítja a standardizált normál kumulatív eloszlás inverzét.</ahelp>"
-
-#. Bp04
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153261\n"
-"58\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. GH;o
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154195\n"
-"59\n"
-"help.text"
-msgid "NORMINV(Number)"
-msgstr "INVERZ.NORM(szám)"
-
-#. `^5I
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148772\n"
-"60\n"
-"help.text"
-msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
-msgstr "A <emph>szám</emph> az a valószínűség, amelyre vonatkozóan az inverz standardizált normál eloszlás kiszámításra kerül."
-
-#. ppqA
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3150934\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. G2,X
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149030\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
-msgstr "A <item type=\"input\">=INVERZ.STNORM(0,908789)</item> képlet eredménye 1,3333."
-
-#. bo-u
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3147538\n"
-"help.text"
-msgid "<bookmark_value>NORMSDIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
-msgstr "<bookmark_value>STNORMELOSZL függvény</bookmark_value><bookmark_value>NORMSDIST függvény, lásd: STNORMELOSZL függvény</bookmark_value><bookmark_value>normál eloszlás;statisztika</bookmark_value>"
-
-#. 0@;-
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147538\n"
-"64\n"
-"help.text"
-msgid "NORMSDIST"
-msgstr "STNORMELOSZL"
-
-#. y+Wj
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150474\n"
-"65\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Kiszámítja a standardizált normális kumulatív eloszlást. Az eloszlás átlaga nulla, és szórása egy.</ahelp>"
-
-#. fnOO
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id8652302\n"
-"help.text"
-msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
-msgstr "Ez GAUSS(x)=STNORMELOSZL(x)-0,5"
-
-#. T=[#
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155083\n"
-"66\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Y7qZ
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3158411\n"
-"67\n"
-"help.text"
-msgid "NORMSDIST(Number)"
-msgstr "STNORMELOSZL(szám)"
-
-#. KwEJ
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154950\n"
-"68\n"
-"help.text"
-msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
-msgstr "A <emph>szám</emph> az az érték, amelyre vonatkozóan a standard normál kumulatív eloszlás kiszámításra kerül."
-
-#. B\A$
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153228\n"
-"69\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ~IAs
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155984\n"
-"70\n"
-"help.text"
-msgid "<item type=\"input\">=NORMSDIST(1)</item> returns 0.84. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
-msgstr "A <item type=\"input\">=STNORMELOSZL(1)</item> eredményül 0,84-et ad. A standard normális eloszlás görbéje alatt az X = 1 értéktől balra található terület 84%-a a teljes területnek."
-
-#. QE^h
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3152592\n"
-"help.text"
-msgid "<bookmark_value>SLOPE function</bookmark_value>"
-msgstr "<bookmark_value>MEREDEKSÉG függvény</bookmark_value><bookmark_value>SLOPE függvény, lásd: MEREDEKSÉG függvény</bookmark_value>"
-
-#. PH=1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3152592\n"
-"72\n"
-"help.text"
-msgid "SLOPE"
-msgstr "MEREDEKSÉG"
-
-#. hd6R
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150386\n"
-"73\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
-msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\">Kiszámítja a lineáris regressziós egyenes meredekségét.</ahelp> A meredekség az x és y értékek által meghatározott adatpontokhoz van kiszámítva."
-
-#. n9$8
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154315\n"
-"74\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. YmWr
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149819\n"
-"75\n"
-"help.text"
-msgid "SLOPE(DataY; DataX)"
-msgstr "MEREDEKSÉG(y_adatok; x_adatok)"
-
-#. =6?9
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3083446\n"
-"76\n"
-"help.text"
-msgid "<emph>DataY</emph> is the array or matrix of Y data."
-msgstr "Az <emph>y_adatok</emph> az Y adatok tömbje vagy mátrixa."
-
-#. |3Sh
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3152375\n"
-"77\n"
-"help.text"
-msgid "<emph>DataX</emph> is the array or matrix of X data."
-msgstr "Az <emph>x_adatok</emph> az X adatok tömbje vagy mátrixa."
-
-#. !L=I
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3146061\n"
-"78\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. dWSO
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3152480\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
-msgstr "<item type=\"input\">=MEREDEKSÉG(A1:A50;B1:B50)</item>"
-
-#. wfH1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3155836\n"
-"help.text"
-msgid "<bookmark_value>STEYX function</bookmark_value> <bookmark_value>standard errors;statistical functions</bookmark_value>"
-msgstr "<bookmark_value>STHIBAYX függvény</bookmark_value><bookmark_value>STEYX függvény, lásd: STHIBAYX függvény</bookmark_value><bookmark_value>standard hiba;statisztikai függvények</bookmark_value>"
-
-#. h.}D
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155836\n"
-"81\n"
-"help.text"
-msgid "STEYX"
-msgstr "STHIBAYX"
-
-#. ACvv
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149446\n"
-"82\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Returns the standard error of the predicted y value for each x in the regression.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Kiszámítja a regresszió minden x pontjához tartozó becsült y érték standard hibáját.</ahelp>"
-
-#. G]JC
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147562\n"
-"83\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. :?(u
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151267\n"
-"84\n"
-"help.text"
-msgid "STEYX(DataY; DataX)"
-msgstr "STHIBAYX(y_adatok; x_adatok)"
-
-#. F0c$
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3147313\n"
-"85\n"
-"help.text"
-msgid "<emph>DataY</emph> is the array or matrix of Y data."
-msgstr "Az <emph>y_adatok</emph> az Y adatok tömbje vagy mátrixa."
-
-#. a{yH
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156097\n"
-"86\n"
-"help.text"
-msgid "<emph>DataX</emph> is the array or matrix of X data."
-msgstr "Az <emph>x_adatok</emph> az X adatok tömbje vagy mátrixa."
-
-#. 4^;P
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3145204\n"
-"87\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @5Av
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156131\n"
-"88\n"
-"help.text"
-msgid "<item type=\"input\">=STEXY(A1:A50;B1:B50)</item>"
-msgstr "<item type=\"input\">=STEXY(A1:A50;B1:B50)</item>"
-
-#. liO$
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3150873\n"
-"help.text"
-msgid "<bookmark_value>DEVSQ function</bookmark_value> <bookmark_value>sums;of squares of deviations</bookmark_value>"
-msgstr "<bookmark_value>SQ függvény</bookmark_value><bookmark_value>DEVSQ függvény, lásd: SQ függvény</bookmark_value><bookmark_value>összegzés;eltérések négyzetösszege</bookmark_value>"
-
-#. 5ks0
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3150873\n"
-"90\n"
-"help.text"
-msgid "DEVSQ"
-msgstr "SQ"
-
-#. ;[}K
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154748\n"
-"91\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Kiszámítja a mintaátlagtól való eltérések négyzetösszegét.</ahelp>"
-
-#. g*D%
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3156121\n"
-"92\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ZLcB
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3146790\n"
-"93\n"
-"help.text"
-msgid "DEVSQ(Number1; Number2; ...Number30)"
-msgstr "SQ(szám_1; szám_2; ...szám_30)"
-
-#. YnS[
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155995\n"
-"94\n"
-"help.text"
-msgid "<emph>Number1, Number2, ...Number30</emph> numerical values or ranges representing a sample."
-msgstr "A <emph>szám_1, szám_2, ...szám_30</emph> egy mintát képviselő numerikus értékek vagy tartományok."
-
-#. |j2}
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3150254\n"
-"95\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. aG9R
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149136\n"
-"96\n"
-"help.text"
-msgid "<item type=\"input\">=DEVSQ(A1:A50)</item>"
-msgstr "<item type=\"input\">=SQ(A1:A50)</item>"
-
-#. t9TF
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3149579\n"
-"help.text"
-msgid "<bookmark_value>TINV function</bookmark_value> <bookmark_value>inverse of t-distribution</bookmark_value>"
-msgstr "<bookmark_value>INVERZ.T függvény</bookmark_value><bookmark_value>TINV függvény, lásd: INVERZ.T függvény</bookmark_value><bookmark_value>t-eloszlás inverze</bookmark_value>"
-
-#. \s$A
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149579\n"
-"98\n"
-"help.text"
-msgid "TINV"
-msgstr "INVERZ.T"
-
-#. !1hs
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3143232\n"
-"99\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TINV\">Kiszámítja a t-eloszlás inverzét.</ahelp>"
-
-#. 3M1|
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3155101\n"
-"100\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. .F3w
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149289\n"
-"101\n"
-"help.text"
-msgid "TINV(Number; DegreesFreedom)"
-msgstr "INVERZ.T(szám; szabadsági_fok)"
-
-#. m:Ed
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154070\n"
-"102\n"
-"help.text"
-msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
-msgstr "A <emph>szám</emph> a kétoldali t-eloszláshoz tartozó valószínűség."
-
-#. z,.J
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155315\n"
-"103\n"
-"help.text"
-msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
-msgstr "A <emph>szabadsági_fok</emph> a t-eloszlásra vonatkozó szabadsági fokok száma."
-
-#. c]ie
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153885\n"
-"104\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [oK[
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156010\n"
-"105\n"
-"help.text"
-msgid "<item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
-msgstr "Az <item type=\"input\">=INVERZ.T(0,1;6)</item> képlet eredménye 1,94."
-
-#. @NZ.
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3154129\n"
-"help.text"
-msgid "<bookmark_value>TTEST function</bookmark_value>"
-msgstr "<bookmark_value>T.PRÓBA függvény</bookmark_value><bookmark_value>TTEST függvény, lásd: T.PRÓBA függvény</bookmark_value>"
-
-#. ~Ihj
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154129\n"
-"107\n"
-"help.text"
-msgid "TTEST"
-msgstr "T.PRÓBA"
-
-#. fRP7
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3159184\n"
-"108\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TTEST\">Kiszámítja a Student-próba valószínűségi értékét.</ahelp>"
-
-#. L=WM
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147257\n"
-"109\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. K?4S
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151175\n"
-"110\n"
-"help.text"
-msgid "TTEST(Data1; Data2; Mode; Type)"
-msgstr "T.PRÓBA(adatok_1; adatok_2; mód; típus)"
-
-#. DZ6\
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149202\n"
-"111\n"
-"help.text"
-msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
-msgstr "Az <emph>adatok_1</emph> az első rekord adatait tartalmazó függő tömb, illetve tartomány."
-
-#. ]5US
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3145666\n"
-"112\n"
-"help.text"
-msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
-msgstr "Az <emph>adatok_2</emph> a második rekord adatait tartalmazó függő tömb, illetve tartomány."
-
-#. |7[P
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153903\n"
-"113\n"
-"help.text"
-msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
-msgstr "A <emph>mód</emph> = 1 az egyoldali t-eloszlást számítja ki, a <emph>mód</emph> = 2 pedig a kétoldali t-eloszlást."
-
-#. lz0b
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155327\n"
-"114\n"
-"help.text"
-msgid "<emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
-msgstr "A <emph>típus</emph> a végrehajtani kívánt t-próba típusa. A <emph>típus</emph> = 1 párosítottat jelent. A <emph>típus</emph> = 2 két mintát, egyenlő szórásnégyzetet (állandó feltételes eloszlású) jelent. A <emph>típus</emph> = 3 két mintát, eltérő szórásnégyzetet (véletlen mennyiségtől függő) jelent."
-
-#. 1q+z
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3159342\n"
-"115\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Sfmh
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150119\n"
-"116\n"
-"help.text"
-msgid "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
-msgstr "<item type=\"input\">=T.PRÓBA(A1:A50;B1:B50;2;2)</item>"
-
-#. X6v4
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3154930\n"
-"help.text"
-msgid "<bookmark_value>TDIST function</bookmark_value> <bookmark_value>t-distribution</bookmark_value>"
-msgstr "<bookmark_value>T.ELOSZLÁS függvény</bookmark_value><bookmark_value>TDIST függvény, lásd: T.ELOSZLÁS függvény</bookmark_value><bookmark_value>t-eloszlás</bookmark_value>"
-
-#. !4k7
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154930\n"
-"118\n"
-"help.text"
-msgid "TDIST"
-msgstr "T.ELOSZLÁS"
-
-#. AS*`
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153372\n"
-"119\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Kiszámítja a t-eloszlást.</ahelp>"
-
-#. qtp#
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149911\n"
-"120\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. A/:E
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150521\n"
-"121\n"
-"help.text"
-msgid "TDIST(Number; DegreesFreedom; Mode)"
-msgstr "T.ELOSZLÁS(szám; szabadsági_fok; mód)"
-
-#. cTGz
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3146991\n"
-"122\n"
-"help.text"
-msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
-msgstr "A <emph>szám</emph> azon érték, amelyre vonatkozóan a t-eloszlást ki kívánja számítani."
-
-#. H|e\
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148824\n"
-"123\n"
-"help.text"
-msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
-msgstr "A <emph>szabadsági_fok</emph> a t-eloszlásra vonatkozó szabadsági fokok száma."
-
-#. U_iV
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149340\n"
-"124\n"
-"help.text"
-msgid "<emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
-msgstr "A <emph>mód</emph> = 1 az egyoldali t-eloszlást adja eredményül, a <emph>mód</emph> = 2 a kétoldali t-eloszlást."
-
-#. saoh
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3159150\n"
-"125\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. rQKS
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149773\n"
-"126\n"
-"help.text"
-msgid "<item type=\"input\">=TDIST(12;5;1)</item>"
-msgstr "<item type=\"input\">=T.ELOSZLÁS(12; 5; 1)</item>"
-
-#. ]uHf
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3153828\n"
-"help.text"
-msgid "<bookmark_value>VAR function</bookmark_value> <bookmark_value>variances</bookmark_value>"
-msgstr "<bookmark_value>VAR függvény</bookmark_value><bookmark_value>variancia</bookmark_value>"
-
-#. h;ZS
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153828\n"
-"128\n"
-"help.text"
-msgid "VAR"
-msgstr "VAR"
-
-#. i-)V
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3159165\n"
-"129\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\">Minta alapján becslést ad a szórásnégyzetre.</ahelp>"
-
-#. UlQh
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154286\n"
-"130\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Yme3
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153054\n"
-"131\n"
-"help.text"
-msgid "VAR(Number1; Number2; ...Number30)"
-msgstr "VAR(szám_1; szám_2; ...szám_30)"
-
-#. zSH+
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148938\n"
-"132\n"
-"help.text"
-msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr "A <emph>szám_1, szám_2, ...szám_30</emph> egy teljes sokaságon alapuló mintát képviselő numerikus értékek vagy tartományok."
-
-#. (T(9
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147233\n"
-"133\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ,muG
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153575\n"
-"134\n"
-"help.text"
-msgid "<item type=\"input\">=VAR(A1:A50)</item>"
-msgstr "<item type=\"input\">=VAR(A1:A50)</item>"
-
-#. Uctj
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3151045\n"
-"help.text"
-msgid "<bookmark_value>VARA function</bookmark_value>"
-msgstr "<bookmark_value>VARA függvény</bookmark_value>"
-
-#. NTj1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3151045\n"
-"202\n"
-"help.text"
-msgid "VARA"
-msgstr "VARA"
-
-#. A(R^
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3155122\n"
-"203\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\">Minta alapján becslést ad a szórásnégyzetre. A szövegeket nullának értelmezi.</ahelp>"
-
-#. vfSa
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149176\n"
-"204\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. VSRd
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149999\n"
-"205\n"
-"help.text"
-msgid "VARA(Value1; Value2; ...Value30)"
-msgstr "VARA(érték1; érték2; ...érték30)"
-
-#. Y\yx
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3158421\n"
-"206\n"
-"help.text"
-msgid "<emph>Value1, Value2,...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
-msgstr "Az <emph>érték1, érték2, ...érték30</emph> a teljes sokaságból vett mintát képviselő értékek vagy tartományok. A szöveg 0 értékű."
-
-#. aQEH
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149160\n"
-"207\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 4\nt
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154279\n"
-"208\n"
-"help.text"
-msgid "<item type=\"input\">=VARA(A1:A50)</item>"
-msgstr "<item type=\"input\">=VARA(A1:A50)</item>"
-
-#. M?({
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3166441\n"
-"help.text"
-msgid "<bookmark_value>VARP function</bookmark_value>"
-msgstr "<bookmark_value>VARP függvény</bookmark_value>"
-
-#. ?WDA
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3166441\n"
-"136\n"
-"help.text"
-msgid "VARP"
-msgstr "VARP"
-
-#. DBd1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3159199\n"
-"137\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">Egy statisztikai sokaság szórásnégyzetét számítja ki.</ahelp>"
-
-#. 2jr\
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3150706\n"
-"138\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. TeVS
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3147282\n"
-"139\n"
-"help.text"
-msgid "VARP(Number1; Number2; ...Number30)"
-msgstr "VARP(szám_1; szám_2; ...szám_30)"
-
-#. 7cz#
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149793\n"
-"140\n"
-"help.text"
-msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
-msgstr "A <emph>szám_1, szám_2, ...szám_30</emph> egy teljes sokaságot képviselő numerikus értékek vagy tartományok."
-
-#. .,DR
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3152939\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. PA+(
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153385\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=VARP(A1:A50)</item>"
-msgstr "<item type=\"input\">=VARP(A1:A50)</item>"
-
-#. dhw@
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3153688\n"
-"help.text"
-msgid "<bookmark_value>VARPA function</bookmark_value>"
-msgstr "<bookmark_value>VARPA függvény</bookmark_value>"
-
-#. |{Ol
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153688\n"
-"210\n"
-"help.text"
-msgid "VARPA"
-msgstr "VARPA"
-
-#. nE#g
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149109\n"
-"211\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calculates the variance based on the entire population. The value of text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\">Kiszámítja a teljes sokaságra vett szórásnégyzetet. Szöveges mezők 0 értékkel számítanak.</ahelp>"
-
-#. {h9h
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3152880\n"
-"212\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. +!qu
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149967\n"
-"213\n"
-"help.text"
-msgid "VARPA(Value1; Value2; ...Value30)"
-msgstr "VARPA(érték_1; érték_2; ...érték_30)"
-
-#. uuyk
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149920\n"
-"214\n"
-"help.text"
-msgid "<emph>Value1,value2,...Value30</emph> are values or ranges representing an entire population."
-msgstr "Az <emph>érték_1, érték_2, ...érték_30</emph> egy teljes sokaságot képviselő értékek vagy tartományok."
-
-#. n1:b
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154862\n"
-"215\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. !vZ1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156203\n"
-"216\n"
-"help.text"
-msgid "<item type=\"input\">=VARPA(A1:A50)</item>"
-msgstr "<item type=\"input\">=VARPA(A1:A50)</item>"
-
-#. c[6|
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3154599\n"
-"help.text"
-msgid "<bookmark_value>PERMUT function</bookmark_value> <bookmark_value>number of permutations</bookmark_value>"
-msgstr "<bookmark_value>VARIÁCIÓK függvény</bookmark_value><bookmark_value>PERMUT függvény, lásd: VARIÁCIÓK függvény</bookmark_value><bookmark_value>variációk száma</bookmark_value>"
-
-#. WTJR
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3154599\n"
-"144\n"
-"help.text"
-msgid "PERMUT"
-msgstr "VARIÁCIÓK"
-
-#. n}]m
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154334\n"
-"145\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Kiszámítja az adott számú objektumokból kirakható ismétlés nélküli permutációk számát.</ahelp>"
-
-#. (XAP
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3149422\n"
-"146\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. amRE
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148466\n"
-"147\n"
-"help.text"
-msgid "PERMUT(Count1; Count2)"
-msgstr "VARIÁCIÓK(szám_1; szám_2)"
-
-#. 2VP|
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3148656\n"
-"148\n"
-"help.text"
-msgid "<emph>Count1</emph> is the total number of objects."
-msgstr "A <emph>szám_1</emph> az összes objektum száma."
-
-#. -mj;
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150826\n"
-"149\n"
-"help.text"
-msgid "<emph>Count2</emph> is the number of objects in each permutation."
-msgstr "A <emph>szám_2</emph> az egyes permutációkban szereplő objektumok száma."
-
-#. C.gm
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153351\n"
-"150\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. c@^a
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150424\n"
-"151\n"
-"help.text"
-msgid "<item type=\"input\">=PERMUT(6;3)</item> returns 120. There are 120 different possibilities, to pick a sequence of 3 playing cards out of 6 playing cards."
-msgstr "A <item type=\"input\">=VARIÁCIÓK(6;3)</item> képlet eredménye 120. 120 különböző lehetőség van 3 kártya kihúzására egy hatos pakliból, ha a sorrend is számít."
-
-#. )E:V
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3143276\n"
-"help.text"
-msgid "<bookmark_value>PERMUTATIONA function</bookmark_value>"
-msgstr "<bookmark_value>PERMUTATIONA függvény</bookmark_value>"
-
-#. J#Cq
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3143276\n"
-"153\n"
-"help.text"
-msgid "PERMUTATIONA"
-msgstr "PERMUTATIONA"
-
-#. 3Ej$
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3144759\n"
-"154\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Kiszámítja az adott számú objektumokból kirakható ismétléses permutációk számát.</ahelp>"
-
-#. Ezsk
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3145598\n"
-"155\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. e$Js
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149298\n"
-"156\n"
-"help.text"
-msgid "PERMUTATIONA(Count1; Count2)"
-msgstr "PERMUTATIONA(szám_1; szám_2)"
-
-#. 8[oe
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156139\n"
-"157\n"
-"help.text"
-msgid "<emph>Count1</emph> is the total number of objects."
-msgstr "A <emph>szám_1</emph> az összes objektum száma."
-
-#. sVIi
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149519\n"
-"158\n"
-"help.text"
-msgid "<emph>Count2</emph> is the number of objects in each permutation."
-msgstr "A <emph>szám_2</emph> az egyes permutációkban szereplő objektumok száma."
-
-#. [lEZ
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3151382\n"
-"159\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Qvw0
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153949\n"
-"160\n"
-"help.text"
-msgid "How often can 2 objects be selected from a total of 11 objects?"
-msgstr "Hányféleképpen tud kiválasztani 2 objektumot 11 közül?"
-
-#. DG,1
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3149233\n"
-"161\n"
-"help.text"
-msgid "<item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
-msgstr "A <item type=\"input\">=PERMUTATIONA(11;2)</item> eredményül 121-et ad."
-
-#. !8jz
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3150622\n"
-"162\n"
-"help.text"
-msgid "<item type=\"input\">=PERMUTATIONA(6;3)</item> returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn."
-msgstr "A <item type=\"input\">=PERMUTATIONA(6;3)</item> képlet eredménye 216. 216 különböző lehetőség van 3 kártya kihúzására egy hatos pakliból, ha a sorrend számít, és ha a húzás után a kihúzott kártyát visszatesszük a pakliba."
-
-#. DOxd
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3152952\n"
-"help.text"
-msgid "<bookmark_value>PROB function</bookmark_value>"
-msgstr "<bookmark_value>VALÓSZÍNŰSÉG függvény</bookmark_value><bookmark_value>PROB függvény, lásd: VALÓSZÍNŰSÉG függvény</bookmark_value>"
-
-#. 0FF7
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3152952\n"
-"164\n"
-"help.text"
-msgid "PROB"
-msgstr "VALÓSZÍNŰSÉG"
-
-#. =][s
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154110\n"
-"165\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Returns the probability that values in a range are between two limits.</ahelp> If there is no <item type=\"literal\">End</item> value, this function calculates the probability based on the principle that the Data values are equal to the value of <item type=\"literal\">Start</item>."
-msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Kiszámítja egy értéktartomány értékeinek két korlát közé esésének valószínűségét.</ahelp> Ha nem ad meg <item type=\"literal\">végértéket</item>, akkor a függvény a valószínűséget úgy számítja ki, hogy a <item type=\"literal\">kezdőértékkel</item> megegyező adatok valószínűségeit összeadja."
-
-#. 8rP5
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3146810\n"
-"166\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. [/_J
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3147330\n"
-"167\n"
-"help.text"
-msgid "PROB(Data; Probability; Start; End)"
-msgstr "VALÓSZÍNŰSÉG(adatok; valószínűség; kezdőérték; végérték)"
-
-#. ,^Tg
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154573\n"
-"168\n"
-"help.text"
-msgid "<emph>Data</emph> is the array or range of data in the sample."
-msgstr "Az <emph>adatok</emph> a minta adatait tartalmazó tömb, illetve tartomány."
-
-#. RhkQ
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3156334\n"
-"169\n"
-"help.text"
-msgid "<emph>Probability</emph> is the array or range of the corresponding probabilities."
-msgstr "A <emph>valószínűség</emph> a vonatkozó valószínűségeket tartalmazó tömb, illetve tartomány."
-
-#. O5ds
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151107\n"
-"170\n"
-"help.text"
-msgid "<emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
-msgstr "A <emph>kezdőérték</emph> azon tartomány kezdőértéke, amely valószínűségeit összegezni kívánja."
-
-#. 8q1%
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153694\n"
-"171\n"
-"help.text"
-msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
-msgstr "A <emph>végérték</emph> (opcionális) azon tartomány záróértéke, amely valószínűségeit összegezni kívánja. Ha a paraméter hiányzik, akkor a <emph>kezdőértékre</emph> vonatkozó valószínűség kerül kiszámításra."
-
-#. 5a5b
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3147574\n"
-"172\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. occ/
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3153666\n"
-"173\n"
-"help.text"
-msgid "<item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> returns the probability with which a value within the range of A1:A50 is also within the limits between 50 and 60. Every value within the range of A1:A50 has a probability within the range of B1:B50."
-msgstr "A <item type=\"input\">=VALÓSZÍNŰSÉG(A1:A50;B1:B50;50;60)</item> megadja azt a valószínűséget, hogy az A1:A50 cellatartomány értékei 50 és 60 között vannak. Minden A1:A50 tartományban levő értéknek van valószínűsége a B1:B50 tartományban."
-
-#. SM$g
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"bm_id3150941\n"
-"help.text"
-msgid "<bookmark_value>WEIBULL function</bookmark_value>"
-msgstr "<bookmark_value>WEIBULL függvény</bookmark_value>"
-
-#. wFTN
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3150941\n"
-"175\n"
-"help.text"
-msgid "WEIBULL"
-msgstr "WEIBULL"
-
-#. j:$I
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154916\n"
-"176\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Kiszámítja a Weibull-eloszlás értékeit.</ahelp>"
-
-#. 2|O_
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id0305200911372767\n"
-"help.text"
-msgid "The Weibull distribution is a continuous probability distribution, with parameters Alpha > 0 (shape) and Beta > 0 (scale)."
-msgstr "A Weibull-eloszlás egy folytonos valószínűségeloszlás, amelynek két paramétere van, az alfa > 0 (alak) és béta > 0 (skála)."
-
-#. d{N)
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id0305200911372777\n"
-"help.text"
-msgid "If C is 0, WEIBULL calculates the probability density function."
-msgstr "Ha c értéke 0, akkor a WEIBULL a sűrűségfüggvényt számítja ki."
-
-#. rcm)
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id0305200911372743\n"
-"help.text"
-msgid "If C is 1, WEIBULL calculates the cumulative distribution function."
-msgstr "Ha c értéke 1, akkor a WEIBULL az eloszlásfüggvényt számítja ki."
-
-#. $j\X
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3159393\n"
-"177\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. pV2%
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154478\n"
-"178\n"
-"help.text"
-msgid "WEIBULL(Number; Alpha; Beta; C)"
-msgstr "WEIBULL(szám; alfa; béta; c)"
-
-#. F1/^
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3151317\n"
-"179\n"
-"help.text"
-msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
-msgstr "A <emph>szám</emph> azon érték, amelyre ki kívánja számítani a Weibull-eloszlást."
-
-#. v_F@
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3158436\n"
-"180\n"
-"help.text"
-msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
-msgstr "Az <emph>alfa</emph> a Weibull-eloszlás alakparamétere."
-
-#. d`i}
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154668\n"
-"181\n"
-"help.text"
-msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
-msgstr "A <emph>béta</emph> a Weibull-eloszlás skálaparamétere."
-
-#. 2L1$
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3154825\n"
-"182\n"
-"help.text"
-msgid "<emph>C</emph> indicates the type of function."
-msgstr "A <emph>c</emph> a függvény típusát jelzi."
-
-#. #rZ*
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"hd_id3153794\n"
-"183\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 6d{9
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id3146077\n"
-"184\n"
-"help.text"
-msgid "<item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
-msgstr "A <item type=\"input\">=WEIBULL(2;1;1;1)</item> képlet eredménye 0,86."
-
-#. dh,;
-#: 04060185.xhp
-msgctxt ""
-"04060185.xhp\n"
-"par_id0305200911372899\n"
-"help.text"
-msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
-msgstr "További információk a <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">wikioldalon</link>."
-
-#. ktq,
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input Help"
-msgstr "Segédszöveg"
-
-#. DQyF
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"hd_id3156280\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
-msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Segédszöveg\">Segédszöveg</link>"
-
-#. 6sqw
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"par_id3147229\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Írja be az üzenetet, amely a munkalapon cella vagy cellatartomány kijelölésekor jelenik meg.</ahelp>"
-
-#. ^d3T
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"hd_id3146986\n"
-"3\n"
-"help.text"
-msgid "Show input help when cell is selected"
-msgstr "Segédszöveg megjelenítése a cella kijelölésekor"
-
-#. PjH5
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"par_id3153363\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Megjeleníti a <emph>Tartalom</emph> mezőbe írt szöveget, amikor a cella vagy a cellatartomány ki van jelölve a munkalapon.</ahelp>"
-
-#. K{a[
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"par_id3154730\n"
-"5\n"
-"help.text"
-msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
-msgstr "Ha a párbeszédablak <emph>Tartalom</emph> mezőjében szöveget ad meg, majd kijelöli és törli ezt a jelölőnégyzetet, a szöveg elvész."
-
-#. g@kg
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"hd_id3147394\n"
-"6\n"
-"help.text"
-msgid "Contents"
-msgstr "Tartalom"
-
-#. NaWI
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"hd_id3149582\n"
-"8\n"
-"help.text"
-msgid "Title"
-msgstr "Cím"
-
-#. IEU@
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"par_id3149400\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Adja meg a címet, amely egy cella vagy cellatartomány kijelölésekor megjelenik.</ahelp>"
-
-#. $u3s
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"hd_id3149121\n"
-"10\n"
-"help.text"
-msgid "Input help"
-msgstr "Segédszöveg"
-
-#. HreL
-#: 12120200.xhp
-msgctxt ""
-"12120200.xhp\n"
-"par_id3150752\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Írja be az üzenetet, amely a cella vagy a cellatartomány kijelölésekor jelenik meg.</ahelp>"
-
-#. iKlU
-#: 02140400.xhp
-msgctxt ""
-"02140400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Left"
-msgstr "Balra"
-
-#. n1MB
-#: 02140400.xhp
-msgctxt ""
-"02140400.xhp\n"
-"hd_id3153896\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
-msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Balra\">Balra</link>"
-
-#. b38m
-#: 02140400.xhp
-msgctxt ""
-"02140400.xhp\n"
-"par_id3150793\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Legalább két oszlopból álló tartományt a tartomány jobb szélső cellájának tartalmával tölt fel.</ahelp>"
-
-#. wI`9
-#: 02140400.xhp
-msgctxt ""
-"02140400.xhp\n"
-"par_id3156280\n"
-"3\n"
-"help.text"
-msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
-msgstr "Ha a kijelölt tartomány csak egy sorból áll, akkor a jobbról első cella tartalma átmásolásra kerül a tartomány összes többi cellájába. Ha több sort jelöl ki, akkor a jobbról első cellák kerülnek másolásra a tőlük balra található cellákba."
-
-#. 3[sb
-#: 04010200.xhp
-msgctxt ""
-"04010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column Break"
-msgstr "Oszloptörés"
-
-#. GV^=
-#: 04010200.xhp
-msgctxt ""
-"04010200.xhp\n"
-"bm_id3155923\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; oszloptörések beszúrása</bookmark_value><bookmark_value>oszloptörések; beszúrás</bookmark_value><bookmark_value>beszúrás; kézi oszloptörések</bookmark_value><bookmark_value>kézi oszloptörések</bookmark_value>"
-
-#. 1W4`
-#: 04010200.xhp
-msgctxt ""
-"04010200.xhp\n"
-"hd_id3155923\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
-msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Oszloptörés\">Oszloptörés</link>"
-
-#. KKW)
-#: 04010200.xhp
-msgctxt ""
-"04010200.xhp\n"
-"par_id3150447\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Beszúr egy hasábtörést (függőleges oldaltörést) az aktív cellától balra.</ahelp>"
-
-#. /n#0
-#: 04010200.xhp
-msgctxt ""
-"04010200.xhp\n"
-"par_id3145171\n"
-"3\n"
-"help.text"
-msgid "The manual column break is indicated by a dark blue vertical line."
-msgstr "A kézi oszloptörést sötétkék vonal jelzi."
-
-#. pZ*q
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rows"
-msgstr "Sorok"
-
-#. X)M,
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"bm_id3150541\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; sorok beszúrása</bookmark_value><bookmark_value>sorok; beszúrás</bookmark_value><bookmark_value>beszúrás; sorok</bookmark_value>"
-
-#. mzA?
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150541\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Sorok\">Sorok</link>"
-
-#. EB\)
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150767\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
-msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Új sort szúr be az aktuális sor fölé.</ahelp> A beszúrt sorok száma megegyezik a kijelölt sorok számával. A már létező sorok lefelé tolódnak."
-
-#. -WYZ
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Header/Footer"
-msgstr "Élőfej és élőláb"
-
-#. S8ne
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
-msgstr "<bookmark_value>oldalstílusok; élőfejek</bookmark_value> <bookmark_value>oldalstílusok; élőlábak</bookmark_value> <bookmark_value>élőfejek; megadás</bookmark_value> <bookmark_value>élőlábak; megadás</bookmark_value> <bookmark_value>fájlnevek élőfejekben és élőlábakban</bookmark_value> <bookmark_value>módosítás;dátumok, automatikusan</bookmark_value> <bookmark_value>dátumok;frissítés automatikusan</bookmark_value> <bookmark_value>automatikus dátumfrissítések</bookmark_value>"
-
-#. l]k.
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3153360\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
-msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Élőfej és élőláb\">Élőfej és élőláb</link>"
-
-#. CZV?
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3150768\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Az oldalstílus élőfej- vagy élőlábformátumát határozza meg.</ahelp>"
-
-#. MQ_D
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3145748\n"
-"3\n"
-"help.text"
-msgid "Left Area"
-msgstr "Bal oldalon"
-
-#. L[@b
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3147434\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Adja meg az élőfej vagy az élőláb bal oldalán megjelenítendő szöveget.</ahelp>"
-
-#. 7QHO
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3148648\n"
-"5\n"
-"help.text"
-msgid "Center Area"
-msgstr "Középen"
-
-#. ]@\k
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3163710\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\".\">Adja meg az élőfej vagy az élőláb közepén megjelenítendő szöveget.</ahelp>"
-
-#. F~x.
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3154942\n"
-"7\n"
-"help.text"
-msgid "Right Area"
-msgstr "Jobb oldalon"
-
-#. H.dB
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3147126\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLR\">Adja meg az élőfej vagy az élőláb jobb oldalán megjelenítendő szöveget.</ahelp>"
-
-#. [UCP
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_idN10811\n"
-"help.text"
-msgid "Header/Footer"
-msgstr "Élőfej/Élőláb"
-
-#. *2]V
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_idN10815\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
-msgstr "<ahelp hid=\".\">Válasszon előre definiált élőfejet vagy élőlábat a listából.</ahelp>"
-
-#. n0o#
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3154729\n"
-"9\n"
-"help.text"
-msgid "Text attributes"
-msgstr "Szövegjellemzők"
-
-#. hvAv
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3150717\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
-msgstr "<ahelp hid=\"HID_SC_HF_TEXT\">Megnyit egy párbeszédablakot, amelyen új vagy kijelölt szöveghez lehet formázást hozzárendelni.</ahelp> A <emph>Szövegattribútumok</emph> párbeszédablak tartalmazza a <link href=\"text/shared/01/05020100.xhp\" name=\"Betűtípus\">Betűkészlet</link>, a <link href=\"text/shared/01/05020200.xhp\" name=\"Betűhatások\">Betűhatások</link> és a <link href=\"text/shared/01/05020500.xhp\" name=\"Betűhelyzet\">Betűhelyzet</link> lapot."
-
-#. 6]b*
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3159266\n"
-"help.text"
-msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Ikon</alt></image>"
-
-#. bqDP
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3155336\n"
-"25\n"
-"help.text"
-msgid "Text Attributes"
-msgstr "Szövegjellemzők"
-
-#. @CU/
-#: 02120100.xhp
-#, fuzzy
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3145792\n"
-"11\n"
-"help.text"
-msgid "File Name"
-msgstr "Fájlnév"
-
-#. 3{#y
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3150206\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
-msgstr "<ahelp hid=\"HID_SC_HF_FILE\">Egy fájlnév-helykitöltőt helyez el a kijelölt részben.</ahelp> Kattintson röviden a cím beszúrásához. Ha a címet, a fájlnevet vagy az elérési utat/fájlnevet az almenüből kívánja kiválasztani, akkor kattintson hosszan. Ha nincs megadva cím (lásd: <emph>Fájl - Tulajdonságok</emph>), akkor a fájlnév (kiterjesztés nélkül) lesz beszúrva helyette."
-
-#. Jz?-
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3150369\n"
-"help.text"
-msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Ikon</alt></image>"
-
-#. D(:E
-#: 02120100.xhp
-#, fuzzy
-msgctxt ""
-"02120100.xhp\n"
-"par_id3154487\n"
-"26\n"
-"help.text"
-msgid "File Name"
-msgstr "Fájlnév"
-
-#. J^v;
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3155812\n"
-"13\n"
-"help.text"
-msgid "Sheet Name"
-msgstr "Munkalapnév"
-
-#. /~{@
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3148842\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_TABLE\">Helykitöltőt helyez el a kijelölt élőfej- vagy élőlábrészen. A helykitöltő helyén később minden oldal élőfejében vagy élőlábjában a munkalap neve jelenik meg.</ahelp>"
-
-#. sJ=5
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3146870\n"
-"help.text"
-msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Ikon</alt></image>"
-
-#. UNs#
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3147071\n"
-"27\n"
-"help.text"
-msgid "Sheet Name"
-msgstr "Munkalapnév"
-
-#. gNaS
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3144768\n"
-"15\n"
-"help.text"
-msgid "Page"
-msgstr "Oldalszám"
-
-#. N[Xb
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3154960\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_PAGE\">Helykitöltőt szúr be a kijelölt élőfej- és élőlábrészbe, amely az oldalszámra cserélődik. Ennek segítségével egy dokumentumban folyamatos oldalszámozást valósíthat meg.</ahelp>"
-
-#. ~NTy
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3151304\n"
-"help.text"
-msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Ikon</alt></image>"
-
-#. C)cs
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3150048\n"
-"28\n"
-"help.text"
-msgid "Page"
-msgstr "Oldalszám"
-
-#. xEFC
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3146962\n"
-"17\n"
-"help.text"
-msgid "Pages"
-msgstr "Oldalak száma"
-
-#. FyL.
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3153812\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_PAGES\">Helykitöltőt helyez el a kijelölt élőfej- vagy élőlábrészen. A helykitöltő helyén később a dokumentum oldalainak száma jelenik meg.</ahelp>"
-
-#. V%MT
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3149315\n"
-"help.text"
-msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Ikon</alt></image>"
-
-#. T!L$
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3147499\n"
-"29\n"
-"help.text"
-msgid "Pages"
-msgstr "Oldalak száma"
-
-#. gv2M
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3149050\n"
-"19\n"
-"help.text"
-msgid "Date"
-msgstr "Dátum"
-
-#. cB1p
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3153960\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_DATE\">Helykitöltőt helyez el a kijelölt élőfej- vagy élőlábrészen. A helykitöltő helyén később minden oldal élőfejében vagy élőlábjában az aktuális dátum jelenik meg.</ahelp>"
-
-#. }$~*
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3147299\n"
-"help.text"
-msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Ikon</alt></image>"
-
-#. h9`k
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3150540\n"
-"30\n"
-"help.text"
-msgid "Date"
-msgstr "Dátum"
-
-#. }Vuj
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"hd_id3147610\n"
-"21\n"
-"help.text"
-msgid "Time"
-msgstr "Idő"
-
-#. lfy9
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3145638\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_TIME\">Helykitöltőt helyez el a kijelölt élőfej- vagy élőlábrészen. A helykitöltő helyén később minden oldal élőfejében vagy élőlábjában az aktuális idő jelenik meg.</ahelp>"
-
-#. *d9i
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3153122\n"
-"help.text"
-msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Ikon</alt></image>"
-
-#. 4!@,
-#: 02120100.xhp
-msgctxt ""
-"02120100.xhp\n"
-"par_id3157904\n"
-"31\n"
-"help.text"
-msgid "Time"
-msgstr "Idő"
-
-#. |S5r
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sheet from file"
-msgstr "Munkalap fájlból"
-
-#. ~k%$
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
-msgstr "<link href=\"text/scalc/01/04050100.xhp\">Munkalap fájlból</link>"
-
-#. dh|m
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_idN105D1\n"
-"help.text"
-msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\"26275\">Beszúr egy munkalapot egy másik munkafüzetfájlból.</ahelp>"
-
-#. Nh!,
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
-msgstr "Használja a <link href=\"text/shared/01/01020000.xhp\">Fájl - Megnyitás</link> párbeszédablakot a munkafüzet megkereséséhez."
-
-#. 16fM
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_idN10609\n"
-"help.text"
-msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
-msgstr "A <link href=\"text/scalc/01/04050000.xhp\">Munkalap beszúrása</link> párbeszédablakban válassza ki a beszúrandó fájlt."
-
-#. o\a,
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"tit\n"
-"help.text"
-msgid "More"
-msgstr "Részletek"
-
-#. 9pie
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3148492\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Részletek\">Részletek</link>"
-
-#. \4`F
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3159400\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">További szűrési beállításokat jelenít meg.</ahelp></variable>"
-
-#. b_Ap
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3150791\n"
-"3\n"
-"help.text"
-msgid "Options"
-msgstr "Beállítások"
-
-#. iYr.
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3154138\n"
-"5\n"
-"help.text"
-msgid "Case sensitive"
-msgstr "Kis- és nagybetűk megkülönböztetése"
-
-#. ``a+
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3147228\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Adatok szűrésekor különbséget tesz a nagy- és a kisbetűk között.</ahelp>"
-
-#. $pXJ
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3154908\n"
-"7\n"
-"help.text"
-msgid "Range contains column labels"
-msgstr "A tartomány oszlopcímkéket tartalmaz"
-
-#. ^Ut5
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3153768\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Beleveszi az oszlopcímkéket egy cellatartomány első sorába.</ahelp>"
-
-#. @9{L
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3155306\n"
-"9\n"
-"help.text"
-msgid "Copy results to"
-msgstr "Eredmény másolási helye"
-
-#. t5Xn
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3154319\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Jelölje be a négyzetet, majd válassza ki azt a cellatartományt, ahol a szűrés eredményét látni kívánja.</ahelp> A listából egy névvel ellátott tartományt is kiválaszthat."
-
-#. TxT_
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3145272\n"
-"11\n"
-"help.text"
-msgid "Regular expression"
-msgstr "Reguláris kifejezés"
-
-#. 6=Aq
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3152576\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Lehetővé teszi a helyettesítő karakterek alkalmazását a szűrő beállításakor.</ahelp> A $[officename] által támogatott reguláris kifejezések listáját <link href=\"text/shared/01/02100001.xhp\" name=\"ide\">ide</link> kattintva tekintheti meg."
-
-#. %X.@
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3149377\n"
-"33\n"
-"help.text"
-msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
-msgstr "Ha a <emph>Reguláris kifejezés</emph> jelölőnégyzet be van jelölve, akkor használhat reguláris kifejezéseket az Érték mezőben, ha a Feltétel listából az „=” (egyenlő) vagy a „<>” (nem egyenlő) lehetőséget választja. Ez az irányított szűrő által használt szűrőfeltétel-cellára is vonatkozik."
-
-#. \=Oo
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3149958\n"
-"34\n"
-"help.text"
-msgid "No duplication"
-msgstr "Nincs másolat"
-
-#. 0G|w
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3153876\n"
-"35\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Kizárja a listák szűrt adataiból az egyforma sorokat.</ahelp>"
-
-#. Na8\
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3154018\n"
-"40\n"
-"help.text"
-msgid "Keep filter criteria"
-msgstr "Szűrőfeltétel megtartása"
-
-#. Ta:_
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3149123\n"
-"41\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Jelölje ki az <emph>Eredmény másolási helye</emph> jelölőnégyzetet, majd adja meg azt a céltartományt, ahol a szűrt adatokat meg kívánja jeleníteni. Ha a jelölőnégyzet ki van jelölve, akkor a céltartomány, illetve a forrástartomány összekapcsolva maradnak. A forrástartományt már meg kellett adni adatbázis-tartományként az <emph>Adatok - Tartomány definiálása</emph> párbeszédablakban.</ahelp> Ezt követően a meghatározott szűrőt újra alkalmazhatja a következő módon: kattintson a forrástartományon belülre, majd válassza az <emph>Adatok - Tartomány frissítése</emph> lehetőséget."
-
-#. |1?=
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"hd_id3149018\n"
-"36\n"
-"help.text"
-msgid "Data range"
-msgstr "Adattartomány"
-
-#. /6d^
-#: 12040201.xhp
-msgctxt ""
-"12040201.xhp\n"
-"par_id3150042\n"
-"37\n"
-"help.text"
-msgid "Displays the cell range or the name of the cell range that you want to filter."
-msgstr "Megjeleníti a szűrni kívánt cellatartományt vagy a cellatartomány nevét."
-
-#. C))r
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part One"
-msgstr "Statisztikai függvények - első rész"
-
-#. gI@C
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3146320\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
-msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statisztikai függvények - első rész</link></variable>"
-
-#. hVR?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3145632\n"
-"help.text"
-msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
-msgstr "<bookmark_value>METSZ függvény</bookmark_value><bookmark_value>INTERCEPT függvény, lásd: METSZ függvény</bookmark_value><bookmark_value>metszéspont</bookmark_value><bookmark_value>tengelymetszet</bookmark_value>"
-
-#. {%Pe
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3145632\n"
-"2\n"
-"help.text"
-msgid "INTERCEPT"
-msgstr "METSZ"
-
-#. Mjr*
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3146887\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Kiszámítja azt a pontot, ahol egy egyenes metszi az Y tengelyt ismert x és y értékek felhasználásával.</ahelp>"
-
-#. JEkO
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3150374\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. td3?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149718\n"
-"5\n"
-"help.text"
-msgid "INTERCEPT(DataY; DataX)"
-msgstr "METSZ(y_adatok; x_adatok)"
-
-#. a972
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149947\n"
-"6\n"
-"help.text"
-msgid "<emph>DataY</emph> is the dependent set of observations or data."
-msgstr "Az <emph>y_adatok</emph> a megfigyelések vagy adatok függő halmaza."
-
-#. [Vt@
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3147412\n"
-"7\n"
-"help.text"
-msgid "<emph>DataX</emph> is the independent set of observations or data."
-msgstr "Az <emph>x_adatok</emph> a megfigyelések vagy adatok független halmaza."
-
-#. ^.Jh
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152983\n"
-"8\n"
-"help.text"
-msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
-msgstr "A mezőben neveket, tömböket vagy hivatkozásokat kell megadni. Számok közvetlenül is beírhatók."
-
-#. [^jI
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3157906\n"
-"9\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 7CQ%
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148728\n"
-"10\n"
-"help.text"
-msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
-msgstr "A tengelymetszet kiszámításához használja a példatáblázat D3:D9 celláit y értékként, illetve táblázat C3:C9 celláit x értékként. Az adatbevitel a következő:"
-
-#. Zz8y
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149013\n"
-"11\n"
-"help.text"
-msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
-msgstr "<item type=\"input\">=METSZ(D3:D9;C3:C9)</item> = 2,15."
-
-#. .XSP
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3148437\n"
-"help.text"
-msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
-msgstr "<bookmark_value>DARAB függvény</bookmark_value><bookmark_value>COUNT függvény, lásd: DARAB függvény</bookmark_value><bookmark_value>számok;megszámolás</bookmark_value>"
-
-#. */T2
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3148437\n"
-"13\n"
-"help.text"
-msgid "COUNT"
-msgstr "DARAB"
-
-#. K[i7
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150700\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Megszámolja, hány szám van a paraméterlistában.</ahelp> A szöveges bejegyzéseket kihagyja."
-
-#. .[[X
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3153930\n"
-"15\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. *U;9
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148585\n"
-"16\n"
-"help.text"
-msgid "COUNT(Value1; Value2; ... Value30)"
-msgstr "DARAB(érték_1; érték_2; ... érték_30)"
-
-#. T-r2
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3155827\n"
-"17\n"
-"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
-msgstr "Az <emph>érték_1;érték_2, ... </emph> 1–30 argumentum, amelyek a megszámlálni kívánt értékeket jelölik."
-
-#. ]Dj[
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3149254\n"
-"18\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. KJ[{
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149953\n"
-"19\n"
-"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
-msgstr "A négy érték mezőben található 2, 4, 6, illetve nyolc elemet kívánja megszámlálni."
-
-#. o;VX
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154558\n"
-"20\n"
-"help.text"
-msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
-msgstr "<item type=\"input\">=DARAB(2;4;6;\"nyolc\")</item> = 3. A számok száma tehát 3."
-
-#. =\7}
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3149729\n"
-"help.text"
-msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
-msgstr "<bookmark_value>DARAB2 függvény</bookmark_value><bookmark_value>COUNTA függvény, lásd: DARAB2 függvény</bookmark_value><bookmark_value>bejegyzések száma</bookmark_value>"
-
-#. ?-w*
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3149729\n"
-"22\n"
-"help.text"
-msgid "COUNTA"
-msgstr "DARAB2"
-
-#. N@|T
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150142\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Megszámolja, hány érték van a paraméterlistában.</ahelp> A szöveges elemek is számítanak, még akkor is, ha 0 hosszúságú, üres karakterláncot tartalmaznak. Ha egy argumentum tömb vagy hivatkozás, akkor a tömb vagy hivatkozás üres cellái nem lesznek figyelembe véve."
-
-#. D6Ro
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3148573\n"
-"24\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. h]qX
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153111\n"
-"25\n"
-"help.text"
-msgid "COUNTA(Value1; Value2; ... Value30)"
-msgstr "DARAB2(érték_1; érték_2; ... érték_30)"
-
-#. ohl:
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150001\n"
-"26\n"
-"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
-msgstr "Az <emph>érték_1;érték_2, ... </emph> 1–30 argumentum, amelyek a megszámlálni kívánt értékeket jelölik."
-
-#. _XbL
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3150334\n"
-"27\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 08qm
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154508\n"
-"28\n"
-"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
-msgstr "A négy érték mezőben található 2, 4, 6, illetve nyolc elemet kívánja megszámlálni."
-
-#. ~3aX
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3158000\n"
-"29\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
-msgstr "<item type=\"input\">=DARAB2(2;4;6;\"nyolc\")</item> = 4. Az értékek száma tehát 4."
-
-#. lrnc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3150267\n"
-"help.text"
-msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>B függvény</bookmark_value><bookmark_value>binomiális eloszlású minta valószínűsége</bookmark_value>"
-
-#. w3Q7
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3150267\n"
-"31\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#. e4sU
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156061\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_B\">Kiszámítja a valószínűséget egy binomiális eloszlású minta esetén.</ahelp>"
-
-#. EfQZ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3150659\n"
-"33\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. \6bB
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148392\n"
-"34\n"
-"help.text"
-msgid "B(Trials; SP; T1; T2)"
-msgstr "B(kísérletek; sp; k_1; k_2)"
-
-#. 3$+z
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149002\n"
-"35\n"
-"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "A <emph>kísérletek</emph> az egymástól független kísérletek száma."
-
-#. {q[p
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148875\n"
-"36\n"
-"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "Az <emph>sp</emph> a sikeresség valószínűsége az egyes kísérletek alkalmával."
-
-#. c6+q
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3145352\n"
-"37\n"
-"help.text"
-msgid "<emph>T1</emph> defines the lower limit for the number of trials."
-msgstr "A <emph>k_1</emph> a kísérletek számának alsó határa."
-
-#. CS;X
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149538\n"
-"38\n"
-"help.text"
-msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
-msgstr "A <emph>k_2</emph> (opcionális) a kísérletek számának felső határa."
-
-#. 8b$,
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3148768\n"
-"39\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 0M0p
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154633\n"
-"40\n"
-"help.text"
-msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
-msgstr "Mi a valószínűsége annak, hogy tíz kockadobásból pontosan kétszer lesz az eredmény 6? A hatosdobás valószínűsége (akárcsak a többi számé) 1:6. A következő képletben ezek a tényezők szerepelnek."
-
-#. {aK\
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149393\n"
-"41\n"
-"help.text"
-msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
-msgstr "A <item type=\"input\">=B(10;1/6;2)</item> képlet eredménye 29%-os valószínűség."
-
-#. R*aW
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3158416\n"
-"help.text"
-msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
-msgstr "<bookmark_value>RNÉGYZET függvény</bookmark_value><bookmark_value>RSQ függvény, lásd: RNÉGYZET függvény</bookmark_value><bookmark_value>determinációs együtthatók</bookmark_value><bookmark_value>regresszióanalízis</bookmark_value>"
-
-#. _y!,
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3158416\n"
-"43\n"
-"help.text"
-msgid "RSQ"
-msgstr "RNÉGYZET"
-
-#. qm37
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154949\n"
-"44\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
-msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">A megadott értékekhez tartozó Pearson-féle korrelációs együttható négyzetét számítja ki.</ahelp> Az RNÉGYZET (determinációs együttható) egy beállítás pontosságát mérő szám, és felhasználható regresszióanalízisre."
-
-#. EXtI
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3152820\n"
-"45\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7RrF
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3155822\n"
-"46\n"
-"help.text"
-msgid "RSQ(DataY; DataX)"
-msgstr "RNÉGYZET(y_adatok; x_adatok)"
-
-#. :r(/
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150470\n"
-"47\n"
-"help.text"
-msgid "<emph>DataY</emph> is an array or range of data points."
-msgstr "Az <emph>y_adatok</emph> adatpontok tartománya vagy tömbje."
-
-#. k;zy
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153181\n"
-"48\n"
-"help.text"
-msgid "<emph>DataX</emph> is an array or range of data points."
-msgstr "Az <emph>x_adatok</emph> adatpontok tartománya vagy tömbje."
-
-#. *JDb
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3156258\n"
-"49\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. }AZN
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3155991\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
-msgstr "Az <item type=\"input\">=RNÉGYZET(A1:A20;B1:B20)</item> kiszámítja az A és B oszlopok adathalmazainak determinációs együtthatóját."
-
-#. ZbFH
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3145620\n"
-"help.text"
-msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "<bookmark_value>BETAINV függvény</bookmark_value><bookmark_value>kumulatív valószínűségsűrűségi függvény;inverze</bookmark_value>"
-
-#. vI+C
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3145620\n"
-"52\n"
-"help.text"
-msgid "BETAINV"
-msgstr "BETAINV"
-
-#. %372
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149825\n"
-"53\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Kiszámítja a kumulatív béta valószínűség-sűrűségi függvény inverzét.</ahelp>"
-
-#. oO9Q
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3152479\n"
-"54\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Bdmp
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156300\n"
-"55\n"
-"help.text"
-msgid "BETAINV(Number; Alpha; Beta; Start; End)"
-msgstr "BETAINV(szám; alfa; béta; kezdőérték; végérték)"
-
-#. $`G?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149266\n"
-"56\n"
-"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
-msgstr "A <emph>szám</emph> a <emph>kezdő-</emph>, illetve a <emph>végérték</emph> között elhelyezkedő szám, amelynél a függvényt ki kívánja értékelni."
-
-#. ze$]
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149710\n"
-"57\n"
-"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "Az <emph>alfa</emph> az eloszlás paramétere."
-
-#. +PcN
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156306\n"
-"58\n"
-"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "A <emph>béta</emph> az eloszlás paramétere."
-
-#. zfTb
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150960\n"
-"59\n"
-"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "A <emph>kezdőérték</emph> (opcionális) a <emph>számra</emph> vonatkozó alsó korlát."
-
-#. +L,$
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3151268\n"
-"60\n"
-"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "A <emph>végérték</emph> (opcionális) a <emph>számra</emph> vonatkozó felső korlát."
-
-#. SP*`
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_idN109DF\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. Q%n(
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3147077\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. B8OW
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3146859\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
-msgstr "A <item type=\"input\">=BETAINV(0,5;5;10)</item> képlet eredménye 0,33."
-
-#. l{Sm
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3156096\n"
-"help.text"
-msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
-msgstr "<bookmark_value>BÉTA.ELOSZLÁS függvény</bookmark_value><bookmark_value>BETADIST függvény, lásd: BÉTA.ELOSZLÁS függvény</bookmark_value><bookmark_value>kumulatív valószínűségsűrűségi függvény;kiszámítás</bookmark_value>"
-
-#. X8SC
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3156096\n"
-"64\n"
-"help.text"
-msgid "BETADIST"
-msgstr "BÉTA.ELOSZLÁS"
-
-#. ~9AG
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150880\n"
-"65\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Kiszámítja a bétafüggvényt.</ahelp>"
-
-#. n$a5
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3150762\n"
-"66\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. /y6|
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3147571\n"
-"67\n"
-"help.text"
-msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
-msgstr "BÉTA.ELOSZLÁS(szám; alfa; béta; kezdőérték; végérték; kumulatív)"
-
-#. bsWR
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156317\n"
-"68\n"
-"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
-msgstr "A <emph>szám</emph> a <emph>kezdő-</emph>, illetve a <emph>végérték</emph> között elhelyezkedő szám, amelynél a függvényt ki kívánja értékelni."
-
-#. 7[%q
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156107\n"
-"69\n"
-"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "Az <emph>alfa</emph> az eloszlás paramétere."
-
-#. !wXl
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153619\n"
-"70\n"
-"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "A <emph>béta</emph> az eloszlás paramétere."
-
-#. LQL?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150254\n"
-"71\n"
-"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "A <emph>kezdőérték</emph> (opcionális) a <emph>számra</emph> vonatkozó alsó korlát."
-
-#. *wD^
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149138\n"
-"72\n"
-"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "A <emph>végérték</emph> (opcionális) a <emph>számra</emph> vonatkozó felső korlát."
-
-#. i26X
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id012020091254453\n"
-"help.text"
-msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
-msgstr "A <emph>kumulatív</emph> (opcionális) 0 vagy HAMIS értéke esetén a valószínűség-sűrűségi függvényt számítja ki. Bármilyen más érték vagy IGAZ esetén, illetve a paraméter elhagyásakor a kumulatív eloszlásfüggvényt számítja ki."
-
-#. `j:D
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_idN10AB3\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-
-#. Bg^w
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3145649\n"
-"73\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. #@1l
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156118\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
-msgstr "A <item type=\"input\">=BÉTA.ELOSZLÁS(0,75;3;4)</item> képlet eredménye 0,96"
-
-#. fy@A
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3143228\n"
-"help.text"
-msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
-msgstr "<bookmark_value>BINOM.ELOSZLÁS függvény</bookmark_value><bookmark_value>BINOMDIST függvény, lásd: BINOM.ELOSZLÁS függvény</bookmark_value>"
-
-#. MrWE
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3143228\n"
-"76\n"
-"help.text"
-msgid "BINOMDIST"
-msgstr "BINOM.ELOSZLÁS"
-
-#. 5Jy1
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3146897\n"
-"77\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Kiszámítja a binomiális valószínűségi eloszlás egyes tényezőit.</ahelp>"
-
-#. VTcQ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3149289\n"
-"78\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. y3bf
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156009\n"
-"79\n"
-"help.text"
-msgid "BINOMDIST(X; Trials; SP; C)"
-msgstr "BINOM.ELOSZLÁS(x; kísérletek; sp; c)"
-
-#. C!;h
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154304\n"
-"80\n"
-"help.text"
-msgid "<emph>X</emph> is the number of successes in a set of trials."
-msgstr "Az <emph>x</emph> a kísérletsorozat sikeres eseteinek száma."
-
-#. kx;(
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3147492\n"
-"81\n"
-"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "A <emph>kísérletek</emph> az egymástól független kísérletek száma."
-
-#. !*;F
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3146085\n"
-"82\n"
-"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "Az <emph>sp</emph> a sikeresség valószínűsége az egyes kísérletek alkalmával."
-
-#. jf^7
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149760\n"
-"83\n"
-"help.text"
-msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
-msgstr "A <emph>c</emph> = 0 egyetlen esemény valószínűségét számítja ki; a <emph>c</emph> = 1 a kumulatív valószínűséget számítja ki."
-
-#. :c]{
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3151171\n"
-"84\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [P8[
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3145666\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
-msgstr "A <item type=\"input\">=BINOM.ELOSZLÁS(A1;12;0,5;0)</item> megadja, hogy egy pénzérmét 12-szer feldobva mennyi annak a valószínűsége, hogy az A1 cellában megadott számú alkalommal lesz az eredmény <emph>fej</emph> (ha az A1 cella <item type=\"input\">0</item> és <item type=\"input\">12</item> közötti értéket tartalmaz)."
-
-#. pd[^
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150120\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
-msgstr "A <item type=\"input\">=BINOM.ELOSZLÁS(A1;12;0,5;1)</item> ugyanazon sorozat kumulatív valószínűségét mutatja meg. Ha például A1 = <item type=\"input\">4</item>, akkor a sorozat kumulatív valószínűségét a 0, 1, 2, 3 vagy 4 alkalommal <emph>fej</emph> dobásának valószínűsége adja (nem kizáró VAGY)."
-
-#. aN];
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902432928\n"
-"help.text"
-msgid "<bookmark_value>CHISQINV function</bookmark_value>"
-msgstr "<bookmark_value>CHISQINV függvény</bookmark_value>"
-
-#. uSP\
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902421451\n"
-"help.text"
-msgid "CHISQINV"
-msgstr "CHISQINV"
-
-#. Ky]S
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902421449\n"
-"help.text"
-msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
-msgstr "<ahelp hid=\".\">A CHISQDIST inverzét adja vissza.</ahelp>"
-
-#. .Z?[
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902475241\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. !\g!
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475286\n"
-"help.text"
-msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
-msgstr "A <emph>valószínűség</emph> a valószínűségi érték, amelyhez az inverz χ²-eloszlást számítja a függvény."
-
-#. HJQ1
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475282\n"
-"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "A <emph>szabadsági_fok</emph> a χ²-eloszlás szabadságfokai."
-
-#. `]4G
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3148835\n"
-"help.text"
-msgid "<bookmark_value>CHIINV function</bookmark_value>"
-msgstr "<bookmark_value>INVERZ.KHI függvény</bookmark_value><bookmark_value>CHIINV függvény, lásd: INVERZ.KHI függvény</bookmark_value>"
-
-#. _}~^
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3148835\n"
-"88\n"
-"help.text"
-msgid "CHIINV"
-msgstr "INVERZ.KHI"
-
-#. /=UP
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149906\n"
-"89\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">A χ²-eloszlás egyszeres végű valószínűségének inverzét számítja ki.</ahelp>"
-
-#. s}SQ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3159157\n"
-"90\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. IB@T
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150504\n"
-"91\n"
-"help.text"
-msgid "CHIINV(Number; DegreesFreedom)"
-msgstr "INVERZ.KHI(szám; szabadsági_fok)"
-
-#. }RnZ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154898\n"
-"92\n"
-"help.text"
-msgid "<emph>Number</emph> is the value of the error probability."
-msgstr "A <emph>szám</emph> a hiba-valószínűség értéke."
-
-#. d+i#
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154294\n"
-"93\n"
-"help.text"
-msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
-msgstr "A <emph>szabadsági_fok</emph> a kísérlet szabadsági foka."
-
-#. p?V5
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3154208\n"
-"94\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ,_`2
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150777\n"
-"130\n"
-"help.text"
-msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
-msgstr "Egy kockával 1020-szor dob. Az 1-6 közötti számok rendre 195, 151, 148, 189, 183, illetve 154 alkalommal lettek a dobások eredményei (megfigyelési értékek). Azon hipotézist kívánja tesztelni, hogy a kocka nem cinkelt."
-
-#. Z0#p
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153062\n"
-"131\n"
-"help.text"
-msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
-msgstr "A véletlen minta χ²-eloszlása a fenti képlet segítségével állapítható meg. Mivel n dobás esetén a kockán egy adott szám várt értéke n-szer 1/6, vagyis 1020/6 = 170. A képlet a 13,27 χ² értéket adja eredményül."
-
-#. .24e
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148806\n"
-"132\n"
-"help.text"
-msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
-msgstr "Ha a (megfigyelt) χ² nagyobb vagy egyenlő az (elméleti) INVERZ.KHI χ²-tel, akkor a hipotézis elvethető, hiszen az elmélet és a kísérlet között fennálló eltérés túlságosan nagy. Ha a megfigyelt χ² kisebb az INVERZ.KHI eredménynél, akkor a hipotézis megerősítést nyer az adott hiba-valószínűség figyelembe vételével."
-
-#. :8n3
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149763\n"
-"95\n"
-"help.text"
-msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
-msgstr "Az <item type=\"input\">=INVERZ.KHI(0,05;5)</item> képlet eredménye 11,07."
-
-#. VW#3
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3159142\n"
-"133\n"
-"help.text"
-msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
-msgstr "Az <item type=\"input\">=INVERZ.KHI(0,02;5)</item> képlet eredménye 13,39."
-
-#. PDZD
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3158401\n"
-"134\n"
-"help.text"
-msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
-msgstr "Ha a hiba valószínűsége 5%, akkor a kocka cinkelt. Ha a hiba valószínűsége 2%, akkor nincs oka azt feltételezni, hogy a kocka cinkelt."
-
-#. SJ4r
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3154260\n"
-"help.text"
-msgid "<bookmark_value>CHITEST function</bookmark_value>"
-msgstr "<bookmark_value>KHI.PRÓBA függvény</bookmark_value><bookmark_value>CHITEST függvény, lásd: KHI.PRÓBA függvény</bookmark_value>"
-
-#. YHst
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3154260\n"
-"97\n"
-"help.text"
-msgid "CHITEST"
-msgstr "KHI.PRÓBA"
-
-#. )lYT
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3151052\n"
-"98\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
-msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Két tesztsorozat véletlenszerű eloszlástól való eltérésének valószínűségét a függetlenségi χ²-próbával számítja ki.</ahelp> A KHI.PRÓBA az adat χ²-es valószínűségi eloszlását adja meg."
-
-#. ;7kw
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148925\n"
-"135\n"
-"help.text"
-msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
-msgstr "A KHI.PRÓBA által meghatározott valószínűséget a KHI.ELOSZLÁS függvénnyel is meg tudja határozni, ez esetben a véletlen minta χ²-ét adattömb helyett paraméterként kell átadni (megadni)."
-
-#. g+6n
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3154280\n"
-"99\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. $VaO
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149162\n"
-"100\n"
-"help.text"
-msgid "CHITEST(DataB; DataE)"
-msgstr "KHI.PRÓBA(m_adatok; v_adatok)"
-
-#. s(sF
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3158421\n"
-"101\n"
-"help.text"
-msgid "<emph>DataB</emph> is the array of the observations."
-msgstr "Az <emph>m_adatok</emph> a megfigyeléseket tartalmazó tömb."
-
-#. bNY?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3166453\n"
-"102\n"
-"help.text"
-msgid "<emph>DataE</emph> is the range of the expected values."
-msgstr "A <emph>v_adatok</emph> a várt értékek tartománya."
-
-#. oclQ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3146946\n"
-"103\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. LJUc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154096\n"
-"136\n"
-"help.text"
-msgid "Data_B (observed)"
-msgstr "m_adatok (megfigyelt)"
-
-#. ZDS=
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152948\n"
-"137\n"
-"help.text"
-msgid "Data_E (expected)"
-msgstr "v_adatok (várt)"
-
-#. tJnJ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152876\n"
-"138\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. Xq@z
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3159279\n"
-"139\n"
-"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#. ug:@
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149105\n"
-"140\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. /sU|
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149922\n"
-"141\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. XL,2
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148621\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
-
-#. :%kr
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148987\n"
-"143\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. heWg
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149417\n"
-"144\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. tPb-
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148661\n"
-"145\n"
-"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#. F6p@
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3151128\n"
-"146\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. $p4Q
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148467\n"
-"147\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. rSs+
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149237\n"
-"148\n"
-"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
-
-#. )4Y@
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3145304\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. VHG1
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149927\n"
-"150\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. SU{M
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150630\n"
-"151\n"
-"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#. S_0^
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150423\n"
-"152\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. (!G4
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3143275\n"
-"153\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. Wa;@
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3144750\n"
-"154\n"
-"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
-
-#. 5}`k
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153947\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. eR{Z
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149481\n"
-"104\n"
-"help.text"
-msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
-msgstr "A <item type=\"input\">=KHI.PRÓBA(A1:A6;B1:B6)</item> eredményül 0,02-t ad. Ez az a valószínűség, amely kielégíti az elméleti χ²-eloszlás megfigyelt adatait."
-
-#. Sh8]
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3148690\n"
-"help.text"
-msgid "<bookmark_value>CHIDIST function</bookmark_value>"
-msgstr "<bookmark_value>KHI.ELOSZLÁS függvény</bookmark_value><bookmark_value>CHIDIST függvény, lásd: KHI.ELOSZLÁS függvény</bookmark_value>"
-
-#. P7aj
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3148690\n"
-"106\n"
-"help.text"
-msgid "CHIDIST"
-msgstr "KHI.ELOSZLÁS"
-
-#. /tuT
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156338\n"
-"156\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
-msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">A megadott χ²-ből kiszámítja a hipotézis fennállásának valószínűségértékét.</ahelp> A CHIDIST függvény összehasonlítja az összes értékre számított (megfigyelt érték-várt érték)^2/várt érték összegéből vett véletlenszerű mintaként megadni kívánt χ²-értéket az elméleti χ²-eloszlással, és ebből kiszámítja a vizsgált hipotézis valószínűségét."
-
-#. a}a_
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3151316\n"
-"157\n"
-"help.text"
-msgid "The probability determined by CHIDIST can also be determined by CHITEST."
-msgstr "A KHI.ELOSZLÁS által meghatározott valószínűséget a KHI.PRÓBA függvénnyel egyaránt kiszámolhatja."
-
-#. C,~8
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3155123\n"
-"108\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ZuA~
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3158439\n"
-"109\n"
-"help.text"
-msgid "CHIDIST(Number; DegreesFreedom)"
-msgstr "KHI.ELOSZLÁS(szám; szabadsági_fok)"
-
-#. $/.(
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148675\n"
-"110\n"
-"help.text"
-msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
-msgstr "A <emph>szám</emph> a hiba-valószínűség meghatározására használt véletlen minta χ²-értéke."
-
-#. XN]#
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3155615\n"
-"111\n"
-"help.text"
-msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
-msgstr "A <emph>szabadsági_fok</emph> a kísérlet szabadsági foka."
-
-#. Mn%;
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3146787\n"
-"112\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. !ao/
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3145774\n"
-"113\n"
-"help.text"
-msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
-msgstr "A <item type=\"input\">=KHI.ELOSZLÁS(13,27; 5)</item> egyenlő 0,02-vel."
-
-#. 7hi\
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3156141\n"
-"158\n"
-"help.text"
-msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
-msgstr "Ha a véletlen minta χ²-es értéke 13,27 és a kísérletnek 5 szabadsági foka van, akkor a feltételezést 2%-os hiba-valószínűséggel támasztja alá."
-
-#. ESL#
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902231887\n"
-"help.text"
-msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
-msgstr "<bookmark_value>CHISQDIST függvény</bookmark_value><bookmark_value>χ²-eloszlás</bookmark_value>"
-
-#. Bo*f
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200901583452\n"
-"help.text"
-msgid "CHISQDIST"
-msgstr "CHISQDIST"
-
-#. ~BrA
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200901583471\n"
-"help.text"
-msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
-msgstr "<ahelp hid=\".\">A χ²-eloszlás valószínűségsűrűség-függvényének értékét vagy kumulatív eloszlásfüggvényének értékét adja vissza.</ahelp>"
-
-#. 3NMf
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902395520\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. CR?g
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395679\n"
-"help.text"
-msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
-msgstr "CHISQDIST(szám; szabadsági_fok; kumulatív)"
-
-#. _5gb
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id011920090239564\n"
-"help.text"
-msgid "<emph>Number</emph> is the number for which the function is to be calculated."
-msgstr "A <emph>szám</emph> azon érték, amelyre vonatkozóan a függvényt ki kívánja számítani."
-
-#. 2h?Y
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395660\n"
-"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "A <emph>szabadsági_fok</emph> a χ²-eloszlás szabadságfokai."
-
-#. +*7?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395623\n"
-"help.text"
-msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
-msgstr "A <emph>kumulatív</emph> (opcionális) 0 vagy HAMIS értéke esetén a valószínűség-sűrűségi függvényt számítja ki. Bármilyen más érték vagy IGAZ esetén, illetve a paraméter elhagyásakor a kumulatív eloszlásfüggvényt számítja ki."
-
-#. lf2D
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"bm_id3150603\n"
-"help.text"
-msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
-msgstr "<bookmark_value>EXP.ELOSZLÁS függvény</bookmark_value><bookmark_value>EXPONDIST függvény, lásd: EXP.ELOSZLÁS függvény</bookmark_value><bookmark_value>exponenciális eloszlások</bookmark_value>"
-
-#. D^#j
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3150603\n"
-"115\n"
-"help.text"
-msgid "EXPONDIST"
-msgstr "EXP.ELOSZLÁS"
-
-#. E4Pt
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149563\n"
-"116\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Kiszámítja az exponenciális eloszlást.</ahelp>"
-
-#. Up#\
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3153789\n"
-"117\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 2M1|
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150987\n"
-"118\n"
-"help.text"
-msgid "EXPONDIST(Number; Lambda; C)"
-msgstr "EXP.ELOSZLÁS(szám; lambda; c)"
-
-#. (k2h
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154663\n"
-"119\n"
-"help.text"
-msgid "<emph>Number</emph> is the value of the function."
-msgstr "A <emph>szám</emph> a függvényérték."
-
-#. +duS
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154569\n"
-"120\n"
-"help.text"
-msgid "<emph>Lambda</emph> is the parameter value."
-msgstr "A <emph>lambda</emph> a paraméterérték."
-
-#. 1,Z?
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3147332\n"
-"121\n"
-"help.text"
-msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
-msgstr "A <emph>c</emph> egy logikai érték, amely függvény alakját határozza meg. <emph>c = 0</emph> a sűrűségfüggvényt számítja ki, <emph>c = 1</emph> pedig az eloszlást."
-
-#. -BId
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"hd_id3146133\n"
-"122\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. N29=
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150357\n"
-"123\n"
-"help.text"
-msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
-msgstr "Az <item type=\"input\">=EXP.ELOSZLÁS(3;0,5;1)</item> képlet eredménye 0,78."
-
-#. SARf
-#: 12040400.xhp
-msgctxt ""
-"12040400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove Filter"
-msgstr "Szűrő eltávolítása"
-
-#. q1LL
-#: 12040400.xhp
-msgctxt ""
-"12040400.xhp\n"
-"hd_id3153087\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Szűrő eltávolítása\">Szűrő eltávolítása</link>"
-
-#. hH2x
-#: 12040400.xhp
-msgctxt ""
-"12040400.xhp\n"
-"par_id3154760\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">Eltávolítja a szűrőt a kijelölt cellatartományról. A parancs engedélyezéséhez kattintson abba a cellába, amelyre a szűrő alkalmazva van.</ahelp>"
-
-#. TZ?Q
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"tit\n"
-"help.text"
-msgid "EDATE"
-msgstr "EDATE"
-
-#. 8AO$
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"bm_id3151184\n"
-"help.text"
-msgid "<bookmark_value>EDATE function</bookmark_value>"
-msgstr "<bookmark_value>EDATE függvény</bookmark_value>"
-
-#. VMz(
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151184\n"
-"213\n"
-"help.text"
-msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
-msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
-
-#. *.d(
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"par_id3150880\n"
-"214\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">Az eredmény egy dátum, amely a <emph>kezdő_dátum</emph> értéktől <emph>hónapok</emph> számú hónapra van. A számítás során a függvény a napokat nem, csupán a hónapokat veszi figyelembe. </ahelp>"
-
-#. \}cs
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"hd_id3154647\n"
-"215\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7C%n
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"par_id3153212\n"
-"216\n"
-"help.text"
-msgid "EDATE(StartDate; Months)"
-msgstr "EDATE(kezdő_dátum; hónapok)"
-
-#. `oeC
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"par_id3146860\n"
-"217\n"
-"help.text"
-msgid "<emph>StartDate</emph> is a date."
-msgstr "A <emph>kezdő_dátum</emph> egy dátum."
-
-#. GT0M
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"par_id3152929\n"
-"218\n"
-"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
-msgstr "A <emph>hónapok</emph> a kezdő dátum előtti (negatív), illetve utáni (pozitív) hónapok száma."
-
-#. !0Yf
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151289\n"
-"219\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. a+FS
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"par_id3155845\n"
-"220\n"
-"help.text"
-msgid "What date is one month prior to 3.31.2001?"
-msgstr "Mi volt a dátum egy hónappal 2001. március 31. előtt?"
-
-#. +JO+
-#: func_edate.xhp
-msgctxt ""
-"func_edate.xhp\n"
-"par_id3155999\n"
-"221\n"
-"help.text"
-msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
-msgstr "Az <item type=\"input\">=EDATE(DÁTUM(2001;03;31);-1)</item> a 2001-02-28 értéket adja eredményül."
-
-#. J5wB
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sort Criteria"
-msgstr "Rendezési feltétel"
-
-#. %ZJZ
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"bm_id3152350\n"
-"help.text"
-msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
-msgstr "<bookmark_value>rendezés; rendezési feltételek adatbázis tartományokhoz</bookmark_value>"
-
-#. YQqv
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3152350\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Rendezési feltételek\">Rendezési feltételek</link>"
-
-#. [om9
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3151385\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SORT_FIELDS\">Specify the sorting options for the selected range.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_SORT_FIELDS\">Adja meg meg a kijelölt tartomány rendezési beállításait.</ahelp>"
-
-#. !vgw
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3152462\n"
-"24\n"
-"help.text"
-msgid "Ensure that you include any row and column titles in the selection."
-msgstr "Győződjön meg arról, hogy minden sor- és oszlopcímet kijelölt."
-
-#. :G2n
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3147428\n"
-"3\n"
-"help.text"
-msgid "Sort by"
-msgstr "Rendezési szempont"
-
-#. Yow#
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3155854\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT1\">Select the column that you want to use as the primary sort key.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT1\">Válassza ki az elsődleges rendezési kulcsként használni kívánt oszlopot.</ahelp>"
-
-#. a][7
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3146121\n"
-"5\n"
-"help.text"
-msgid "Ascending"
-msgstr "Növekvő"
-
-#. ,J.m
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP1\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP1\">A kijelölést a legalacsonyabbtól a legmagasabb érték felé haladva rendezi. A rendezés szabályait a területi beállítások határozzák meg. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. *lYb
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3155411\n"
-"7\n"
-"help.text"
-msgid "Descending"
-msgstr "Csökkenő"
-
-#. {E1P
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3151075\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1\">A kijelölést a legmagasabbtól a legalacsonyabb érték felé haladva rendezi. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. v`A^
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3154492\n"
-"9\n"
-"help.text"
-msgid "Then by"
-msgstr "Azután"
-
-#. 3IVJ
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3156283\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT2\">Select the column that you want to use as the secondary sort key.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT2\">Válassza ki a másodlagos rendezési kulcsként használni kívánt oszlopot.</ahelp>"
-
-#. z4GV
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3149413\n"
-"11\n"
-"help.text"
-msgid "Ascending"
-msgstr "Növekvő"
-
-#. qV)}
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3154018\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP2\">Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP2\">A kijelölést a legalacsonyabbtól a legmagasabb érték felé haladva rendezi. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. _xl3
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3146972\n"
-"13\n"
-"help.text"
-msgid "Descending"
-msgstr "Csökkenő"
-
-#. Dkuo
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3145640\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2\">A kijelölést a legmagasabbtól a legalacsonyabb érték felé haladva rendezi. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. !n+u
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3154756\n"
-"15\n"
-"help.text"
-msgid "Then by"
-msgstr "Azután"
-
-#. jZ8q
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3147338\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT3\">Select the column that you want to use as the third sort key.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT3\">Válassza ki a harmadlagos rendezési kulcsként használni kívánt oszlopot.</ahelp>"
-
-#. !-a-
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3163808\n"
-"17\n"
-"help.text"
-msgid "Ascending"
-msgstr "Növekvő"
-
-#. ,.Js
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3155336\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP3\">Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP3\">A kijelölést a legalacsonyabbtól a legmagasabb érték felé haladva rendezi. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. {YOi
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3147364\n"
-"19\n"
-"help.text"
-msgid "Descending"
-msgstr "Csökkenő"
-
-#. wzhK
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3149258\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3\">A kijelölést a legmagasabbtól a legalacsonyabb érték felé haladva rendezi. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. *!)B
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"hd_id3150300\n"
-"21\n"
-"help.text"
-msgid "Sort Ascending/Descending"
-msgstr "Rendezés növekvő/csökkenő sorrendben"
-
-#. drS/
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3158212\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">A kijelölést a legmagasabbtól a legalacsonyabb érték felé haladva rendezi. A számmezők számérték szerint, a szövegmezők betűrend szerint rendeződnek. A rendezés szabályai az Adatok - Rendezés - Beállítások pontban adhatók meg.</variable></ahelp> Az alapértelmezések az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek panelen adhatók meg."
-
-#. 23^@
-#: 12030100.xhp
-msgctxt ""
-"12030100.xhp\n"
-"par_id3159236\n"
-"25\n"
-"help.text"
-msgid "Icons on the <emph>Standard</emph> toolbar"
-msgstr "Ikonok a <emph>Standard</emph> eszköztáron"
-
-#. \F\1
-#: 04010100.xhp
-msgctxt ""
-"04010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row Break"
-msgstr "Sortörés"
-
-#. v~i:
-#: 04010100.xhp
-msgctxt ""
-"04010100.xhp\n"
-"bm_id3153821\n"
-"help.text"
-msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
-msgstr "<bookmark_value>munkalapok; sortörések beszúrása</bookmark_value><bookmark_value>sortörések; beszúrás</bookmark_value><bookmark_value>beszúrás; kézi sortörések</bookmark_value><bookmark_value>kézi sortörések</bookmark_value>"
-
-#. T1Tf
-#: 04010100.xhp
-msgctxt ""
-"04010100.xhp\n"
-"hd_id3153821\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
-msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Sortörés\">Sortörés</link>"
-
-#. EK:!
-#: 04010100.xhp
-msgctxt ""
-"04010100.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertRowBreak\">Beszúr egy sortörést (vízszintes oldaltörést) a kijelölt cella fölé.</ahelp>"
-
-#. ;tbF
-#: 04010100.xhp
-msgctxt ""
-"04010100.xhp\n"
-"par_id3156422\n"
-"3\n"
-"help.text"
-msgid "The manual row break is indicated by a dark blue horizontal line."
-msgstr "A kézi sortörést sötétkék vonal jelzi."
-
-#. @XCV
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Database Functions"
-msgstr "Adatbázis-függvények"
-
-#. L4/K
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3148946\n"
-"help.text"
-msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr "<bookmark_value>Függvénytündér; adatbázisok</bookmark_value> <bookmark_value>függvények; adatbázis-függvények</bookmark_value> <bookmark_value>adatbázisok; függvények a $[officename] Calc programban</bookmark_value>"
-
-#. 2|q%
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "Database Functions"
-msgstr "Adatbázis-függvények"
-
-#. Tn#K
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145173\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
-msgstr "<variable id=\"datenbanktext\">Ez a szakasz azon függvényekkel foglalkozik, amelyek egy sornyi adatot tartalmazó rekordokba szervezett adatokkal használhatók. </variable>"
-
-#. Nx7I
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154016\n"
-"186\n"
-"help.text"
-msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
-msgstr "Az adatbázis kategóriát könnyen össze lehet keverni a $[officename] programba integrált adatbázissal. Ennek ellenére semmi kapcsolat nincs a $[officename] programban található adatbázis és a $[officename] Calc adatbázis kategóriája között."
-
-#. wm6B
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3150329\n"
-"190\n"
-"help.text"
-msgid "Example Data:"
-msgstr "Példaadat:"
-
-#. ^_AR
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153713\n"
-"191\n"
-"help.text"
-msgid "The following data will be used in some of the function description examples:"
-msgstr "Az alábbi adatokat fogjuk felhasználni néhány függvény leírásánál a példákban:"
-
-#. c4,^
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155766\n"
-"3\n"
-"help.text"
-msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
-msgstr "Az A1:E10 tartomány tartalmazza Józsi születésnapi zsúrjára meghívott gyerekek adatait. Minden gyerekről a következő adatok ismertek: az A oszlopban a név, a B-ben az osztály, ezután a kor évben, az iskolától való távolság méterben és végül a testsúly kilogrammban."
-
-#. ;b[4
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145232\n"
-"4\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#. `I`)
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146316\n"
-"5\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#. IWO^
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150297\n"
-"6\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. *bj3
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150344\n"
-"7\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#. zdB:
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150785\n"
-"8\n"
-"help.text"
-msgid "E"
-msgstr "E"
-
-#. ;W;6
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150090\n"
-"9\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. l5q#
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152992\n"
-"10\n"
-"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "<item type=\"input\">Név</item>"
-
-#. %a%P
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155532\n"
-"11\n"
-"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "<item type=\"input\">Osztály</item>"
-
-#. IR#c
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3156448\n"
-"12\n"
-"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "<item type=\"input\">Kor</item>"
-
-#. N_qT
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154486\n"
-"13\n"
-"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "<item type=\"input\">Távolság az iskolától</item>"
-
-#. ta%:
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152899\n"
-"14\n"
-"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "<item type=\"input\">Testsúly</item>"
-
-#. f8^M
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153816\n"
-"15\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. `z9j
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3151240\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">Andy</item>"
-msgstr "<item type=\"input\">Andris</item>"
-
-#. o653
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3156016\n"
-"17\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
-
-#. l$\Z
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145073\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
-
-#. nNny
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154956\n"
-"19\n"
-"help.text"
-msgid "<item type=\"input\">150</item>"
-msgstr "<item type=\"input\">150</item>"
-
-#. uE!3
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153976\n"
-"20\n"
-"help.text"
-msgid "<item type=\"input\">40</item>"
-msgstr "<item type=\"input\">40</item>"
-
-#. OMXS
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150894\n"
-"21\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. Ibgk
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152870\n"
-"22\n"
-"help.text"
-msgid "<item type=\"input\">Betty</item>"
-msgstr "<item type=\"input\">Bogi</item>"
-
-#. FH@@
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149692\n"
-"23\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
-
-#. :S5x
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154652\n"
-"24\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
-
-#. EU0v
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149381\n"
-"25\n"
-"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "<item type=\"input\">1000</item>"
-
-#. J5t(
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153812\n"
-"26\n"
-"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "<item type=\"input\">42</item>"
-
-#. Hoh9
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146965\n"
-"27\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. px=E
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155596\n"
-"28\n"
-"help.text"
-msgid "<item type=\"input\">Charles</item>"
-msgstr "<item type=\"input\">Csabi</item>"
-
-#. o,v@
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3147244\n"
-"29\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
-
-#. Qt^`
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149871\n"
-"30\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
-
-#. #loq
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155752\n"
-"31\n"
-"help.text"
-msgid "<item type=\"input\">300</item>"
-msgstr "<item type=\"input\">300</item>"
-
-#. i)5M
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149052\n"
-"32\n"
-"help.text"
-msgid "<item type=\"input\">51</item>"
-msgstr "<item type=\"input\">51</item>"
-
-#. BH3O
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146097\n"
-"33\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. tbJB
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3147296\n"
-"34\n"
-"help.text"
-msgid "<item type=\"input\">Daniel</item>"
-msgstr "<item type=\"input\">Dani</item>"
-
-#. FxA3
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150393\n"
-"35\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
-
-#. @l7@
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145236\n"
-"36\n"
-"help.text"
-msgid "<item type=\"input\">11</item>"
-msgstr "<item type=\"input\">11</item>"
-
-#. b]Wn
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150534\n"
-"37\n"
-"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "<item type=\"input\">1200</item>"
-
-#. {`r$
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150375\n"
-"38\n"
-"help.text"
-msgid "<item type=\"input\">48</item>"
-msgstr "<item type=\"input\">48</item>"
-
-#. OFQQ
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3159121\n"
-"39\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. KS1J
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150456\n"
-"40\n"
-"help.text"
-msgid "<item type=\"input\">Eva</item>"
-msgstr "<item type=\"input\">Erika</item>"
-
-#. A!\f
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146886\n"
-"41\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
-
-#. SoP1
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149945\n"
-"42\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
-
-#. LTgr
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3157904\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">650</item>"
-msgstr "<item type=\"input\">650</item>"
-
-#. q*`T
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149352\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">33</item>"
-msgstr "<item type=\"input\">33</item>"
-
-#. t8OO
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150028\n"
-"45\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#. M7)0
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145826\n"
-"46\n"
-"help.text"
-msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
-msgstr "<item type=\"input\">F</item><item type=\"input\">eri</item>"
-
-#. X0`*
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150743\n"
-"47\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
-
-#. N[e1
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154844\n"
-"48\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
-
-#. VbP5
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148435\n"
-"49\n"
-"help.text"
-msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
-msgstr "<item type=\"input\">3</item><item type=\"input\">00</item>"
-
-#. B`pu
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148882\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
-msgstr "<item type=\"input\">4</item><item type=\"input\">2</item>"
-
-#. `p7K
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150140\n"
-"51\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#. hkT@
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146137\n"
-"52\n"
-"help.text"
-msgid "<item type=\"input\">Greta</item>"
-msgstr "<item type=\"input\">Gréta</item>"
-
-#. rm1o
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148739\n"
-"53\n"
-"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">1</item>"
-
-#. 27b,
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148583\n"
-"54\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
-
-#. fS(3
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154556\n"
-"55\n"
-"help.text"
-msgid "<item type=\"input\">200</item>"
-msgstr "<item type=\"input\">200</item>"
-
-#. ,iZ3
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155255\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">36</item>"
-msgstr "<item type=\"input\">36</item>"
-
-#. Ay=7
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145141\n"
-"57\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#. [cxn
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153078\n"
-"58\n"
-"help.text"
-msgid "<item type=\"input\">Harry</item>"
-msgstr "<item type=\"input\">Hunor</item>"
-
-#. /40S
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149955\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
-
-#. ETbh
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150005\n"
-"60\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
-
-#. q:XZ
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155951\n"
-"61\n"
-"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "<item type=\"input\">1200</item>"
-
-#. .PKa
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145169\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">44</item>"
-msgstr "<item type=\"input\">44</item>"
-
-#. aFi7
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153571\n"
-"63\n"
-"help.text"
-msgid "10"
-msgstr "10"
-
-#. c%ca
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148761\n"
-"64\n"
-"help.text"
-msgid "<item type=\"input\">Irene</item>"
-msgstr "<item type=\"input\">Irén</item>"
-
-#. {3%m
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149877\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
-
-#. 7#lF
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154327\n"
-"66\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
-
-#. k5e[
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155435\n"
-"67\n"
-"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "<item type=\"input\">1000</item>"
-
-#. qsd-
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145353\n"
-"68\n"
-"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "<item type=\"input\">42</item>"
-
-#. Mmr:
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150662\n"
-"69\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#. sJ%f
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150568\n"
-"70\n"
-"help.text"
-msgid "12"
-msgstr "12"
-
-#. Nc`=
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149393\n"
-"71\n"
-"help.text"
-msgid "13"
-msgstr "13"
-
-#. 2sbV
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153544\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "<item type=\"input\">Név</item>"
-
-#. LW=!
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3158414\n"
-"73\n"
-"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "<item type=\"input\">Osztály</item>"
-
-#. c0w_
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152820\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "<item type=\"input\">Kor</item>"
-
-#. U7HP
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154866\n"
-"75\n"
-"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "<item type=\"input\">Távolság az iskolától</item>"
-
-#. XPYT
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150471\n"
-"76\n"
-"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "<item type=\"input\">Testsúly</item>"
-
-#. %ftM
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153920\n"
-"77\n"
-"help.text"
-msgid "14"
-msgstr "14"
-
-#. YP)w
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148429\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">>600</item>"
-msgstr "<item type=\"input\">>600</item>"
-
-#. ,B-R
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152588\n"
-"79\n"
-"help.text"
-msgid "15"
-msgstr "15"
-
-#. ,.|v
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3083286\n"
-"80\n"
-"help.text"
-msgid "16"
-msgstr "16"
-
-#. -1QU
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3163823\n"
-"81\n"
-"help.text"
-msgid "<item type=\"input\">DCOUNT</item>"
-msgstr "<item type=\"input\">AB.DARAB</item>"
-
-#. %:n;
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145083\n"
-"82\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
-
-#. 8/$c
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149282\n"
-"83\n"
-"help.text"
-msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
-msgstr "A B16 cellában levő képlet =AB.DARAB(A1:E10;0;A13:E14)"
-
-#. []Up
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3150962\n"
-"192\n"
-"help.text"
-msgid "Database Function Parameters:"
-msgstr "Adatbázis-függvények paraméterei:"
-
-#. ,*av
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155837\n"
-"84\n"
-"help.text"
-msgid "The following items are the parameter definitions for all database functions:"
-msgstr "A következő paraméter-meghatározások minden adatbázis-függvényre érvényesek:"
-
-#. mfy%
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149453\n"
-"85\n"
-"help.text"
-msgid "<emph>Database</emph> is the cell range defining the database."
-msgstr "Az <emph>adatbázis</emph> az adatbázist meghatározó cellatartomány."
-
-#. ^1c+
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3151272\n"
-"86\n"
-"help.text"
-msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
-msgstr "Az <emph>adatbázismező</emph> megadja azt az oszlopot, amelyben a függvény működik, miután az első paraméter keresési feltételét alkalmazta a program, és az adatsorok ki vannak választva. Nem kapcsolódik magához a keresési feltételhez. A 0 számmal megadhatja a teljes adattartományt. <variable id=\"quotes\">Ha egy oszlopra az oszlop fejlécének nevével akar hivatkozni, akkor tegye a fejléc nevét idézőjelek közé. </variable>"
-
-#. Y1k8
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3147083\n"
-"87\n"
-"help.text"
-msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
-msgstr "A <emph>keresési_feltétel</emph> a keresési feltételt tartalmazó cellatartomány. Ha egy sorban több feltételt ad meg, akkor azok logikai ÉS művelettel kerülnek összekötésre. Ha feltételeket különböző sorokban ad meg, akkor azok logikai VAGY művelettel kerülnek összekötésre. A keresési feltételek tartományában található üres cellák figyelmen kívül maradnak."
-
-#. HIg;
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3151188\n"
-"188\n"
-"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
-msgstr "Az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Táblázatkezelő - Számítás\">%PRODUCTNAME Calc - Számítás</link> menüparanccsal megadhatja, hogyan keresse a $[officename] Calc az azonos elemeket."
-
-#. q#o?
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3882869\n"
-"help.text"
-msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
-msgstr "Lásd még a <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Feltételes számlálás és összegzés</link> wikioldalt."
-
-#. N442
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3150882\n"
-"help.text"
-msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
-msgstr "<bookmark_value>AB.DARAB függvény</bookmark_value> <bookmark_value>DCOUNT függvény, lásd: AB.DARAB függvény</bookmark_value> <bookmark_value>sorok megszámolása;számértékekkel</bookmark_value>"
-
-#. S@l.
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3150882\n"
-"88\n"
-"help.text"
-msgid "DCOUNT"
-msgstr "AB.DARAB"
-
-#. )!_}
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3156133\n"
-"89\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">Az AB.DARAB függvény megszámlálja azokat a számokat tartalmazó sorokat (rekordokat) egy adatbázisban, amelyek megfelelnek a megadott keresési feltételnek.</ahelp>"
-
-#. `Xo*
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3156099\n"
-"90\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. XN[5
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153218\n"
-"91\n"
-"help.text"
-msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.DARAB(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. R;z4
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153273\n"
-"187\n"
-"help.text"
-msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr "Az adatbázismező paraméterbe az oszlopot meghatározó cellát írja be, vagy a 0 értéket a teljes adatbázis megadásához. Ez a paraméter nem lehet üres. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-
-#. -0jW
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3154743\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. IQ\1
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153623\n"
-"93\n"
-"help.text"
-msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
-msgstr "A fenti példából (görgessen fel) ki akarja deríteni, hogy hány gyereknek kell 600 méternél többet utaznia az iskolába. Az eredmény a B16-os cellában jelenjen meg. Mozgassa a kurzort a B16-os cellába. Írja be az <item type=\"input\">=AB.DARAB(A1:E10;0;A13:E14)</item> képletet a B16-os cellába. A <emph>Függvénytündér</emph> segítséget nyújt a tartományok bevitelében."
-
-#. :*B2
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149142\n"
-"94\n"
-"help.text"
-msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
-msgstr "Az <emph>adatbázis</emph> a kiértékelendő adattartomány, beleértve a fejléceket is: ebben az esetben A1:E10. Az <emph>adatbázismező</emph> megadja az oszlopot a keresési feltétel számára: ebben az esetben a teljes adatbázis. A <emph>keresési_feltétel</emph> az a tartomány, ahol keresési paramétereket adhat meg: ebben az esetben A13:E14."
-
-#. u3@B
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145652\n"
-"95\n"
-"help.text"
-msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
-msgstr "Ha arra kíváncsi, hogy hány másodikos idősebb 7 évesnél, akkor a D14-es cellában törölje a >600 bejegyzést, majd írjon <item type=\"input\">2</item> értéket a B14-es cellába az Osztály alá, illetve írjon <item type=\"input\">>7</item> értéket a C14-es cellába ettől jobbra. Az eredmény: 2. Két 7 évesnél idősebb gyerek jár második osztályba. Mivel mindkét feltétel ugyanabban a sorban található, ezért logikai ÉS operátorral kerülnek összekötésre."
-
-#. dabB
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3156123\n"
-"help.text"
-msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
-msgstr "<bookmark_value>AB.DARAB2 függvény</bookmark_value><bookmark_value>DCOUNTA függvény, lásd: AB.DARAB2 függvény</bookmark_value><bookmark_value>rekordok;megszámolása Calc-adatbázisokban</bookmark_value><bookmark_value>sorok megszámolása;numerikus vagy alfanumerikus értékekkel</bookmark_value>"
-
-#. Wqw9
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3156123\n"
-"97\n"
-"help.text"
-msgid "DCOUNTA"
-msgstr "AB.DARAB2"
-
-#. nVYE
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3156110\n"
-"98\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">Az AB.DARAB2 függvény megszámlálja azokat a számokat vagy alfanumerikus értékeket tartalmazó sorokat (rekordokat) egy adatbázisban, amelyek megfelelnek a megadott keresési feltételnek.</ahelp>"
-
-#. H]7J
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3143228\n"
-"99\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. |\{S
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146893\n"
-"100\n"
-"help.text"
-msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.DARAB2(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. CL\Z
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3149751\n"
-"101\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. z%85
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153982\n"
-"102\n"
-"help.text"
-msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
-msgstr "A fenti példában (lásd fent) megkeresheti, hogy hány gyerek rendelkezik E-vel vagy azt követő betűvel kezdődő névvel. Írja be az <item type=\"input\">=AB.DARAB2(A1:E10;\"Név\";A13:E14)</item> képletet a B16-os cellába. Törölje a régi keresési feltételeket, majd írja be a <item type=\"input\">>=E</item> képletet a Név alá, az A14-es cellába. Az eredmény 5. Ha ezt követően a 8. sorban Grétára vonatkozó összes számértéket törli, akkor az eredmény 4-re változik. A 8. sor a továbbiakban nem képezi a számítás részét, mivel nem tartalmaz értékeket. A Gréta név szöveg, nem érték. Ne feledje, hogy az adatbázismező paraméternek értékeket tartalmazó oszlopra kell mutatnia."
-
-#. DMXY
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3147256\n"
-"help.text"
-msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>AB.MEZŐ függvény</bookmark_value> <bookmark_value>cellatartalom;keresés Calc-adatbázisokban</bookmark_value> <bookmark_value>keresés;cellatartalom Calc-adatbázisokban</bookmark_value> <bookmark_value>DGET függvény, lásd: AB.MEZŐ függvény</bookmark_value>"
-
-#. c@w6
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3147256\n"
-"104\n"
-"help.text"
-msgid "DGET"
-msgstr "AB.MEZŐ"
-
-#. yu*w
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152801\n"
-"105\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
-msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">Az AB.MEZŐ függvény megadja az adatbázis azon hivatkozott cellájának a tartalmát, amelyik megfelel a megadott keresési feltételnek.</ahelp> Hiba esetén a függvény vagy az #ÉRTÉK! értéket (nem talált sort) vagy a Hiba:502 értéket (több mint egy cella) adja vissza."
-
-#. AtL|
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3159344\n"
-"106\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. xoi{
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154696\n"
-"107\n"
-"help.text"
-msgid "DGET(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.MEZŐ(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. jD?)
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3153909\n"
-"108\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 3r;T
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155388\n"
-"109\n"
-"help.text"
-msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
-msgstr "A fenti példában meg akarja állapítani, hogy hányadikos az a gyerek, akinek neve az A14-es cellában található. A képletet a B16-os cellába írja be, de ezúttal a képlet kis mértékben eltér az előző példáktól, mivel csak egyetlen oszlop (egyetlen adatbázismező) adható meg <emph>adatbázismezőként</emph>. Írja be az alábbi képletet:"
-
-#. LJ-.
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153096\n"
-"110\n"
-"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.MEZŐ(A1:E10;\"Osztály\";A13:E14)</item>"
-
-#. !8CV
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150524\n"
-"111\n"
-"help.text"
-msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
-msgstr "Írja be a <item type=\"input\">Feri</item> nevet az A14-es cellába, ezt követően megjelenik a 2. Feri másodikos. Ha „Osztály” helyett <item type=\"input\">„Kor”</item>-t ad meg, Feri kora jelenik meg."
-
-#. #i1j
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148833\n"
-"112\n"
-"help.text"
-msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
-msgstr "Esetleg egyszerűen írja be a <item type=\"input\">11</item> értéket a C14-es cellába, majd törölje a sorban található többi bejegyzést. Módosítsa a B16-os cellában található képletet az alábbiak szerint:"
-
-#. 2dFT
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149912\n"
-"113\n"
-"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.MEZŐ(A1:E10;\"Név\";A13:E14)</item>"
-
-#. 8jg}
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148813\n"
-"114\n"
-"help.text"
-msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
-msgstr "Az osztály helyett a név kerül lekérdezésre. A válasz azonnal megjelenik: Dani az egyetlen 11 éves gyerek."
-
-#. xMld
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3149766\n"
-"help.text"
-msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
-msgstr "<bookmark_value>AB.MAX függvény</bookmark_value> <bookmark_value>DMAX függvény, lásd: AB.MAX függvény</bookmark_value> <bookmark_value>maximumértékek Calc-adatbázisokban</bookmark_value> <bookmark_value>keresés;maximumértékek oszlopokban</bookmark_value>"
-
-#. Fbri
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3149766\n"
-"115\n"
-"help.text"
-msgid "DMAX"
-msgstr "AB.MAX"
-
-#. 3{xe
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154903\n"
-"116\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">Az AB.MAX függvény megadja a legnagyobb értéket az adatbázis azon celláiban (mezőiben), amelyek megfelelnek a megadott keresési feltételnek.</ahelp>"
-
-#. !,qF
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3150771\n"
-"117\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. /HII
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3159157\n"
-"118\n"
-"help.text"
-msgid "DMAX(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.MAX(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. ^Q.:
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3145420\n"
-"119\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. bXv*
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148442\n"
-"120\n"
-"help.text"
-msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Ha szeretné megtudni, hogy ki az osztályonkénti legnehezebb gyerek a fenti példában (görgessen fel), akkor adja meg a B16 cellában a következő képletet:"
-
-#. W?J)
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148804\n"
-"121\n"
-"help.text"
-msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.MAX(A1:E10;\"Testsúly\";A13:E14)</item>"
-
-#. {:}J
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150510\n"
-"122\n"
-"help.text"
-msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
-msgstr "Az Osztály alá írjon rendre <item type=\"input\">1, 2, 3</item> stb. értékeket. Az osztály számának megadását követően megjelenik az osztály legnehezebb gyerekének testsúlya."
-
-#. ~TgN
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3159141\n"
-"help.text"
-msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
-msgstr "<bookmark_value>AB.MIN függvény</bookmark_value><bookmark_value>DMIN függvény, lásd: AB.MIN függvény</bookmark_value><bookmark_value>minimumértékek Calc-adatbázisokban</bookmark_value><bookmark_value>keresés;minimumértékek oszlopokban</bookmark_value>"
-
-#. )=AU
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3159141\n"
-"123\n"
-"help.text"
-msgid "DMIN"
-msgstr "AB.MIN"
-
-#. /5X9
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154261\n"
-"124\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">Az AB.MIN függvény megadja a legkisebb értéket az adatbázis azon celláiban (mezőiben), amelyek megfelelnek a megadott keresési feltételnek.</ahelp>"
-
-#. @}Qk
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3147238\n"
-"125\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Z1}V
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148479\n"
-"126\n"
-"help.text"
-msgid "DMIN(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.MIN(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. RpL=
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3151050\n"
-"127\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Iv3Y
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148925\n"
-"128\n"
-"help.text"
-msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Ha szeretné megtudni, ki lakik legközelebb az iskolához a fenti példában (görgessen fel), akkor adja meg a B16 cellában a következő képletet:"
-
-#. .3O)
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149161\n"
-"129\n"
-"help.text"
-msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.MIN(A1:E10;\"Távolság az iskolától\";A13:E14)</item>"
-
-#. gZ`7
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148917\n"
-"130\n"
-"help.text"
-msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
-msgstr "A 14. sorban, az Osztály alá írjon rendre <item type=\"input\">1, 2, 3</item> stb. értékeket. Megjelenik az egyes osztályokra vonatkozó legrövidebb távolság az iskolától."
-
-#. b@N,
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3154274\n"
-"help.text"
-msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>AB.ÁTLAG függvény</bookmark_value><bookmark_value>DAVERAGE függvény, lásd: AB.ÁTLAG függvény</bookmark_value><bookmark_value>átlagok; Calc-adatbázisokban</bookmark_value><bookmark_value>számítás;átlagok Calc-adatbázisokban</bookmark_value>"
-
-#. ZVzD
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3154274\n"
-"131\n"
-"help.text"
-msgid "DAVERAGE"
-msgstr "AB.ÁTLAG"
-
-#. (W:s
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3166453\n"
-"132\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">Az AB.ÁTLAG függvény kiszámítja az összes sorban (adatbázisrekordban) lévő összes olyan cella (mező) értékének átlagát, amely megfelel a megadott keresési feltételnek.</ahelp>"
-
-#. BG8_
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3146955\n"
-"133\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. PhZL
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150710\n"
-"134\n"
-"help.text"
-msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.ÁTLAG(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. vTF2
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3152943\n"
-"135\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. U|%@
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149104\n"
-"136\n"
-"help.text"
-msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Ahhoz, hogy megkapja az azonos korú gyerekek átlagtestsúlyát a fenti példában (görgessen fel), az alábbi képletet kell beírni a B16 cellába:"
-
-#. O|Eh
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153688\n"
-"137\n"
-"help.text"
-msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.ÁTLAG(A1:E10;\"Testsúly\";A13:E14)</item>"
-
-#. ^`$A
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155587\n"
-"138\n"
-"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
-msgstr "A 14. sorban, a Kor alá írjon rendre <item type=\"input\">7, 8, 9</item> stb. értékeket. Megjelenik az azonos korú gyerekek testsúlyának átlaga."
-
-#. yMA7
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3159269\n"
-"help.text"
-msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>AB.SZORZAT függvény</bookmark_value><bookmark_value>DPRODUCT függvény, lásd: AB.SZORZAT függvény</bookmark_value><bookmark_value>szorzás;cellatartalom Calc-adatbázisokban</bookmark_value>"
-
-#. (q:Y
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3159269\n"
-"139\n"
-"help.text"
-msgid "DPRODUCT"
-msgstr "AB.SZORZAT"
-
-#. VPl-
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152879\n"
-"140\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">Az AB.SZORZAT függvény összeszoroz minden olyan cellát az adattartományban, ahol a cella tartalma megfelel a keresési feltételnek.</ahelp>"
-
-#. .6B*
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3149966\n"
-"141\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Pd!3
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154854\n"
-"142\n"
-"help.text"
-msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.SZORZAT(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. +h:q
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3149802\n"
-"143\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. B;sH
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148986\n"
-"144\n"
-"help.text"
-msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
-msgstr "A fenti szülinapi zsúros példa esetén (lásd fent) ezt a függvényt nem lehet semmire se használni."
-
-#. cmaW
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3148462\n"
-"help.text"
-msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
-msgstr "<bookmark_value>AB.SZÓRÁS függvény</bookmark_value> <bookmark_value>szórás adatbázisokban;minta alapján</bookmark_value> <bookmark_value>DSTDEV függvény, lásd: AB.SZÓRÁS függvény</bookmark_value>"
-
-#. Zk|K
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3148462\n"
-"145\n"
-"help.text"
-msgid "DSTDEV"
-msgstr "AB.SZÓRÁS"
-
-#. )Yre
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154605\n"
-"146\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
-msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">Az AB.SZÓRÁS függvény egy adatbázisoszlop keresési feltételnek megfelelő számai alapján kiszámítja egy sokaságból vett minta szórásnégyzetét.</ahelp> A példában található rekordokat a függvény az adatok mintájaként kezeli. Ez azt jelenti, hogy a gyerekek ebben a példában az összes gyerek keresztmetszetét jelentik. Fontos megjegyezni, hogy ezernél kisebb elemszámú mintából reprezentatív eredmény nem nyerhető."
-
-#. q6ym
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3149427\n"
-"147\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 7E@f
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148661\n"
-"148\n"
-"help.text"
-msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.SZÓRÁS(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. 1LjZ
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3153945\n"
-"149\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. JqM:
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149934\n"
-"150\n"
-"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
-msgstr "Ahhoz, hogy megkapja az azonos korú gyerekek testsúlyának szórását a fenti példában (görgessen fel), az alábbi képletet kell beírni a B16 cellába:"
-
-#. ,W3_
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150630\n"
-"151\n"
-"help.text"
-msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.SZÓRÁS(A1:E10;\"Testsúly\";A13:E14)</item>"
-
-#. I98i
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153536\n"
-"152\n"
-"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
-msgstr "A 14. sorban, a Kor alá írjon rendre <item type=\"input\">7, 8, 9</item> stb. értékeket. A megjelenő eredmény az összes ilyen korú gyerek testsúlyának szórása."
-
-#. hvaL
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3150429\n"
-"help.text"
-msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
-msgstr "<bookmark_value>AB.SZÓRÁS2 függvény</bookmark_value> <bookmark_value>szórás adatbázisokban;sokaság alapján</bookmark_value> <bookmark_value>DSTDEVP függvény, lásd: AB.SZÓRÁS2 függvény</bookmark_value>"
-
-#. Ier.
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3150429\n"
-"153\n"
-"help.text"
-msgid "DSTDEVP"
-msgstr "AB.SZÓRÁS2"
-
-#. MXJU
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3145598\n"
-"154\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
-msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">Az AB.SZÓRÁS2 függvény egy adattartomány keresési feltételnek megfelelő cellái alapján kiszámítja egy sokaságból vett minta szórásnégyzetét.</ahelp> A példa rekordjai teljes sokaságként lesznek kezelve."
-
-#. o0FG
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3145307\n"
-"155\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. rVl*
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149484\n"
-"156\n"
-"help.text"
-msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.SZÓRÁS2(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. bjDx
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3153322\n"
-"157\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. @pwr
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155431\n"
-"158\n"
-"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
-msgstr "Józsi szülinapi zsúrján (lásd fent) levő, azonos korú gyerekek testsúlyainak átlaga az alábbi képlet B16 cellába való írásával kaphatja meg:"
-
-#. :~*1
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3148411\n"
-"159\n"
-"help.text"
-msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.SZÓRÁS2(A1:E10;\"Testsúly\";A13:E14)</item>"
-
-#. @dL5
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3143271\n"
-"160\n"
-"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
-msgstr "A 14. sorban, a Kor alá írjon rendre <item type=\"input\">7, 8, 9</item> stb. értékeket. Az eredmény az összes azonos korú olyan gyerek testsúlyának szórása, akiknek testsúlya ellenőrzésre került."
-
-#. 2Em\
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3154794\n"
-"help.text"
-msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>AB.SZUM függvény</bookmark_value><bookmark_value>DSUM függvény, lásd: AB.SZUM függvény</bookmark_value><bookmark_value>számítás;összegek Calc-adatbázisokban</bookmark_value><bookmark_value>összegek;cellák Calc-adatbázisokban</bookmark_value>"
-
-#. 6w](
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3154794\n"
-"161\n"
-"help.text"
-msgid "DSUM"
-msgstr "AB.SZUM"
-
-#. U%A~
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3149591\n"
-"162\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">Az AB.SZUM függvény a keresési feltételnek megfelelő összes adatbázissor (rekord) celláinak összegét számítja ki.</ahelp>"
-
-#. t\*-
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3146128\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. E?^u
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150989\n"
-"164\n"
-"help.text"
-msgid "DSUM(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.SZUM(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. G9_f
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3159079\n"
-"165\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ~df\
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3152766\n"
-"166\n"
-"help.text"
-msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
-msgstr "Ahhoz, hogy megtudja Józsi szülinapi zsúrján (lásd fent) részt vevő másodikos gyerekek lakhelyeinek az iskolától mért összesített távolságát, az alábbi képletet kell beírni a B16 cellába:"
-
-#. yd#Z
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3151312\n"
-"167\n"
-"help.text"
-msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.SZUM(A1:E10;\"Távolság az iskolától\";A13:E14)</item>"
-
-#. R9ST
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3150596\n"
-"168\n"
-"help.text"
-msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
-msgstr "Az Osztály alatt, a 14. sorban adja meg a <item type=\"input\">2</item> értéket. Megjelenik az összes második osztályos gyerek iskolától mért távolságának összege (1950)."
-
-#. xmSZ
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3155614\n"
-"help.text"
-msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
-msgstr "<bookmark_value>AB.VAR függvény</bookmark_value><bookmark_value>DVAR függvény, lásd: AB.VAR függvény</bookmark_value><bookmark_value>variancia;minta alapján</bookmark_value>"
-
-#. @Xm5
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3155614\n"
-"170\n"
-"help.text"
-msgid "DVAR"
-msgstr "AB.VAR"
-
-#. `_)V
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3154418\n"
-"171\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
-msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">Az AB.VAR függvény visszaadja egy adatbázismező minden olyan rekordcellájának a szórásnégyzetét, ahol a rekord megfelel a keresési feltételnek.</ahelp> A példában található rekordokat a függvény az adatok mintájaként kezeli. Ezernél kisebb elemszámú mintából reprezentatív eredmény nem nyerhető."
-
-#. rb!i
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3154825\n"
-"172\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. pT61
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3156138\n"
-"173\n"
-"help.text"
-msgid "DVAR(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.VAR(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. -#\?
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3151257\n"
-"174\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. p*K$
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153701\n"
-"175\n"
-"help.text"
-msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Ahhoz, hogy megkapja az azonos korú gyerekek testsúlyának szórásnégyzetét a fenti példában (görgessen fel), az alábbi képletet kell beírni a B16 cellába:"
-
-#. Z}8T
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153676\n"
-"176\n"
-"help.text"
-msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.VAR(A1:E10;\"Testsúly\";A13:E14)</item>"
-
-#. `X/)
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153798\n"
-"177\n"
-"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
-msgstr "A 14. sorban, a Kor alá írjon rendre <item type=\"input\">7, 8, 9</item> stb. értékeket. Megjelenik az összes, adott korú gyerek súlyértékének szórásnégyzete."
-
-#. |?V*
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"bm_id3153880\n"
-"help.text"
-msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
-msgstr "<bookmark_value>AB.VAR2 függvény</bookmark_value> <bookmark_value>DVARP függvény, lásd: AB.VAR2 függvény</bookmark_value> <bookmark_value>variancia;sokaság alapján</bookmark_value>"
-
-#. [d$Y
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3153880\n"
-"178\n"
-"help.text"
-msgid "DVARP"
-msgstr "AB.VAR2"
-
-#. aOTi
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3155119\n"
-"179\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
-msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">Az AB.VAR2 függvény visszaadja egy adatbázismező minden olyan rekordcellaértéknek a szórásnégyzetét, ahol a rekord megfelel a keresési feltételnek.</ahelp> A példában szereplő rekordokat teljes sokaságként fogja kezelni."
-
-#. iM0^
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3145774\n"
-"180\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. zmBh
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3153776\n"
-"181\n"
-"help.text"
-msgid "DVARP(Database; DatabaseField; SearchCriteria)"
-msgstr "AB.VAR2(adatbázis; adatbázismező; keresési_feltétel)"
-
-#. /Ct4
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"hd_id3151110\n"
-"182\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. z_*Q
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3147099\n"
-"183\n"
-"help.text"
-msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
-msgstr "Józsi szülinapi zsúrján (lásd fent) levő, azonos korú gyerekek testsúlyainak szórásnégyzetét az alábbi képlet B16 cellába való írásával kaphatja meg:"
-
-#. _[AR
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3147322\n"
-"184\n"
-"help.text"
-msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=AB.VAR2(A1:E10;\"Testsúly\";A13:E14)</item>"
-
-#. 0Y[x
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id3146902\n"
-"185\n"
-"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
-msgstr "A 14. sorban, a Kor alá írjon rendre <item type=\"input\">7, 8, 9</item> stb. értékeket. Megjelenik az összes olyan, adott korú gyerek testsúlyértékének szórásnégyzete, akik részt vesznek Józsi születésnapi zsúrján."
-
-#. hqvq
-#: 05100100.xhp
-msgctxt ""
-"05100100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Merge Cells"
-msgstr "Cellák egyesítése"
-
-#. oIs`
-#: 05100100.xhp
-msgctxt ""
-"05100100.xhp\n"
-"hd_id3154765\n"
-"help.text"
-msgid "Merge Cells"
-msgstr "Cellák egyesítése"
-
-#. fZI?
-#: 05100100.xhp
-msgctxt ""
-"05100100.xhp\n"
-"par_id3147406\n"
-"help.text"
-msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Egy cellába egyesíti a kiválasztott cellák tartalmát.</ahelp>"
-
-#. ~drN
-#: 05100100.xhp
-msgctxt ""
-"05100100.xhp\n"
-"par_id3154351\n"
-"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
-msgstr "Válassza a <emph>Formátum - Cellák egyesítése - Cellák egyesítése</emph> menüparancsot"
-
-#. {`3[
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function Wizard"
-msgstr "Függvénytündér"
-
-#. %o=5
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"bm_id3147426\n"
-"help.text"
-msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
-msgstr "<bookmark_value>függvények beszúrása; Függvénytündér</bookmark_value><bookmark_value>függvények;Függvénytündér</bookmark_value><bookmark_value>tündérek; függvények</bookmark_value>"
-
-#. }f|2
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3147426\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
-msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Tündér: Függvénytündér\">Függvénytündér</link>"
-
-#. NuLX
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3145271\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Megnyitja a <emph>Függvénytündért</emph>, amely segítségére lesz a képletek interaktív elkészítésében.</ahelp></variable> A tündér elindítása előtt válasszon ki az aktuális munkalapból egy cellát vagy egy cellatartományt, ahová be szeretné majd illeszteni a képletet."
-
-#. ,KRb
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id8007446\n"
-"help.text"
-msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
-msgstr "Az ODFF (OpenDocument Format Formula) teljes specifikációját letöltheti az <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> weboldaláról."
-
-#. mqQn
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3159153\n"
-"60\n"
-"help.text"
-msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
-msgstr "A <emph>Függvénytündér</emph> két lappal rendelkezik: A <emph>Függvények</emph> lapon képleteket hozhat létre, míg a <emph>Struktúra</emph> lapon a képlet felépítését ellenőrizheti."
-
-#. ^/B6
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3154490\n"
-"3\n"
-"help.text"
-msgid "Functions Tab"
-msgstr "Függvények lap"
-
-#. (#nJ
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3149378\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Kategóriák és függvények felsorolása\">Kategóriák és függvények felsorolása</link>"
-
-#. +5/:
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3154730\n"
-"36\n"
-"help.text"
-msgid "Category"
-msgstr "Kategória"
-
-#. }s^o
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3153417\n"
-"37\n"
-"help.text"
-msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Az összes olyan kategória felsorolása, amelyhez függvények tartoznak. Jelöljön ki egy kategóriát, és a megfelelő függvények megjelenítésre kerülnek a mező alatt található listában.</ahelp> Ha – tekintet nélkül a kategóriára – az összes függvényt ábécé-sorrendben meg akarja jeleníteni, akkor válassza az „Összes” beállítást. Az „Utoljára használt” az utoljára használt függvények listáját jeleníti meg.</variable>"
-
-#. Pm*.
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3150749\n"
-"6\n"
-"help.text"
-msgid "Function"
-msgstr "Függvény"
-
-#. s)Jq
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155445\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Megjeleníti a kijelölt kategóriába tartozó függvényeket. Kattintson duplán a függvény kijelöléséhez.</ahelp> Egyszeres kattintással egy rövid leírást kap a függvényről."
-
-#. K8@5
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3159264\n"
-"8\n"
-"help.text"
-msgid "Array"
-msgstr "Adattömb"
-
-#. G=Kq
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3149566\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Megadja, hogy a kijelölt függvény a kijelölt cellákba tömbképletként kerüljön beillesztésre. </ahelp> A tömbképletek több cellán működnek. A terület minden egyes cellája tartalmazza a képletet, nem másolatként, hanem egy, az összes tömbcella között megosztott, közös képletként."
-
-#. .6N6
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155959\n"
-"61\n"
-"help.text"
-msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
-msgstr "Az <emph>Adattömb</emph> lehetőség megegyezik a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter billentyűparanccsal, amellyel képleteket lehet megadni és jóváhagyni a munkalapban. A képlet mátrixképletként lesz létrehozva, amit két kapcsos zárójel { } jelez."
-
-#. YEf]
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3152993\n"
-"40\n"
-"help.text"
-msgid "The maximum size of an array range is 128 by 128 cells."
-msgstr "Egy tömbtartomány maximális mérete 128×128 cella."
-
-#. W]r~
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3150367\n"
-"41\n"
-"help.text"
-msgid "Argument Input Fields"
-msgstr "Argumentumbeviteli mezők"
-
-#. hZ%/
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3145587\n"
-"15\n"
-"help.text"
-msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
-msgstr "Ha duplán kattint egy függvényre, akkor a párbeszédablak jobb oldalán megjelennek az argumentumbeviteli mezők. Cellahivatkozás argumentumkénti kijelöléséhez kattintson közvetlenül egy cellában, vagy az egérgomb lenyomva tartásával jelölje ki a kívánt tartományt a munkalapon. Ezen kívül szám- és egyéb értékeket, illetve hivatkozásokat közvetlenül a párbeszédablak megfelelő celláiban is megadhat. <link href=\"text/scalc/01/04060102.xhp\" name=\"Dátumbejegyzések\">Dátumbejegyzések</link> használatakor győződjön meg róla, hogy a megfelelő formátumot használja. Az eredmények táblázatba történő beszúrásához kattintson az OK gombra."
-
-#. g!92
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3149408\n"
-"18\n"
-"help.text"
-msgid "Function Result"
-msgstr "Fv. eredménye"
-
-#. {p66
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155809\n"
-"19\n"
-"help.text"
-msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
-msgstr "A függvény argumentumainak megadását követően az eredmény azonnal kiszámításra kerül. Az előnézet jelzi, hogy a számítás elvégezhető-e a megadott argumentumokkal. Ha az argumentumok hibát eredményeznek, akkor a megfelelő <link href=\"text/scalc/05/02140000.xhp\" name=\"hibakód\">hibakód</link> jelenik meg."
-
-#. kxVl
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3148700\n"
-"23\n"
-"help.text"
-msgid "The required arguments are indicated by names in bold print."
-msgstr "A kötelező argumentumokat félkövér betűtípus jelöli."
-
-#. }:_M
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3153064\n"
-"22\n"
-"help.text"
-msgid "f(x) (depending on the selected function)"
-msgstr "f(x) (a kiválasztott függvénytől függ)"
-
-#. %*NT
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3157980\n"
-"24\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">A <emph>Függvénytündér</emph> egy alszintjét teszi elérhetővé, ezzel a függvénybe nemcsak értékek vagy hivatkozások, hanem további függvények is beágyazhatók.</ahelp>"
-
-#. \P3%
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145076\n"
-"25\n"
-"help.text"
-msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
-msgstr "Argumentum/Paraméter/Cellahivatkozás (a kiválasztott függvénytől függ)"
-
-#. 5Rf9
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3159097\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">A megjelenített szövegmezők száma a függvénytől függ. Argumentumokat megadhat közvetlenül az argumentum mezőkben, illetve kattinthat a táblázat egyik cellájára.</ahelp>"
-
-#. !JbM
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3154957\n"
-"51\n"
-"help.text"
-msgid "Result"
-msgstr "Eredmény"
-
-#. u_%I
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3150211\n"
-"52\n"
-"help.text"
-msgid "Displays the calculation result or an error message."
-msgstr "Megjeleníti a számítás eredményét vagy a hibaüzenetet."
-
-#. t,FG
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3151304\n"
-"43\n"
-"help.text"
-msgid "Formula"
-msgstr "Képlet"
-
-#. k*hf
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3149898\n"
-"44\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">Megjeleníti a létrehozott képletet. A bejegyzéseket megadhatja közvetlenül, vagy a képlet létrehozásához igénybe veheti a tündér segítségét.</ahelp>"
-
-#. }^g9
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3153249\n"
-"45\n"
-"help.text"
-msgid "Back"
-msgstr "Vissza"
-
-#. )#-5
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3152869\n"
-"53\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">A fókuszt hátraviszi a képlet összetevői közt, és közben megjelöli azokat.</ahelp>"
-
-#. 2LB}
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3146966\n"
-"56\n"
-"help.text"
-msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
-msgstr "Egy több függvényt tartalmazó összetett képlet egy függvényének kiválasztásához kattintson duplán a függvényre a képlet ablakában."
-
-#. QEba
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3155762\n"
-"54\n"
-"help.text"
-msgid "Next"
-msgstr "Tovább"
-
-#. ;z+G
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3149316\n"
-"55\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">A képletablakban továbblép a képletelemek között.</ahelp> A gomb segítségével ezen kívül függvényeket rendelhet a képlethez. Ha egy függvényt kijelöl, majd a <emph>Tovább</emph> gombra kattint, akkor a képletablakban megjelenik a kijelölés."
-
-#. iH~]
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3159262\n"
-"57\n"
-"help.text"
-msgid "Double-click a function in the selection window to transfer it to the formula window."
-msgstr "Kattintson duplán a kiválasztó ablakban egy függvényre ahhoz, hogy átvigye azt a képlet ablakába."
-
-#. 2~hB
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3148745\n"
-"58\n"
-"help.text"
-msgid "Cancel"
-msgstr "Mégse"
-
-#. EKU?
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3147402\n"
-"59\n"
-"help.text"
-msgid "Closes the dialog without implementing the formula."
-msgstr "Bezárja a párbeszédablakot a képlet létrehozása nélkül."
-
-#. }PZU
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3150534\n"
-"32\n"
-"help.text"
-msgid "OK"
-msgstr "OK"
-
-#. ACT^
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3153029\n"
-"33\n"
-"help.text"
-msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
-msgstr "Befejezi a <emph>Függvénytündér</emph> működését, a képletet pedig megjeleníti a kijelölt cellában, illetve cellákban."
-
-#. jVU9
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3156400\n"
-"34\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Kategóriák és függvények felsorolása\">Kategóriák és függvények felsorolása</link>"
-
-#. N;rh
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3147610\n"
-"47\n"
-"help.text"
-msgid "Structure tab"
-msgstr "Struktúra lap"
-
-#. ibQ7
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3153122\n"
-"48\n"
-"help.text"
-msgid "On this page, you can view the structure of the function."
-msgstr "Ezen a lapon megtekintheti a függvény felépítését."
-
-#. Dp;E
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3149350\n"
-"4\n"
-"help.text"
-msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
-msgstr "Ha a <emph>Függvénytündér</emph> funkció elindításakor a kurzor egy függvényt már tartalmazó cellában van, akkor a <emph>Struktúra</emph> lap jelenik meg, amely megjeleníti az aktuális képlet szerkezetét."
-
-#. 0Zp`
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3149014\n"
-"49\n"
-"help.text"
-msgid "Structure"
-msgstr "Struktúra"
-
-#. ouUH
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3150481\n"
-"50\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
-msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">Megjeleníti a jelenlegi függvény hierarchikus reprezentációját.</ahelp> Az argumentumokat az argumentum előtti plusz- vagy mínuszjelre való kattintással lehet elrejteni vagy megjeleníteni."
-
-#. BqUi
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3148886\n"
-"63\n"
-"help.text"
-msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
-msgstr "A helyesen megadott argumentumokat kék pontok jelölik. A helytelen adattípusokat vörös pontok jelölik. Például: ha a SZUM függvény egyik argumentuma szöveg típusú, akkor ez vörössel jelenik meg, mivel a SZUM kizárólag számbejegyzések használatát engedi meg."
-
-#. 95n^
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Group"
-msgstr "Csoportosítás"
-
-#. P.yl
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"hd_id3153088\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Csoportosítás\">Csoportosítás</link>"
-
-#. sdl~
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"par_id3153821\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
-msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">A kijelölt cellatartományt sorok vagy oszlopok csoportjaként adja meg.</ahelp></variable>"
-
-#. J=5L
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"par_id3145069\n"
-"3\n"
-"help.text"
-msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr "Amikor egy cellatartományt csoportosít, a körvonalikon jelenik meg a csoport mellett a margón. A csoport megjelenítéséhez vagy elrejtéséhez kattintson az ikonra. A kijelölt csoport szétbontásához válassza az <emph>Adatok - Csoportosítás és vázlat -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Csoport szétbontása\"><emph>Csoport szétbontása</emph></link> lehetőséget."
-
-#. EE0o
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Include"
-msgstr "Hatókör"
-
-#. *}D{
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"hd_id3150448\n"
-"6\n"
-"help.text"
-msgid "Rows"
-msgstr "Sorok"
-
-#. ,/!=
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"par_id3153194\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Csoportba rendezi a kijelölt sorokat.</ahelp>"
-
-#. ~a8C
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"hd_id3145786\n"
-"8\n"
-"help.text"
-msgid "Columns"
-msgstr "Oszlopok"
-
-#. `(:6
-#: 12080300.xhp
-msgctxt ""
-"12080300.xhp\n"
-"par_id3146984\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Csoportba rendezi a kijelölt oszlopokat.</ahelp>"
-
-#. -a+K
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Column Width"
-msgstr "Optimális oszlopszélesség"
-
-#. iO`V
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; optimális oszlopszélességek</bookmark_value><bookmark_value>oszlopok; optimális szélességek</bookmark_value><bookmark_value>optimális oszlopszélességek</bookmark_value>"
-
-#. oT,t
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "Optimal Column Width"
-msgstr "Optimális oszlopszélesség"
-
-#. 0Jg%
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
-msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">A kijelölt oszlopok optimális szélességét határozza meg.</ahelp></variable> Az optimális oszlopszélesség az oszlopban található leghosszabb bejegyzéstől függ. A rendelkezésre álló <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"mértékegységek\">mértékegységek</link> közül választhat."
-
-#. LJ,p
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3150767\n"
-"3\n"
-"help.text"
-msgid "Add"
-msgstr "Hozzáadás"
-
-#. |D:F
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3150449\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
-msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Megadja azt a plusz térközt, amekkorának az oszlop leghosszabb bejegyzése és a függőleges széle között lennie kell.</ahelp>"
-
-#. ~6D1
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145785\n"
-"5\n"
-"help.text"
-msgid "Default value"
-msgstr "Alapértelmezett érték"
-
-#. 0kt]
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3146120\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Az oszlop teljes tartalmának megjelenítéséhez szükséges optimális oszlopszélességet adja meg.</ahelp> Az optimális oszlopszélességhez szükséges kiegészítő térköz előre beállított értéke 0,1 hüvelyk."
-
-#. ]5Vx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mathematical Functions"
-msgstr "Matematikai függvények"
-
-#. -V(|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3147124\n"
-"help.text"
-msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
-msgstr "<bookmark_value>matematikai függvények</bookmark_value><bookmark_value>Függvénytündér; matematikai</bookmark_value><bookmark_value>függvények; matematikai függvények</bookmark_value><bookmark_value>szögfüggvények</bookmark_value>"
-
-#. #tuI
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3147124\n"
-"1\n"
-"help.text"
-msgid "Mathematical Functions"
-msgstr "Matematikai függvények"
-
-#. L2CY
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154943\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
-msgstr "<variable id=\"mathematiktext\">Ez a kategória a Calc <emph>matematikai</emph> függvényeit tartalmazza. </variable> A <emph>Függvénytündér</emph> megnyitásához válassza a <link href=\"text/scalc/01/04060000.xhp\" name=\"Beszúrás - Függvény\"><emph>Beszúrás - Függvény</emph></link> menüparancsot."
-
-#. P*S+
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3146944\n"
-"help.text"
-msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
-msgstr "<bookmark_value>ABS függvény</bookmark_value><bookmark_value>abszolút értékek</bookmark_value><bookmark_value>értékek;abszolút</bookmark_value>"
-
-#. yKBB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146944\n"
-"33\n"
-"help.text"
-msgid "ABS"
-msgstr "ABS"
-
-#. \g{Z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154546\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABS\">Kiszámítja egy szám abszolút értékét.</ahelp>"
-
-#. H[Nv
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154843\n"
-"35\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. $Lq:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147475\n"
-"36\n"
-"help.text"
-msgid "ABS(Number)"
-msgstr "ABS(szám)"
-
-#. \meB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148438\n"
-"37\n"
-"help.text"
-msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
-msgstr "A <emph>szám</emph> az a szám, amelynek abszolút értékét ki kívánja számítani. Egy szám abszolút értéke a +/- jel nélkül vett értéke."
-
-#. 4*_c
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155823\n"
-"38\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ^NHC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152787\n"
-"39\n"
-"help.text"
-msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
-msgstr "Az <item type=\"input\">=ABS(-56)</item> képlet az 56 értéket adja vissza."
-
-#. Y]y+
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148752\n"
-"40\n"
-"help.text"
-msgid "<item type=\"input\">=ABS(12)</item> returns 12."
-msgstr "Az <item type=\"input\">=ABS(12)</item> képlet a 12 értéket adja vissza."
-
-#. I1xO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id320139\n"
-"help.text"
-msgid "<item type=\"input\">=ABS(0)</item> returns 0."
-msgstr "Az <item type=\"input\">=ABS(0)</item> képlet a 0 értéket adja vissza."
-
-#. hI]g
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3150896\n"
-"help.text"
-msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
-msgstr "<bookmark_value>DARABÜRES függvény</bookmark_value><bookmark_value>COUNTBLANK függvény, lásd: DARABÜRES függvény</bookmark_value><bookmark_value>megszámolás;üres cellák</bookmark_value><bookmark_value>üres cellák;megszámolás</bookmark_value>"
-
-#. Dij^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150896\n"
-"42\n"
-"help.text"
-msgid "COUNTBLANK"
-msgstr "DARABÜRES"
-
-#. 1dSl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155260\n"
-"43\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Az üres cellák számát adja vissza.</ahelp>"
-
-#. ylMg
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145144\n"
-"44\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Tvd8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153931\n"
-"45\n"
-"help.text"
-msgid "COUNTBLANK(Range)"
-msgstr "DARABÜRES(tartomány)"
-
-#. EU*~
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149512\n"
-"46\n"
-"help.text"
-msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
-msgstr "A <emph>tartomány</emph> cellatartományban levő üres cellák számát adja vissza."
-
-#. {Y_W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146139\n"
-"47\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. C?dr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148586\n"
-"48\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
-msgstr "A <item type=\"input\">=DARABÜRES(A1:B2)</item> 4-et ad eredményül, ha az A1, A2, B1 és B2 cellák mind üresek."
-
-#. U9(?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3153114\n"
-"help.text"
-msgid "<bookmark_value>ACOS function</bookmark_value>"
-msgstr "<bookmark_value>ARCCOS függvény</bookmark_value><bookmark_value>ACOS függvény, lásd: ARCCOS függvény</bookmark_value>"
-
-#. f:Ct
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153114\n"
-"50\n"
-"help.text"
-msgid "ACOS"
-msgstr "ARCCOS"
-
-#. J+=F
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145163\n"
-"51\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Kiszámítja egy szám árkuszkoszinuszát.</ahelp>"
-
-#. PFx.
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153565\n"
-"52\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 0vEQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150020\n"
-"53\n"
-"help.text"
-msgid "ACOS(Number)"
-msgstr "ARCCOS(szám)"
-
-#. c7?p
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159134\n"
-"54\n"
-"help.text"
-msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
-msgstr "A függvény a <emph>szám</emph> árkuszkoszinuszát számítja ki, azaz azt a szöget (radiánban), amelynek a koszinusza a <emph>szám</emph>. A visszaadott szög 0 és PI közé esik."
-
-#. /aIq
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id679647\n"
-"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Ha fokban akarja a szöget megkapni, használja a FOK függvényt."
-
-#. +7Ik
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149882\n"
-"55\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. MOr_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150128\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
-msgstr "Az <item type=\"input\">=ARCCOS(-1)</item> eredménye 3,14159265358979 (PI radián)"
-
-#. bh6[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8792382\n"
-"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
-msgstr "A <item type=\"input\">=FOK(ARCCOS(0,5))</item> eredménye 60. 60 fok koszinusza 0,5."
-
-#. T7g4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145355\n"
-"help.text"
-msgid "<bookmark_value>ACOSH function</bookmark_value>"
-msgstr "<bookmark_value>ACOSH függvény</bookmark_value>"
-
-#. )OjA
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145355\n"
-"60\n"
-"help.text"
-msgid "ACOSH"
-msgstr "ACOSH"
-
-#. Z2T`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157993\n"
-"61\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Kiszámítja egy szám area hiperbolikus koszinuszát.</ahelp>"
-
-#. Z$k@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145295\n"
-"62\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. (hb[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151017\n"
-"63\n"
-"help.text"
-msgid "ACOSH(Number)"
-msgstr "ACOSH(szám)"
-
-#. )89}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149000\n"
-"64\n"
-"help.text"
-msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
-msgstr "A függvény a <emph>szám</emph> area hiperbolikus koszinuszát számítja ki, azaz azt a számot, amelynek hiperbolikus koszinusza a <emph>szám</emph>."
-
-#. hC-?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6393932\n"
-"help.text"
-msgid "Number must be greater than or equal to 1."
-msgstr "A számnak nagyobb-egyelőnek kell lennie, mint 1."
-
-#. (nqx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150566\n"
-"65\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ;q|U
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145629\n"
-"66\n"
-"help.text"
-msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
-msgstr "Az <item type=\"input\">=ACOSH(1)</item> eredménye 0."
-
-#. |gVO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id951567\n"
-"help.text"
-msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
-msgstr "Az <item type=\"input\">=ACOSH(COSH(4))</item> eredménye 4."
-
-#. NWr-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3149027\n"
-"help.text"
-msgid "<bookmark_value>ACOT function</bookmark_value>"
-msgstr "<bookmark_value>ACOT függvény</bookmark_value>"
-
-#. 8woz
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149027\n"
-"70\n"
-"help.text"
-msgid "ACOT"
-msgstr "ACOT"
-
-#. I9M^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155818\n"
-"71\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Kiszámítja az adott szám inverz kotangensét (árkuszkotangensét).</ahelp>"
-
-#. q=s5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153225\n"
-"72\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. l1V;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158419\n"
-"73\n"
-"help.text"
-msgid "ACOT(Number)"
-msgstr "ACOT(szám)"
-
-#. !hq_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154948\n"
-"74\n"
-"help.text"
-msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
-msgstr "A függvény a <emph>szám</emph> árkuszkotangensét számítja ki, azaz azt a szöget (radiánban), amelynek a kotangense a <emph>szám</emph>. A visszaadott szög 0 és PI közé esik."
-
-#. )obe
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5834528\n"
-"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Ha fokban akarja a szöget megkapni, használja a FOK függvényt."
-
-#. {L=V
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3147538\n"
-"75\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. o:E/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155375\n"
-"76\n"
-"help.text"
-msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "Az <item type=\"input\">=ACOT(1)</item> eredménye 0,785398163397448 (PI/4 radián)."
-
-#. Zn(.
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8589434\n"
-"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "A <item type=\"input\">=FOK(ACOT(1))</item> eredménye 45 fok. 45 fok kotangense 1."
-
-#. !ygi
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3148426\n"
-"help.text"
-msgid "<bookmark_value>ACOTH function</bookmark_value>"
-msgstr "<bookmark_value>ACOTH függvény</bookmark_value>"
-
-#. jVD@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3148426\n"
-"80\n"
-"help.text"
-msgid "ACOTH"
-msgstr "ACOTH"
-
-#. nnM;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147478\n"
-"81\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Kiszámítja az adott szám area hiperbolikus kotangensét.</ahelp>"
-
-#. y-kL
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152585\n"
-"82\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. WppK
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147172\n"
-"83\n"
-"help.text"
-msgid "ACOTH(Number)"
-msgstr "ACOTH(szám)"
-
-#. ;aK|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146155\n"
-"84\n"
-"help.text"
-msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
-msgstr "A függvény a <emph>szám</emph> area hiperbolikus kotangensét számítja ki, azaz azt számot, amelynek hiperbolikus kotangense a <emph>szám</emph>."
-
-#. ~:E`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5818659\n"
-"help.text"
-msgid "An error results if Number is between -1 and 1 inclusive."
-msgstr "Ha a szám -1 és 1 között van, a függvény hibaüzenetet ad."
-
-#. f]r-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3083452\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. CD;?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150608\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
-msgstr "Az <item type=\"input\">=ACOTH(1,1)</item> eredménye 1,1 area hiperbolikus kotangense, körülbelül 1,52226."
-
-#. /@Gf
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145084\n"
-"help.text"
-msgid "<bookmark_value>ASIN function</bookmark_value>"
-msgstr "<bookmark_value>ARCSIN függvény</bookmark_value><bookmark_value>ASIN függvény, lásd: ARCSIN függvény</bookmark_value>"
-
-#. `5sg
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145084\n"
-"90\n"
-"help.text"
-msgid "ASIN"
-msgstr "ARCSIN"
-
-#. E8Aw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156296\n"
-"91\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Kiszámítja egy szám árkuszszinuszát.</ahelp>"
-
-#. R{1o
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149716\n"
-"92\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. MX`A
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156305\n"
-"93\n"
-"help.text"
-msgid "ASIN(Number)"
-msgstr "ARCSIN(szám)"
-
-#. `iCa
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150964\n"
-"94\n"
-"help.text"
-msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
-msgstr "A függvény a <emph>szám</emph> árkuszszinuszát számítja ki, azaz azt a szöget (radiánban), amelynek a szinusza a <emph>szám</emph>. A visszaadott szög -PI/2 és +PI/2 közé esik."
-
-#. h!Lh
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id203863\n"
-"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Ha fokban akarja a szöget megkapni, használja a FOK függvényt."
-
-#. +WSN
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149448\n"
-"95\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. nF4t
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156100\n"
-"96\n"
-"help.text"
-msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
-msgstr "Az <item type=\"input\">=ARCSIN(0)</item> eredménye 0."
-
-#. qsXA
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6853846\n"
-"help.text"
-msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
-msgstr "Az <item type=\"input\">=ARCSIN(1)</item> eredménye 1,5707963267949 (PI/2 radián)."
-
-#. Se)F
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8772240\n"
-"help.text"
-msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
-msgstr "A <item type=\"input\">=FOK(ARCSIN(0,5))</item> eredménye 30. 30 fok szinusza 0,5."
-
-#. 90Q\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3151266\n"
-"help.text"
-msgid "<bookmark_value>ASINH function</bookmark_value>"
-msgstr "<bookmark_value>ASINH függvény</bookmark_value>"
-
-#. rCN5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3151266\n"
-"100\n"
-"help.text"
-msgid "ASINH"
-msgstr "ASINH"
-
-#. eW~^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147077\n"
-"101\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Kiszámítja egy szám area hiperbolikus szinuszát.</ahelp>"
-
-#. 3)Sp
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150763\n"
-"102\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. h+lX
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150882\n"
-"103\n"
-"help.text"
-msgid "ASINH(Number)"
-msgstr "ASINH(szám)"
-
-#. Gs1^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147621\n"
-"104\n"
-"help.text"
-msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
-msgstr "A függvény a <emph>szám</emph> area hiperbolikus szinuszát számítja ki, azaz azt a számot, amelynek hiperbolikus szinusza a <emph>szám</emph>."
-
-#. Y~~=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153212\n"
-"105\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. +7CQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156120\n"
-"106\n"
-"help.text"
-msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
-msgstr "Az <item type=\"input\">=ASINH(-90)</item> eredménye kb. -5,1929877."
-
-#. ;HfF
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id4808496\n"
-"help.text"
-msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
-msgstr "Az <item type=\"input\">=ASINH(SINH(4))</item> eredménye 4."
-
-#. P]4d
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3155996\n"
-"help.text"
-msgid "<bookmark_value>ATAN function</bookmark_value>"
-msgstr "<bookmark_value>ARCTAN függvény</bookmark_value><bookmark_value>ATAN függvény, lásd: ARCTAN függvény</bookmark_value>"
-
-#. a506
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155996\n"
-"110\n"
-"help.text"
-msgid "ATAN"
-msgstr "ARCTAN"
-
-#. y!hl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149985\n"
-"111\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Kiszámítja egy szám árkusztangensét.</ahelp>"
-
-#. c~p.
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3151294\n"
-"112\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. RobY
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150261\n"
-"113\n"
-"help.text"
-msgid "ATAN(Number)"
-msgstr "ARCTAN(szám)"
-
-#. \kf`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147267\n"
-"114\n"
-"help.text"
-msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
-msgstr "A függvény a <emph>szám</emph> árkusztangensét számítja ki, azaz azt a szöget (radiánban), amelynek a tangense a <emph>szám</emph>. A visszaadott szög -PI/2 és PI/2 közé esik."
-
-#. #8T9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6293527\n"
-"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Ha fokban akarja a szöget megkapni, használja a FOK függvényt."
-
-#. Snb5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154054\n"
-"115\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. E5bg
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143229\n"
-"116\n"
-"help.text"
-msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "Az <item type=\"input\">=ARCTAN(1)</item> eredménye 0,785398163397448 (PI/4 radián)."
-
-#. /.wO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8746299\n"
-"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "A <item type=\"input\">=FOK(ARCTAN(1))</item> eredménye 45 fok. 45 fok tangense 1."
-
-#. S0{c
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3153983\n"
-"help.text"
-msgid "<bookmark_value>ATAN2 function</bookmark_value>"
-msgstr "<bookmark_value>ARCTAN2 függvény</bookmark_value><bookmark_value>ATAN2 függvény, lásd: ARCTAN2 függvény</bookmark_value>"
-
-#. m`@n
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153983\n"
-"120\n"
-"help.text"
-msgid "ATAN2"
-msgstr "ARCTAN2"
-
-#. rbc$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154297\n"
-"121\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Kiszámítja a megadott x és y koordináták árkusztangensét.</ahelp>"
-
-#. BN03
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149758\n"
-"122\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. [#2q
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156013\n"
-"123\n"
-"help.text"
-msgid "ATAN2(NumberX; NumberY)"
-msgstr "ARCTAN2(x_szám; y_szám)"
-
-#. zbTK
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151168\n"
-"124\n"
-"help.text"
-msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr "Az <emph>x_szám</emph> az x koordináta értéke."
-
-#. Lv~|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152798\n"
-"125\n"
-"help.text"
-msgid "<emph>NumberY</emph> is the value of the y coordinate."
-msgstr "Az <emph>y_szám</emph> az y koordináta értéke."
-
-#. `h3a
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5036164\n"
-"help.text"
-msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
-msgstr "Az ARCTAN2 függvény az árkusztangenst számítja ki, azaz azt a szöget (radiánban), amelyet az x tengely és az x_szám, y_szám pontba az origóból húzott egyenes bezár. A visszaadott szög -PI és PI közé esik."
-
-#. OP,k
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3001800\n"
-"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Ha fokban akarja a szöget megkapni, használja a FOK függvényt."
-
-#. m4F6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145663\n"
-"126\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. =w:g
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154692\n"
-"127\n"
-"help.text"
-msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "Az <item type=\"input\">=ARCTAN2(20;20)</item> eredménye 0,785398163397448 (PI/4 radián)."
-
-#. b]rr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1477095\n"
-"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "A <item type=\"input\">=FOK(ARCTAN2(12,3;12,3))</item> eredménye 45 fok. 45 fok tangense 1."
-
-#. Tt?`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3155398\n"
-"help.text"
-msgid "<bookmark_value>ATANH function</bookmark_value>"
-msgstr "<bookmark_value>ATANH függvény</bookmark_value>"
-
-#. `kCg
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155398\n"
-"130\n"
-"help.text"
-msgid "ATANH"
-msgstr "ATANH"
-
-#. Aecv
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148829\n"
-"131\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Kiszámítja egy szám area hiperbolikus tangensét.</ahelp>"
-
-#. a7sF
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146997\n"
-"132\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 4Wk1
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149912\n"
-"133\n"
-"help.text"
-msgid "ATANH(Number)"
-msgstr "ATANH(szám)"
-
-#. s6Q[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150521\n"
-"134\n"
-"help.text"
-msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
-msgstr "A függvény a <emph>szám</emph> area hiperbolikus tangensét számítja ki, azaz azt a számot, amelynek a hiperbolikus tangense a <emph>szám</emph>."
-
-#. bJ?d
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9357280\n"
-"help.text"
-msgid "Number must obey the condition -1 < number < 1."
-msgstr "A szám csak -1 és 1 között lehet."
-
-#. w[S!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3148450\n"
-"135\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. .r~q
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145419\n"
-"136\n"
-"help.text"
-msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
-msgstr "Az <item type=\"input\">=ATANH(0)</item> eredménye 0."
-
-#. !@We
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3153062\n"
-"help.text"
-msgid "<bookmark_value>COS function</bookmark_value>"
-msgstr "<bookmark_value>COS függvény</bookmark_value>"
-
-#. BB(x
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153062\n"
-"149\n"
-"help.text"
-msgid "COS"
-msgstr "COS"
-
-#. *X~y
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148803\n"
-"150\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COS\">Kiszámítja egy adott szög (radiánban) koszinuszát.</ahelp>"
-
-#. t,lj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150779\n"
-"151\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Kq6(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154213\n"
-"152\n"
-"help.text"
-msgid "COS(Number)"
-msgstr "COS(szám)"
-
-#. VER)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154285\n"
-"153\n"
-"help.text"
-msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
-msgstr "Kiszámítja a <emph>szám</emph> koszinuszát, a szög radiánban adható meg."
-
-#. Wi)s
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id831019\n"
-"help.text"
-msgid "To return the cosine of an angle in degrees, use the RADIANS function."
-msgstr "Ha fokban megadott szögek koszinuszát akarja meghatározni, használja a RADIÁN függvényt."
-
-#. ,hjv
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153579\n"
-"154\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. D\h^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147240\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
-msgstr "A <item type=\"input\">=COS(PI()/2)</item> eredménye 0, PI/2 radián koszinusza."
-
-#. Y_b4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147516\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
-msgstr "A <item type=\"input\">=COS(RADIÁN(60))</item> eredménye 0,5, 60 fok koszinusza."
-
-#. }V[Y
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3154277\n"
-"help.text"
-msgid "<bookmark_value>COSH function</bookmark_value>"
-msgstr "<bookmark_value>COSH függvény</bookmark_value>"
-
-#. keB=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154277\n"
-"159\n"
-"help.text"
-msgid "COSH"
-msgstr "COSH"
-
-#. j(zM
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146946\n"
-"160\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Kiszámítja egy szám hiperbolikus koszinuszát.</ahelp>"
-
-#. m_P8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149792\n"
-"161\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ,^6B
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3166440\n"
-"162\n"
-"help.text"
-msgid "COSH(Number)"
-msgstr "COSH(szám)"
-
-#. 0;v/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150710\n"
-"163\n"
-"help.text"
-msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
-msgstr "A <emph>szám</emph> hiperbolikus koszinuszát számítja ki."
-
-#. uR~i
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153234\n"
-"164\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ?4-\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154099\n"
-"165\n"
-"help.text"
-msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
-msgstr "A <item type=\"input\">=COSH(0)</item> eredménye 1, a 0 hiperbolikus koszinusza."
-
-#. u$K0
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3152888\n"
-"help.text"
-msgid "<bookmark_value>COT function</bookmark_value>"
-msgstr "<bookmark_value>COT függvény</bookmark_value>"
-
-#. AKlT
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152888\n"
-"169\n"
-"help.text"
-msgid "COT"
-msgstr "COT"
-
-#. j@.R
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153679\n"
-"170\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COT\">Kiszámítja egy adott szög (radiánban) kotangensét.</ahelp>"
-
-#. baPz
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152943\n"
-"171\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. O.eU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154856\n"
-"172\n"
-"help.text"
-msgid "COT(Number)"
-msgstr "COT(szám)"
-
-#. T7=t
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149969\n"
-"173\n"
-"help.text"
-msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
-msgstr "Kiszámítja a <emph>szám</emph> kotangensét, a szög radiánban adható meg."
-
-#. XVy}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3444624\n"
-"help.text"
-msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
-msgstr "Ha fokban megadott szögek kotangensét akarja meghatározni, használja a RADIÁN függvényt."
-
-#. VtO*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6814477\n"
-"help.text"
-msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
-msgstr "Egy szög kotangense megegyezik a szög tangensének reciprokával."
-
-#. ``(Y
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149800\n"
-"174\n"
-"help.text"
-msgid "Examples:"
-msgstr "Példák:"
-
-#. 1*p0
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148616\n"
-"175\n"
-"help.text"
-msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
-msgstr "A <item type=\"input\">=COT(PI()/4)</item> eredménye 1, PI/4 radián kotangense."
-
-#. Ps@w
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148986\n"
-"176\n"
-"help.text"
-msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
-msgstr "A <item type=\"input\">=COT(RADIÁN(45))</item> eredménye 1, 45 fok kotangense."
-
-#. }w~%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3154337\n"
-"help.text"
-msgid "<bookmark_value>COTH function</bookmark_value>"
-msgstr "<bookmark_value>COTH függvény</bookmark_value>"
-
-#. BeW5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154337\n"
-"178\n"
-"help.text"
-msgid "COTH"
-msgstr "COTH"
-
-#. X$0=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149419\n"
-"179\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Kiszámítja egy megadott szám (szög) hiperbolikus kotangensét.</ahelp>"
-
-#. .uaW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3149242\n"
-"180\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. j|l?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143280\n"
-"181\n"
-"help.text"
-msgid "COTH(Number)"
-msgstr "COTH(szám)"
-
-#. J[;I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154799\n"
-"182\n"
-"help.text"
-msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
-msgstr "A <emph>szám</emph> hiperbolikus kotangensét számítja ki."
-
-#. l;:O
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155422\n"
-"183\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. L?)S
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144754\n"
-"184\n"
-"help.text"
-msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
-msgstr "A <item type=\"input\">=COTH(1)</item> eredménye az 1 hiperbolikus kotangense, körülbelül 1,3130."
-
-#. Dum]
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id6110552\n"
-"help.text"
-msgid "<bookmark_value>CSC function</bookmark_value>"
-msgstr "<bookmark_value>CSC függvény</bookmark_value>"
-
-#. h4:c
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id9523234\n"
-"149\n"
-"help.text"
-msgid "CSC"
-msgstr "CSC"
-
-#. Yd?p
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id4896433\n"
-"150\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSECANT\">Kiszámítja egy (radiánban) megadott szög koszekánsát. Egy szög koszekánsa megegyezik a szög szinuszának reciprokával.</ahelp>"
-
-#. -`k3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3534032\n"
-"151\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ?x\Y
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id4571344\n"
-"152\n"
-"help.text"
-msgid "CSC(Number)"
-msgstr "CSC(szám)"
-
-#. /Wl$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9859164\n"
-"153\n"
-"help.text"
-msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
-msgstr "Kiszámítja a <emph>szám</emph> (trigonometrikus) koszekánsát, a szög radiánban adható meg."
-
-#. Q@S!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3428494\n"
-"help.text"
-msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
-msgstr "Ha fokban megadott szögek koszekánsát akarja meghatározni, használja a RADIÁN függvényt."
-
-#. rGX*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id2577161\n"
-"154\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. eVVH
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3736803\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
-msgstr "A <item type=\"input\">=CSC(PI()/4)</item> eredménye megközelítőleg 1.4142135624, PI/4 radián szinuszának inverze."
-
-#. (#\6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6016818\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
-msgstr "A <item type=\"input\">=CSC(RADIANS(30))</item> eredménye 2, 30 fok koszekánsa."
-
-#. \0X9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id9288877\n"
-"help.text"
-msgid "<bookmark_value>CSCH function</bookmark_value>"
-msgstr "<bookmark_value>CSCH függvény</bookmark_value>"
-
-#. %h5=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id4325650\n"
-"159\n"
-"help.text"
-msgid "CSCH"
-msgstr "CSCH"
-
-#. .z4@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id579916\n"
-"160\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Kiszámítja egy szám hiperbolikus koszekánsát.</ahelp>"
-
-#. 7@FZ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id5336768\n"
-"161\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. JG4r
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3108851\n"
-"162\n"
-"help.text"
-msgid "CSCH(Number)"
-msgstr "CSCH(szám)"
-
-#. QsGj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1394188\n"
-"163\n"
-"help.text"
-msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
-msgstr "Kiszámítja a <emph>szám</emph> hiperbolikus koszekánsát."
-
-#. o)@*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id6037477\n"
-"164\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ?!M(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5426085\n"
-"165\n"
-"help.text"
-msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
-msgstr "A <item type=\"input\">=CSCH(1)</item> eredménye megközelítőleg 0.8509181282, az 1 hiperbolikus koszekánsa."
-
-#. 21Y*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145314\n"
-"help.text"
-msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
-msgstr "<bookmark_value>FOK függvény</bookmark_value><bookmark_value>DEGREES függvény, lásd: FOK függvény</bookmark_value><bookmark_value>átváltás;radiánt fokba</bookmark_value>"
-
-#. |c|r
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145314\n"
-"188\n"
-"help.text"
-msgid "DEGREES"
-msgstr "FOK"
-
-#. 8:o5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149939\n"
-"189\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DEG\">Átszámítja a radián értékeket fokra.</ahelp>"
-
-#. e|6;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150623\n"
-"190\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 6.:S
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145600\n"
-"191\n"
-"help.text"
-msgid "DEGREES(Number)"
-msgstr "FOK(szám)"
-
-#. +i:3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149484\n"
-"192\n"
-"help.text"
-msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
-msgstr "A <emph>szám</emph> a fokra átszámítandó szög mértéke radiánban."
-
-#. f|Dj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3669545\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. pkQ/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3459578\n"
-"help.text"
-msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
-msgstr "A <item type=\"input\">=FOK(PI())</item> eredménye 180 fok."
-
-#. cYP~
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3148698\n"
-"help.text"
-msgid "<bookmark_value>EXP function</bookmark_value>"
-msgstr "<bookmark_value>KITEVŐ függvény</bookmark_value><bookmark_value>EXP függvény, lásd: KITEVŐ függvény</bookmark_value>"
-
-#. _9s]
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3148698\n"
-"198\n"
-"help.text"
-msgid "EXP"
-msgstr "KITEVŐ"
-
-#. Cpo,
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150592\n"
-"199\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_EXP\">Az e-t a megadott hatványra emeli.</ahelp> Az e állandó értéke megközelítőleg 2,71828182845904."
-
-#. Ck0|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150351\n"
-"200\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. jAsC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146786\n"
-"201\n"
-"help.text"
-msgid "EXP(Number)"
-msgstr "KITEVŐ(szám)"
-
-#. KddZ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155608\n"
-"202\n"
-"help.text"
-msgid "<emph>Number</emph> is the power to which e is to be raised."
-msgstr "<emph>Szám</emph>: a kitevő, amelyre e-t emelni kívánja."
-
-#. (#@_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154418\n"
-"203\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. eg5^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156340\n"
-"204\n"
-"help.text"
-msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
-msgstr "A <item type=\"input\">=KITEVŐ(1)</item> eredménye 2,71828182845904, ami az e állandó legjobb közelítő értéke."
-
-#. a$o!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145781\n"
-"help.text"
-msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
-msgstr "<bookmark_value>FAKT függvény</bookmark_value><bookmark_value>FACT függvény, lásd: FAKT függvény</bookmark_value><bookmark_value>faktoriális;számok</bookmark_value>"
-
-#. @PtM
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145781\n"
-"208\n"
-"help.text"
-msgid "FACT"
-msgstr "FAKT"
-
-#. L!d:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151109\n"
-"209\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Kiszámítja a szám faktoriálisát.</ahelp>"
-
-#. iHv=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146902\n"
-"210\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. #]#O
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154661\n"
-"211\n"
-"help.text"
-msgid "FACT(Number)"
-msgstr "FAKT(szám)"
-
-#. r#Nd
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152952\n"
-"212\n"
-"help.text"
-msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
-msgstr "Kiszámítja a szám!-t, azaz a <emph>szám</emph> faktoriálisát, ami definíció szerint 1*2*3*4* ... * szám."
-
-#. pd03
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3834650\n"
-"help.text"
-msgid "=FACT(0) returns 1 by definition."
-msgstr "A =FAKT(0) definíció szerint 1-et ad vissza."
-
-#. #CXn
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8429517\n"
-"help.text"
-msgid "The factorial of a negative number returns the \"invalid argument\" error."
-msgstr "Negatív szám faktoriálisa „érvénytelen argumentum” hibát eredményez."
-
-#. 9=r2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154569\n"
-"213\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. TdBQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154476\n"
-"216\n"
-"help.text"
-msgid "<item type=\"input\">=FACT(3)</item> returns 6."
-msgstr "A <item type=\"input\">=FAKT(3)</item> a 6 értéket adja vissza."
-
-#. )4vJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147525\n"
-"214\n"
-"help.text"
-msgid "<item type=\"input\">=FACT(0)</item> returns 1."
-msgstr "A <item type=\"input\">=FAKT(0)</item> az 1 értéket adja vissza."
-
-#. [xPD
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3159084\n"
-"help.text"
-msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
-msgstr "<bookmark_value>INT függvény</bookmark_value><bookmark_value>számok;lekerekítés a legközelebbi egészre</bookmark_value><bookmark_value>kerekítés;lekerekítés a legközelebbi egészre</bookmark_value>"
-
-#. eC4(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3159084\n"
-"218\n"
-"help.text"
-msgid "INT"
-msgstr "INT"
-
-#. dw+!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158441\n"
-"219\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">A legközelebbi egészre kerekít le egy számot.</ahelp>"
-
-#. e[;o
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146132\n"
-"220\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. fIOI
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156146\n"
-"221\n"
-"help.text"
-msgid "INT(Number)"
-msgstr "INT(szám)"
-
-#. 5^|V
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154117\n"
-"222\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
-msgstr "Lefelé kerekíti a <emph>számot</emph> a legközelebbi egészre."
-
-#. `85W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id153508\n"
-"help.text"
-msgid "Negative numbers round down to the integer below."
-msgstr "A negatív számok lefelé kerekítődnek a legközelebbi egészre."
-
-#. P7*!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155118\n"
-"223\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. `-{2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156267\n"
-"224\n"
-"help.text"
-msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
-msgstr "Az <item type=\"input\">=INT(5,7)</item> eredménye 5."
-
-#. `s+E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147323\n"
-"225\n"
-"help.text"
-msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
-msgstr "Az <item type=\"input\">=INT(-1,3)</item> eredménye -2."
-
-#. O1Rb
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3150938\n"
-"help.text"
-msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
-msgstr "<bookmark_value>PÁROS függvény</bookmark_value><bookmark_value>EVEN függvény, lásd: PÁROS függvény</bookmark_value><bookmark_value>számok;fel-/lekerekítés a legközelebbi páros egészre</bookmark_value><bookmark_value>kerekítés;fel-/lekerekítés a legközelebbi páros egészre</bookmark_value>"
-
-#. $\Sk
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150938\n"
-"227\n"
-"help.text"
-msgid "EVEN"
-msgstr "PÁROS"
-
-#. :N2]
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149988\n"
-"228\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Egy pozitív szám legközelebbi páros egészre felkerekített értékét, illetve egy negatív szám legközelebbi páros egészre lekerekített értékét adja eredményül.</ahelp>"
-
-#. u4LE
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3148401\n"
-"229\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. qs,n
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150830\n"
-"230\n"
-"help.text"
-msgid "EVEN(Number)"
-msgstr "PÁROS(szám)"
-
-#. BO)G
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153350\n"
-"231\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
-msgstr "Felfelé kerekíti a <emph>számot</emph> a legközelebbi páros egészre."
-
-#. e\ot
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155508\n"
-"232\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. `B+K
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154361\n"
-"233\n"
-"help.text"
-msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
-msgstr "A <item type=\"input\">=PÁROS(2,3)</item> eredménye 4."
-
-#. -V8G
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8477736\n"
-"help.text"
-msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
-msgstr "A <item type=\"input\">=PÁROS(2)</item> eredménye 2."
-
-#. :n:b
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id159611\n"
-"help.text"
-msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
-msgstr "A <item type=\"input\">=PÁROS(0)</item> eredménye 0."
-
-#. )dA_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6097598\n"
-"help.text"
-msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
-msgstr "A <item type=\"input\">=PÁROS(-0,5)</item> eredménye -2."
-
-#. vQe[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3147356\n"
-"help.text"
-msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
-msgstr "<bookmark_value>GCD függvény</bookmark_value><bookmark_value>legnagyobb közös osztó</bookmark_value>"
-
-#. JRZ#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3147356\n"
-"237\n"
-"help.text"
-msgid "GCD"
-msgstr "GCD"
-
-#. 59^n
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152465\n"
-"238\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GGT\">Kiszámítja két vagy több egész szám legnagyobb közös osztóját.</ahelp>"
-
-#. bo9+
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2769249\n"
-"help.text"
-msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
-msgstr "A legnagyobb közös osztó az a legnagyobb pozitív egész szám, amellyel maradék nélkül osztható az összes megadott egész szám."
-
-#. WXs%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150643\n"
-"239\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. GLd?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154524\n"
-"240\n"
-"help.text"
-msgid "GCD(Integer1; Integer2; ...; Integer30)"
-msgstr "GCD(egész_1; egész_2; ...; egész_30)"
-
-#. ]\HL
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149340\n"
-"241\n"
-"help.text"
-msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
-msgstr "Az <emph>egész_1 – egész_30</emph> legfeljebb 30 egész szám, amelyek legnagyobb közös osztóját meg kívánja határozni."
-
-#. hRx!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3147317\n"
-"242\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. =u`|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151285\n"
-"243\n"
-"help.text"
-msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
-msgstr "A <item type=\"input\">=GCD(16;32;24)</item> a 8-at adja eredményül, mert a 16, 24 és 32 legnagyobb közös osztója 8."
-
-#. %U~/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1604663\n"
-"help.text"
-msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
-msgstr "Ha a B1, B2, B3 cellák a <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> értékeket tartalmazzák, a <item type=\"input\">=GCD(B1:B3)</item> a 3 értéket adja."
-
-#. Xqf\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3151221\n"
-"help.text"
-msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
-msgstr "<bookmark_value>GCD_ADD függvény</bookmark_value>"
-
-#. $$~k
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3151221\n"
-"677\n"
-"help.text"
-msgid "GCD_ADD"
-msgstr "GCD_ADD"
-
-#. q.r:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153257\n"
-"678\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\"> Az eredmény a számlista legnagyobb közös osztója.</ahelp>"
-
-#. 1qr_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3147548\n"
-"679\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 3kXH
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156205\n"
-"680\n"
-"help.text"
-msgid "GCD_ADD(Number(s))"
-msgstr "GCD_ADD(számok)"
-
-#. K$xn
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145150\n"
-"681\n"
-"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "A <emph>számok</emph> egy maximum 30 számot tartalmazó lista."
-
-#. -b`F
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150239\n"
-"682\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. JA!`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159192\n"
-"683\n"
-"help.text"
-msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
-msgstr "A <item type=\"input\">=GCD_ADD(5;15;25)</item> az 5 értéket adja vissza."
-
-#. omj*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3156048\n"
-"help.text"
-msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
-msgstr "<bookmark_value>ISEVEN függvény</bookmark_value><bookmark_value>páros egészek</bookmark_value>"
-
-#. JIlf
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156048\n"
-"245\n"
-"help.text"
-msgid "ISEVEN"
-msgstr "ISEVEN"
-
-#. _r]X
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149169\n"
-"246\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">IGAZ értéket ad vissza, ha a szám páros egész, HAMIS értéket, ha páratlan.</ahelp>"
-
-#. -,)#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146928\n"
-"247\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. vMmv
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151203\n"
-"248\n"
-"help.text"
-msgid "ISEVEN(Value)"
-msgstr "ISEVEN(érték)"
-
-#. O?!Q
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150491\n"
-"249\n"
-"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "<emph>Érték</emph>: a vizsgálni kívánt érték."
-
-#. Q%K3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3445844\n"
-"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
-msgstr "Ha az érték nem egész, a tizedesvessző után álló számjegyek nem lesznek figyelembe véve. Az érték előjele szintén nem számít."
-
-#. A)5I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154136\n"
-"250\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. vM8u
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163813\n"
-"251\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
-msgstr "Az <item type=\"input\">=ISEVEN(48)</item> eredménye IGAZ."
-
-#. fNaW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8378856\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
-msgstr "Az <item type=\"input\">=ISEVEN(33)</item> eredménye HAMIS."
-
-#. UMJ^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7154759\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
-msgstr "Az <item type=\"input\">=ISEVEN(0)</item> eredménye IGAZ."
-
-#. y8.A
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1912289\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
-msgstr "Az <item type=\"input\">=ISEVEN(-2,1)</item> eredménye IGAZ."
-
-#. ,M@b
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5627307\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
-msgstr "Az <item type=\"input\">=ISEVEN(3,999)</item> eredménye HAMIS."
-
-#. %L_0
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3156034\n"
-"help.text"
-msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
-msgstr "<bookmark_value>ISODD függvény</bookmark_value><bookmark_value>páratlan egészek</bookmark_value>"
-
-#. ,v/L
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156034\n"
-"255\n"
-"help.text"
-msgid "ISODD"
-msgstr "ISODD"
-
-#. wa6;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155910\n"
-"256\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">IGAZ értéket ad vissza, ha a szám páratlan, HAMIS értéket, ha a szám páros.</ahelp>"
-
-#. UB=m
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3151006\n"
-"257\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. tSL}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151375\n"
-"258\n"
-"help.text"
-msgid "ISODD(value)"
-msgstr "ISODD(érték)"
-
-#. ,4z3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155139\n"
-"259\n"
-"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "<emph>Érték</emph>: a vizsgálni kívánt érték."
-
-#. T.yc
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9027680\n"
-"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
-msgstr "Ha az érték nem egész, a tizedesvessző után álló számjegyek nem lesznek figyelembe véve. Az érték előjele szintén nem számít."
-
-#. ;QTP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163723\n"
-"260\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. .[k_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155345\n"
-"261\n"
-"help.text"
-msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
-msgstr "Az <item type=\"input\">=ISODD(33)</item> eredménye IGAZ."
-
-#. ?B\A
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9392986\n"
-"help.text"
-msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
-msgstr "Az <item type=\"input\">=ISODD(48)</item> eredménye HAMIS."
-
-#. Ztn2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5971251\n"
-"help.text"
-msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
-msgstr "Az <item type=\"input\">=ISODD(3,999)</item> eredménye IGAZ."
-
-#. R`.P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id4136478\n"
-"help.text"
-msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
-msgstr "Az <item type=\"input\">=ISODD(-3,1)</item> eredménye IGAZ."
-
-#. }o!@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145213\n"
-"help.text"
-msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
-msgstr "<bookmark_value>LCM függvény</bookmark_value><bookmark_value>legkisebb közös többszörös</bookmark_value>"
-
-#. Fr)P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145213\n"
-"265\n"
-"help.text"
-msgid "LCM"
-msgstr "LCM"
-
-#. nv)a
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146814\n"
-"266\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KGV\">Kiszámítja egy vagy több egész szám legkisebb közös többszörösét.</ahelp>"
-
-#. b,qj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3148632\n"
-"267\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ASW4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147279\n"
-"268\n"
-"help.text"
-msgid "LCM(Integer1; Integer2; ...; Integer30)"
-msgstr "LCM(egész_1; egész_2; ...; egész_30)"
-
-#. 5$+F
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156348\n"
-"269\n"
-"help.text"
-msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
-msgstr "Az <emph>egész_1 – egész_30</emph> legfeljebb 30 egész szám, amelyek legkisebb közös többszörösét meg kívánja határozni."
-
-#. !T_p
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156431\n"
-"270\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9\vc
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154914\n"
-"271\n"
-"help.text"
-msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
-msgstr "Ha az <item type=\"input\">512</item>, <item type=\"input\">1024</item> és <item type=\"input\">2000</item> számokat adja meg az egész_1, egész_2 és egész_3 mezőben, a képlet a 128000 eredményt adja vissza."
-
-#. #76t
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3154230\n"
-"help.text"
-msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
-msgstr "<bookmark_value>LCM_ADD függvény</bookmark_value>"
-
-#. 6Qa^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154230\n"
-"684\n"
-"help.text"
-msgid "LCM_ADD"
-msgstr "LCM_ADD"
-
-#. SAOG
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3149036\n"
-"685\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\"> Az eredmény a számlista legkisebb közös többszöröse.</ahelp>"
-
-#. Xg1#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153132\n"
-"686\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 1Y{W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154395\n"
-"687\n"
-"help.text"
-msgid "LCM_ADD(Number(s))"
-msgstr "LCM_ADD(számok)"
-
-#. LqEr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3147377\n"
-"688\n"
-"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "A <emph>számok</emph> egy maximum 30 számot tartalmazó lista."
-
-#. /O]M
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145122\n"
-"689\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. M)h}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145135\n"
-"690\n"
-"help.text"
-msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
-msgstr "Az <item type=\"input\">=LCM_ADD(5;15;25)</item> a 75 értéket adja vissza."
-
-#. RaA_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3155802\n"
-"help.text"
-msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
-msgstr "<bookmark_value>KOMBINÁCIÓK függvény</bookmark_value><bookmark_value>COMBIN függvény, lásd: KOMBINÁCIÓK függvény</bookmark_value><bookmark_value>kombinációk száma</bookmark_value>"
-
-#. 71,2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155802\n"
-"273\n"
-"help.text"
-msgid "COMBIN"
-msgstr "KOMBINÁCIÓK"
-
-#. v5%(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3156172\n"
-"274\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Kiszámítja az adott számú elemből álló kombinációk számát.</ahelp>"
-
-#. Wc#E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156193\n"
-"275\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. !S`6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150223\n"
-"276\n"
-"help.text"
-msgid "COMBIN(Count1; Count2)"
-msgstr "KOMBINÁCIÓK(szám_1; szám_2)"
-
-#. |ZPG
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150313\n"
-"277\n"
-"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "A <emph>szám_1</emph> a halmaz elemeinek száma."
-
-#. Ts]I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153830\n"
-"278\n"
-"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "A <emph>szám_2</emph> a halmazból kiválasztandó elemek száma."
-
-#. f*0x
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6807458\n"
-"help.text"
-msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
-msgstr "A KOMBINÁCIÓK kiszámítja, hogy hányféleképpen választhatunk az elemekből. Legyen például 3 elem a halmazban, A, B és C. Két elemet háromféleképpen választhat ki, nevezetesen AB, AC és BC."
-
-#. Y71r
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7414471\n"
-"help.text"
-msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
-msgstr "A KOMBINÁCIÓK a következő képletet implementálja: szám_1!/(szám_2!*(szám_1-szám_2)!)"
-
-#. wE@(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153171\n"
-"279\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. (H:^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153517\n"
-"280\n"
-"help.text"
-msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
-msgstr "A <item type=\"input\">=KOMBINÁCIÓK(3;2)</item> eredménye 3."
-
-#. NJek
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3150284\n"
-"help.text"
-msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
-msgstr "<bookmark_value>COMBINA függvény</bookmark_value><bookmark_value>ismétléses kombinációk száma</bookmark_value>"
-
-#. bzRP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3150284\n"
-"282\n"
-"help.text"
-msgid "COMBINA"
-msgstr "COMBINA"
-
-#. e8@C
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157894\n"
-"283\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Kiszámítja az adott számú elem ismétléses kombinációinak számát.</ahelp>"
-
-#. .Q1(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145752\n"
-"284\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. k%k4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145765\n"
-"285\n"
-"help.text"
-msgid "COMBINA(Count1; Count2)"
-msgstr "COMBINA(szám_1; szám_2)"
-
-#. 0^=T
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153372\n"
-"286\n"
-"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "A <emph>szám_1</emph> a halmaz elemeinek száma."
-
-#. RL2}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155544\n"
-"287\n"
-"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "A <emph>szám_2</emph> a halmazból kiválasztandó elemek száma."
-
-#. B1Y1
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1997131\n"
-"help.text"
-msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
-msgstr "A COMBINA kiszámítja, hogy hányféleképpen választhatunk az elemekből, ha a kiválasztás sorrendje nem fontos, és az elemek ismétlődése megengedett. Legyen például 3 elem a halmazban, A, B és C. Két elemet hatféleképpen választhat ki, nevezetesen AA, AB, AC, BB, BC és CC."
-
-#. 7Z#d
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2052064\n"
-"help.text"
-msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
-msgstr "A COMBINA a következő képletet implementálja: (szám_1+szám_2-1)! / (szám_2!(szám_1-1)!)"
-
-#. `:,X
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154584\n"
-"288\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 5WR3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152904\n"
-"289\n"
-"help.text"
-msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
-msgstr "A <item type=\"input\">=COMBINA(3;2)</item> eredménye 6."
-
-#. \(.*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3156086\n"
-"help.text"
-msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
-msgstr "<bookmark_value>CSONK függvény</bookmark_value><bookmark_value>TRUNC függvény, lásd: CSONK függvény</bookmark_value><bookmark_value>tizedesjegyek;levágás</bookmark_value>"
-
-#. DEjs
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156086\n"
-"291\n"
-"help.text"
-msgid "TRUNC"
-msgstr "CSONK"
-
-#. 6dmy
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157866\n"
-"292\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Levágja a szám tizedesjegyeit.</ahelp>"
-
-#. B[,b
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3148499\n"
-"293\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 3|hT
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148511\n"
-"294\n"
-"help.text"
-msgid "TRUNC(Number; Count)"
-msgstr "CSONK(szám; darabszám)"
-
-#. !i08
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150796\n"
-"295\n"
-"help.text"
-msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
-msgstr "Kerekíti a <emph>számot</emph> úgy, hogy csak a <emph>darabszám</emph> paraméterben meghatározott számú tizedesjegyet hagy meg. A felesleges tizedesjegyeket egyszerűen levágja az előjeltől függetlenül."
-
-#. Ws$|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150816\n"
-"296\n"
-"help.text"
-msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
-msgstr "A <item type=\"literal\">CSONK(szám; 0)</item> pozitív számokra úgy viselkedik, mint az <item type=\"literal\">INT(szám)</item> , de negatív számok esetén 0 felé kerekít."
-
-#. D^Zp
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148548\n"
-"557\n"
-"help.text"
-msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
-msgstr "Az eredmény <emph>látható</emph> tizedesjegyeinek száma az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Számítás</link> helyen van meghatározva."
-
-#. 1Xfh
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152555\n"
-"297\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. jeVr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152569\n"
-"298\n"
-"help.text"
-msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
-msgstr "A <item type=\"input\">=CSONK(1,239;2)</item> eredménye 1,23. A 9 elvész."
-
-#. c(^)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7050080\n"
-"help.text"
-msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
-msgstr "A <item type=\"input\">=CSONK(-1,234999;3)</item> eredménye -1,234. A 9-esek elvesznek."
-
-#. owr^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3153601\n"
-"help.text"
-msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
-msgstr "<bookmark_value>LN függvény</bookmark_value><bookmark_value>természetes alapú logaritmus</bookmark_value>"
-
-#. 5D=U
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153601\n"
-"301\n"
-"help.text"
-msgid "LN"
-msgstr "LN"
-
-#. cU$h
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154974\n"
-"302\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_LN\">Kiszámítja egy szám e állandón alapuló természetes logaritmusát.</ahelp> Az e állandó értéke megközelítőleg 2,71828182845904."
-
-#. rJH}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154993\n"
-"303\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. aPW~
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155284\n"
-"304\n"
-"help.text"
-msgid "LN(Number)"
-msgstr "LN(szám)"
-
-#. 1HM_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155297\n"
-"305\n"
-"help.text"
-msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
-msgstr "<emph>Szám</emph>: az érték, amelynek természetes alapú logaritmusát ki kívánja számítani."
-
-#. sq`#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153852\n"
-"306\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. %y#m
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153866\n"
-"307\n"
-"help.text"
-msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
-msgstr "Az <item type=\"input\">=LN(3)</item> kiszámítja 3 természetes alapú logaritmusát (kb. 1,0986)."
-
-#. T5pW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5747245\n"
-"help.text"
-msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
-msgstr "Az <item type=\"input\">=LN(KITEVŐ(321))</item> eredménye 321."
-
-#. $PKX
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3109813\n"
-"help.text"
-msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
-msgstr "<bookmark_value>LOG függvény</bookmark_value><bookmark_value>logaritmus</bookmark_value>"
-
-#. wDzC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3109813\n"
-"311\n"
-"help.text"
-msgid "LOG"
-msgstr "LOG"
-
-#. x6SB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3109841\n"
-"312\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG\">Egy szám megadott alapú logaritmusát adja eredményül.</ahelp>"
-
-#. lCqU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144719\n"
-"313\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. +=Iu
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144732\n"
-"314\n"
-"help.text"
-msgid "LOG(Number; Base)"
-msgstr "LOG(szám; alap)"
-
-#. Xu)0
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144746\n"
-"315\n"
-"help.text"
-msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
-msgstr "<emph>Szám</emph>: az érték, amelynek logaritmusát ki kívánja számítani."
-
-#. /JE[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152840\n"
-"316\n"
-"help.text"
-msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
-msgstr "<emph>Alap</emph> (opcionális): a logaritmusszámítás alapja. Ha nincs megadva, akkor 10-es alappal számol a képlet."
-
-#. iCCl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152860\n"
-"317\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. [X/:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3154429\n"
-"318\n"
-"help.text"
-msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
-msgstr "A <item type=\"input\">=LOG(10;3)</item> kiszámítja 10 3 alapú logaritmusát (kb. 2,0959)."
-
-#. l/#Z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5577562\n"
-"help.text"
-msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
-msgstr "A <item type=\"input\">=LOG(7^4;7)</item> eredménye 4."
-
-#. /Yn\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3154187\n"
-"help.text"
-msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
-msgstr "<bookmark_value>LOG10 függvény</bookmark_value><bookmark_value>tízes alapú logaritmus</bookmark_value>"
-
-#. LXIl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3154187\n"
-"322\n"
-"help.text"
-msgid "LOG10"
-msgstr "LOG10"
-
-#. IQ,+
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155476\n"
-"323\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG10\">Kiszámítja a szám tízes alapú logaritmusát.</ahelp>"
-
-#. NL4#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155494\n"
-"324\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 4wrR
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159294\n"
-"325\n"
-"help.text"
-msgid "LOG10(Number)"
-msgstr "LOG10(szám)"
-
-#. ]O%A
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159308\n"
-"326\n"
-"help.text"
-msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
-msgstr "Kiszámítja a <emph>szám</emph> tízes alapú logaritmusát."
-
-#. /yn:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3159328\n"
-"327\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. NYWF
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157916\n"
-"328\n"
-"help.text"
-msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
-msgstr "A <item type=\"input\">=LOG10(5)</item> kiszámítja 5 tízes alapú logaritmusát (kb. 0,69897)."
-
-#. zpyJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3152518\n"
-"help.text"
-msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
-msgstr "<bookmark_value>PLAFON függvény</bookmark_value><bookmark_value>CEILING függvény, lásd: PLAFON függvény</bookmark_value><bookmark_value>kerekítés;felkerekítés a növekmény legközelebbi többszöröséhez</bookmark_value>"
-
-#. T}X^
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152518\n"
-"332\n"
-"help.text"
-msgid "CEILING"
-msgstr "PLAFON"
-
-#. `^I-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153422\n"
-"558\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">A számot a növekmény legközelebbi többszöröséhez felfelé kerekíti.</ahelp>"
-
-#. V][0
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3153440\n"
-"334\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. |6QB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153454\n"
-"335\n"
-"help.text"
-msgid "CEILING(Number; Significance; Mode)"
-msgstr "PLAFON(szám; növekmény; mód)"
-
-#. -KC4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3153467\n"
-"336\n"
-"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded up."
-msgstr "<emph>Szám</emph>: maga a felfelé kerekítendő szám."
-
-#. 1oM6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155000\n"
-"337\n"
-"help.text"
-msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
-msgstr "<emph>Növekmény</emph>: a szám, amelynek valamely többszörösére az értéket felfelé kerekíteni kívánja."
-
-#. :QQw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155020\n"
-"559\n"
-"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "A <emph>mód</emph> opcionális érték. Ha a mód meg van adva, és értéke nem nulla, valamint a szám és a növekmény negatív, akkor a kerekítés a szám abszolút értékét figyelembe véve történik. Ez a paraméter elvész a Microsoft Excel programba történő exportálás során, mivel az Excel nem ismeri a függvény harmadik paraméterét."
-
-#. nmGw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163792\n"
-"629\n"
-"help.text"
-msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
-msgstr "Ha a szám és a növekmény paraméter egyaránt negatív, a mód pedig nulla vagy nincs megadva, akkor a $[officename], illetve az Excel eredményei eltérők lesznek az importálást követően. A munkafüzet Excelbe exportálásakor használja a mód=1 értéket, hogy ugyanaz az eredmény jöjjön ki Excelben és Calcban."
-
-#. B9?k
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145697\n"
-"338\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. \oj2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145710\n"
-"339\n"
-"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
-msgstr "A <item type=\"input\">=PLAFON(-11;-2)</item> eredménye -10."
-
-#. Q5Z[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145725\n"
-"340\n"
-"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
-msgstr "A <item type=\"input\">=PLAFON(-11;-2;0)</item> eredménye -10."
-
-#. Vk7B
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145740\n"
-"341\n"
-"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
-msgstr "A <item type=\"input\">=PLAFON(-11;-2;1)</item> eredménye -12."
-
-#. fg7-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3157762\n"
-"help.text"
-msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "<bookmark_value>PI függvény</bookmark_value>"
-
-#. 6-HJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157762\n"
-"343\n"
-"help.text"
-msgid "PI"
-msgstr "PI"
-
-#. AE-F
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157790\n"
-"344\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PI\">A π matematikai állandó 14 tizedesjegyre kerekített értékét adja vissza, ami 3,14159265358979.</ahelp>"
-
-#. 9sK}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157809\n"
-"345\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. HCVo
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157822\n"
-"346\n"
-"help.text"
-msgid "PI()"
-msgstr "PI()"
-
-#. J$L:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157836\n"
-"347\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. y~0:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152370\n"
-"348\n"
-"help.text"
-msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
-msgstr "A <item type=\"input\">=PI()</item> eredménye 3,14159265358979."
-
-#. h^W@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3152418\n"
-"help.text"
-msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
-msgstr "<bookmark_value>MULTINOMIAL függvény</bookmark_value>"
-
-#. @3VO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152418\n"
-"635\n"
-"help.text"
-msgid "MULTINOMIAL"
-msgstr "MULTINOMIAL"
-
-#. {q?)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152454\n"
-"636\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Kiszámítja az argumentumok összege faktoriálisának és az argumentumok faktoriálisa szorzatának hányadosát.</ahelp>"
-
-#. p-#E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155646\n"
-"637\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. jg`t
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155660\n"
-"638\n"
-"help.text"
-msgid "MULTINOMIAL(Number(s))"
-msgstr "MULTINOMIAL(számok)"
-
-#. m|+M
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155673\n"
-"639\n"
-"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "A <emph>számok</emph> egy maximum 30 számot tartalmazó lista."
-
-#. 9Kmu
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155687\n"
-"640\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 9X64
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3155701\n"
-"641\n"
-"help.text"
-msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
-msgstr "A <item type=\"input\">=MULTINOMIAL(F11:H11)</item> függvény az 1260 értéket adja vissza, ha az F11:H11 cellatartomány a <item type=\"input\">2</item>, <item type=\"input\">3</item> és <item type=\"input\">4</item> értékeket tartalmazza. Ez megfelel a =(2+3+4)! / (2!*3!*4!) képletnek."
-
-#. Y`jy
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3155717\n"
-"help.text"
-msgid "<bookmark_value>POWER function</bookmark_value>"
-msgstr "<bookmark_value>HATVÁNY függvény</bookmark_value><bookmark_value>POWER függvény, lásd: HATVÁNY függvény</bookmark_value>"
-
-#. _Va`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3155717\n"
-"350\n"
-"help.text"
-msgid "POWER"
-msgstr "HATVÁNY"
-
-#. e]K_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159495\n"
-"351\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Hatványoz egy számot.</ahelp>"
-
-#. OZ|)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3159513\n"
-"352\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. %*^P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159526\n"
-"353\n"
-"help.text"
-msgid "POWER(Base; Exponent)"
-msgstr "HATVÁNY(alap; kitevő)"
-
-#. Ze?c
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159540\n"
-"354\n"
-"help.text"
-msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
-msgstr "Az <emph>alapot</emph> a <emph>kitevőedik</emph> hatványra emeli."
-
-#. ][J*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5081637\n"
-"help.text"
-msgid "The same result may be achieved by using the exponentiation operator ^:"
-msgstr "Ugyanez az eredmény érhető el az ^ hatványozás operátorral:"
-
-#. P,(y
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9759514\n"
-"help.text"
-msgid "<item type=\"literal\">Base^Exponent</item>"
-msgstr "<item type=\"literal\">alap^kitevő</item>"
-
-#. UBi}
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3159580\n"
-"356\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. OCZ)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3159594\n"
-"357\n"
-"help.text"
-msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
-msgstr "A <item type=\"input\">=HATVÁNY(4;3)</item> eredménye 64, mert ennyi 4 harmadik hatványa."
-
-#. I-hU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1614429\n"
-"help.text"
-msgid "=4^3 also returns 4 to the power of 3."
-msgstr "A =4^3 szintén 4 harmadik hatványát számítja ki."
-
-#. R=SA
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3152651\n"
-"help.text"
-msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
-msgstr "<bookmark_value>SERIESSUM függvény</bookmark_value>"
-
-#. [F,_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152651\n"
-"642\n"
-"help.text"
-msgid "SERIESSUM"
-msgstr "SERIESSUM"
-
-#. ;B`V
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152688\n"
-"643\n"
-"help.text"
-msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
-msgstr "<ahelp hid=\".\">Egy hatványsor első tagjainak összegét adja meg.</ahelp>"
-
-#. $KRU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152708\n"
-"644\n"
-"help.text"
-msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
-msgstr "SERIESSUM(x;n;m;Együtthatók) = Együttható_1*x^n + Együttható_2*x^(n+m) + Együttható_3*x^(n+2m) +...+ Együttható_i*x^(n+(i-1)m)"
-
-#. )ts=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152724\n"
-"645\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. VV*l
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_idN11BD9\n"
-"help.text"
-msgid "SERIESSUM(X; N; M; Coefficients)"
-msgstr "SERIESSUM(x; n; m; együtthatók)"
-
-#. 2UEG
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152737\n"
-"646\n"
-"help.text"
-msgid "<emph>X</emph> is the input value for the power series."
-msgstr "Az <emph>x</emph> a hatványsor bemeneti értéke."
-
-#. ^3kw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144344\n"
-"647\n"
-"help.text"
-msgid "<emph>N</emph> is the initial power"
-msgstr "Az <emph>n</emph> a kezdő hatványkitevő."
-
-#. ?)?h
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144357\n"
-"648\n"
-"help.text"
-msgid "<emph>M</emph> is the increment to increase N"
-msgstr "Az <emph>m</emph> a növekmény, amivel n nő."
-
-#. g(aB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144370\n"
-"649\n"
-"help.text"
-msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
-msgstr "Az <emph>együtthatók</emph> az együtthatók sorozata. Minden egyes együtthatóval a sorozatösszeg egy szakasszal bővül."
-
-#. JO]*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3144386\n"
-"help.text"
-msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
-msgstr "<bookmark_value>SZORZAT függvény</bookmark_value><bookmark_value>PRODUCT függvény, lásd: SZORZAT függvény</bookmark_value><bookmark_value>számok;szorzás</bookmark_value><bookmark_value>szorzás;számok</bookmark_value>"
-
-#. hl|3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144386\n"
-"361\n"
-"help.text"
-msgid "PRODUCT"
-msgstr "SZORZAT"
-
-#. L#6E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144414\n"
-"362\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Összeszorozza az argumentumban megadott számokat, és eredményül a szorzatot adja.</ahelp>"
-
-#. ac-d
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144433\n"
-"363\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. #^WW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144446\n"
-"364\n"
-"help.text"
-msgid "PRODUCT(Number1; Number2; ...; Number30)"
-msgstr "SZORZAT(szám_1; szám_2; ...; szám_30)"
-
-#. f2:\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144460\n"
-"365\n"
-"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
-msgstr "A <emph>szám_1–szám_30</emph> legfeljebb 30 szám, amelyre meg kívánja határozni a szorzatot."
-
-#. Fd8N
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1589098\n"
-"help.text"
-msgid "PRODUCT returns number1 * number2 * number3 * ..."
-msgstr "A SZORZAT eredmény szám_1 * szám_2 * szám_3 * ..."
-
-#. GFCT
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144480\n"
-"366\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. |:\P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144494\n"
-"367\n"
-"help.text"
-msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
-msgstr "A <item type=\"input\">=SZORZAT(2;3;4)</item> eredménye 24."
-
-#. Zq[b
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3160340\n"
-"help.text"
-msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
-msgstr "<bookmark_value>NÉGYZETÖSSZEG függvény</bookmark_value><bookmark_value>SUMSQ függvény, lásd: NÉGYZETÖSSZEG függvény</bookmark_value><bookmark_value>négyzetösszegek</bookmark_value><bookmark_value>összegek;négyzetszámok</bookmark_value>"
-
-#. #\sx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3160340\n"
-"369\n"
-"help.text"
-msgid "SUMSQ"
-msgstr "NÉGYZETÖSSZEG"
-
-#. 62/S
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3160368\n"
-"370\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Számok négyzetösszegének kiszámításához (az argumentumok négyzetének összesítéséhez) írja be a számokat a szövegmezőkbe.</ahelp>"
-
-#. ?]4g
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3160388\n"
-"371\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. zri8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3160402\n"
-"372\n"
-"help.text"
-msgid "SUMSQ(Number1; Number2; ...; Number30)"
-msgstr "NÉGYZETÖSSZEG(szám_1; szám_2; ...; szám_30)"
-
-#. [npQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3160415\n"
-"373\n"
-"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
-msgstr "A <emph>szám_1–szám_30</emph> legfeljebb 30 szám, amelyre meg kívánja határozni a négyzetösszeget."
-
-#. +#pL
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3160436\n"
-"374\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. M7{_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3160449\n"
-"375\n"
-"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
-msgstr "Ha a <item type=\"input\">2</item>, <item type=\"input\">3</item> és <item type=\"input\">4</item> számot adja meg a szám 1, 2 és 3 mezőben, a képlet a 29-et adja vissza eredményként."
-
-#. $lCk
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3158247\n"
-"help.text"
-msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
-msgstr "<bookmark_value>MARADÉK függvény</bookmark_value><bookmark_value>MOD függvény, lásd: MARADÉK függvény</bookmark_value><bookmark_value>osztás maradéka</bookmark_value>"
-
-#. Mk!J
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3158247\n"
-"387\n"
-"help.text"
-msgid "MOD"
-msgstr "MARADÉK"
-
-#. ;PC/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158276\n"
-"388\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_REST\">A maradékot adja eredményül egy egész szám másik egész számmal való osztása után.</ahelp>"
-
-#. -/(J
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3158294\n"
-"389\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. if|q
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158308\n"
-"390\n"
-"help.text"
-msgid "MOD(Dividend; Divisor)"
-msgstr "MARADÉK(osztandó; osztó)"
-
-#. PS5d
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158321\n"
-"391\n"
-"help.text"
-msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
-msgstr "Egész argumentumokra a függvény az osztandó modulo osztó értékét adja vissza, ami a maradék az <emph>osztandó</emph> <emph>osztóval</emph> történt osztása után."
-
-#. S)n.
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158341\n"
-"392\n"
-"help.text"
-msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
-msgstr "A függvény <item type=\"literal\">osztandó - osztó * INT(osztandó/osztó)</item> képlettel van megvalósítva, és ez a képlet adja az eredményt, ha az argumentumok nem egészek."
-
-#. =`h.
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3158361\n"
-"393\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. P3:?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158374\n"
-"394\n"
-"help.text"
-msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
-msgstr "A <item type=\"input\">=MARADÉK(22;3)</item> 1-et ad eredményül, mert ez a maradék 22-t 3-mal osztva."
-
-#. qnR=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1278420\n"
-"help.text"
-msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
-msgstr "A <item type=\"input\">=MARADÉK(11,25;2,5)</item> eredménye 1,25."
-
-#. [;(h
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3144592\n"
-"help.text"
-msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
-msgstr "<bookmark_value>QUOTIENT függvény</bookmark_value><bookmark_value>osztás</bookmark_value>"
-
-#. x_Mu
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144592\n"
-"652\n"
-"help.text"
-msgid "QUOTIENT"
-msgstr "QUOTIENT"
-
-#. oHOT
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144627\n"
-"653\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Visszaadja egy osztás egész részét.</ahelp>"
-
-#. Xvo#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144646\n"
-"654\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. t?.)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144659\n"
-"655\n"
-"help.text"
-msgid "QUOTIENT(Numerator; Denominator)"
-msgstr "QUOTIENT(számláló; nevező)"
-
-#. (k%]
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9038972\n"
-"help.text"
-msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
-msgstr "Visszaadja a <emph>számláló</emph> a <emph>nevezővel</emph> való osztásának egész részét."
-
-#. 3No{
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7985168\n"
-"help.text"
-msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
-msgstr "A QUOTIENT ekvivalens az <item type=\"literal\">INT(osztandó/osztó)</item> képlettel, kivéve hogy a hibákat eltérő hibakódokkal jelentheti."
-
-#. VxVh
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144674\n"
-"656\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 16Bx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144687\n"
-"657\n"
-"help.text"
-msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
-msgstr "A <item type=\"input\">=QUOTIENT(11;3)</item> függvény a 3 értéket adja vissza. A kettes maradék nem jelenik meg."
-
-#. N3x_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3144702\n"
-"help.text"
-msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
-msgstr "<bookmark_value>RADIÁN függvény</bookmark_value><bookmark_value>átváltás;fokot radiánba</bookmark_value><bookmark_value>RADIANS függvény, lásd: RADIÁN függvény</bookmark_value>"
-
-#. 4%zj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144702\n"
-"377\n"
-"help.text"
-msgid "RADIANS"
-msgstr "RADIÁN"
-
-#. $O]n
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158025\n"
-"378\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RAD\">Átszámítja a fok értékeket radiánra.</ahelp>"
-
-#. [uu;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3158042\n"
-"379\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. i8Pj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158055\n"
-"380\n"
-"help.text"
-msgid "RADIANS(Number)"
-msgstr "RADIÁN(szám)"
-
-#. 9buv
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158069\n"
-"381\n"
-"help.text"
-msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
-msgstr "A <emph>szám</emph> a radiánra átszámítandó szög mértéke fokban."
-
-#. ^awr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id876186\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. ePKt
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3939634\n"
-"help.text"
-msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
-msgstr "A <item type=\"input\">=RADIÁN(90)</item> eredménye 1,5707963267949, ami PI/2-vel egyezik meg a Calc pontossága szerint."
-
-#. 9l)V
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3158121\n"
-"help.text"
-msgid "<bookmark_value>ROUND function</bookmark_value>"
-msgstr "<bookmark_value>KEREK függvény</bookmark_value><bookmark_value>ROUND függvény, lásd: KEREK függvény</bookmark_value>"
-
-#. /#nq
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3158121\n"
-"398\n"
-"help.text"
-msgid "ROUND"
-msgstr "KEREK"
-
-#. !l9E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158150\n"
-"399\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Egy szám meghatározott számú tizedesjegyre kerekített értékét adja eredményül.</ahelp>"
-
-#. /)3\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3158169\n"
-"400\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. nL3-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158182\n"
-"401\n"
-"help.text"
-msgid "ROUND(Number; Count)"
-msgstr "KEREK(szám; darabszám)"
-
-#. Larm
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3158196\n"
-"402\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
-msgstr "Visszaadja a <emph>szám</emph> <emph>darabszám</emph> tizedesjegyre kerekített értékét. Ha a darabszám nincs megadva, vagy nulla, akkor a függvény a legközelebbi egészre kerekít. Ha a darabszám negatív, a függvény a legközelebbi 10, 100, 1000 stb.-re kerekít."
-
-#. h}V?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id599688\n"
-"help.text"
-msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
-msgstr "Ez a függvény a legközelebbi egészre kerekít. Alternatívaként lásd a KEREK.LE és KEREK.FEL függvényeket."
-
-#. I5,y
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145863\n"
-"404\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. qr{{
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145876\n"
-"405\n"
-"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
-msgstr "A <item type=\"input\">=KEREK(2,348;2)</item> eredménye 2,35."
-
-#. :l*S
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3145899\n"
-"406\n"
-"help.text"
-msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
-msgstr "A <item type=\"input\">=KEREK(-32,4834;3)</item> eredménye -32,483. Az összes tizedesjegy láthatóvá tételéhez módosítsa a cellaformátumot."
-
-#. e+[I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1371501\n"
-"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
-msgstr "A <item type=\"input\">=KEREK(2,348;0)</item> eredménye 2."
-
-#. `oJX
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id4661702\n"
-"help.text"
-msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
-msgstr "A <item type=\"input\">=KEREK(2,5)</item> eredménye 3."
-
-#. v(HZ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7868892\n"
-"help.text"
-msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
-msgstr "A <item type=\"input\">=KEREK(987,65;-2)</item> eredménye 1000."
-
-#. ALlP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145991\n"
-"help.text"
-msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
-msgstr "<bookmark_value>KEREK.LE függvény</bookmark_value><bookmark_value>ROUNDDOWN függvény, lásd: KEREK.LE függvény</bookmark_value>"
-
-#. G0O8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145991\n"
-"24\n"
-"help.text"
-msgid "ROUNDDOWN"
-msgstr "KEREK.LE"
-
-#. s,-3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146020\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Nullához lefelé kerekít egy számot az adott pontossággal.</ahelp>"
-
-#. KK@[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3146037\n"
-"26\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ::I-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146051\n"
-"27\n"
-"help.text"
-msgid "ROUNDDOWN(Number; Count)"
-msgstr "KEREK.LE(szám; darabszám)"
-
-#. YYZM
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146064\n"
-"28\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
-msgstr "Visszaadja a <emph>szám</emph> <emph>darabszám</emph> tizedesjegyre lefelé (nulla felé) kerekített értékét. Ha a darabszám nincs megadva, vagy nulla, akkor a függvény a legközelebbi egészre kerekít. Ha a darabszám negatív, a függvény a legközelebbi 10, 100, 1000 stb.-re kerekít."
-
-#. S1Ri
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2188787\n"
-"help.text"
-msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
-msgstr "Ez a függvény nullához lefelé kerekít. Alternatívaként lásd a KEREK.FEL és KEREK függvényeket."
-
-#. @vZ#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163164\n"
-"30\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. EQFO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163178\n"
-"31\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
-msgstr "A <item type=\"input\">=KEREK.LE(1,234;2)</item> eredménye 1,23."
-
-#. M%s\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5833307\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
-msgstr "A <item type=\"input\">=KEREK.LE(45,67;0)</item> eredménye 45."
-
-#. Lnp*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7726676\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
-msgstr "A <item type=\"input\">=KEREK.LE(-45,#67)</item> eredménye -45."
-
-#. $E~+
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
-msgstr "A <item type=\"input\">=KEREK.LE(987,65;-2)</item> eredménye 900."
-
-#. F;E7
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3163268\n"
-"help.text"
-msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
-msgstr "<bookmark_value>KEREK.FEL függvény</bookmark_value><bookmark_value>ROUNDUP függvény, lásd: KEREK.FEL függvény</bookmark_value>"
-
-#. j:xo
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163268\n"
-"140\n"
-"help.text"
-msgid "ROUNDUP"
-msgstr "KEREK.FEL"
-
-#. 7~5U
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163297\n"
-"141\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Nullától felfelé kerekít egy számot az adott pontossággal.</ahelp>"
-
-#. 200-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163315\n"
-"142\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Zg4R
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163328\n"
-"143\n"
-"help.text"
-msgid "ROUNDUP(Number; Count)"
-msgstr "KEREK.FEL(szám; darabszám)"
-
-#. 2~FF
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163342\n"
-"144\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
-msgstr "Visszaadja a <emph>szám</emph> <emph>darabszám</emph> tizedesjegyre felfelé (nullától felfelé) kerekített értékét. Ha a darabszám nincs megadva, vagy nulla, akkor a függvény a legközelebbi egészre kerekít. Ha a darabszám negatív, a függvény a legközelebbi 10, 100, 1000 stb.-re kerekít."
-
-#. |$Ce
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9573961\n"
-"help.text"
-msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
-msgstr "Ez a függvény nullától felfelé kerekít. Alternatívaként lásd a KEREK.LE és KEREK függvényeket."
-
-#. Ralp
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163381\n"
-"146\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. CB1a
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144786\n"
-"147\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
-msgstr "A <item type=\"input\">=KEREK.FEL(1,1111;2)</item> eredménye 1,12."
-
-#. (p6)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7700430\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
-msgstr "A <item type=\"input\">=KEREK.FEL(1,2345;1)</item> eredménye 1,3."
-
-#. oVTy
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1180455\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
-msgstr "A <item type=\"input\">=KEREK.FEL(45,67;0)</item> eredménye 46."
-
-#. hkqX
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3405560\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
-msgstr "A <item type=\"input\">=KEREK.FEL(-45,67)</item> eredménye -46."
-
-#. _g5m
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3409527\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
-msgstr "A <item type=\"input\">=KEREK.FEL(987,65;-2)</item> eredménye 1000."
-
-#. g1Rb
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id5256537\n"
-"help.text"
-msgid "<bookmark_value>SEC function</bookmark_value>"
-msgstr "<bookmark_value>SEC függvény</bookmark_value>"
-
-#. #3im
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id5187204\n"
-"149\n"
-"help.text"
-msgid "SEC"
-msgstr "SEC"
-
-#. RR3[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9954962\n"
-"150\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SECANT\">Kiszámítja egy (radiánban) megadott szög szekánsát. Egy szög szekánsa megegyezik a szög koszinuszának reciprokával.</ahelp>"
-
-#. |I6h
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id422243\n"
-"151\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ZShO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2055913\n"
-"152\n"
-"help.text"
-msgid "SEC(Number)"
-msgstr "SEC(szám)"
-
-#. p)v{
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9568170\n"
-"153\n"
-"help.text"
-msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
-msgstr "Kiszámítja a <emph>szám</emph> (trigonometrikus) szekánsát, a szög radiánban adható meg."
-
-#. :7?d
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9047465\n"
-"help.text"
-msgid "To return the secant of an angle in degrees, use the RADIANS function."
-msgstr "Ha fokban megadott szögek szekánsát akarja meghatározni, használja a RADIÁN függvényt."
-
-#. ?9n!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id9878918\n"
-"154\n"
-"help.text"
-msgid "Examples"
-msgstr "Példák"
-
-#. f5`%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6935513\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
-msgstr "A <item type=\"input\">=SEC((PI()/4)</item> eredménye megközelítőleg 1.4142135624, PI/4 radián koszinuszának inverze."
-
-#. 04mD
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3954287\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
-msgstr "A <item type=\"input\">=SEC(RADIANS(60))</item> eredménye 2, 60 fok szekánsa."
-
-#. CUFi
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id840005\n"
-"help.text"
-msgid "<bookmark_value>SECH function</bookmark_value>"
-msgstr "<bookmark_value>SECH függvény</bookmark_value>"
-
-#. |7mH
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id8661934\n"
-"159\n"
-"help.text"
-msgid "SECH"
-msgstr "SECH"
-
-#. 2!VU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id408174\n"
-"160\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SECANTHYP\">Kiszámítja egy szám hiperbolikus szekánsát.</ahelp>"
-
-#. #@{5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id875988\n"
-"161\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. DNq[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id4985391\n"
-"162\n"
-"help.text"
-msgid "SECH(Number)"
-msgstr "SECH(szám)"
-
-#. RpG(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1952124\n"
-"163\n"
-"help.text"
-msgid "Returns the hyperbolic secant of <emph>Number</emph>."
-msgstr "A <emph>szám</emph> hiperbolikus szekánsát számítja ki."
-
-#. O6s6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id9838764\n"
-"164\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. xa.I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1187764\n"
-"165\n"
-"help.text"
-msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
-msgstr "A <item type=\"input\">=SECH(0)</item> eredménye 1, 0 hiperbolikus szekánsa."
-
-#. oHz_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3144877\n"
-"help.text"
-msgid "<bookmark_value>SIN function</bookmark_value>"
-msgstr "<bookmark_value>SIN függvény</bookmark_value>"
-
-#. r^#8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144877\n"
-"408\n"
-"help.text"
-msgid "SIN"
-msgstr "SIN"
-
-#. ;^}b
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144906\n"
-"409\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SIN\">Kiszámítja egy adott szög (radiánban) szinuszát.</ahelp>"
-
-#. k!cQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144923\n"
-"410\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. s#_c
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144937\n"
-"411\n"
-"help.text"
-msgid "SIN(Number)"
-msgstr "SIN(szám)"
-
-#. f5cE
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144950\n"
-"412\n"
-"help.text"
-msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
-msgstr "Kiszámítja a <emph>szám</emph> (trigonometrikus) szinuszát, a szög radiánban adható meg."
-
-#. kp92
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8079470\n"
-"help.text"
-msgid "To return the sine of an angle in degrees, use the RADIANS function."
-msgstr "Ha fokban megadott szögek szinuszát akarja meghatározni, használja a RADIÁN függvényt."
-
-#. (NFJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3144969\n"
-"413\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. vhnS
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3144983\n"
-"414\n"
-"help.text"
-msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
-msgstr "A <item type=\"input\">=SIN(PI()/2)</item> eredménye 1, a PI/2 radián szinusza."
-
-#. p}Lw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3916440\n"
-"help.text"
-msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
-msgstr "A <item type=\"input\">=SIN(RADIÁN(30))</item> eredménye 0,5, 30 fok szinusza."
-
-#. n+Vl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3163397\n"
-"help.text"
-msgid "<bookmark_value>SINH function</bookmark_value>"
-msgstr "<bookmark_value>SINH függvény</bookmark_value>"
-
-#. 7@r8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163397\n"
-"418\n"
-"help.text"
-msgid "SINH"
-msgstr "SINH"
-
-#. }_j(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163426\n"
-"419\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Kiszámítja egy szám hiperbolikus szinuszát.</ahelp>"
-
-#. :gku
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163444\n"
-"420\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. o9:t
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163457\n"
-"421\n"
-"help.text"
-msgid "SINH(Number)"
-msgstr "SINH(szám)"
-
-#. lcFt
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163471\n"
-"422\n"
-"help.text"
-msgid "Returns the hyperbolic sine of <emph>Number</emph>."
-msgstr "A <emph>szám</emph> hiperbolikus szinuszát számítja ki."
-
-#. cW~$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163491\n"
-"423\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. DJ\0
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163504\n"
-"424\n"
-"help.text"
-msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
-msgstr "A <item type=\"input\">=SINH(0)</item> eredménye 0, a 0 hiperbolikus szinusza."
-
-#. }5s?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3163596\n"
-"help.text"
-msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
-msgstr "<bookmark_value>SZUM függvény</bookmark_value><bookmark_value>SUM függvény, lásd: SZUM függvény</bookmark_value><bookmark_value>összeadás;számok cellatartományokban</bookmark_value>"
-
-#. E7Vh
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163596\n"
-"428\n"
-"help.text"
-msgid "SUM"
-msgstr "SZUM"
-
-#. /r77
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163625\n"
-"429\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Összeadja a cellatartományban lévő számokat.</ahelp>"
-
-#. eo1J
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163643\n"
-"430\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. *1GE
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163656\n"
-"431\n"
-"help.text"
-msgid "SUM(Number1; Number2; ...; Number30)"
-msgstr "SZUM(szám_1; szám_2; ...; szám_30)"
-
-#. -,v\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163671\n"
-"432\n"
-"help.text"
-msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
-msgstr "A <emph>szám_1 – szám_30</emph> legfeljebb 30 szám, amelynek meg kívánja határozni az összegét."
-
-#. #ovh
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163690\n"
-"433\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. HFn;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163704\n"
-"434\n"
-"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
-msgstr "Ha a <item type=\"input\">2</item>, <item type=\"input\">3</item> és <item type=\"input\">4</item> számot adja meg a szám_1, szám_2 és szám_3 mezőben, a képlet a 9-et adja vissza eredményként."
-
-#. 1RcR
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151740\n"
-"556\n"
-"help.text"
-msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
-msgstr "A <item type=\"input\">=SZUM(A1;A3;B5)</item> a három cella összegét számítja ki. A <item type=\"input\">=SZUM(A1:E10)</item> az A1-E10 cellatartomány valamennyi cellájának összegét számítja ki."
-
-#. |gnb
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151756\n"
-"619\n"
-"help.text"
-msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
-msgstr "Az ÉS feltétel a SZUM() függvényben az alábbi módon szerepelhet:"
-
-#. ]\KN
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151774\n"
-"620\n"
-"help.text"
-msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
-msgstr "Példafeltételezés: Egy táblázat számlákat tartalmaz. Az A oszlop tartalmazza a számla dátumértékét, a B oszlop pedig az összegeket. Egy képletet szeretne találni, amellyel egy bizonyos hónap teljes kifizetési összegét lehetne meghatározni, például a >=2008.01.01 és <2008.02.01 közötti időszakét. A dátumértékek tartománya az A1:A40, az összeadandó összegek tartománya pedig a B1:B40. A C1 cella tartalmazza a dátumot, amelytől kezdődően a számlákat az összesítésben szerepeltetni kívánja (vagyis <item type=\"input\">2008-01-01</item>). A C2 cellában található az a dátum, amely már nem kerül feldolgozásra (<item type=\"input\">2008-02-01</item>)."
-
-#. (#Dj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151799\n"
-"621\n"
-"help.text"
-msgid "Enter the following formula as an array formula:"
-msgstr "Adja meg az alábbi képletet tömbhivatkozásként:"
-
-#. [XU:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151813\n"
-"622\n"
-"help.text"
-msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
-msgstr "<item type=\"input\">=SZUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
-
-#. ,mDh
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151828\n"
-"623\n"
-"help.text"
-msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
-msgstr "Azért, hogy a képlet tömbképletként kerüljön megadásra, az Enter helyett a Shift <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline> + Enter billentyűket kell megnyomnia a képlet bezárásához. A képlet ezt követően kapcsos zárójelek között megjelenik a <emph>Képlet</emph> eszköztárban."
-
-#. QxF(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151869\n"
-"624\n"
-"help.text"
-msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
-msgstr "{=SZUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
-
-#. $4A%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151884\n"
-"625\n"
-"help.text"
-msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
-msgstr "A képlet azon a tényen alapul, hogy az összehasonlítás eredménye 1, ha a feltétellel egyezés áll fenn, illetve 0, ha nem. Az egyéni összehasonlítások eredményeit a rendszer tömbként kezeli és mátrixszorzásban használja fel. Végül az egyéni értékek összegzésre kerülnek, és így adják az eredménymátrixot."
-
-#. VM(W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3151957\n"
-"help.text"
-msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
-msgstr "<bookmark_value>SZUMHA függvény</bookmark_value><bookmark_value>SUMIF függvény, lásd: SZUMHA függvény</bookmark_value><bookmark_value>összeadás;megadott számok</bookmark_value>"
-
-#. YlFO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3151957\n"
-"436\n"
-"help.text"
-msgid "SUMIF"
-msgstr "SZUMHA"
-
-#. Bt49
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3151986\n"
-"437\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
-msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adott feltételek szerint meghatározott cellákat ad hozzá.</ahelp> Ezt a függvényt egy tartomány bővítésére használhatja, mikor egy meghatározott értékre keres."
-
-#. v02L
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152015\n"
-"438\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. dDC6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152028\n"
-"439\n"
-"help.text"
-msgid "SUMIF(Range; Criteria; SumRange)"
-msgstr "SZUMHA(tartomány; feltételek; összegtartomány)"
-
-#. OM2%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152043\n"
-"440\n"
-"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "A <emph>tartomány</emph> a tartomány, amelyre a feltételek vonatkoznak."
-
-#. f=xH
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152062\n"
-"441\n"
-"help.text"
-msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
-msgstr "A <emph>feltételek</emph> a keresési feltételeket tartalmazó cella, illetve maguk a keresési feltételek. Ha a feltétel képletbe van írva, idézőjelekkel (\") kell körbevenni."
-
-#. XoTR
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152083\n"
-"442\n"
-"help.text"
-msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
-msgstr "Az <emph>összegtartomány</emph> a tartomány, amelyből az értékek összegzésre kerülnek. Ha a paraméter nincs megadva, akkor a tartományban található értékek kerülnek összegzésre."
-
-#. N8zl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8347422\n"
-"help.text"
-msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
-msgstr "A SZUMHA csak feltétel paraméterben támogatja a hivatkozáskonkatenáló operátort (~), és csak akkor, ha az opcionális összegtartomány nincs megadva."
-
-#. aF^9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152110\n"
-"443\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. eV7I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152148\n"
-"626\n"
-"help.text"
-msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
-msgstr "Csak a negatív számok összeadása: <item type=\"input\">=SZUMHA(A1:A10;\"<0\")</item>"
-
-#. +.Uo
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6670125\n"
-"help.text"
-msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
-msgstr "A <item type=\"input\">=SZUMHA(A1:A10;\">0\";B1:10)</item> a B1:B10 tartományt csak akkor összegzi, ha az A1:A10 tartomány megfelelő értékei 0-nál nagyobbak."
-
-#. Y2d%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6062196\n"
-"help.text"
-msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
-msgstr "A DARABTELI() ismertetésénél bonyolultabb példák is szerepelnek, amelyek a SZUMHA() esetében is alkalmazhatók."
-
-#. !I]!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3152195\n"
-"help.text"
-msgid "<bookmark_value>TAN function</bookmark_value>"
-msgstr "<bookmark_value>TAN függvény</bookmark_value>"
-
-#. R@;4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152195\n"
-"446\n"
-"help.text"
-msgid "TAN"
-msgstr "TAN"
-
-#. $G/N
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152224\n"
-"447\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TAN\">Kiszámítja egy adott szög (radiánban) tangensét.</ahelp>"
-
-#. .::,
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152242\n"
-"448\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. XgNp
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152255\n"
-"449\n"
-"help.text"
-msgid "TAN(Number)"
-msgstr "TAN(szám)"
-
-#. x?!E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152269\n"
-"450\n"
-"help.text"
-msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
-msgstr "Kiszámítja a <emph>szám</emph> (trigonometrikus) tangensét, a szög radiánban adható meg."
-
-#. J!3e
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5752128\n"
-"help.text"
-msgid "To return the tangent of an angle in degrees, use the RADIANS function."
-msgstr "Ha fokban megadott szögek tangensét akarja meghatározni, használja a RADIÁN függvényt."
-
-#. yiE@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3152287\n"
-"451\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. h;ND
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152301\n"
-"452\n"
-"help.text"
-msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
-msgstr "A <item type=\"input\">=TAN(PI()/4)</item> eredménye 1, PI/4 radián tangense."
-
-#. M_R!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1804864\n"
-"help.text"
-msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
-msgstr "A <item type=\"input\">=TAN(RADIÁN(45))</item> eredménye 1, 45 fok tangense."
-
-#. $EXp
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3165434\n"
-"help.text"
-msgid "<bookmark_value>TANH function</bookmark_value>"
-msgstr "<bookmark_value>TANH függvény</bookmark_value>"
-
-#. |/lN
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3165434\n"
-"456\n"
-"help.text"
-msgid "TANH"
-msgstr "TANH"
-
-#. M!}_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165462\n"
-"457\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Kiszámítja egy szám hiperbolikus tangensét.</ahelp>"
-
-#. K[(3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3165480\n"
-"458\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. |6a4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165494\n"
-"459\n"
-"help.text"
-msgid "TANH(Number)"
-msgstr "TANH(szám)"
-
-#. 04-c
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165508\n"
-"460\n"
-"help.text"
-msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
-msgstr "A <emph>szám</emph> hiperbolikus tangensét számítja ki."
-
-#. a7)!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3165527\n"
-"461\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. mI9D
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165541\n"
-"462\n"
-"help.text"
-msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
-msgstr "A <item type=\"input\">=TANH(0)</item> eredménye 0, a 0 hiperbolikus tangense."
-
-#. zo+P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3165633\n"
-"help.text"
-msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
-msgstr "<bookmark_value>Automatikus szűrő; részösszegek</bookmark_value><bookmark_value>összegek;szűrt adatok összegei</bookmark_value><bookmark_value>szűrt adat; összeg</bookmark_value><bookmark_value>RÉSZÖSSZEG függvény</bookmark_value><bookmark_value>SUBTOTAL függvény, lásd: RÉSZÖSSZEG függvény</bookmark_value>"
-
-#. Ihu9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3165633\n"
-"466\n"
-"help.text"
-msgid "SUBTOTAL"
-msgstr "RÉSZÖSSZEG"
-
-#. N0:z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165682\n"
-"467\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
-msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Részösszegeket számol.</ahelp> Ha egy tartomány már tartalmaz részösszegeket, akkor ezek nem kerülnek felhasználásra a további számításokban. A függvény és az automatikus szűrők együttes használatával megoldható, hogy csak a szűrt eredményeket vegye figyelembe."
-
-#. TLkP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3165704\n"
-"495\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 9*c(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165717\n"
-"496\n"
-"help.text"
-msgid "SUBTOTAL(Function; Range)"
-msgstr "RÉSZÖSSZEG(függvény; tartomány)"
-
-#. [?*[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165731\n"
-"497\n"
-"help.text"
-msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
-msgstr "A <emph>függvény</emph> az alábbi függvények valamelyikét jelölő szám:"
-
-#. -GqI
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165782\n"
-"469\n"
-"help.text"
-msgid "Function index"
-msgstr "Függvényindex"
-
-#. :gY%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165806\n"
-"470\n"
-"help.text"
-msgid "Function"
-msgstr "Függvény"
-
-#. z$5i
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165833\n"
-"471\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. n-]W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165856\n"
-"472\n"
-"help.text"
-msgid "AVERAGE"
-msgstr "ÁTLAG"
-
-#. 6MF%
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165883\n"
-"473\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. OE-C
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165906\n"
-"474\n"
-"help.text"
-msgid "COUNT"
-msgstr "DARAB"
-
-#. Z)Vk
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165933\n"
-"475\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. W%u2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165956\n"
-"476\n"
-"help.text"
-msgid "COUNTA"
-msgstr "DARAB2"
-
-#. 2uY!
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165983\n"
-"477\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. vX~/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3166006\n"
-"478\n"
-"help.text"
-msgid "MAX"
-msgstr "MAX"
-
-#. :30O
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3166033\n"
-"479\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. =X[L
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3166056\n"
-"480\n"
-"help.text"
-msgid "MIN"
-msgstr "MIN"
-
-#. V~RG
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143316\n"
-"481\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. ]R@I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143339\n"
-"482\n"
-"help.text"
-msgid "PRODUCT"
-msgstr "SZORZAT"
-
-#. mW;g
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143366\n"
-"483\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#. VpV/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143389\n"
-"484\n"
-"help.text"
-msgid "STDEV"
-msgstr "SZÓRÁS"
-
-#. rjtJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143416\n"
-"485\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#. l]9I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143439\n"
-"486\n"
-"help.text"
-msgid "STDEVP"
-msgstr "SZÓRÁSP"
-
-#. .cTl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143466\n"
-"487\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#. =S!{
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143489\n"
-"488\n"
-"help.text"
-msgid "SUM"
-msgstr "SZUM"
-
-#. a@+X
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143516\n"
-"489\n"
-"help.text"
-msgid "10"
-msgstr "10"
-
-#. [oat
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143539\n"
-"490\n"
-"help.text"
-msgid "VAR"
-msgstr "VAR"
-
-#. J6k.
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143566\n"
-"491\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#. }2/C
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143589\n"
-"492\n"
-"help.text"
-msgid "VARP"
-msgstr "VARP"
-
-#. }MLr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143606\n"
-"498\n"
-"help.text"
-msgid "<emph>Range</emph> is the range whose cells are included."
-msgstr "A <emph>tartomány</emph> az a tartomány, amelynek cellái felhasználásra kerülnek."
-
-#. t,s)
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3143625\n"
-"499\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. _uRT
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143638\n"
-"562\n"
-"help.text"
-msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
-msgstr "Az A1:B5 cellatartományban található táblázat A oszlopa városokat tartalmaz, B oszlopa pedig a vonatkozó számokat. Mivel automatikus szűrőt alkalmazott, csak a Hamburgot tartalmazó sorok láthatók. Meg kívánja határozni a megjelenített számok összegét, vagyis, a szűrés után látható sorok részösszegét. Ebben az esetben a helyes képlet:"
-
-#. aL_h
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143658\n"
-"563\n"
-"help.text"
-msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
-msgstr "<item type=\"input\">=RÉSZÖSSZEG(9; B2:B5)</item>"
-
-#. bKe|
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3143672\n"
-"help.text"
-msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
-msgstr "<bookmark_value>Euró; átváltás</bookmark_value><bookmark_value>EUROCONVERT függvény</bookmark_value>"
-
-#. -?40
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3143672\n"
-"564\n"
-"help.text"
-msgid "EUROCONVERT"
-msgstr "EUROCONVERT"
-
-#. l2rW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143708\n"
-"565\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Régi európai pénznemeket vált át euróra és vissza.</ahelp>"
-
-#. c|c:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143731\n"
-"566\n"
-"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Szintaxis</emph>"
-
-#. J@}i
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143748\n"
-"567\n"
-"help.text"
-msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
-msgstr "EUROCONVERT(érték; \"pénznem_1\"; \"pénznem_2\"; teljes_pontosság; háromszögelési_pontosság)"
-
-#. s9;S
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143763\n"
-"568\n"
-"help.text"
-msgid "<emph>Value</emph> is the amount of the currency to be converted."
-msgstr "Az <emph>érték</emph> a konvertálni kívánt pénznemben megadott érték."
-
-#. 7LY3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143782\n"
-"569\n"
-"help.text"
-msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
-msgstr "A <emph>pénznem_1</emph> és a <emph>pénznem_2</emph> kérdéses pénznemek hivatalos rövidítése (például: \"EUR\"). Az első paraméter a konvertálni kívánt forrásértéket, a második paraméter a célértéket határozza meg. Az árfolyamokat (euróban) az Európai Bizottság határozta meg."
-
-#. Db9k
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301810\n"
-"help.text"
-msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
-msgstr "A <emph>teljes_pontosság</emph> opcionális. Ha nincs megadva, vagy az értéke Hamis, az eredmény kerekítése a célvaluta tizedesjegyeire lesz kerekítve. Ha a teljes_pontosság Igaz, akkor az eredmény nem lesz kerekítve."
-
-#. T~NT
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301815\n"
-"help.text"
-msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
-msgstr "A <emph>háromszögelési_pontosság</emph> opcionális. Ha meg van adva és >=3, a művelet a háromszögeléses átalakítás (pénznem_1,EUR,pénznem_2) köztes eredményét kerekíti ezzel a pontossággal. Ha a háromszögelési_pontosság paramétert kihagyja, akkor a köztes eredmény nem lesz kerekítve. Ha a célvaluta az „EUR”, akkor a háromszögelési_pontosság úgy lesz használva, mintha háromszögelésre lett volna szükség, és EUR-ról EUR-ra való átalakítás történt volna."
-
-#. {EAE
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143819\n"
-"570\n"
-"help.text"
-msgid "<emph>Examples</emph>"
-msgstr "<emph>Példák</emph>"
-
-#. vsFY
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143837\n"
-"571\n"
-"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
-msgstr "Az <item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> 100 osztrák schillinget konvertál euróba."
-
-#. 6fOr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3143853\n"
-"572\n"
-"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
-msgstr "Az <item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> 100 eurót konvertál német márkába."
-
-#. *)#~
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id0908200902090676\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "<bookmark_value>CONVERT függvény</bookmark_value>"
-
-#. gNX/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902074836\n"
-"help.text"
-msgid "CONVERT"
-msgstr "CONVERT"
-
-#. J/nN
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131122\n"
-"help.text"
-msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
-msgstr "<ahelp hid=\".\">Egy értéket az egyik mértékegységből a másikba alakít át. Az átalakítási tényezők a konfigurációban egy listában vannak megadva.</ahelp>"
-
-#. juOr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475420\n"
-"help.text"
-msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
-msgstr "Korábban az átalakítási tényezők listája tartalmazta a régi európai valutákat és az eurót (lásd az alábbi példákat). Javasoljuk, hogy a pénznemek közötti átváltásra inkább az új EUROCONVERT függvényt használja."
-
-#. ,C94
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131071\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. #N-W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131191\n"
-"help.text"
-msgid "CONVERT(value;\"text\";\"text\")"
-msgstr "CONVERT(érték; \"szöveg\"; \"szöveg\")"
-
-#. ``?7
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131152\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. #H\$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id090820090213112\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
-msgstr "A <item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> 100 osztrák schillinget konvertál euróba."
-
-#. c|`S
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475431\n"
-"help.text"
-msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
-msgstr "A =CONVERT(100;\"EUR\";\"DEM\") 100 eurót konvertál német márkába."
-
-#. oX[H
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3157177\n"
-"help.text"
-msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
-msgstr "<bookmark_value>PÁRATLAN függvény</bookmark_value><bookmark_value>ODD függvény, lásd: PÁRATLAN függvény</bookmark_value><bookmark_value>kerekítés;fel-/lekerekítés a legközelebbi páratlan egészre</bookmark_value>"
-
-#. eB`9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157177\n"
-"502\n"
-"help.text"
-msgid "ODD"
-msgstr "PÁRATLAN"
-
-#. f-_f
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157205\n"
-"503\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Egy pozitív szám legközelebbi páratlan egészre felkerekített értékét, illetve egy negatív szám legközelebbi páratlan egészre lekerekített értékét adja eredményül.</ahelp>"
-
-#. I/rj
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157223\n"
-"504\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. ]S_o
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157237\n"
-"505\n"
-"help.text"
-msgid "ODD(Number)"
-msgstr "PÁRATLAN(szám)"
-
-#. 8W)8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157250\n"
-"506\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
-msgstr "Felfelé kerekíti a <emph>számot</emph> a legközelebbi páratlan egészre."
-
-#. \2|$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157270\n"
-"507\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. PXTl
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157283\n"
-"508\n"
-"help.text"
-msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
-msgstr "A <item type=\"input\">=PÁRATLAN(1,2)</item> eredménye 3."
-
-#. g+6/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id8746910\n"
-"help.text"
-msgid "<item type=\"input\">=ODD(1)</item> returns 1."
-msgstr "A <item type=\"input\">=PÁRATLAN(1)</item> eredménye 1."
-
-#. U=iS
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9636524\n"
-"help.text"
-msgid "<item type=\"input\">=ODD(0)</item> returns 1."
-msgstr "A <item type=\"input\">=PÁRATLAN(0)</item> eredménye 1."
-
-#. Y$ZX
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5675527\n"
-"help.text"
-msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
-msgstr "A <item type=\"input\">=PÁRATLAN(-3,1)</item> eredménye -5."
-
-#. )^@2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3157404\n"
-"help.text"
-msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
-msgstr "<bookmark_value>PADLÓ függvény</bookmark_value><bookmark_value>FLOOR függvény, lásd: PADLÓ függvény</bookmark_value><bookmark_value>kerekítés;lekerekítés a növekmény legközelebbi többszöröséhez</bookmark_value>"
-
-#. .a6W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157404\n"
-"512\n"
-"help.text"
-msgid "FLOOR"
-msgstr "PADLÓ"
-
-#. ]5\w
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157432\n"
-"513\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">A számot a növekmény legközelebbi többszöröséhez lefelé kerekíti.</ahelp>"
-
-#. @d;9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3157451\n"
-"514\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. .kHH
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157464\n"
-"515\n"
-"help.text"
-msgid "FLOOR(Number; Significance; Mode)"
-msgstr "PADLÓ(szám; növekmény; mód)"
-
-#. !%eZ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157478\n"
-"516\n"
-"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded down."
-msgstr "A <emph>szám</emph> a lefelé kerekítendő szám."
-
-#. 75+q
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157497\n"
-"517\n"
-"help.text"
-msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
-msgstr "A <emph>növekmény</emph> az érték, amelynek valamely többszörösére a számot lefelé kerekíteni kívánja."
-
-#. 32GZ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157517\n"
-"561\n"
-"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "A <emph>mód</emph> opcionális érték. Ha a mód meg van adva, és értéke nem nulla, valamint a szám és a növekmény negatív, akkor a kerekítés a szám abszolút értékét figyelembe véve történik. Ez a paraméter elvész a Microsoft Excel programba történő exportálás során, mivel az Excel nem ismeri a függvény harmadik paraméterét."
-
-#. ]@b@
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163894\n"
-"630\n"
-"help.text"
-msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
-msgstr "Ha a szám és a növekmény paraméter egyaránt negatív, a mód érték pedig nulla vagy nincs megadva, akkor a $[officename] Calc, illetve az Excel eredményei eltérők lesznek az exportálást követően. A munkafüzet Excelbe exportálásakor használja a mód=1 értéket, hogy ugyanaz az eredmény jöjjön ki Excelben és Calcban."
-
-#. )09[
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3163932\n"
-"518\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. jo_;
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163945\n"
-"519\n"
-"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
-msgstr "A <item type=\"input\">=PADLÓ( -11;-2)</item> eredménye -12."
-
-#. npa5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163966\n"
-"520\n"
-"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
-msgstr "A <item type=\"input\">=PADLÓ( -11;-2;0)</item> eredménye -12."
-
-#. )-P?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163988\n"
-"521\n"
-"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
-msgstr "A <item type=\"input\">=PADLÓ( -11;-2;1)</item> eredménye -10."
-
-#. 9wCg
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164086\n"
-"help.text"
-msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
-msgstr "<bookmark_value>ELŐJEL függvény</bookmark_value><bookmark_value>SIGN függvény, lásd: ELŐJEL függvény</bookmark_value><bookmark_value>algebrai előjelek</bookmark_value>"
-
-#. j0[V
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164086\n"
-"523\n"
-"help.text"
-msgid "SIGN"
-msgstr "ELŐJEL"
-
-#. h){k
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164115\n"
-"524\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Egy szám előjelét adja eredményül. Ha a szám pozitív, az eredmény 1, ha a szám negatív, az eredmény -1, és ha a szám 0, az eredmény 0.</ahelp>"
-
-#. (9Im
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164136\n"
-"525\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. -A@u
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164150\n"
-"526\n"
-"help.text"
-msgid "SIGN(Number)"
-msgstr "ELŐJEL(szám)"
-
-#. (rp9
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164164\n"
-"527\n"
-"help.text"
-msgid "<emph>Number</emph> is the number whose sign is to be determined."
-msgstr "A <emph>szám</emph> az a szám, amelynek előjelét meg kívánja határozni."
-
-#. `Z*v
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164183\n"
-"528\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. }qB5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164197\n"
-"529\n"
-"help.text"
-msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
-msgstr "Az <item type=\"input\">=ELŐJEL(3,4)</item> eredménye 1."
-
-#. 7-Wr
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164212\n"
-"530\n"
-"help.text"
-msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
-msgstr "Az <item type=\"input\">=ELŐJEL(-4,5)</item> eredménye -1."
-
-#. =!t{
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164252\n"
-"help.text"
-msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
-msgstr "<bookmark_value>MROUND függvény</bookmark_value><bookmark_value>legközelebbi többszörös</bookmark_value>"
-
-#. ko)_
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164252\n"
-"658\n"
-"help.text"
-msgid "MROUND"
-msgstr "MROUND"
-
-#. w6~f
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164288\n"
-"659\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">A számot egy másik szám legközelebbi többszöröséhez kerekíti.</ahelp>"
-
-#. bzjC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164306\n"
-"660\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. K(5L
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164320\n"
-"661\n"
-"help.text"
-msgid "MROUND(Number; Multiple)"
-msgstr "MROUND (szám; többszörös)"
-
-#. MO-$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3486434\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
-msgstr "A <emph>szám</emph>-ot egy másik <emph>szám</emph> legközelebbi többszöröséhez kerekíti."
-
-#. GjDU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3068636\n"
-"help.text"
-msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
-msgstr "Egy alternatív megvalósítás lehet a <item type=\"literal\">szorzó * KEREK(szám/szorzó)</item>."
-
-#. VIhx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164333\n"
-"662\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. =;Tf
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164347\n"
-"663\n"
-"help.text"
-msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
-msgstr "Az <item type=\"input\">=MROUND(15,5;3)</item> eredménye 15, mert 15,5 közelebb van 15-höz ( = 3*5), mint 18-hoz ( = 3*6)."
-
-#. B~RO
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_idN14DD6\n"
-"help.text"
-msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
-msgstr "Az <item type=\"input\">=MROUND(1,4;0,5)</item> eredménye 1,5 ( = 0,5*3)."
-
-#. YD[D
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164375\n"
-"help.text"
-msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
-msgstr "<bookmark_value>GYÖK függvény</bookmark_value><bookmark_value>négyzetgyök;pozitív számok</bookmark_value><bookmark_value>SQRT függvény, lásd: GYÖK függvény</bookmark_value>"
-
-#. OS`V
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164375\n"
-"532\n"
-"help.text"
-msgid "SQRT"
-msgstr "GYÖK"
-
-#. jU.I
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164404\n"
-"533\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Egy szám pozitív négyzetgyökét számítja ki.</ahelp>"
-
-#. bc8m
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164424\n"
-"534\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. W7vv
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164437\n"
-"535\n"
-"help.text"
-msgid "SQRT(Number)"
-msgstr "GYÖK(szám)"
-
-#. v%]W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164451\n"
-"536\n"
-"help.text"
-msgid "Returns the positive square root of <emph>Number</emph>."
-msgstr "A <emph>szám</emph> pozitív négyzetgyökét számítja ki."
-
-#. )?E=
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6870021\n"
-"help.text"
-msgid "Number must be positive."
-msgstr "A számnak pozitívnak kell lennie."
-
-#. GQ|3
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164471\n"
-"537\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. rB$8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164484\n"
-"538\n"
-"help.text"
-msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
-msgstr "A <item type=\"input\">=GYÖK(16)</item> eredménye 4."
-
-#. ](Y1
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3591723\n"
-"help.text"
-msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
-msgstr "A <item type=\"input\">=GYÖK(-16)</item> eredménye <item type=\"literal\">érvénytelen argumentum</item> hiba."
-
-#. /MdQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164560\n"
-"help.text"
-msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
-msgstr "<bookmark_value>SQRTPI függvény</bookmark_value><bookmark_value>négyzetgyök;a pi szorzatai</bookmark_value>"
-
-#. ^2)(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164560\n"
-"665\n"
-"help.text"
-msgid "SQRTPI"
-msgstr "SQRTPI"
-
-#. !OS$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164596\n"
-"666\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Egy szám pi-szeresének négyzetgyökét számítja ki.</ahelp>"
-
-#. Zs@T
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164614\n"
-"667\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. t=#A
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164627\n"
-"668\n"
-"help.text"
-msgid "SQRTPI(Number)"
-msgstr "SQRTPI(szám)"
-
-#. +`3M
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id1501510\n"
-"help.text"
-msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
-msgstr "A PI és a <emph>szám</emph> szorzatának pozitív négyzetgyökét számítja ki."
-
-#. ,Hy/
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9929197\n"
-"help.text"
-msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
-msgstr "Ez ekvivalens a <item type=\"literal\">GYÖK(PI()*szám)</item> képlettel."
-
-#. ~0SZ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164641\n"
-"669\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. 92Xt
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164654\n"
-"670\n"
-"help.text"
-msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
-msgstr "Az <item type=\"input\">=SQRTPI(2)</item> eredménye a (2PI) négyzetgyöke, körülbelül 2,506628."
-
-#. w-@X
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164669\n"
-"help.text"
-msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
-msgstr "<bookmark_value>véletlen számok; határok között</bookmark_value><bookmark_value>RANDBETWEEN függvény</bookmark_value>"
-
-#. 0XQ8
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164669\n"
-"671\n"
-"help.text"
-msgid "RANDBETWEEN"
-msgstr "RANDBETWEEN"
-
-#. .3!W
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164711\n"
-"672\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">A megadott számok közötti véletlen számmal tér vissza.</ahelp>"
-
-#. Od(z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164745\n"
-"673\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. }kBW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164758\n"
-"674\n"
-"help.text"
-msgid "RANDBETWEEN(Bottom; Top)"
-msgstr "RANDBETWEEN (alsó_érték; felső_érték)"
-
-#. D4.e
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7112338\n"
-"help.text"
-msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
-msgstr "Egy, az <emph>alsó_érték</emph> és a <emph>felső_érték</emph> paraméter jelentette alsó és felső határ közti véletlen egész számot ad eredményül, amely lehet mindkét szélsőérték is."
-
-#. J*,2
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2855616\n"
-"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "A függvény egy új véletlen számot állít elő minden alkalommal, amikor a Calc újraszámítja a cellát. A Calc a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 billentyűkombinációval kényszeríthető az újraszámításra."
-
-#. nxPm
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2091433\n"
-"help.text"
-msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Olyan véletlen számok generálásához, amelyek nem számítódnak újra, másolja a vágólapra az ezt a képletet tartalmazó cellákat, és használja a <item type=\"menuitem\">Szerkesztés - Irányított beillesztés</item> menüparancsot (a <item type=\"menuitem\">Mindent beilleszt</item> és <item type=\"menuitem\">Képletek</item> jelölőnégyzetek jelöletlenül hagyása és a <item type=\"menuitem\">Számok</item> jelölőnégyzet bejelölése mellett)."
-
-#. +(KW
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164772\n"
-"675\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. /JH#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164785\n"
-"676\n"
-"help.text"
-msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
-msgstr "A <item type=\"input\">=RANDBETWEEN(20;30)</item> függvény egy egész számot ad vissza 20 és 30 között."
-
-#. T9$#
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164800\n"
-"help.text"
-msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
-msgstr "<bookmark_value>VÉL függvény</bookmark_value><bookmark_value>RAND függvény, lásd: VÉL függvény</bookmark_value><bookmark_value>véletlen számok;0 és 1 között</bookmark_value>"
-
-#. @263
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164800\n"
-"542\n"
-"help.text"
-msgid "RAND"
-msgstr "VÉL"
-
-#. .T5-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164829\n"
-"543\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Egy 0 és 1 közötti véletlen számot ad eredményül.</ahelp>"
-
-#. +a-E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164870\n"
-"545\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. 4Xh$
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164884\n"
-"546\n"
-"help.text"
-msgid "RAND()"
-msgstr "VÉL()"
-
-#. a\O?
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5092318\n"
-"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "A függvény egy új véletlen számot állít elő minden alkalommal, amikor a Calc újraszámítja a cellát. A Calc a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 billentyűkombinációval kényszeríthető az újraszámításra."
-
-#. y^C*
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9312417\n"
-"help.text"
-msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Olyan véletlen számok generálásához, amelyek nem számítódnak újra, másolja a vágólapra a =VÉL() képletet tartalmazó cellákat, és használja a <item type=\"menuitem\">Szerkesztés - Irányított beillesztés</item> menüparancsot (a <item type=\"menuitem\">Mindent beilleszt</item> és <item type=\"menuitem\">Képletek</item> jelölőnégyzetek jelöletlenül hagyása és a <item type=\"menuitem\">Számok</item> jelölőnégyzet bejelölése mellett)."
-
-#. EFgY
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id9089022\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. T#p1
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id9569078\n"
-"help.text"
-msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
-msgstr "A <item type=\"input\">=VÉL()</item> egy 0 és 1 közötti véletlen számot ad eredményül."
-
-#. l5fL
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3164897\n"
-"help.text"
-msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
-msgstr "<bookmark_value>DARABTELI függvény</bookmark_value><bookmark_value>megszámolás;meghatározott cellák</bookmark_value><bookmark_value>COUNTIF függvény, lásd: DARABTELI függvény</bookmark_value>"
-
-#. B`*l
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164897\n"
-"547\n"
-"help.text"
-msgid "COUNTIF"
-msgstr "DARABTELI"
-
-#. (3#:
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164926\n"
-"548\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Azoknak a celláknak a számát adja eredményül, amelyek megfelelnek egy cellatartományban leírt feltételeknek.</ahelp>"
-
-#. UJRI
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3164953\n"
-"549\n"
-"help.text"
-msgid "Syntax"
-msgstr "Szintaxis"
-
-#. Z5]5
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164967\n"
-"550\n"
-"help.text"
-msgid "COUNTIF(Range; Criteria)"
-msgstr "DARABTELI(tartomány; feltétel)"
-
-#. 1Jt(
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3164980\n"
-"551\n"
-"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "A <emph>tartomány</emph> az a tartomány, amelyre a feltételek vonatkoznak."
-
-#. VwBP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3165000\n"
-"552\n"
-"help.text"
-msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
-msgstr "A <emph>feltétel</emph> szám, kifejezés vagy karakterlánc formájában megadott feltételek. Ezen feltételek határozzák meg, hogy mely cellák kerülnek megszámlálásra. Ezen kívül reguláris kifejezés formájában keresési szöveget is megadhat, például: „b.*” az összes b-vel kezdődő szó megkereséséhez. Ezen kívül kijelölheti a keresési feltételt tartalmazó cellatartományt. Ha szöveget betű szerint keres, akkor zárja azt idézőjelek közé."
-
-#. S$$]
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3165037\n"
-"553\n"
-"help.text"
-msgid "Example"
-msgstr "Példa"
-
-#. Z4/Z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3166505\n"
-"627\n"
-"help.text"
-msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
-msgstr "Az A1:A10 cellatartomány <item type=\"input\">2000</item>-től és <item type=\"input\">2009</item>-ig tartalmazza a számokat. A B1 cella a <item type=\"input\">2006</item> számot tartalmazza. A B2 cellában a következő képlet szerepel:"
-
-#. #0q]
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3581652\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
-msgstr "<item type=\"input\">=DARABTELI(A1:A10;2006)</item> – ennek eredménye 1 lesz."
-
-#. e;K`
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id708639\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
-msgstr "<item type=\"input\">=DARABTELI(A1:A10;B1)</item> – ennek eredménye 1 lesz."
-
-#. Q_y\
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5169225\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
-msgstr "<item type=\"input\">=DARABTELI(A1:A10;\">=2006\") </item> – ennek eredménye 4 lesz."
-
-#. rA)R
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2118594\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
-msgstr "<item type=\"input\">=DARABTELI(A1:A10;\"<\"&B1)</item> – ha a B1 cella a <item type=\"input\">2006</item> értéket tartalmazza, akkor ennek eredménye 6 lesz."
-
-#. V7HU
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id166020\n"
-"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
-msgstr "A <item type=\"input\">=DARABTELI(A1:A10;C2)</item>, ahol a C2 cella a <item type=\"input\">>2006</item> szöveget tartalmazza, megszámolja az A1:A10 tartományban azokat a cellákat, amelyek 2006-nál nagyobbak."
-
-#. FffG
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id6386913\n"
-"help.text"
-msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
-msgstr "Csak a negatív számok összeszámolása: <item type=\"input\">=DARABTELI(A1:A10;\"<0\")</item>"
-
-#. 5kxn
-#: 06030400.xhp
-msgctxt ""
-"06030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove Dependents"
-msgstr "Függőségek eltávolítása"
-
-#. BC_L
-#: 06030400.xhp
-msgctxt ""
-"06030400.xhp\n"
-"bm_id3147335\n"
-"help.text"
-msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
-msgstr "<bookmark_value>cellák; függőségek eltávolítása</bookmark_value>"
-
-#. r/g2
-#: 06030400.xhp
-msgctxt ""
-"06030400.xhp\n"
-"hd_id3147335\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
-msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Függőségek eltávolítása\">Függőségek eltávolítása</link>"
-
-#. X)|{
-#: 06030400.xhp
-msgctxt ""
-"06030400.xhp\n"
-"par_id3148663\n"
-"2\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Törli a felderítési nyilak egy szintjét, amelyeket a <emph>Függőségek felderítése</emph> paranccsal hozott létre.</ahelp>"
-
-#. !|.F
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manual Break"
-msgstr "Töréspont"
-
-#. HY.9
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"bm_id3153192\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>munkafüzetek; törés beszúrása</bookmark_value><bookmark_value>beszúrás; törések</bookmark_value><bookmark_value>oldaltörések; beszúrás munkafüzetekben</bookmark_value>"
-
-#. D{n}
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3153192\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Töréspont\">Töréspont</link>"
-
-#. QOo0
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"par_id3125864\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
-msgstr "<ahelp hid=\".\">A parancs kézi sor-, illetve oszloptöréseket szúr be annak biztosítására, hogy az adatok a megfelelő módon kerüljenek nyomtatásra. Vízszintes oldaltörést az aktív cella fölé, függőleges oldaltörést pedig az aktív cellától balra szúrhat be.</ahelp>"
-
-#. zYG(
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"par_id3155133\n"
-"3\n"
-"help.text"
-msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
-msgstr "A kézzel létrehozott töréspontok eltávolításához válassza a <link href=\"text/scalc/01/02190000.xhp\" name=\"Szerkesztés - Töréspont törlése\">Szerkesztés - Töréspont törlése</link> elemet."
-
-#. xNK(
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Criteria"
-msgstr "Feltételek"
-
-#. B;;r
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"bm_id1464278\n"
-"help.text"
-msgid "<bookmark_value>selection lists;validity</bookmark_value>"
-msgstr "<bookmark_value>kijelölési lista;érvényesség</bookmark_value>"
-
-#. dJ8?
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3153032\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Feltételek\">Feltételek</link>"
-
-#. ~(tZ
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3156327\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Adja meg a kijelölt cellák érvényesítési szabályait.</ahelp>"
-
-#. P?Dm
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3155923\n"
-"4\n"
-"help.text"
-msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
-msgstr "Például olyan feltételeket adhat meg, mint: „1 és 10 közötti számok” vagy „20 karakternél nem hosszabb szövegek”."
-
-#. j+#w
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3153896\n"
-"5\n"
-"help.text"
-msgid "Allow"
-msgstr "Engedélyezés"
-
-#. JY@1
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3150400\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Kattintson a kijelölt cellák egy érvényesítési beállítására.</ahelp>"
-
-#. Mk)Q
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3148797\n"
-"17\n"
-"help.text"
-msgid "The following conditions are available:"
-msgstr "A következő feltételek érhetőek el:"
-
-#. ?$JZ
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3150447\n"
-"18\n"
-"help.text"
-msgid "Condition"
-msgstr "Feltétel"
-
-#. is+O
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3155854\n"
-"19\n"
-"help.text"
-msgid "Effect"
-msgstr "Hatás"
-
-#. g!@~
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3153092\n"
-"20\n"
-"help.text"
-msgid "All values"
-msgstr "Összes érték"
-
-#. lEH]
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3155411\n"
-"21\n"
-"help.text"
-msgid "No limitation."
-msgstr "Nincs korlátozás."
-
-#. fcU`
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3147434\n"
-"22\n"
-"help.text"
-msgid "Whole number"
-msgstr "Egész számok"
-
-#. Z`#~
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3154319\n"
-"23\n"
-"help.text"
-msgid "Only whole numbers corresponding to the condition."
-msgstr "Csak az egész számok felelnek meg a feltételnek."
-
-#. ~##*
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3145802\n"
-"24\n"
-"help.text"
-msgid "Decimal"
-msgstr "Decimális"
-
-#. jVb:
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3153160\n"
-"25\n"
-"help.text"
-msgid "All numbers corresponding to the condition."
-msgstr "Minden szám megfelel a feltételnek."
-
-#. sQ.%
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3149377\n"
-"26\n"
-"help.text"
-msgid "Date"
-msgstr "Dátum"
-
-#. fg\.
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3150718\n"
-"27\n"
-"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
-msgstr "Minden szám megfelel a feltételnek. A beírt értékek a párbeszédablak soron következő hívásakor ennek megfelelően kerülnek formázásra."
-
-#. AGIr
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3146969\n"
-"28\n"
-"help.text"
-msgid "Time"
-msgstr "Idő"
-
-#. I!em
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3155066\n"
-"29\n"
-"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
-msgstr "Minden szám megfelel a feltételnek. A beírt értékek a párbeszédablak soron következő hívásakor ennek megfelelően kerülnek formázásra."
-
-#. #2kM
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN106A0\n"
-"help.text"
-msgid "Cell range"
-msgstr "Cellatartomány"
-
-#. 0MG9
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN106A5\n"
-"help.text"
-msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
-msgstr "Csak egy cellatartományban megadott értékeket engedélyez. A cellatartomány explicit módon, névvel jelölt adatbázis-tartományként vagy névvel jelölt tartományként adható meg. A tartomány egy oszlopnyi vagy egy sornyi cellából állhat. Ha oszlopok és sorok tartományát adja meg, csak az első oszlop lesz felhasználva."
-
-#. uS5p
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN106AB\n"
-"help.text"
-msgid "List"
-msgstr "Lista"
-
-#. r\Xq
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN106B0\n"
-"help.text"
-msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
-msgstr "Csak egy listában megadott értékeket és karakterláncokat engedélyez. A karakterláncok és az értékek keverhetők. A számok az értékükön kerülnek beszámításra, vagyis ha a listába 1-et ír, akkor a 100% is érvényes lesz."
-
-#. M#X=
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3154756\n"
-"30\n"
-"help.text"
-msgid "Text length"
-msgstr "Szöveghossz"
-
-#. zI\1
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3147339\n"
-"31\n"
-"help.text"
-msgid "Entries whose length corresponds to the condition."
-msgstr "Bejegyzések, amelyek hossza megfelel a feltételnek."
-
-#. .iGn
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3154704\n"
-"7\n"
-"help.text"
-msgid "Allow blank cells"
-msgstr "Üres cellák engedélyezése"
-
-#. Oy@2
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3153967\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">Az <emph>Eszközök - Detektív - Érvénytelen adatok megjelölése</emph> lehetőséggel együtt ez megadja, hogy az üres cellák érvénytelen adatként (letiltva) vagy nem (engedélyezve) jelennek-e meg.</ahelp>"
-
-#. wITd
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN10709\n"
-"help.text"
-msgid "Show selection list"
-msgstr "Kiválasztási lista megjelenítése"
-
-#. qu+]
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN1070D\n"
-"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Felsorolja a választható érvényes karakterláncokat vagy értékeket. A lista a cella kiválasztásával és a Ctrl+D (Mac: Command+D) megnyomásával is megnyitható.</ahelp>"
-
-#. I=1d
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN10724\n"
-"help.text"
-msgid "Sort entries ascending"
-msgstr "Növekvő sorrendű rendezés"
-
-#. ME`V
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN10728\n"
-"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Növekvő sorrendbe rendezi a kijelöléslistát, és kiszűri az azonos elemeket. Ha nincs bejelölve, az adatforrás sorrendje lesz alapul véve.</ahelp>"
-
-#. k6lZ
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN1073F\n"
-"help.text"
-msgid "Source"
-msgstr "Forrás"
-
-#. %:W4
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN10743\n"
-"help.text"
-msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
-msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Adja meg az érvényes értékeket vagy szöveget tartalmazó cellatartományt.</ahelp>"
-
-#. ]XOk
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN1075A\n"
-"help.text"
-msgid "Entries"
-msgstr "Bejegyzések"
-
-#. Zok+
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_idN1075E\n"
-"help.text"
-msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
-msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Adja meg az érvényes értékekként vagy karakterláncokként elfogadott bejegyzéseket.</ahelp>"
-
-#. jmS]
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3163807\n"
-"9\n"
-"help.text"
-msgid "Data"
-msgstr "Adat"
-
-#. z95o
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3144502\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Válassza ki a használni kívánt összehasonlító operátort.</ahelp> A rendelkezésre álló operátorok az <emph>Engedélyezés</emph> listában megjelölt beállítástól függnek. Ha a „között”, illetve a „nincs közötte” beállítást jelöli ki, akkor a <emph>Minimum</emph> és a <emph>Maximum</emph> beviteli mezők jelennek meg. Egyébként csak a <emph>Minimum</emph>, a <emph>Maximum, illetve az Érték</emph> beviteli mező jelenik meg."
-
-#. IOl:
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3153782\n"
-"11\n"
-"help.text"
-msgid "Value"
-msgstr "Érték"
-
-#. ID/`
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3153266\n"
-"12\n"
-"help.text"
-msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
-msgstr "Írja be az <emph>Engedélyezés</emph> mezőben kijelölt adatérvényességi ellenőrzésre vonatkozó értéket."
-
-#. 8#`a
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3149814\n"
-"13\n"
-"help.text"
-msgid "Minimum"
-msgstr "Minimum"
-
-#. xYBZ
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3153199\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Írja be az <emph>Engedélyezés</emph> listában választott adatérvényességi ellenőrzéshez a legkisebb megengedett értéket.</ahelp>"
-
-#. ZzUw
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"hd_id3149035\n"
-"15\n"
-"help.text"
-msgid "Maximum"
-msgstr "Maximum"
-
-#. XIS8
-#: 12120100.xhp
-msgctxt ""
-"12120100.xhp\n"
-"par_id3150089\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Írja be az <emph>Engedélyezés</emph> listában választott adatérvényességi ellenőrzéshez a legnagyobb megengedett értéket.</ahelp>"
diff --git a/source/hu/helpcontent2/source/text/scalc/02.po b/source/hu/helpcontent2/source/text/scalc/02.po
index 98c04da0522..96f4033fab0 100644
--- a/source/hu/helpcontent2/source/text/scalc/02.po
+++ b/source/hu/helpcontent2/source/text/scalc/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-07-28 12:39+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. EJdT
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Zoom Out"
msgstr "Kicsinyítés"
-#. cn!;
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
msgstr "<bookmark_value>oldalnézetek;méretezés csökkentése</bookmark_value><bookmark_value>nagyítás;oldalnézetek csökkentése</bookmark_value>"
-#. cFjH
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Kicsinyítés\">Kicsinyítés</link>"
-#. V=U)
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:ZoomOut\">Kicsinyíti az aktuális dokumentum megjelenített képét. Az aktuális nagyítási tényező az <emph>Állapotsoron</emph> jelenik meg.</ahelp>"
-#. sL~%
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "The minimum zoom factor is 20%."
msgstr "A maximális kicsinyítés mértéke 20%."
-#. /hqI
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Ikon</alt></image>"
-#. v?$D
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "Zooming Out"
msgstr "Kicsinyítés"
-#. }3GB
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -91,7 +83,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. AL{*
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
msgstr "<bookmark_value>beszúrás; objektumok; eszköztár ikon</bookmark_value>"
-#. %s]B
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Beszúrás\">Beszúrás</link>"
-#. G$S2
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertCtrl\">Kattintson az ikon melletti nyílra a <emph>Beszúrás</emph> eszköztár megnyitásához, amelynek segítségével képeket és különleges karaktereket adhat az aktuális munkalaphoz.</ahelp>"
-#. g=cp
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Tools bar icon:"
msgstr "Eszközök eszköztár ikonja:"
-#. 2TbF
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -139,7 +126,6 @@ msgctxt ""
msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Ikon</alt></image>"
-#. M.Oq
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. O*K)
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "You can select the following icons:"
msgstr "A következő ikonokat választhatja ki:"
-#. DsuU
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -168,7 +152,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=\"Úszó keret\">Úszó keret</link>"
-#. RhN/
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -178,7 +161,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=\"Különleges karakter\">Különleges karakter</link>"
-#. |Sbl
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -188,7 +170,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Fájlból\">Fájlból</link>"
-#. sJ{2
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -197,7 +178,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Képlet\">Képlet</link>"
-#. CKkF
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -206,7 +186,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagram beszúrása\">Diagram beszúrása</link>"
-#. 1fb@
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
@@ -215,7 +194,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE-objektum\">OLE-objektum</link>"
-#. Op9c
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -224,7 +202,6 @@ msgctxt ""
msgid "Number Format: Delete Decimal Place"
msgstr "Számformátum: tizedesjegy törlése"
-#. .0v`
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -234,7 +211,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Számformátum: tizedesjegy törlése\">Számformátum: tizedesjegy törlése</link>"
-#. /+N(
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -244,7 +220,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">Eltávolít egy tizedesjegyet a kijelölt cellákban lévő számokról.</ahelp>"
-#. v:|a
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Ikon</alt></image>"
-#. Fd#_
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -263,7 +237,6 @@ msgctxt ""
msgid "Number Format: Delete Decimal Place"
msgstr "Számformátum: tizedesjegy törlése"
-#. E^+]
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
@@ -272,7 +245,6 @@ msgctxt ""
msgid "Number format: Currency"
msgstr "Számformátum: pénznem"
-#. X{bJ
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Számformátum: pénznem\">Számformátum: pénznem</link>"
-#. yujF
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">A kijelölt cellákra az alapértelmezett pénzformátumot alkalmazza.</ahelp>"
-#. (G0?
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
@@ -301,7 +271,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Ikon</alt></image>"
-#. 5XOm
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
@@ -311,7 +280,6 @@ msgctxt ""
msgid "Number Format: Currency"
msgstr "Számformátum: pénznem"
-#. VbE?
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
@@ -321,7 +289,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formátum - Cellák - Számok\">Formátum - Cellák - Számok</link>"
-#. 3R3]
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
@@ -330,7 +297,6 @@ msgctxt ""
msgid "Number format: Default"
msgstr "Számformátum: általános"
-#. ,`*B
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
@@ -340,7 +306,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
msgstr "<link href=\"text/scalc/02/02150000.xhp\" name=\"Számformátum: általános\">Számformátum: általános</link>"
-#. AgQ]
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
@@ -350,7 +315,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Applies the default number format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">A kijelölt cellákra az alapértelmezett számformátumot alkalmazza.</ahelp>"
-#. I):)
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
@@ -359,7 +323,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Ikon</alt></image>"
-#. [QDs
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
@@ -369,7 +332,6 @@ msgctxt ""
msgid "Number Format: Standard"
msgstr "Számformátum: általános"
-#. ;s!:
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
@@ -379,7 +341,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formátum - Cellák - Számok\">Formátum - Cellák - Számok</link>"
-#. ^Bv$
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
@@ -388,7 +349,6 @@ msgctxt ""
msgid "Accept"
msgstr "Elfogadás"
-#. !rIy
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
@@ -397,7 +357,6 @@ msgctxt ""
msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
msgstr "<bookmark_value>képlet eszköztár; bevitelek elfogadása</bookmark_value><bookmark_value>függvények; bevitelek elfogadása ikon</bookmark_value>"
-#. XKAn
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
@@ -407,7 +366,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Elfogadás\">Elfogadás</link>"
-#. b%3(
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
@@ -417,7 +375,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_OK\">Elfogadja a <emph>Beviteli sor</emph> tartalmát, és beírja a tartalmat az aktuális cellába.</ahelp>"
-#. u8j\
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Ikon</alt></image>"
-#. M%0-
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
@@ -436,7 +392,6 @@ msgctxt ""
msgid "Accept"
msgstr "Elfogadás"
-#. X1u^
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -445,7 +400,6 @@ msgctxt ""
msgid "Number format: Percent"
msgstr "Számformátum: százalék"
-#. 38EL
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -455,7 +409,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Számformátum: százalék\">Számformátum: százalék</link>"
-#. }d+Z
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -465,7 +418,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatPercent\">A kijelölt cellákra a százalékformátumot alkalmazza.</ahelp>"
-#. y{0s
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -474,7 +426,6 @@ msgctxt ""
msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Ikon</alt></image>"
-#. aiTb
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -484,7 +435,6 @@ msgctxt ""
msgid "Number Format: Percent"
msgstr "Számformátum: százalék"
-#. zM+`
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -493,7 +443,6 @@ msgctxt ""
msgid "<bookmark_value>percentage calculations</bookmark_value>"
msgstr "<bookmark_value>százalékszámítások</bookmark_value>"
-#. gTTZ
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -503,7 +452,6 @@ msgctxt ""
msgid "You can also enter a percentage sign (%) after a number in a cell:"
msgstr "Egy százalékjelet (%) is beírhat a cellába a szám után:"
-#. =8Y?
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -513,7 +461,6 @@ msgctxt ""
msgid "1% corresponds to 0.01"
msgstr "Az 1% jelentése: 0,01."
-#. hRVS
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -523,7 +470,6 @@ msgctxt ""
msgid "1 + 16% corresponds to 116% or 1.16"
msgstr "Az 1 + 16% jelentése: 116% vagy 1,16."
-#. 4_p5
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -533,7 +479,6 @@ msgctxt ""
msgid "1%% corresponds to 0.0001"
msgstr "Az 1%% jelentése: 0,0001."
-#. ;=d3
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -543,7 +488,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formátum - Cellák - Számok\">Formátum - Cellák - Számok</link>"
-#. I~0N
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -552,7 +496,6 @@ msgctxt ""
msgid "Sum"
msgstr "Összeg"
-#. a)Kn
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -561,7 +504,6 @@ msgctxt ""
msgid "<bookmark_value>functions;sum function icon</bookmark_value> <bookmark_value>formula bar;sum function</bookmark_value> <bookmark_value>sum icon</bookmark_value> <bookmark_value>AutoSum button, see sum icon</bookmark_value>"
msgstr "<bookmark_value>függvények;összegzőfüggvény ikonja</bookmark_value> <bookmark_value>képlet eszköztár;összegzőfüggvény</bookmark_value> <bookmark_value>összegzés ikon</bookmark_value> <bookmark_value>automatikus összegzés gomb, lásd összegzés ikon</bookmark_value>"
-#. ZoJo
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -571,7 +513,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Összeg\">Összeg</link>"
-#. u^Ei
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -581,7 +522,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_INSWIN_SUMME\">Inserts the sum of a cell range into the current cell, or inserts sum values into selected cells. Click in a cell, click this icon, and optionally adjust the cell range. Or select some cells into which the sum values will be inserted, then click the icon.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_SUMME\">Beszúrja egy cellatartomány összegét az aktuális cellába, vagy beszúrja az összegértékeket a kijelölt cellákba. Kattintson egy cellára, kattintson erre az ikonra, majd szükség szerint állítsa be a cellatartományt. Ki is jelölheti azokat a cellákat, amelyekbe az összegértékeket be kívánja szúrni, ezután kattintson az ikonra ezek beszúrásához.</ahelp>"
-#. 7%?f
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -590,7 +530,6 @@ msgctxt ""
msgid "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Icon</alt></image>"
msgstr "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Ikon</alt></image>"
-#. $s$@
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -600,7 +539,6 @@ msgctxt ""
msgid "Sum"
msgstr "Összeg"
-#. ]Cv^
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -610,7 +548,6 @@ msgctxt ""
msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a sum function, you can combine it with the new one to yield the total sum of the range. If the range contains filters, the Subtotal function is inserted instead of the Sum function."
msgstr "A $[officename] automatikusan felajánl egy cellatartományt, feltéve, hogy a táblázat tartalmaz adatokat. Ha a cellatartomány már tartalmaz összegfüggvényt, akkor azt egyesítheti az újjal a tartomány teljes összegének kiszámításához. Ha a tartomány szűrőket tartalmaz, akkor az összegfüggvény helyett részösszegfüggvény kerül beszúrásra."
-#. SBM_
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
@@ -620,7 +557,6 @@ msgctxt ""
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
msgstr "A beviteli sorban megjelenő képlet használatához kattintson az <emph>Elfogadás</emph> ikonra (zöld pipa)."
-#. %aXN
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
@@ -629,7 +565,6 @@ msgctxt ""
msgid "Number Format: Add Decimal Place"
msgstr "Számformátum: tizedesjegy hozzáadása"
-#. kSO%
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
@@ -639,7 +574,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Számformátum: tizedesjegy hozzáadása\">Számformátum: tizedesjegy hozzáadása</link>"
-#. W8Q+
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
@@ -649,7 +583,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">Hozzáad egy tizedesjegyet a kijelölt cellákban lévő számokhoz.</ahelp>"
-#. 1`+s
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
@@ -658,7 +591,6 @@ msgctxt ""
msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Ikon</alt></image>"
-#. P[yQ
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
@@ -668,7 +600,6 @@ msgctxt ""
msgid "Number Format: Add Decimal Place"
msgstr "Számformátum: tizedesjegy hozzáadása"
-#. .AGZ
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
@@ -677,7 +608,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Mégse"
-#. ,\pf
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
@@ -686,7 +616,6 @@ msgctxt ""
msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
msgstr "<bookmark_value>képlet eszköztár; bevitelek törlése</bookmark_value><bookmark_value>függvények; bevitelek törlése ikon</bookmark_value>"
-#. G1!x
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
@@ -696,7 +625,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Mégse\">Mégse</link>"
-#. 9Mza
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
@@ -706,7 +634,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_INSWIN_CANCEL\">Clears the contents of the <emph>Input line</emph>, or cancels the changes that you made to an existing formula.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_CANCEL\">Törli a <emph>Beviteli sor</emph> tartalmát, vagy visszavonja egy már létező képleten történt változtatásokat.</ahelp>"
-#. fwm:
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
@@ -715,7 +642,6 @@ msgctxt ""
msgid "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Ikon</alt></image>"
-#. @BWz
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
@@ -725,7 +651,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Mégse"
-#. zl3%
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -734,7 +659,6 @@ msgctxt ""
msgid "Insert Cells"
msgstr "Cellák beszúrása"
-#. l;Ok
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -743,7 +667,6 @@ msgctxt ""
msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
msgstr "<bookmark_value>beszúrás; cellák, eszköztár ikonja</bookmark_value>"
-#. g^/%
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -753,7 +676,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Cellák beszúrása\">Cellák beszúrása</link>"
-#. f0W:
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -763,7 +685,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:InsCellsCtrl\">Kattintson az ikon melletti nyílra a <emph>Cellák beszúrása</emph> eszköztár megnyitásához, amelynek segítségével cellákat, sorokat és oszlopokat szúrhat be az aktuális munkalapba.</ahelp>"
-#. 2g!w
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -773,7 +694,6 @@ msgctxt ""
msgid "Tools bar icon:"
msgstr "Eszközök eszköztár ikonja:"
-#. *+o.
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -783,7 +703,6 @@ msgctxt ""
msgid "You can select the following icons:"
msgstr "A következő ikonokat választhatja ki:"
-#. mA@\
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -793,7 +712,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cellák beszúrása lefelé\">Cellák beszúrása lefelé</link>"
-#. iU~V
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -803,7 +721,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cellák beszúrása jobbra\">Cellák beszúrása jobbra</link>"
-#. CZ[L
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -813,7 +730,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Sorok\">Sorok</link>"
-#. kj[\
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
@@ -823,7 +739,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Oszlopok\">Oszlopok</link>"
-#. M:,X
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
@@ -832,7 +747,6 @@ msgctxt ""
msgid "Input line"
msgstr "Beviteli sor"
-#. nD#h
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
@@ -842,7 +756,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Beviteli sor\">Beviteli sor</link>"
-#. Z*1`
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
@@ -852,7 +765,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Írja be az aktuális cellába felvenni kívánt képletet. Ezenkívül egy előre meghatározott függvény képletbe való beszúrásához használhatja a <link href=\"text/scalc/01/04060000.xhp\" name=\"Függvénytündér\">Függvénytündér</link> ikont is.</ahelp>"
-#. ;:?f
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
@@ -861,7 +773,6 @@ msgctxt ""
msgid "Theme Selection"
msgstr "Témaválasztás"
-#. ;JZm
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
@@ -871,7 +782,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Témaválasztás\">Témaválasztás</link>"
-#. IazZ
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
@@ -881,7 +791,6 @@ msgctxt ""
msgid "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Applies a formatting style to the selected cells.</ahelp></variable> The styles include font, border, and background color information."
msgstr "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Formázási stílust alkalmaz a kijelölt cellákra.</ahelp></variable> A stílus betűkészlet-, szegély- és háttérszín-információkat foglal magában."
-#. !CZC
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
@@ -890,7 +799,6 @@ msgctxt ""
msgid "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Icon</alt></image>"
msgstr "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Ikon</alt></image>"
-#. W43t
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
@@ -900,7 +808,6 @@ msgctxt ""
msgid "Choose Themes"
msgstr "Témaválasztás"
-#. 16%q
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
@@ -910,7 +817,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Kattintson az alkalmazni kívánt formázási témára, majd kattintson az <emph>OK</emph> gombra.</ahelp>"
-#. !,im
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -919,7 +825,6 @@ msgctxt ""
msgid "Standard Formula, Date/Time, Error Warning"
msgstr "Szabványos képlet, Dátum/Idő, Hibafigyelmeztetés"
-#. 72El
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -928,7 +833,6 @@ msgctxt ""
msgid "<bookmark_value>formulas;status bar</bookmark_value>"
msgstr "<bookmark_value>képletek;állapotsor</bookmark_value>"
-#. EQs/
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -938,7 +842,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Szabványos képlet, Dátum/Idő, Hibafigyelmeztetés\">Szabványos képlet, Dátum/Idő, Hibafigyelmeztetés</link>"
-#. ?+85
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -948,7 +851,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:StateTableCell\">Displays information about the current document. By default, the SUM of the contents of the selected cells is displayed.</ahelp>"
msgstr "<ahelp hid=\".uno:StateTableCell\">Információt jelenít meg az aktuális dokumentumról. Alapértelmezés szerint a kijelölt cellák összege (SZUM) kerül megjelenítésre.</ahelp>"
-#. _(]g
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -958,7 +860,6 @@ msgctxt ""
msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
msgstr "A megjelenített alapértelmezett képlet módosításához kattintson a jobb egérgombbal a mezőre, majd válassza ki a kívánt képletet. Az elérhető képletek: Átlag, értékek száma (DARAB2), számok száma (DARAB), Maximum, Minimum, Összeg vagy Nincs."
-#. 8+!v
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -968,7 +869,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Hibakódok\">Hibakódok</link>"
-#. Q.QM
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -977,7 +877,6 @@ msgctxt ""
msgid "Function"
msgstr "Függvény"
-#. cY$d
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -986,7 +885,6 @@ msgctxt ""
msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
msgstr "<bookmark_value>képlet eszköztár; függvények</bookmark_value><bookmark_value>függvények; képlet eszköztár ikonja</bookmark_value>"
-#. --YN
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -996,7 +894,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Függvény\">Függvény</link>"
-#. Q-;Y
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -1006,7 +903,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">Egy képletet ad hozzá az aktuális cellához. Kattintson erre az ikonra, majd írja be a képletet a <emph>Beviteli sorba</emph>.</ahelp>"
-#. RsLu
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -1016,7 +912,6 @@ msgctxt ""
msgid "This icon is only available when the <emph>Input line</emph> box is not active."
msgstr "Ez az ikon csak akkor érhető el, ha a <emph>Beviteli sor</emph> mező nem aktív."
-#. tAFp
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -1025,7 +920,6 @@ msgctxt ""
msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
msgstr "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Ikon</alt></image>"
-#. KMYk
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
@@ -1035,7 +929,6 @@ msgctxt ""
msgid "Function"
msgstr "Függvény"
-#. OKS{
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1044,7 +937,6 @@ msgctxt ""
msgid "Zoom In"
msgstr "Nagyítás"
-#. LD}=
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1053,7 +945,6 @@ msgctxt ""
msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
msgstr "<bookmark_value>oldalnézetek; méretezés növelése</bookmark_value><bookmark_value>méretezés növelése oldalnézetben</bookmark_value><bookmark_value>nagyítás;oldalnézetek</bookmark_value>"
-#. +#Sx
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1063,7 +954,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr "<link href=\"text/scalc/02/10050000.xhp\" name=\"Nagyítás\">Nagyítás</link>"
-#. {wZ4
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1073,7 +963,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:ZoomIn\">Kinagyítja az aktuális dokumentum megjelenített képét. Az aktuális nagyítási tényező az <emph>Állapotsoron</emph> jelenik meg.</ahelp>"
-#. Q8;;
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1083,7 +972,6 @@ msgctxt ""
msgid "The maximum zoom factor is 400%."
msgstr "A maximális nagyítás mértéke 400%."
-#. cVp+
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1092,7 +980,6 @@ msgctxt ""
msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
msgstr "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Ikon</alt></image>"
-#. ]}No
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -1102,7 +989,6 @@ msgctxt ""
msgid "Zoom In"
msgstr "Nagyítás"
-#. Te^i
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1111,7 +997,6 @@ msgctxt ""
msgid "Sheet Area"
msgstr "Munkalapterület"
-#. 5[Q;
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1120,7 +1005,6 @@ msgctxt ""
msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
msgstr "<bookmark_value>képlet eszköztár; munkalapterület-nevek</bookmark_value><bookmark_value>munkalapterület-nevek</bookmark_value><bookmark_value>megjelenítés; cellahivatkozások</bookmark_value><bookmark_value>cellahivatkozások; megjelenítés</bookmark_value>"
-#. _ls3
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1130,7 +1014,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Névdoboz\">Névdoboz</link>"
-#. z3S|
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1140,7 +1023,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_POS\">Megjeleníti a jelenlegi cellára, a kijelölt cellatartományra vagy a terület nevére mutató hivatkozást. Egy cellatartományt is kiválaszthat, majd megadhat egy nevet a tartományhoz a <emph>Névdoboz</emph> mezőben.</ahelp>"
-#. ESzw
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1149,7 +1031,6 @@ msgctxt ""
msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Kombinált lista munkalapterülete</alt></image>"
-#. fQ:s
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1159,7 +1040,6 @@ msgctxt ""
msgid "Name Box"
msgstr "Névdoboz"
-#. F^.a
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
@@ -1169,7 +1049,6 @@ msgctxt ""
msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
msgstr "Egy megadott cellára való ugráshoz vagy egy cellatartomány kijelöléséhez írja be ebbe a mezőbe a cellahivatkozást vagy a cellatartomány-hivatkozást. Például: F1 vagy A1:C4."
-#. qxH`
#: 08010000.xhp
msgctxt ""
"08010000.xhp\n"
@@ -1178,7 +1057,6 @@ msgctxt ""
msgid "Position in document"
msgstr "Elhelyezkedés a dokumentumban"
-#. S~NR
#: 08010000.xhp
msgctxt ""
"08010000.xhp\n"
@@ -1188,7 +1066,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Elhelyezkedés a dokumentumban\">Elhelyezkedés a dokumentumban</link>"
-#. ,:t3
#: 08010000.xhp
msgctxt ""
"08010000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/scalc/04.po b/source/hu/helpcontent2/source/text/scalc/04.po
index 00b9a4112c1..1c2410de649 100644
--- a/source/hu/helpcontent2/source/text/scalc/04.po
+++ b/source/hu/helpcontent2/source/text/scalc/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-14 11:01+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. AOJ^
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Shortcut Keys for Spreadsheets"
msgstr "Gyorsbillentyűk munkafüzetekhez"
-#. ?j0i
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value><bookmark_value>shortcut keys; spreadsheets</bookmark_value><bookmark_value>sheet ranges; filling</bookmark_value>"
msgstr "<bookmark_value>munkafüzetek; gyorsbillentyűk</bookmark_value><bookmark_value>gyorsbillentyűk; munkafüzetekben</bookmark_value><bookmark_value>munkalap-tartományok; kitöltés</bookmark_value>"
-#. 5xTU
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
msgstr "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Gyorsbillentyűk munkafüzetekhez\">Gyorsbillentyűk munkafüzetekhez</link></variable>"
-#. AGN:
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
msgstr "Ha egy kijelölt cellatartományt a <emph>Beviteli sorba</emph> beírt képlettel kíván kitölteni, nyomja meg az <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter billentyűkombinációt. Ha az adatbeviteli cella formázását a teljes cellatartományra alkalmazni kívánja, akkor tartsa lenyomva az <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift billentyűket."
-#. 6}FX
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
msgstr "Egy olyan mátrix létrehozásához, amelyben az összes cella a <emph>Beviteli sorban</emph> megadott információkat tartalmazza, nyomja meg a Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter billentyűkombinációt. A mátrix összetevői nem szerkeszthetők."
-#. 7!-x
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "To select multiple cells in different areas of a sheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag in the different areas."
msgstr "Ha több, a munkalap különböző területein található cellát kíván kijelölni, tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, majd húzza be a különböző területeket."
-#. !U,-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "To select multiple sheets in a spreadsheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet."
msgstr "Egy munkafüzet több munkalapjának kijelöléséhez tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, majd kattintson a munkaterület alsó szélénél található névcímkékre. Ha egy kijelölésben csupán egyetlen munkalapot kíván kiválasztani, tartsa lenyomva a Shift billentyűt, majd kattintson a munkalap névcímkéjére."
-#. cCe%
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr "Kézi sortörés cellába való beszúrásához kattintson egy cellába, majd nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter billentyűket."
-#. Wb2n
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "To delete the contents of selected cells, press Backspace. This opens the <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Delete key."
msgstr "A kijelölt cellák tartalmának törléséhez nyomja meg a Backspace billentyűt Ezáltal megnyitásra kerül a <link href=\"text/scalc/01/02150000.xhp\" name=\"Tartalom törlése\">Tartalom törlése</link> párbeszédablak, amelyben meghatározhatja a törlendő cellatartalmat. Ha a cellák tartalmát párbeszédablak nélkül kívánja törölni, akkor nyomja meg a Delete billentyűt."
-#. P+;$
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Navigating in Spreadsheets"
msgstr "Navigálás munkafüzetekben"
-#. ^)06
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. \+9Z
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "<emph>Effect</emph>"
msgstr "<emph>Hatás</emph>"
-#. I%CI
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
-#. YbI[
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Moves the cursor to the first cell in the sheet (A1)."
msgstr "A munkalap első cellájába (A1) helyezi a kurzort."
-#. roF4
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
-#. 1n7@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Moves the cursor to the last cell on the sheet that contains data."
msgstr "A munkalap utolsó adatot tartalmazó cellájába helyezi a kurzort."
-#. .{K4
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Home"
msgstr "Home"
-#. c\;#
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Moves the cursor to the first cell of the current row."
msgstr "Az aktuális sor első cellájába helyezi a kurzort."
-#. 5l0~
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "End"
msgstr "End"
-#. V#25
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Moves the cursor to the last cell of the current row."
msgstr "Az aktuális sor utolsó cellájába helyezi a kurzort."
-#. d2oP
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "Shift+Home"
msgstr "Shift+Home"
-#. uB@S
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "Selects cells from the current cell to the first cell of the current row."
msgstr "Kijelöli cellákat a jelenlegi cellától a jelenlegi sor első cellájáig."
-#. h-VS
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "Shift+End"
msgstr "Shift+End"
-#. ,=@N
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Selects cells from the current cell to the last cell of the current row."
msgstr "Kijelöli cellákat a jelenlegi cellától a jelenlegi sor utolsó cellájáig."
-#. |aQu
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "Shift+Page Up"
msgstr "Shift+Page Up"
-#. BZmm
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Selects cells from the current cell up to one page in the current column or extends the existing selection one page up."
msgstr "Kijelöli cellákat a jelenlegi cellától a jelenlegi oszlopban egy oldallal feljebb, vagy kiterjeszti a már meglévő kijelölést egy oldallal feljebb."
-#. }-T+
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "Shift+Page Down"
msgstr "Shift+Page Down"
-#. {](E
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -293,7 +265,6 @@ msgctxt ""
msgid "Selects cells from the current cell down to one page in the current column or extends the existing selection one page down."
msgstr "Kijelöli cellákat a jelenlegi cellától a jelenlegi oszlopban egy oldallal lejjebb, vagy kiterjeszti a már meglévő kijelölést egy oldallal lejjebb."
-#. q3TG
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -303,7 +274,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Balra nyíl"
-#. Ubg!
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -313,7 +283,6 @@ msgctxt ""
msgid "Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data."
msgstr "Az aktuális adattartomány bal szélére helyezi a kurzort. Ha a kurzort tartalmazó cellától balra lévő oszlop üres, a következő balra lévő, adatot tartalmazó oszlopra helyezi a kurzort."
-#. 7YjV
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -323,7 +292,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Jobbra nyíl"
-#. |/l#
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -333,7 +301,6 @@ msgctxt ""
msgid "Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data."
msgstr "Az aktuális adattartomány jobb szélére helyezi a kurzort. Ha a kurzort tartalmazó cellától jobbra lévő oszlop üres, a következő jobbra lévő, adatot tartalmazó oszlopra helyezi a kurzort."
-#. 3)gX
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -343,7 +310,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Felfelé nyíl"
-#. T/F=
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -353,7 +319,6 @@ msgctxt ""
msgid "Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data."
msgstr "Az aktuális adattartomány felső szélére helyezi a kurzort. Ha a kurzort tartalmazó sortól felfelé lévő sor üres, a következő felfelé lévő, adatot tartalmazó sorra helyezi a kurzort."
-#. jaPc
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -363,7 +328,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Lefelé nyíl"
-#. iiU1
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -373,7 +337,6 @@ msgctxt ""
msgid "Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data."
msgstr "Az aktuális adattartomány alsó szélére helyezi a kurzort. Ha a kurzort tartalmazó sortól lefelé lévő sor üres, a következő lefelé lévő, adatot tartalmazó sorra helyezi a kurzort."
-#. 6Cv*
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -383,7 +346,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Nyíl"
-#. D`aV
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -393,7 +355,6 @@ msgctxt ""
msgid "Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected."
msgstr "A megnyomott nyíl irányában kijelöli az összes, adatot tartalmazó cellát az aktuális cellától az adatcellák tartományának végéig. Ha sorokat és oszlopokat jelöl ki együtt, egy négyszög alakú cellatartomány kerül kijelölésre."
-#. QO^k
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -403,7 +364,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Up"
-#. MW%#
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -413,7 +373,6 @@ msgctxt ""
msgid "Moves one sheet to the left."
msgstr "Egy munkalappal balra ugrik."
-#. O*x?
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -423,7 +382,6 @@ msgctxt ""
msgid "In the page preview: Moves to the previous print page."
msgstr "Oldal előnézetben: Az előző nyomtatási oldalra ugrik."
-#. :g$b
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -433,7 +391,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Down"
-#. :OHG
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -443,7 +400,6 @@ msgctxt ""
msgid "Moves one sheet to the right."
msgstr "Egy munkalappal jobbra ugrik."
-#. Xp`#
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -453,7 +409,6 @@ msgctxt ""
msgid "In the page preview: Moves to the next print page."
msgstr "Oldal előnézetben: A következő nyomtatási oldalra ugrik."
-#. I$pa
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -463,7 +418,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
-#. l^9x
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -473,7 +427,6 @@ msgctxt ""
msgid "Moves one screen to the left."
msgstr "Egy képernyővel balra ugrik."
-#. AhJ:
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -483,7 +436,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
-#. mr!c
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -493,7 +445,6 @@ msgctxt ""
msgid "Moves one screen page to the right."
msgstr "Egy képernyővel jobbra ugrik."
-#. vxfy
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -502,7 +453,6 @@ msgctxt ""
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Up"
-#. t5=:
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -511,7 +461,6 @@ msgctxt ""
msgid "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet."
msgstr "Hozzáadja az előző munkalapot az aktuálisan kijelölt munkalapokhoz. Ha egy munkafüzet összes munkalapja ki van jelölve, ez a gyorsbillentyű csak kiválasztja az előző munkalapot. Az előző munkalapot az aktuális munkalappá teszi."
-#. ,Mw8
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -520,7 +469,6 @@ msgctxt ""
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Down"
-#. V5tW
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -529,7 +477,6 @@ msgctxt ""
msgid "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet."
msgstr "Hozzáadja a következő munkalapot az aktuálisan kijelölt munkalapokhoz. Ha egy munkafüzet összes munkalapja ki van jelölve, ez a gyorsbillentyű csak kiválasztja a következő munkalapot. A következő munkalapot az aktuális munkalappá teszi."
-#. o.(6
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -539,7 +486,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ *"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ *"
-#. cW=8
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -549,7 +495,6 @@ msgctxt ""
msgid "where (*) is the multiplication sign on the numeric key pad"
msgstr "ahol (*) a numerikus billentyűzeten található szorzásjel"
-#. 5pZ\
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -559,7 +504,6 @@ msgctxt ""
msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
msgstr "Kijelöli a kurzort tartalmazó adattartományt. A tartomány egy olyan folyamatos cellatartomány, amely adatokat tartalmaz, és üres sorok és oszlopok által határolt."
-#. L`Qk
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -569,7 +513,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ /"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ /"
-#. `0YK
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -579,7 +522,6 @@ msgctxt ""
msgid "where (/) is the division sign on the numeric key pad"
msgstr "ahol (/) a numerikus billentyűzeten található osztásjel"
-#. GmAU
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -589,7 +531,6 @@ msgctxt ""
msgid "Selects the matrix formula range that contains the cursor."
msgstr "Kijelöli a kurzort tartalmazó mátrixképlet-tartományt."
-#. RVBD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -598,7 +539,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Plusz billentyű"
-#. V2dG
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -607,7 +547,6 @@ msgctxt ""
msgid "Insert cells (as in menu Insert - Cells)"
msgstr "Cellák beszúrása (mint a Beszúrás - Cellák menüparancsban)"
-#. h9OX
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -616,7 +555,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Mínusz billentyű"
-#. Jb)(
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -625,7 +563,6 @@ msgctxt ""
msgid "Delete cells (as in menu Edit - Delete Cells)"
msgstr "Törli a cellákat (mint a Szerkesztés - Cellák törlése menüparancs)."
-#. Vrj5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -635,7 +572,6 @@ msgctxt ""
msgid "Enter (in a selected range)"
msgstr "Enter (egy kijelölt tartományban)"
-#. HE$%
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -645,7 +581,6 @@ msgctxt ""
msgid "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - General</emph>."
msgstr "A kurzort egy cellával lefelé lépteti egy kijelölt tartományban. A kurzor mozgási irányának meghatározásához válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Általános</emph> lehetőséget."
-#. HKMk
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -654,7 +589,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ ` (see note below this table)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ ` (lásd a megjegyzés a táblázat alatt)"
-#. I?@@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -663,7 +597,6 @@ msgctxt ""
msgid "Displays or hides the formulas instead of the values in all cells."
msgstr "Megjeleníti vagy elrejti a képleteket a cellákban az értékük helyett."
-#. kE?3
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -672,7 +605,6 @@ msgctxt ""
msgid "The ` key is located next to the \"1\" key on most English keyboards. If your keyboard does not show this key, you can assign another key: Choose Tools - Customize, click the Keyboard tab. Select the \"View\" category and the \"Toggle Formula\" function."
msgstr "A ` billentyű magyar billentyűzeten a „7” billentyűn van, angol billentyűzeten az „1” billentyű mellett található. Ha nem találja ezt a billentyűt, hozzárendelhet egy másikat is. Válassza az Eszközök - Testreszabás menüparancsot, és kattintson a Billentyűzet fülre. Jelölje ki a „Nézet” kategóriában a „Képlet megjelenítése” funkciót."
-#. $Dm@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -682,7 +614,6 @@ msgctxt ""
msgid "Function Keys Used in Spreadsheets"
msgstr "Munkafüzetekben használt funkcióbillentyűk"
-#. #Q9]
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -692,7 +623,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. S#Fy
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -702,7 +632,6 @@ msgctxt ""
msgid "<emph>Effect</emph>"
msgstr "<emph>Hatás</emph>"
-#. UX$R
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -712,7 +641,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
-#. U2E_
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -722,7 +650,6 @@ msgctxt ""
msgid "Displays the comment that is attached to the current cell"
msgstr "Megjeleníti az aktuális cellához csatolt megjegyzést."
-#. \^P*
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -732,7 +659,6 @@ msgctxt ""
msgid "F2"
msgstr "F2"
-#. c6=n
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -742,7 +668,6 @@ msgctxt ""
msgid "Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode."
msgstr "Átvált szerkesztési módba, és a kurzort az aktuális cella tartalmának végére helyezi. A szerkesztési módból való kilépéshez nyomja meg még egyszer."
-#. roli
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -752,7 +677,6 @@ msgctxt ""
msgid "If the cursor is in an input box in a dialog that has a <emph>Minimize </emph>button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog."
msgstr "Ha a kurzor olyan párbeszédablak adatbeviteli mezőjében található, amely rendelkezik <emph>Minimalizálás</emph> gombbal, akkor a párbeszédablak elrejtésre kerül, csak az adatbeviteli mező marad látható. A teljes párbeszédablak megjelenítéséhez nyomja meg újra az F2 billentyűt."
-#. pSGo
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -762,7 +686,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-#. (h2l
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -772,7 +695,6 @@ msgctxt ""
msgid "Opens the Function Wizard."
msgstr "Megnyitja a Függvénytündért."
-#. dMLP
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -782,7 +704,6 @@ msgctxt ""
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-#. RtS.
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -792,7 +713,6 @@ msgctxt ""
msgid "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
msgstr "A kurzort a <emph>Beviteli sorra</emph> mozgatja, ahol megadhatja az aktuális cellára vonatkozó képletet."
-#. c!jH
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -802,7 +722,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-#. ^.!L
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -812,7 +731,6 @@ msgctxt ""
msgid "Opens the <emph>Define Names</emph> dialog."
msgstr "Megnyitja a <emph>Nevek megadása</emph> párbeszédablakot."
-#. DK]u
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -822,7 +740,6 @@ msgctxt ""
msgid "F4"
msgstr "F4"
-#. lCo(
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -832,7 +749,6 @@ msgctxt ""
msgid "Shows or Hides the Database explorer."
msgstr "Megjeleníti vagy elrejti az adatbázis-böngészőt."
-#. K57X
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -842,7 +758,6 @@ msgctxt ""
msgid "Shift+F4"
msgstr "Shift+F4"
-#. H=ey
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -852,7 +767,6 @@ msgctxt ""
msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
msgstr "Újrarendezi a beviteli mező relatív vagy abszolút hivatkozásait (például: A1, $A$1, $A1, A$1)."
-#. b5R{
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -862,7 +776,6 @@ msgctxt ""
msgid "F5"
msgstr "F5"
-#. HBV)
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -872,7 +785,6 @@ msgctxt ""
msgid "Shows or hides the <emph>Navigator</emph>."
msgstr "Megjeleníti, illetve elrejti a <emph>Navigátort</emph>."
-#. `5Mq
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -882,7 +794,6 @@ msgctxt ""
msgid "Shift+F5"
msgstr "Shift+F5"
-#. ;!x%
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -892,7 +803,6 @@ msgctxt ""
msgid "Traces dependents."
msgstr "Felderíti a függőségi viszonyokat."
-#. @3L0
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -902,7 +812,6 @@ msgctxt ""
msgid "Shift+F7"
msgstr "Shift+F7"
-#. YUsJ
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -912,7 +821,6 @@ msgctxt ""
msgid "Traces precedents."
msgstr "Felderíti az előzményeket."
-#. 6ZU$
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -922,7 +830,6 @@ msgctxt ""
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
-#. L[WP
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -932,7 +839,6 @@ msgctxt ""
msgid "Moves the cursor from the <emph>Input line </emph>to the <emph>Sheet area</emph> box."
msgstr "A kurzort a <emph>Beviteli sorból</emph> a <emph>Munkalapterület</emph> mezőbe lépteti."
-#. MGP-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -942,7 +848,6 @@ msgctxt ""
msgid "F7"
msgstr "F7"
-#. +GZd
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -952,7 +857,6 @@ msgctxt ""
msgid "Checks spelling in the current sheet."
msgstr "Ellenőrzi az aktuális munkalap helyesírását."
-#. (-SC
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -962,7 +866,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
-#. ;C^$
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -972,7 +875,6 @@ msgctxt ""
msgid "Opens the Thesaurus if the current cell contains text."
msgstr "Megnyitja a szinonimaszótárat, ha az aktuális cella szöveget tartalmaz."
-#. bk=|
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -982,7 +884,6 @@ msgctxt ""
msgid "F8"
msgstr "F8"
-#. YH]]
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -992,7 +893,6 @@ msgctxt ""
msgid "Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection."
msgstr "A további kijelölési módot be- vagy kikapcsolja. Ebben a módban a kijelölés kiterjesztéséhez használhatja a nyílbillentyűket. A kijelölés kiterjesztéséhez egy másik cellára is kattinthat."
-#. 8C3L
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1002,7 +902,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
-#. xb\C
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1012,7 +911,6 @@ msgctxt ""
msgid "Highlights cells containing values."
msgstr "Kiemeli az értékeket tartalmazó cellákat."
-#. {6^e
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1022,7 +920,6 @@ msgctxt ""
msgid "F9"
msgstr "F9"
-#. /-.%
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1032,7 +929,6 @@ msgctxt ""
msgid "Recalculates changed formulas in the current sheet."
msgstr "Újraszámítja a megváltozott képleteket az aktuális munkalapon."
-#. );!Q
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1041,7 +937,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
-#. (#b%
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1050,7 +945,6 @@ msgctxt ""
msgid "Recalculates all formulas in all sheets."
msgstr "Újraszámítja az összes képletet az összes munkalapon."
-#. _jI.
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1060,7 +954,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
-#. Ltsr
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1070,7 +963,6 @@ msgctxt ""
msgid "Updates the selected chart."
msgstr "Frissíti a kijelölt diagramot."
-#. +zrv
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1080,7 +972,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
-#. {gN/
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1090,7 +981,6 @@ msgctxt ""
msgid "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
msgstr "Megnyitja a <emph>Stílusok és formázás</emph> ablakot, ahol formázási stílust alkalmazhat a cella tartalmára, illetve az aktuális munkalapra."
-#. 136*
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1100,7 +990,6 @@ msgctxt ""
msgid "Shift+F11"
msgstr "Shift+F11"
-#. ClkY
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1110,7 +999,6 @@ msgctxt ""
msgid "Creates a document template."
msgstr "Létrehoz egy dokumentumsablont."
-#. @l33
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1120,7 +1008,6 @@ msgctxt ""
msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
msgstr "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
-#. ni$6
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1130,7 +1017,6 @@ msgctxt ""
msgid "Updates the templates."
msgstr "Frissíti a sablont."
-#. .|hi
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1140,7 +1026,6 @@ msgctxt ""
msgid "F12"
msgstr "F12"
-#. 1c@`
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1150,7 +1035,6 @@ msgctxt ""
msgid "Groups the selected data range."
msgstr "Csoportba rendezi a kijelölt adattartományt."
-#. -oPJ
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1160,7 +1044,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-#. 9.9S
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1170,7 +1053,6 @@ msgctxt ""
msgid "Ungroups the selected data range."
msgstr "Megszünteti a kijelölt adattartomány csoportba rendezését."
-#. I9`\
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1180,7 +1062,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Lefelé nyíl"
-#. (E,\
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1190,7 +1071,6 @@ msgctxt ""
msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
msgstr "Megnöveli az aktuális sor magasságát (csak <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org örökölt kompatibilitási módban</link>)."
-#. +mKl
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1200,7 +1080,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Felfelé nyíl"
-#. IadL
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1210,7 +1089,6 @@ msgctxt ""
msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
msgstr "Csökkenti az aktuális sor magasságát (csak <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org örökölt kompatibilitási módban</link>)."
-#. UB*U
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1220,7 +1098,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Right Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+ Jobbra nyíl"
-#. .H2Q
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1230,7 +1107,6 @@ msgctxt ""
msgid "Increases the width of the current column."
msgstr "Megnöveli az aktuális oszlop szélességét."
-#. qzpA
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1240,7 +1116,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Left Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+ Balra nyíl"
-#. nV|j
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1250,7 +1125,6 @@ msgctxt ""
msgid "Decreases the width of the current column."
msgstr "Csökkenti az aktuális oszlop szélességét."
-#. vq4*
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1260,7 +1134,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Arrow Key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Nyílbillentyű"
-#. I\a`
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1270,7 +1143,6 @@ msgctxt ""
msgid "Optimizes the column width or row height based on the current cell."
msgstr "Optimalizálja az aktuális cella alapján az oszlopszélességet és a sormagasságot."
-#. %%A{
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1280,7 +1152,6 @@ msgctxt ""
msgid "Formatting Cells Using Shortcut Keys"
msgstr "Cellák formázása gyorsbillentyűkkel"
-#. N(u+
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1290,7 +1161,6 @@ msgctxt ""
msgid "The following cell formats can be applied with the keyboard:"
msgstr "Billentyűzet segítségével a következő cellaformátumok alkalmazhatóak:"
-#. SnX;
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1300,7 +1170,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. 0oqo
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1310,7 +1179,6 @@ msgctxt ""
msgid "<emph>Effect</emph>"
msgstr "<emph>Hatás</emph>"
-#. (K5}
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1319,7 +1187,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+1 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+1 (nem a numerikus billentyűzeten)"
-#. Jkam
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1328,7 +1195,6 @@ msgctxt ""
msgid "Open Format Cells dialog"
msgstr "Megnyitja a Cellák formázása párbeszédablakot"
-#. nm@K
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1338,7 +1204,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (nem a numerikus billentyűzeten)"
-#. M$XO
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1348,7 +1213,6 @@ msgctxt ""
msgid "Two decimal places, thousands separator"
msgstr "Két tizedesjegy, ezreselválasztó"
-#. K.qi
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1358,7 +1222,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (nem a numerikus billentyűzeten)"
-#. O,a[
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1368,7 +1231,6 @@ msgctxt ""
msgid "Standard exponential format"
msgstr "Szabványos exponenciális-formátum"
-#. y$\S
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1378,7 +1240,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (nem a numerikus billentyűzeten)"
-#. ,Vk[
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1388,7 +1249,6 @@ msgctxt ""
msgid "Standard date format"
msgstr "Szabványos dátumformátum"
-#. m11+
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1398,7 +1258,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (nem a numerikus billentyűzeten)"
-#. %Cww
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1408,7 +1267,6 @@ msgctxt ""
msgid "Standard currency format"
msgstr "Szabványos pénznemformátum"
-#. sUF2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1418,7 +1276,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (nem a numerikus billentyűzeten)"
-#. A,*@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1428,7 +1285,6 @@ msgctxt ""
msgid "Standard percentage format (two decimal places)"
msgstr "Szabványos százalékformátum (két tizedesjeggyel)"
-#. B%^q
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1438,7 +1294,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (nem a numerikus billentyűzeten)"
-#. S#fl
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1448,7 +1303,6 @@ msgctxt ""
msgid "Standard format"
msgstr "Szabványos formátum"
-#. LnYV
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1458,7 +1312,6 @@ msgctxt ""
msgid "Using the pivot table"
msgstr "A kimutatástábla használata"
-#. [JdD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1467,7 +1320,6 @@ msgctxt ""
msgid "Keys"
msgstr "Billentyűk"
-#. 21%b
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1476,7 +1328,6 @@ msgctxt ""
msgid "Effect"
msgstr "Hatás"
-#. $f._
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1486,7 +1337,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tabulátor"
-#. K{:Q
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1496,7 +1346,6 @@ msgctxt ""
msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
msgstr "Előre mozgatja a fókuszt a párbeszédablak területein és gombjain."
-#. bbid
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1506,7 +1355,6 @@ msgctxt ""
msgid "Shift+Tab"
msgstr "Shift+Tab"
-#. FIui
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1516,7 +1364,6 @@ msgctxt ""
msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
msgstr "Hátrafelé mozgatja a fókuszt a párbeszédablak területein és gombjain."
-#. L[_F
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1526,7 +1373,6 @@ msgctxt ""
msgid "Up Arrow"
msgstr "Felfelé nyíl"
-#. dt]0
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1536,7 +1382,6 @@ msgctxt ""
msgid "Moves the focus up one item in the current dialog area."
msgstr "Egy elemmel feljebb helyezi a fókuszt az aktuális párbeszédablak területén."
-#. 31M-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1546,7 +1391,6 @@ msgctxt ""
msgid "Down Arrow"
msgstr "Lefelé nyíl"
-#. (:g[
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1556,7 +1400,6 @@ msgctxt ""
msgid "Moves the focus down one item in the current dialog area."
msgstr "Egy elemmel lejjebb helyezi a fókuszt az aktuális párbeszédablak területén."
-#. ufTs
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1566,7 +1409,6 @@ msgctxt ""
msgid "Left Arrow"
msgstr "Balra nyíl"
-#. ^fGS
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1576,7 +1418,6 @@ msgctxt ""
msgid "Moves the focus one item to the left in the current dialog area."
msgstr "Egy elemmel balra helyezi a fókuszt az aktuális párbeszédablak területén."
-#. B*-Q
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1586,7 +1427,6 @@ msgctxt ""
msgid "Right Arrow"
msgstr "Jobbra nyíl"
-#. sO#_
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1596,7 +1436,6 @@ msgctxt ""
msgid "Moves the focus one item to the right in the current dialog area."
msgstr "Egy elemmel jobbra helyezi a fókuszt az aktuális párbeszédablak területén."
-#. B%_L
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1606,7 +1445,6 @@ msgctxt ""
msgid "Home"
msgstr "Home"
-#. IK}B
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1616,7 +1454,6 @@ msgctxt ""
msgid "Selects the first item in the current dialog area."
msgstr "Kijelöli az aktuális párbeszédablak területén az első elemet."
-#. }QnS
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1626,7 +1463,6 @@ msgctxt ""
msgid "End"
msgstr "End"
-#. 9gfN
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1636,7 +1472,6 @@ msgctxt ""
msgid "Selects the last item in the current dialog area."
msgstr "Kijelöli az aktuális párbeszédablak területén az utolsó elemet."
-#. l+X9
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1646,7 +1481,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> és a „Sor” szó aláhúzott karaktere"
-#. 6/H[
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1656,7 +1490,6 @@ msgctxt ""
msgid "Copies or moves the current field into the \"Row\" area."
msgstr "Az aktuális mezőt a „Sor” területre másolja vagy helyezi át."
-#. 2DI2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1666,7 +1499,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Column\""
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> és az „Oszlop” szó aláhúzott karaktere"
-#. {JWu
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1676,7 +1508,6 @@ msgctxt ""
msgid "Copies or moves the current field into the \"Column\" area."
msgstr "Az aktuális mezőt az „Oszlop” területre másolja vagy helyezi át."
-#. J*5`
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1686,7 +1517,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> és az „Adat” szó aláhúzott karaktere"
-#. `y,A
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1696,7 +1526,6 @@ msgctxt ""
msgid "Copies or moves the current field into the \"Data\" area."
msgstr "Az aktuális mezőt az „Adat” területre másolja vagy helyezi át."
-#. hR]O
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1706,7 +1535,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Felfelé nyíl"
-#. /9*u
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1716,7 +1544,6 @@ msgctxt ""
msgid "Moves the current field up one place."
msgstr "Az aktuális mezőt egy hellyel feljebb helyezi."
-#. eBOM
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1726,7 +1553,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Lefelé nyíl"
-#. @yCB
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1736,7 +1562,6 @@ msgctxt ""
msgid "Moves the current field down one place."
msgstr "Az aktuális mezőt egy hellyel lejjebb helyezi."
-#. vCou
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1746,7 +1571,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Balra nyíl"
-#. eYk~
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1756,7 +1580,6 @@ msgctxt ""
msgid "Moves the current field one place to the left."
msgstr "Az aktuális mezőt egy hellyel balra helyezi."
-#. erED
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1766,7 +1589,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Jobbra nyíl"
-#. mDE3
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1776,7 +1598,6 @@ msgctxt ""
msgid "Moves the current field one place to the right."
msgstr "Az aktuális mezőt egy hellyel jobbra helyezi."
-#. [US}
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1786,7 +1607,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
-#. h25W
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1796,7 +1616,6 @@ msgctxt ""
msgid "Moves the current field to the first place."
msgstr "Áthelyezi az aktuális mezőt az első helyre."
-#. b]Vl
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1806,7 +1625,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
-#. ts_`
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1816,7 +1634,6 @@ msgctxt ""
msgid "Moves the current field to the last place."
msgstr "Áthelyezi az aktuális mezőt az utolsó helyre."
-#. qQW2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1826,7 +1643,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
-#. 5C:l
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1836,7 +1652,6 @@ msgctxt ""
msgid "Displays the options for the current field."
msgstr "Megjeleníti az aktuális mező beállításait."
-#. GFae
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1846,7 +1661,6 @@ msgctxt ""
msgid "Delete"
msgstr "Delete"
-#. +|Qj
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1856,7 +1670,6 @@ msgctxt ""
msgid "Removes the current field from the area."
msgstr "Eltávolítja a területről az aktuális mezőt."
-#. @g@q
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/scalc/05.po b/source/hu/helpcontent2/source/text/scalc/05.po
index 1e978ed39b7..3ec9287bc80 100644
--- a/source/hu/helpcontent2/source/text/scalc/05.po
+++ b/source/hu/helpcontent2/source/text/scalc/05.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-01-21 23:32+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. aqDD
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Error Codes in %PRODUCTNAME Calc"
msgstr "Hibakódok a %PRODUCTNAME Calc programban"
-#. 0N`*
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>error codes;list of</bookmark_value>"
msgstr "<bookmark_value>hibakódok;listája</bookmark_value>"
-#. 5vtb
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Hibakódok a %PRODUCTNAME Calc programban\">Hibakódok a <item type=\"productname\">%PRODUCTNAME</item> Calc programban</link>"
-#. kVo-
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "The following table is an overview of the error messages for <item type=\"productname\">%PRODUCTNAME</item> Calc. If the error occurs in the cell that contains the cursor, the error message is displayed on the <emph>Status Bar</emph>."
msgstr "Az alábbi táblázat a <item type=\"productname\">%PRODUCTNAME</item> Calc hibaüzeneteinek áttekintését tartalmazza. Ha a hiba a kurzort tartalmazó cellában következik be, akkor a hibaüzenet az <emph>Állapotsoron</emph> jelenik meg."
-#. xAw]
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "<bookmark_value>### error message</bookmark_value>"
msgstr "<bookmark_value>### hibaüzenet</bookmark_value>"
-#. ^FyM
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>"
msgstr "<bookmark_value>érvénytelen hivatkozások; hibaüzenetek</bookmark_value> <bookmark_value>hibaüzenetek;érvénytelen hivatkozások</bookmark_value> <bookmark_value>#HIV hibaüzenet</bookmark_value>"
-#. dV5o
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
msgstr "<bookmark_value>érvénytelen nevek; hibaüzenetek</bookmark_value> <bookmark_value>#NÉV? hibaüzenet</bookmark_value>"
-#. VM)-
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "Error Code"
msgstr "Hibakód"
-#. n8bo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Message"
msgstr "Üzenet"
-#. ~[+;
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Explanation"
msgstr "Magyarázat"
-#. /:D@
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "###"
msgstr "###"
-#. 9a^j
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "none"
msgstr "nincs"
-#. K/zf
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -139,7 +126,6 @@ msgctxt ""
msgid "The cell is not wide enough to display the contents."
msgstr "A cella nem elég széles ahhoz, hogy megjelenítse a tartalmat."
-#. ^$69
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "501"
msgstr "501"
-#. $6Jw
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "Invalid character"
msgstr "Érvénytelen karakter"
-#. *_lP
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Character in a formula is not valid."
msgstr "A képletben érvénytelen karakter van."
-#. dO#M
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "502"
msgstr "502"
-#. %eu1
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Invalid argument"
msgstr "Érvénytelen argumentum"
-#. 4b+l
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()."
msgstr "A függvény argumentuma érvénytelen. Például negatív szám a SQRT() függvényben, ami helyett az IMSQRT() függvényt kell használni."
-#. HCpM
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "503<br/>#NUM!"
msgstr "503<br/>#NUM!"
-#. e$~0
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Invalid floating point operation"
msgstr "Érvénytelen lebegőpontos művelet"
-#. 8WRV
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "A calculation results in an overflow of the defined value range."
msgstr "A számítás túlcsordulást eredményez a megadott értéktartományban."
-#. LoA$
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "504"
msgstr "504"
-#. |@(F
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Parameter list error"
msgstr "Paraméterlista-hiba"
-#. ^9~3
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference."
msgstr "A függvényparaméter nem érvényes, például szöveg van megadva szám helyett vagy tartományhivatkozás cellahivatkozás helyett."
-#. PSZq
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "508"
msgstr "508"
-#. xB9*
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Error: Pair missing"
msgstr "Hiba: Hiányzó pár"
-#. wiG}
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Missing bracket, for example, closing brackets, but no opening brackets"
msgstr "Hiányzó zárójel, például bezáró zárójelek nyitó zárójelek nélkül."
-#. i2/I
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "509"
msgstr "509"
-#. 8Q[A
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "Missing operator"
msgstr "Hiányzó operátor"
-#. JVE1
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
msgstr "Hiányzó operátor, például „=2(3+4) * ”, ahol a „2” és a „(” közül hiányzik az operátor."
-#. :|+m
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "510"
msgstr "510"
-#. a^!U
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "Missing variable"
msgstr "Hiányzó változó"
-#. 2Is4
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
msgstr "Hiányzó változó, például akkor, amikor két operátor egymást követi: „=1+*2”."
-#. 7YMG
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "511"
msgstr "511"
-#. gQE)
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "Missing variable"
msgstr "Hiányzó változó"
-#. K%K]
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "Function requires more variables than are provided, for example, AND() and OR()."
msgstr "A függvényeknek a megadottnál több változóra van szükségük, például ÉS() és VAGY()."
-#. L*-V
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "512"
msgstr "512"
-#. #$W?
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "Formula overflow"
msgstr "Képlettúlcsordulás"
-#. (,Bu
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -409,7 +369,6 @@ msgctxt ""
msgid "<emph>Compiler:</emph> the total number of internal tokens, (that is, operators, variables, brackets) in the formula exceeds 512."
msgstr "<emph>Fordító:</emph> a belső jelek száma (ilyenek az operátorok, a változók, a szögletes zárójelek) a képletben túllépi az 512-t."
-#. !E)\
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -419,7 +378,6 @@ msgctxt ""
msgid "513"
msgstr "513"
-#. c[J%
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -429,7 +387,6 @@ msgctxt ""
msgid "String overflow"
msgstr "Szövegtúlcsordulás"
-#. TB/p
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -439,7 +396,6 @@ msgctxt ""
msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 KB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 KB in size."
msgstr "<emph>Fordító:</emph> a képletben lévő egyik azonosító mérete meghaladja a 64 kB-ot. <emph>Értelmező:</emph> a karakterlánc-művelet egy eredménye túllépi a 64 kB-os méretet."
-#. \TKo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -449,7 +405,6 @@ msgctxt ""
msgid "514"
msgstr "514"
-#. iL0#
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -459,7 +414,6 @@ msgctxt ""
msgid "Internal overflow"
msgstr "Belső túlcsordulás"
-#. 5f2B
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -469,7 +423,6 @@ msgctxt ""
msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
msgstr "Túl sok számadattal próbált rendezni (max. 100000 lehet), vagy számításiverem-túlcsordulás történt."
-#. ($?.
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -479,7 +432,6 @@ msgctxt ""
msgid "516"
msgstr "516"
-#. Y\k2
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -489,7 +441,6 @@ msgctxt ""
msgid "Internal syntax error"
msgstr "Belső szintaktikai hiba"
-#. lCrb
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -499,7 +450,6 @@ msgctxt ""
msgid "Matrix is expected on the calculation stack, but is not available."
msgstr "A program mátrixot várt a számítási veremben, de az nem érhető el."
-#. pn;x
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -509,7 +459,6 @@ msgctxt ""
msgid "517"
msgstr "517"
-#. -T2+
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -519,7 +468,6 @@ msgctxt ""
msgid "Internal syntax error"
msgstr "Belső szintaktikai hiba"
-#. yXC:
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -529,7 +477,6 @@ msgctxt ""
msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function."
msgstr "Ismeretlen kód, például régebbi verzióban nyit meg egy újabb verzióval készített dokumentumot, amelyben bizonyos függvények nem érhetők el."
-#. Uod)
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -539,7 +486,6 @@ msgctxt ""
msgid "518"
msgstr "518"
-#. AH0=
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -549,7 +495,6 @@ msgctxt ""
msgid "Internal syntax error"
msgstr "Belső szintaktikai hiba"
-#. 7QPr
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -559,7 +504,6 @@ msgctxt ""
msgid "Variable is not available"
msgstr "A változó nem érhető el."
-#. Fl`@
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -569,7 +513,6 @@ msgctxt ""
msgid "519<br/>#VALUE"
msgstr "519<br/>#VALUE"
-#. 0u*+
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -579,7 +522,6 @@ msgctxt ""
msgid "No result (#VALUE is in the cell rather than Err:519!)"
msgstr "Nincs eredmény (#ÉRTÉK áll a cellában és nem Hiba:519!)"
-#. ?EZr
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -589,7 +531,6 @@ msgctxt ""
msgid "The formula yields a value that does not correspond to the definition; or a cell that is referenced in the formula contains text instead of a number."
msgstr "A képlet olyan eredményt szolgáltat, amely nincs összhangban a definícióval, vagy a képletben hivatkozott cella szöveget tartalmaz szám helyett."
-#. ~6z^
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -599,7 +540,6 @@ msgctxt ""
msgid "520"
msgstr "520"
-#. v=}8
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -609,7 +549,6 @@ msgctxt ""
msgid "Internal syntax error"
msgstr "Belső szintaktikai hiba"
-#. /7MT
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -619,7 +558,6 @@ msgctxt ""
msgid "Compiler creates an unknown compiler code."
msgstr "A fordító ismeretlen fordítókódot hoz létre."
-#. pF{S
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -629,7 +567,6 @@ msgctxt ""
msgid "521"
msgstr "521"
-#. 7J$T
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -639,7 +576,6 @@ msgctxt ""
msgid "Internal syntax error"
msgstr "Belső szintaktikai hiba"
-#. #Vis
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -649,7 +585,6 @@ msgctxt ""
msgid "No result."
msgstr "Nincs eredmény."
-#. n?oO
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -659,7 +594,6 @@ msgctxt ""
msgid "522"
msgstr "522"
-#. CV,f
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -669,7 +603,6 @@ msgctxt ""
msgid "Circular reference"
msgstr "Körkörös hivatkozás"
-#. 6{+z
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -679,7 +612,6 @@ msgctxt ""
msgid "Formula refers directly or indirectly to itself and the <emph>Iterations</emph> option is not set under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate."
msgstr "A képlet közvetlenül vagy közvetetten önmagára hivatkozik, és az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Számítás panel <emph>Iterációk</emph> beállítása nincs kijelölve."
-#. )B^z
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -689,7 +621,6 @@ msgctxt ""
msgid "523"
msgstr "523"
-#. @J6S
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -699,7 +630,6 @@ msgctxt ""
msgid "The calculation procedure does not converge"
msgstr "A számítási eljárás nem konvergens"
-#. r(r8
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -709,7 +639,6 @@ msgctxt ""
msgid "Function missed a targeted value, or <link href=\"text/shared/optionen/01060500.xhp\">iterative references</link> do not reach the minimum change within the maximum steps that are set."
msgstr "Egy függvénynek hiányzik a célértéke, vagy az <link href=\"text/shared/optionen/01060500.xhp\">iteratív hivatkozások</link> nem érik el a megadott maximális számú lépés alatt a minimális változást."
-#. -M59
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -719,7 +648,6 @@ msgctxt ""
msgid "524<br/>#REF"
msgstr "524<br/>#REF"
-#. =R7D
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -729,7 +657,6 @@ msgctxt ""
msgid "invalid references (instead of Err:524 cell contains #REF)"
msgstr "Érvénytelen hivatkozások (Hiba:524 helyett a cellában #HIV! áll)"
-#. tIBn
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -739,7 +666,6 @@ msgctxt ""
msgid "<emph>Compiler:</emph> a column or row description name could not be resolved. <emph>Interpreter:</emph> in a formula, the column, row, or sheet that contains a referenced cell is missing."
msgstr "<emph>Fordító:</emph> egy oszlop vagy sor leírásnevét nem lehet feloldani. <emph>Értelmező:</emph> hiányzik egy képletben a hivatkozott cellát tartalmazó oszlop, sor vagy munkalap."
-#. \,34
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -749,7 +675,6 @@ msgctxt ""
msgid "525<br/>#NAME?"
msgstr "525<br/>#NAME?"
-#. J?;W
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -759,7 +684,6 @@ msgctxt ""
msgid "invalid names (instead of Err:525 cell contains #NAME?)"
msgstr "Érvénytelen nevek (Hiba:525 helyett a cellában #NÉV? áll)"
-#. rF%=
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -769,7 +693,6 @@ msgctxt ""
msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
msgstr "Egy azonosító nem értékelhető ki, például nincs érvényes hivatkozás, nincs érvényes tartománynév, nincs érvényes oszlop/sorcímke, nincs makró, hibás a tizedesosztó, nem található kiegészítő."
-#. VFvf
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -779,7 +702,6 @@ msgctxt ""
msgid "526"
msgstr "526"
-#. l+t4
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -789,7 +711,6 @@ msgctxt ""
msgid "Internal syntax error"
msgstr "Belső szintaktikai hiba"
-#. huS3
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -799,7 +720,6 @@ msgctxt ""
msgid "Obsolete, no longer used, but could come from old documents if the result is a formula from a domain."
msgstr "Elavult, már nem használatos, de régi dokumentumok esetén előfordulhat, ha az eredmény egy képlet egy tartományból."
-#. q|NZ
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -809,7 +729,6 @@ msgctxt ""
msgid "527"
msgstr "527"
-#. /x$w
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -819,7 +738,6 @@ msgctxt ""
msgid "Internal overflow"
msgstr "Belső túlcsordulás"
-#. ?Jl8
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -829,7 +747,6 @@ msgctxt ""
msgid "<emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
msgstr "<emph>Értelmező: </emph> A hivatkozások (ha például egy cella egy másik cellára hivatkozik) túlságosan egymásba vannak ágyazva."
-#. 4D}A
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -838,7 +755,6 @@ msgctxt ""
msgid "532<br/>#DIV/0!"
msgstr "532<br/>#DIV/0!"
-#. [oD\
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -847,7 +763,6 @@ msgctxt ""
msgid "Division by zero"
msgstr "Osztás nullával"
-#. `or7
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
@@ -856,7 +771,6 @@ msgctxt ""
msgid "Division operator / if the denominator is 0<br/>Some more functions return this error, for example:<br/>VARP with less than 1 argument<br/>STDEVP with less than 1 argument<br/>VAR with less than 2 arguments<br/>STDEV with less than 2 arguments<br/>STANDARDIZE with stdev=0<br/>NORMDIST with stdev=0"
msgstr "Osztás operátor / és a nevező 0<br/>Néhány függvény is ezt a hibát adja vissza, például:<br/>a VARP, ha 1-nél kevesebb argumentuma van<br/>a SZÓRÁSP, ha 1-nél kevesebb argumentuma van<br/>a VAR, ha 2-nél kevesebb argumentuma van<br/>a SZÓRÁS, ha 2-nél kevesebb argumentuma van<br/>a NORMALIZÁLÁS, ha a szórás 0<br/>a NORM.ELOSZL, ha a szórás 0"
-#. _1@@
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -865,7 +779,6 @@ msgctxt ""
msgid "Handling of Empty Cells"
msgstr "Üres cellák kezelése"
-#. -KvH
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -874,7 +787,6 @@ msgctxt ""
msgid "<bookmark_value>empty cells;handling of</bookmark_value>"
msgstr "<bookmark_value>üres cellák;kezelés</bookmark_value>"
-#. IPo,
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -883,7 +795,6 @@ msgctxt ""
msgid "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Handling of Empty Cells</link></variable>"
msgstr "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Üres cellák kezelése</link></variable>"
-#. 0j4[
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -892,7 +803,6 @@ msgctxt ""
msgid "In older versions of the software, empty cells were forced to numeric 0 in some contexts and to empty string in others, except in direct comparison where =A1=0 and =A1=\"\" both resulted in TRUE if A1 was empty. Emptiness now is inherited until used, so both =VLOOKUP(...)=0 and =VLOOKUP(...)=\"\" give TRUE if the lookup resulted in an empty cell being returned."
msgstr "A szoftver régebbi verzióiban az üres cellák bizonyos kontextusban numerikus 0 értéket kaptak, míg más esetekben üres karakterláncot, kivéve a közvetlen összehasonlítás esetén, ahol az =A1=0 és az =A1=\"\" egyaránt IGAZ értéket eredményezett, ha A1 üres volt. Az üresség most öröklődik a használatig, így az =FKERES(...)=0 és az =FKERES(...)=\"\" függvény IGAZ értéket ad vissza, ha a keresés üres cellát talál."
-#. mr|L
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -901,7 +811,6 @@ msgctxt ""
msgid "A simple reference to an empty cell is still displayed as numeric 0 but is not necessarily of type numeric anymore, so also comparisons with the referencing cell work as expected."
msgstr "Az üres cellára mutató egyszerű hivatkozás még mindig numerikus 0-ként jelenik meg, de nem feltétlenül numerikus típusként, így a hivatkozó cellával történő összehasonlítás az elvárt módon működik."
-#. ]OiA
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -910,7 +819,6 @@ msgctxt ""
msgid "For the following examples, A1 contains a number, B1 is empty, C1 contains the reference to B1:"
msgstr "Az alábbi példák esetén az A1 egy számot tartalmaz, a B1 üres, a C1 hivatkozik a B1-re:"
-#. !p+6
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -919,7 +827,6 @@ msgctxt ""
msgid "A1: 1 B1: <empty> C1: =B1 (displays 0)"
msgstr "A1: 1 B1: <üres> C1: =B1 (0 jelenik meg)"
-#. 0fME
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -928,7 +835,6 @@ msgctxt ""
msgid "=B1=0 => TRUE"
msgstr "=B1=0 => IGAZ"
-#. B_:U
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -937,7 +843,6 @@ msgctxt ""
msgid "=B1=\"\" => TRUE"
msgstr "=B1=\"\" => IGAZ"
-#. wVu#
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -946,7 +851,6 @@ msgctxt ""
msgid "=C1=0 => TRUE"
msgstr "=C1=0 => IGAZ"
-#. z+bK
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -955,7 +859,6 @@ msgctxt ""
msgid "=C1=\"\" => TRUE (previously was FALSE)"
msgstr "=C1=\"\" => IGAZ (korábban HAMIS volt)"
-#. Tbmx
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -964,7 +867,6 @@ msgctxt ""
msgid "=ISNUMBER(B1) => FALSE"
msgstr "=SZÁM(B1) => HAMIS"
-#. h0Q]
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -973,7 +875,6 @@ msgctxt ""
msgid "=ISNUMBER(C1) => FALSE (previously was TRUE)"
msgstr "=SZÁM(C1) => HAMIS (korábban IGAZ volt)"
-#. HPOI
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -982,7 +883,6 @@ msgctxt ""
msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
msgstr "=SZÁM(FKERES(1;A1:C1;2)) => HAMIS (B1)"
-#. qIUC
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -991,7 +891,6 @@ msgctxt ""
msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
msgstr "=SZÁM(FKERES(1;A1:C1;3)) => HAMIS (C1, korábban IGAZ volt)"
-#. [Aea
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1000,7 +899,6 @@ msgctxt ""
msgid "=ISTEXT(B1) => FALSE"
msgstr "=SZÖVEG.E(B1) => HAMIS"
-#. ndkI
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1009,7 +907,6 @@ msgctxt ""
msgid "=ISTEXT(C1) => FALSE"
msgstr "=SZÖVEG.E(C1) => HAMIS"
-#. KpH0
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1018,7 +915,6 @@ msgctxt ""
msgid "=ISTEXT(VLOOKUP(1;A1:C1;2)) => FALSE (B1, previously was TRUE)"
msgstr "=SZÖVEG.E(FKERES(1;A1:C1;2)) => HAMIS (B1, korábban IGAZ volt)"
-#. M1%O
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1027,7 +923,6 @@ msgctxt ""
msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
msgstr "=SZÖVEG.E(FKERES(1;A1:C1;3)) => HAMIS (C1)"
-#. #Y74
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1036,7 +931,6 @@ msgctxt ""
msgid "=ISBLANK(B1) => TRUE"
msgstr "=ÜRES(B1) => IGAZ"
-#. Wz8}
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1045,7 +939,6 @@ msgctxt ""
msgid "=ISBLANK(C1) => FALSE"
msgstr "=ÜRES(C1) => HAMIS"
-#. l},#
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1054,7 +947,6 @@ msgctxt ""
msgid "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
msgstr "=ÜRES(FKERES(1;A1:C1;2)) => IGAZ (B1, korábban HAMIS volt)"
-#. APFY
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1063,7 +955,6 @@ msgctxt ""
msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
msgstr "=ÜRES(FKERES(1;A1:C1;3)) => HAMIS (C1)"
-#. d8Uo
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1072,7 +963,6 @@ msgctxt ""
msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:"
msgstr "Megjegyzés: A Microsoft Excel eltérő módon viselkedik, és mindig számot ad vissza egy üres cellára vagy egy üres cellát eredményező képletcellára történő hivatkozás esetén. Például:"
-#. ?%Go
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1081,7 +971,6 @@ msgctxt ""
msgid "A1: <empty>"
msgstr "A1: <üres>"
-#. !ED7
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1090,7 +979,6 @@ msgctxt ""
msgid "B1: =A1 => displays 0, but is just a reference to an empty cell"
msgstr "B1: =A1 => 0 jelenik meg, de ez csak hivatkozás egy üres cellára"
-#. YNTk
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1099,7 +987,6 @@ msgctxt ""
msgid "=ISNUMBER(A1) => FALSE"
msgstr "=SZÁM(A1) => HAMIS"
-#. $$4?
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1108,7 +995,6 @@ msgctxt ""
msgid "=ISTEXT(A1) => FALSE"
msgstr "=SZÖVEG.E(A1) => HAMIS"
-#. kgE?
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1117,7 +1003,6 @@ msgctxt ""
msgid "=A1=0 => TRUE"
msgstr "=A1=0 => IGAZ"
-#. flqd
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1126,7 +1011,6 @@ msgctxt ""
msgid "=A1=\"\" => TRUE"
msgstr "=A1=\"\" => IGAZ"
-#. 4u$N
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1135,7 +1019,6 @@ msgctxt ""
msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)"
msgstr "=SZÁM(B1) => HAMIS (MS-Excel: IGAZ)"
-#. lWu[
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1144,7 +1027,6 @@ msgctxt ""
msgid "=ISTEXT(B1) => FALSE"
msgstr "=SZÖVEG.E(B1) => HAMIS"
-#. `pU\
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1153,7 +1035,6 @@ msgctxt ""
msgid "=B1=0 => TRUE"
msgstr "=B1=0 => IGAZ"
-#. R`XK
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1162,7 +1043,6 @@ msgctxt ""
msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
msgstr "=B1=\"\" => IGAZ (MS-Excel: HAMIS)"
-#. QK-/
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1171,7 +1051,6 @@ msgctxt ""
msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
msgstr "A C1: =FKERES(...) üres cellával üresen jelenik meg (MS-Excel: 0 jelenik meg)"
-#. yA=u
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1180,7 +1059,6 @@ msgctxt ""
msgid "=ISNUMBER(VLOOKUP(...)) => FALSE"
msgstr "=SZÁM(FKERES(...)) => HAMIS"
-#. M0CE
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1189,7 +1067,6 @@ msgctxt ""
msgid "=ISTEXT(VLOOKUP(...)) => FALSE"
msgstr "=SZÖVEG.E(FKERES(...)) => HAMIS"
-#. Jd@n
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
@@ -1198,7 +1075,6 @@ msgctxt ""
msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
msgstr "=SZÁM(C1) => HAMIS (MS-Excel IGAZ)"
-#. /+%B
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/scalc/guide.po b/source/hu/helpcontent2/source/text/scalc/guide.po
index 7d767e14d84..23d50960519 100644
--- a/source/hu/helpcontent2/source/text/scalc/guide.po
+++ b/source/hu/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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: 2012-07-14 10:57+0200\n"
"Last-Translator: Gábor <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. }@ip
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Using Scenarios"
msgstr "Esetek használata"
-#. _qKL
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
msgstr "<bookmark_value>esetek;eltávolítás/szerkesztés/törlés</bookmark_value><bookmark_value>megnyitás;esetek</bookmark_value><bookmark_value>kijelölés;esetek a Navigátorban</bookmark_value>"
-#. YFK2
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Esetek használata\">Esetek használata</link></variable>"
-#. /EOb
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
msgstr "A $[officename] Calc-esetek cellaértékek halmazai, amelyek a számításokban felhasználhatók. Minden esethez nevet rendelhet a munkalapon. Adjon meg több esetet ugyanazon a munkalapon, mindegyikhez különböző cellaértékek tartozzanak. A cellahalmazok között ezután könnyen váltogathat a nevük alapján, és azonnal láthatja az eredményt. Az esetek a „mi lenne, ha” típusú kérdések kiértékeléséhez hasznos eszközök."
-#. b).4
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Creating Your Own Scenarios"
msgstr "Saját esetek létrehozása"
-#. #+H4
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "To create a scenario, select all the cells that provide the data for the scenario."
msgstr "Eset létrehozásához jelölje ki az esetadatokat tartalmazó cellákat."
-#. rO5A
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
msgstr "Jelölje ki a cellákat, amelyek az esetek között változó értékeket tartalmazzák. Több cella kijelöléséhez tartsa lenyomva a <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> billentyűt, és úgy kattintson minden egyes kijelölendő cellára."
-#. _oDi
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
msgstr "Válassza az <emph>Eszközök - Esetek</emph> lehetőséget. Megjelenik az <emph>Eset létrehozása</emph> párbeszédablak."
-#. ;_U4
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
msgstr "Adja meg az új eset nevét, és hagyja a többi mezőben az eredeti értékeket. Zárja be a párbeszédablakot az OK gomb megnyomásával. Az új eset automatikusan aktiválódik."
-#. aF7f
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Using Scenarios"
msgstr "Esetek használata"
-#. PmF{
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Scenarios can be selected in the Navigator:"
msgstr "Esteket a Navigátorból is kiválaszthat:"
-#. p?ng
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
msgstr "Nyissa meg a Navigátort a Standard eszköztáron lévő <emph>Navigátor</emph> <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigátor ikon</alt></image> ikonra kattintva."
-#. 2]SU
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/navipi/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
msgstr "Kattintson az <emph>Esetek</emph> <image id=\"img_id7617114\" src=\"sc/imglst/navipi/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Esetek ikon</alt></image> ikonra a Navigátorban."
-#. 3@zj
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
msgstr "A Navigátorban láthatja a meghatározott eseteket, és az esetek készítése során megadott megjegyzéseket."
-#. 03Et
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
msgstr "A Navigátorban kattintson duplán egy eset nevére az eset alkalmazásához az aktuális munkalapon."
-#. `r{8
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -171,7 +155,6 @@ msgctxt ""
msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
msgstr "Eset törléséhez kattintson a jobb gombbal a nevére a Navigátorban, és válassza a <emph>Törlés</emph> menüparancsot."
-#. r4i0
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
msgstr "Eset szerkesztéséhez kattintson a jobb gombbal a nevére a Navigátorban, és válassza a <emph>Tulajdonságok</emph> menüparancsot."
-#. a6)]
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
msgstr "Az esethez tartozó cellák szegélyének elrejtéséhez nyissa meg a <emph>Tulajdonságok</emph> párbeszédablakot a cellákat befolyásoló minden esethez, és törölje a Szegély megjelenítése jelölőnégyzetet. A szegély elrejtése egyúttal eltávolítja az esetek kiválasztására használatos listamezőt is a munkalapról."
-#. `]]~
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
msgstr "Ha tudni akarja, hogy az eset mely értékei befolyásolnak más értékeket, válassza az <emph>Eszközök - Detektív - Függőségek felderítése</emph> lehetőséget. Az aktuális cellától közvetlenül függő cellákra mutató nyilak jelennek meg."
-#. lkit
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Esetek létrehozása\">Esetek létrehozása</link>"
-#. /c\T
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -218,7 +197,6 @@ msgctxt ""
msgid "Applying Multiple Sheets"
msgstr "Több munkalap alkalmazása"
-#. C4xz
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -227,7 +205,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
msgstr "<bookmark_value>munkalapok; beszúrás</bookmark_value><bookmark_value>beszúrás; munkalapok</bookmark_value><bookmark_value>munkalapok; több kiválasztása</bookmark_value><bookmark_value>munkalapok hozzáfűzése</bookmark_value><bookmark_value>kiválasztás;több munkalap</bookmark_value><bookmark_value>több munkalap</bookmark_value><bookmark_value>kiszámítás;több munkalap</bookmark_value>"
-#. 1(/3
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -237,7 +214,6 @@ msgctxt ""
msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Több munkalap alkalmazása\">Több munkalap alkalmazása</link></variable>"
-#. 4m*R
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -247,7 +223,6 @@ msgctxt ""
msgid "Inserting a Sheet"
msgstr "Munkalap beszúrása"
-#. Q)(/
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -257,7 +232,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
msgstr "Válassza a <item type=\"menuitem\">Beszúrás - Munkalap</item> parancsot egy új munkalap vagy egy másik fájlban már létező munkalap beillesztéséhez."
-#. 1h,v
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -266,7 +240,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot, amelyen munkalapeseményekhez rendelhet hozzá makrókat.</ahelp>"
-#. g?28
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -275,7 +248,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy ablakot, amelyen színt rendelhet hozzá a munkalapfülhöz.</ahelp>"
-#. -BK.
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -284,7 +256,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintson a dokumentum összes munkalapjának kijelöléséhez.</ahelp>"
-#. Pb94
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -293,7 +264,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintson a dokumentum összes munkalapja kijelölésének megszüntetéséhez az aktuális munkalapot kivéve.</ahelp>"
-#. U*_k
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "Selecting Multiple Sheets"
msgstr "Több munkalap kijelölése"
-#. e:\5
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -313,7 +282,6 @@ msgctxt ""
msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
msgstr "Az aktuális munkalap címkéje mindig a többi munkalapcímke előtt, fehérrel jelenik meg. A többi munkalapcímke szürke, ha nincs kijelölve. Ha a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> lenyomva tartása mellett további munkalapcímkékre kattint, több munkalapot is kijelölhet."
-#. 7S..
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
msgstr "A Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up vagy Page Down billentyűkkel több munkalapot is kijelölhet."
-#. [=2d
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "Undoing a Selection"
msgstr "Kijelölés visszavonása"
-#. n]OG
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
msgstr "Ha egy munkalap kijelölését vissza kívánja vonni, akkor a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyű nyomva tartása mellett kattintson ismételten a munkalap címkéjére. A jelenleg látható munkalap nem távolítható el a kijelölésből."
-#. $=]~
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid "Calculating Across Multiple Sheets"
msgstr "Számítás munkalapokon keresztül"
-#. r_|9
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
msgstr "Munkalaptartományokra egy képletben úgy is hivatkozhat, hogy megadja a tartomány első és utolsó munkalapját, például a <item type=\"literal\">=SZUM(Munkalap1.A1:Munkalap3.A1) </item>összeadja a Munkalap1-től a Munkalap3 munkalapig terjedő munkalapok A1-es celláinak értékét."
-#. Xq\J
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -371,7 +334,6 @@ msgctxt ""
msgid "Formatting Spreadsheets"
msgstr "Munkafüzetek formázása"
-#. Ny,v
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -380,7 +342,6 @@ msgctxt ""
msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
msgstr "<bookmark_value>szöveg a cellákban; formázás</bookmark_value><bookmark_value>munkafüzetek;formázás</bookmark_value><bookmark_value>hátterek;cellák és oldalak</bookmark_value><bookmark_value>szegélyek;cellák és oldalak</bookmark_value><bookmark_value>formázás;munkafüzetek</bookmark_value><bookmark_value>számok; kijelölt cellák formázási lehetőségei</bookmark_value><bookmark_value>cellák; számformátumok</bookmark_value><bookmark_value>pénznemek;formátumok</bookmark_value>"
-#. ~S1)
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Munkafüzetek formázása\">Munkafüzetek formázása</link></variable>"
-#. hF;5
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -400,7 +360,6 @@ msgctxt ""
msgid "Formatting Text in a Spreadsheet"
msgstr "Szöveg formázása munkafüzetben"
-#. s5``
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -410,7 +369,6 @@ msgctxt ""
msgid "Select the text you want to format."
msgstr "Jelölje ki a formázni kívánt szöveget."
-#. (_p(
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -420,7 +378,6 @@ msgctxt ""
msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
msgstr "A <emph>Formázás</emph> eszköztáron válassza ki a kívánt szövegattribútumokat. Ezenkívül kiválaszthatja a <emph>Formátum - Cellák</emph> lehetőséget is. Megjelenik a <emph>Cellák formázása</emph> párbeszédablak, amelynek <emph>Betűkészlet</emph> oldalán kiválaszthat különféle szövegattribútumokat."
-#. B7T:
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -430,7 +387,6 @@ msgctxt ""
msgid "Formatting Numbers in a Spreadsheet"
msgstr "Számok formázása munkafüzetben"
-#. yJ:9
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -440,7 +396,6 @@ msgctxt ""
msgid "Select the cells containing the numbers you want to format."
msgstr "Jelölje ki a formázni kívánt számokat tartalmazó cellákat."
-#. 9C_0
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -450,7 +405,6 @@ msgctxt ""
msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
msgstr "Ha számokat az alapértelmezett pénznemformátum szerint vagy százalékként kíván formázni, használja a <emph>Formázás</emph> eszköztárat. További formátumokhoz válassza a <emph>Formátum - Cellák</emph> lehetőséget. Választhat az előre beállított formátumok közül, vagy akár létrehozhatja sajátját a <emph>Számok</emph> lapon."
-#. ,ld/
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -460,7 +414,6 @@ msgctxt ""
msgid "Formatting Borders and Backgrounds for Cells and Pages"
msgstr "Cellák és oldalak szegélyeinek és háttereinek formázása"
-#. rm$Y
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -470,7 +423,6 @@ msgctxt ""
msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
msgstr "Formátumot tetszőleges cellacsoporthoz rendelhet. Ehhez először jelölje ki a cellákat (több cella kijelöléséhez kattintás közben tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt), majd aktiválja a <emph>Cellák formázása</emph> párbeszédablakot a <item type=\"menuitem\">Formátum - Cellák</item> pontban. Ebben a párbeszédablakban kijelölheti az attribútumokat (például árnyékokat, illetve háttereket)."
-#. wU~m
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -480,7 +432,6 @@ msgctxt ""
msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
msgstr "Ha egy teljes munkafüzetre kíván formátumattribútumokat alkalmazni, válassza a <emph>Formátum - Oldal</emph> lehetőséget. Többek között megadhatja, hogy minden nyomtatott oldalon jelenjen meg élőfej és élőláb."
-#. m%3Q
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -490,7 +441,6 @@ msgctxt ""
msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
msgstr "A <item type=\"menuitem\">Formátum - Oldal - Háttér</item> lehetőség segítségével betöltött képek csak nyomtatáskor, illetve oldalelőnézet során jelennek meg. Ha egy háttérképet a képernyőn is meg kíván jeleníteni, akkor a képet a <item type=\"menuitem\">Beszúrás - Kép - Fájlból</item> lehetőség segítségével szúrja be, majd helyezze a képet a cellák mögé a <item type=\"menuitem\">Formátum - Elrendezés - Háttérbe</item> lehetőséggel. A háttérkép kijelöléséhez használja a <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigátort\">Navigátort</link>."
-#. cR5v
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -499,7 +449,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\">Számformátum-beállítások</link>"
-#. g+5%
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
@@ -508,7 +457,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
msgstr "<link href=\"text/scalc/guide/background.xhp\">Cellák háttere</link>"
-#. W,r#
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -517,7 +465,6 @@ msgctxt ""
msgid "Applying Goal Seek"
msgstr "Célértékkeresés alkalmazása"
-#. r45y
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -526,7 +473,6 @@ msgctxt ""
msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
msgstr "<bookmark_value>célértékkeresés;példa</bookmark_value><bookmark_value>egyenletek a célértékkeresésben</bookmark_value><bookmark_value>kiszámítás;változók az egyenletekben</bookmark_value><bookmark_value>változók;egyenletek kiszámítása</bookmark_value><bookmark_value>példák;célértékkeresés</bookmark_value>"
-#. -oGZ
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -536,7 +482,6 @@ msgctxt ""
msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Célértékkeresés alkalmazása\">Célértékkeresés alkalmazása</link></variable>"
-#. |v\`
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -546,7 +491,6 @@ msgctxt ""
msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
msgstr "A Célértékkeresés segítségével kiszámíthat egy olyan értéket, amely egy képlet részeként egy megadott eredményhez vezet. Ehhez meg kell adni a képlet fix értékeit, egy változó értéket és a képlet eredményét."
-#. la5.
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -556,7 +500,6 @@ msgctxt ""
msgid "Goal Seek Example"
msgstr "Célérték-keresési példa"
-#. RbA(
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -566,7 +509,6 @@ msgctxt ""
msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
msgstr "Az éves kamat (I) kiszámításához hozzon létre egy táblázatot, amely tartalmazza a tőkét (C), az évek számát (n) és a kamatot (i). A képlet:"
-#. il1c
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -576,7 +518,6 @@ msgctxt ""
msgid "I = C * n* i"
msgstr "I = C * n* i"
-#. !5%o
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -586,7 +527,6 @@ msgctxt ""
msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
msgstr "Tegyük fel, hogy a kamat <item type=\"literal\">i</item>=7,5%, valamint az évek száma <item type=\"literal\">n</item>=1 állandó marad. Azonban tudni akarja, hogy mekkorára kell növelni a befektetett tőkét (<item type=\"literal\">C</item>) ahhoz, hogy egy adott hozamot (<item type=\"literal\">I</item>) érjen el. E példa alapján számítsa ki, mennyi tőkére (<item type=\"literal\">C</item>) lenne szükség akkor, ha 15.000 USD éves hozamot kíván elérni."
-#. hPYo
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -596,7 +536,6 @@ msgctxt ""
msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
msgstr "Adja meg külön cellákba a tőke <item type=\"literal\">C</item> értékét (egy tetszőleges értéket, például <item type=\"literal\">100.000 USD</item>), az évek számát <item type=\"literal\">n</item> (<item type=\"literal\">1</item>) és a kamatot <item type=\"literal\">i</item> (<item type=\"literal\">7,5%</item>). Írja be kamatot (<item type=\"literal\">I</item>) eredményül adó képletet egy üres cellába. A <item type=\"literal\">C</item>, <item type=\"literal\">n</item> és <item type=\"literal\">i</item> jelek helyett használja a <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">cellahivatkozást</link> a megfelelő értékkel."
-#. !.Yf
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -606,7 +545,6 @@ msgctxt ""
msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
msgstr "Vigye a kurzort a kamatot (<item type=\"literal\">I</item>) tartalmazó cellába, majd válassza az <emph>Eszközök - Célértékkeresés</emph> lehetőséget. Megjelenik a <emph>Célértékkeresés</emph> párbeszédablak."
-#. 0+7V
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -616,7 +554,6 @@ msgctxt ""
msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
msgstr "A megfelelő cella már beírásra került a <emph>Képletcella</emph> mezőbe."
-#. ^W-G
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -626,7 +563,6 @@ msgctxt ""
msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
msgstr "Vigye a kurzort a <emph>Változó cella</emph> mezőbe. A munkalapon kattintson a módosítani kívánt értéket tartalmazó cellára, amely ebben a példában a tőkeértéket <item type=\"literal\">C</item> tartalmazó cella."
-#. 6DB`
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -636,7 +572,6 @@ msgctxt ""
msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
msgstr "Adja meg a képlet várt eredményét a <emph>Célérték</emph> szövegmezőben. A példában ez az érték 15.000. Kattintson az <emph>OK</emph> gombra."
-#. -A|S
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -646,7 +581,6 @@ msgctxt ""
msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
msgstr "Megjelenik egy párbeszédablak, amely tudatja, hogy a célértékkeresés sikeres volt. Kattintson az <emph>Igen</emph> gombra, ha az eredményt be kívánja írni a változót tartalmazó cellába."
-#. $8YB
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
@@ -656,7 +590,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Célértékkeresés\">Célértékkeresés</link>"
-#. SKM\
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -665,7 +598,6 @@ msgctxt ""
msgid "Entering Fractions"
msgstr "Törtek megadása"
-#. -E9m
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -674,7 +606,6 @@ msgctxt ""
msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
msgstr "<bookmark_value>törtek; megadás</bookmark_value><bookmark_value>számok; törtek megadása</bookmark_value><bookmark_value>beszúrás;törtek</bookmark_value>"
-#. ,ZR5
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -684,7 +615,6 @@ msgctxt ""
msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Törtek megadása\">Törtek megadása</link></variable>"
-#. C*P\
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -694,7 +624,6 @@ msgctxt ""
msgid "You can enter a fractional number in a cell and use it for calculation:"
msgstr "Egy cellában törtszámot is megadhat, és ezt felhasználhatja számításai során:"
-#. nAUG
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -704,7 +633,6 @@ msgctxt ""
msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
msgstr "Írja be a „0 1/5” számot egy cellába (az idézőjelek nélkül), majd nyomja meg az adatbeviteli billentyűt. A táblázat feletti beviteli sorban megjelenik a 0,2 érték, amelyet a rendszer a számításokhoz használ."
-#. `:vO
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -714,7 +642,6 @@ msgctxt ""
msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
msgstr "Ha a „0 1/2” karaktersorozatot írja be, akkor az Automatikus javítás a három karaktert (1, / és 2) egyetlen karakterre cseréli. Ugyanez érvényes az 1/4-re és a 3/4-re. Ez a csere az <emph>Eszközök - Automatikus javítás - Csere</emph> lapon van meghatározva."
-#. fNt}
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
@@ -724,7 +651,6 @@ msgctxt ""
msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
msgstr "Ha több számjegyből álló törteket kíván megjeleníteni (például: „1/10”), akkor többszámjegyestört-nézetűre kell módosítania a cellaformátumot. Nyissa meg a cella helyi menüjét, majd válassza a <emph>Cellák formázása</emph> lehetőséget. A <emph>Kategória</emph> mezőben jelölje ki a „Tört” lehetőséget, majd jelölje ki a „-1234 10/81” lehetőséget. Ezt követően 12/31, illetve 12/32 formátumban adhatja meg a törteket, azonban a törtek automatikusan egyszerűsítésre kerülnek, tehát az utolsó példában 3/8 jelenne meg."
-#. Z7lV
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -733,7 +659,6 @@ msgctxt ""
msgid "Filtering Pivot Tables"
msgstr "Kimutatástáblák szűrése"
-#. 7c8)
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -742,7 +667,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla funkció; táblázatok szűrése</bookmark_value><bookmark_value>szűrés;kimutatástáblák</bookmark_value>"
-#. (nsB
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -751,7 +675,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Kimutatástáblák szűrése\">Kimutatástáblák szűrése</link></variable>"
-#. M3(9
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -760,7 +683,6 @@ msgctxt ""
msgid "You can use filters to remove unwanted data from a pivot table."
msgstr "Szűrőket használhat a kimutatástáblában lévő nem kívánt adatok eltávolításához."
-#. 48/L
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -769,7 +691,6 @@ msgctxt ""
msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
msgstr "A szűrőfeltételekre vonatkozó párbeszédablak megnyitásához kattintson a <emph>Szűrő</emph> gombra a munkalapon. Ennek alternatívájaként nyissa meg a kimutatástábla helyi menüjét, majd válassza a <emph>Szűrő</emph> lehetőséget. Ekkor megjelenik a <link href=\"text/scalc/01/12090103.xhp\" name=\"Szűrő\"><emph>Szűrő</emph></link> párbeszédablak. Itt lehet szűrni a kimutatástáblát."
-#. fJS5
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -778,7 +699,6 @@ msgctxt ""
msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
msgstr "A kimutatástáblában rákattinthat egy gombon levő nyílra is, erre megjelenik egy előugró ablak. Ebben az előugró ablakban szerkesztheti a hozzá tartozó mező láthatósági beállításait."
-#. *Y*Q
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -787,7 +707,6 @@ msgctxt ""
msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
msgstr "Az előugró ablakban megjelenik a mezőhöz rendelt mezőtagok listája. Minden mezőtag mellett a bal oldalon van egy jelölőnégyzet. Ha a mező az eredeti nevétől különböző egyéni névvel rendelkezik, akkor az a név jelenik meg a listában."
-#. H+z.
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -796,7 +715,6 @@ msgctxt ""
msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
msgstr "Kapcsolja be vagy ki a jelölőnégyzetet a hozzárendelt mezőtag megjelenítéséhez vagy elrejtéséhez a kimutatástáblában."
-#. 0xs;
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -805,7 +723,6 @@ msgctxt ""
msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
msgstr "Az <emph>Összes</emph> jelölőnégyzet be- vagy kikapcsolásával az összes mezőtag megjelenítését lehet be- vagy kikapcsolni."
-#. ?pS5
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -814,7 +731,6 @@ msgctxt ""
msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
msgstr "Jelöljön ki egy mezőtagot az előugró ablakban, és kattintson a <item type=\"menuitem\">Csak az aktuális elem megjelenítése</item> gombra. A kimutatástáblában ekkor csak a kijelölt mezőtag lesz látható, a többi mezőtag el lesz rejtve."
-#. 8OrK
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -823,7 +739,6 @@ msgctxt ""
msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
msgstr "Jelöljön ki egy mezőtagot az előugró ablakban, és kattintson a <item type=\"menuitem\">Csak az aktuális elem elrejtése</item> gombra. A kimutatástáblában ekkor csak a kijelölt mezőtag lesz elrejtve, a többi mezőtag látható lesz."
-#. g[X6
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -832,7 +747,6 @@ msgctxt ""
msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
msgstr "A mezőtagok a rendelkezésre álló parancsok segítségével rendezhetők növekvő, csökkenő vagy egyéni rendezési lista szerinti sorrendbe."
-#. hwqo
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -841,7 +755,6 @@ msgctxt ""
msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
msgstr "Egyéni rendezési listák szerkesztéséhez nyissa meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Rendezett listák panelt."
-#. WXqU
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -850,7 +763,6 @@ msgctxt ""
msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
msgstr "Az előugró ablakot megnyitó nyíl általában fekete. Ha a mező rejtett mezőtagokat tartalmaz, akkor a nyíl kék, és egy kis négyzet látható a jobb alsó sarkában."
-#. 0v!i
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
@@ -859,7 +771,6 @@ msgctxt ""
msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
msgstr "Az előugró ablakot úgy is előhívhatja, hogy a cellakurzort a gombra pozicionálja, és megnyomja a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D billentyűkombinációt."
-#. 9$]p
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -868,7 +779,6 @@ msgctxt ""
msgid "Rotating Tables (Transposing)"
msgstr "Táblázatok forgatása (transzponálás)"
-#. JEe}
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -877,7 +787,6 @@ msgctxt ""
msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
msgstr "<bookmark_value>táblázatok; transzponálás</bookmark_value><bookmark_value>táblázatok transzponálása</bookmark_value><bookmark_value>táblázatok invertálása</bookmark_value><bookmark_value>táblázatok kicserélése</bookmark_value><bookmark_value>oszlopok; csere sorokkal</bookmark_value><bookmark_value>sorok; csere oszlopokkal</bookmark_value><bookmark_value>táblázatok; forgatás</bookmark_value><bookmark_value>forgatás; táblázatok</bookmark_value>"
-#. YjS!
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -887,7 +796,6 @@ msgctxt ""
msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Táblázatok forgatása (transzponálás)\">Táblázatok forgatása (transzponálás)</link></variable>"
-#. pqFh
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -897,7 +805,6 @@ msgctxt ""
msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
msgstr "A $[officename] Calc programban lehetőség van a táblázatokat úgy „forgatni”, hogy a sorok oszlopok lesznek, az oszlopok pedig sorok."
-#. h7Q0
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -907,7 +814,6 @@ msgctxt ""
msgid "Select the cell range that you want to transpose."
msgstr "Válassza ki a transzponálandó cellatartományt."
-#. 4C!V
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -917,7 +823,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Cut</emph>."
msgstr "Válassza a <emph>Szerkesztés - Kivágás</emph> lehetőséget."
-#. U0AQ
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -927,7 +832,6 @@ msgctxt ""
msgid "Click the cell that is to be the top left cell in the result."
msgstr "Kattintson arra a cellára, amelyet az eredmény bal felső cellájának szeretne."
-#. *Wva
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -937,7 +841,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Paste Special</emph>."
msgstr "Válassza a <emph>Szerkesztés - Irányított beillesztés</emph> lehetőséget."
-#. }wJ#
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -947,7 +850,6 @@ msgctxt ""
msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
msgstr "A párbeszédablakban jelölje meg a <emph>Mindent beilleszt</emph> és a <emph>Transzponálás</emph> jelölőnégyzeteket."
-#. ZP!=
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -957,7 +859,6 @@ msgctxt ""
msgid "If you now click OK the columns and rows are transposed."
msgstr "Ha most az OK gombra kattint, akkor az oszlopok és a sorok felcserélődnek."
-#. xF1k
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
@@ -967,7 +868,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=\"Irányított beillesztés\">Irányított beillesztés</link>"
-#. S7EB
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -976,7 +876,6 @@ msgctxt ""
msgid "Inserting External Data in Table (WebQuery)"
msgstr "Külső adat beszúrása táblázatba (WebQuery)"
-#. XoVT
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -985,7 +884,6 @@ msgctxt ""
msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
msgstr "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>tartományok; beszúrás táblázatokba</bookmark_value><bookmark_value>külső adatok; beszúrás</bookmark_value><bookmark_value>táblázatok; külső adatok beszúrása</bookmark_value><bookmark_value>weboldalak; adatok importálása</bookmark_value><bookmark_value>WebQuery szűrő</bookmark_value><bookmark_value>beszúrás; külső adatok</bookmark_value><bookmark_value>adatforrások; külső adatok</bookmark_value>"
-#. #hi)
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -995,7 +893,6 @@ msgctxt ""
msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Külső adatok beszúrása táblázatba (WebQuery)\">Külső adatok beszúrása táblázatba (WebQuery)</link></variable>"
-#. CkcM
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1005,7 +902,6 @@ msgctxt ""
msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
msgstr "A <emph>Weblap-lekérdezés ($[officename] Calc)</emph> importálási szűrő segítségével táblázatokat szúrhat be HTML-dokumentumokból Calc-munkafüzetekbe."
-#. v*mX
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1015,7 +911,6 @@ msgctxt ""
msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
msgstr "Ugyanazon módszer segítségével szúrhat be névvel ellátott tartományokat egy Calc- vagy Microsoft Excel-munkafüzetből."
-#. #jr@
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1025,7 +920,6 @@ msgctxt ""
msgid "The following insert methods are available:"
msgstr "Az alábbi beszúrási eljárások használhatók:"
-#. J8;M
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1035,7 +929,6 @@ msgctxt ""
msgid "Inserting by Dialog"
msgstr "Beszúrás párbeszédablak segítségével"
-#. @Bx#
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1045,7 +938,6 @@ msgctxt ""
msgid "Set the cell cursor at the cell where the new content will be inserted."
msgstr "Vigye a kurzort abba a cellába, amelybe az új tartalmat be szeretné szúrni."
-#. *Z~W
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1055,7 +947,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
msgstr "Válassza a <emph>Beszúrás - Hivatkozás külső adatra</emph> lehetőséget. Ez megnyitja a <link href=\"text/scalc/01/04090000.xhp\">Külső adatok</link> párbeszédablakot."
-#. fAVQ
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1065,7 +956,6 @@ msgctxt ""
msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
msgstr "Írja be a HTML-dokumentum URL-címét vagy a munkafüzet nevét. Ha elkészült, nyomja meg az Enter billentyűt. Kattintson a <emph>...</emph> gombra egy fájlkiválasztó párbeszédablak megnyitásához."
-#. O.@)
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1075,7 +965,6 @@ msgctxt ""
msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
msgstr "A párbeszédablak nagy listapaneljében válassza ki a beszúrandó elnevezett tartományokat vagy táblázatokat."
-#. ];f-
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1085,7 +974,6 @@ msgctxt ""
msgid "You can also specify that the ranges or tables are updated every n seconds."
msgstr "Azt is megadhatja, hogy a tartományok vagy a táblázatok hány másodpercenként legyenek frissítve (n)."
-#. /0J;
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1095,7 +983,6 @@ msgctxt ""
msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
msgstr "Az importszűrő menet közben is hozzá tudja rendelni a tartományokhoz a neveket. A lehető legtöbb formázás megmarad, mindeközben a szűrő szándékosan nem tölt be képeket."
-#. S7tz
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1105,7 +992,6 @@ msgctxt ""
msgid "Inserting by Navigator"
msgstr "Beszúrás a Navigátor segítségével"
-#. dUAs
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1115,7 +1001,6 @@ msgctxt ""
msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
msgstr "Nyisson meg két dokumentumot: azt a $[officename] Calc-munkafüzetet, amelybe be szeretné szúrni a külső adatot (céldokumentum), valamint azt a dokumentumot, amelyből a külső adat származik (forrásdokumentum)."
-#. KbPQ
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1125,7 +1010,6 @@ msgctxt ""
msgid "In the target document open the Navigator."
msgstr "A céldokumentumban nyissa meg a Navigátort."
-#. Mske
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1135,7 +1019,6 @@ msgctxt ""
msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
msgstr "A Navigátor alsó kombinált listájából válassza ki a forrásdokumentumot. A Navigátor most a forrásdokumentumban levő adatbázis táblázatainak tartományneveit és adatbázis-tartományait mutatja."
-#. DTLu
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1145,7 +1028,6 @@ msgctxt ""
msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
msgstr "A Navigátorban jelölje ki a <emph>Beszúrás hivatkozásként</emph> húzásmódot <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Ikon</alt></image>."
-#. p|(l
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1155,7 +1037,6 @@ msgctxt ""
msgid "Drag the desired external data from the Navigator into the target document."
msgstr "Húzza át a kívánt külső adatot a Navigátorból a céldokumentumba."
-#. \;Pt
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1165,7 +1046,6 @@ msgctxt ""
msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
msgstr "Ha egy HTML-dokumentumot a <emph>Weboldal-lekérdezés</emph> szűrő segítségével töltött be forrásdokumentumként, akkor a Navigátorban megjelennek a táblázatok „HTML_táblázat1” névtől kezdve, folyamatosan számozva, és megjelenik két újonnan létrehozott tartománynév:"
-#. V*kt
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1175,7 +1055,6 @@ msgctxt ""
msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
msgstr "<item type=\"literal\">HTML_all</item> - az egész dokumentumot jelöli."
-#. /~=0
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1185,7 +1064,6 @@ msgctxt ""
msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
msgstr "<item type=\"literal\">HTML_tables</item> - a dokumentumban található össze HTML-táblázatot jelöli."
-#. b[tT
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1195,7 +1073,6 @@ msgctxt ""
msgid "Editing the external data"
msgstr "Külső adat szerkesztése"
-#. ;1s9
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1205,7 +1082,6 @@ msgctxt ""
msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
msgstr "Nyissa meg a <emph>Szerkesztés - Hivatkozások</emph> menüpontot. Itt lehetősége nyílik a külső adatokra mutató hivatkozás szerkesztésére."
-#. jj_u
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
@@ -1215,7 +1091,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Külső adatok párbeszédablak\">Külső adatok párbeszédablak</link>"
-#. FPFl
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1224,7 +1099,6 @@ msgctxt ""
msgid "Only Copy Visible Cells"
msgstr "Csak látható cellák másolása"
-#. 9Qla
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1233,7 +1107,6 @@ msgctxt ""
msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
msgstr "<bookmark_value>cellák; másolás/törlés/ formázás</bookmark_value><bookmark_value>sorok;látható és láthatatlan</bookmark_value><bookmark_value>másolás; csak látható cellák</bookmark_value><bookmark_value>formázás;csak látható cellák</bookmark_value><bookmark_value>áthelyezés;csak látható cellák</bookmark_value><bookmark_value>törlés;csak látható cellák</bookmark_value><bookmark_value>láthatatlan cellák</bookmark_value><bookmark_value>szűrők;csak látható cellák másolása</bookmark_value><bookmark_value>rejtett cellák</bookmark_value>"
-#. m\Id
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1243,7 +1116,6 @@ msgctxt ""
msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Csak látható cellák másolása\">Csak látható cellák másolása</link></variable>"
-#. ;@-i
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1253,7 +1125,6 @@ msgctxt ""
msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
msgstr "Tegyük fel, hogy elrejtett néhány sort egy cellatartományban. Most át akarja másolni, illetve törölni vagy formázni szeretné a maradék látható sorokat."
-#. vyGR
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1263,7 +1134,6 @@ msgctxt ""
msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
msgstr "A $[officename] viselkedése attól függ, hogyan rejtette el a cellákat: szűrővel vagy kézzel."
-#. +==^
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1273,7 +1143,6 @@ msgctxt ""
msgid "Method and Action"
msgstr "Művelet és eljárás"
-#. o(xT
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1283,7 +1152,6 @@ msgctxt ""
msgid "Result"
msgstr "Eredmény"
-#. UD3q
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1293,7 +1161,6 @@ msgctxt ""
msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
msgstr "A cellák szűrve lettek automatikus szűrőkkel, általános szűrőkkel vagy irányított szűrőkkel."
-#. WE:Q
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1303,7 +1170,6 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "Másolja át, törölje, helyezze át vagy formázza a látható cellák közül kijelölteket."
-#. odXt
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1313,7 +1179,6 @@ msgctxt ""
msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
msgstr "Csak a látható cellák kerülnek átmásolásra, törlésre, áthelyezésre vagy formázásra."
-#. oB!g
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1323,7 +1188,6 @@ msgctxt ""
msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
msgstr "A cellák a sor-, illetve oszlopfejlécek helyi menüjében található <emph>Elrejtés</emph> parancs vagy egy <link href=\"text/scalc/01/12080000.xhp\" name=\"vázlat\">vázlat</link> segítségével kerültek elrejtésre."
-#. Z|+Q
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1333,7 +1197,6 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "Másolja át, törölje, helyezze át vagy formázza a látható cellák kijelölését."
-#. 8F~d
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
@@ -1343,7 +1206,6 @@ msgctxt ""
msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
msgstr "A kijelölés összes cellája, beleértve a rejtett cellákat, átmásolásra, törlésre, áthelyezésre vagy formázásra kerül."
-#. fXme
#: datapilot_deletetable.xhp
msgctxt ""
"datapilot_deletetable.xhp\n"
@@ -1352,7 +1214,6 @@ msgctxt ""
msgid "Deleting Pivot Tables"
msgstr "Kimutatástáblák törlése"
-#. #U.f
#: datapilot_deletetable.xhp
msgctxt ""
"datapilot_deletetable.xhp\n"
@@ -1361,7 +1222,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla funkció; táblák törlése</bookmark_value><bookmark_value>törlés;kimutatástáblák</bookmark_value>"
-#. Kv#1
#: datapilot_deletetable.xhp
msgctxt ""
"datapilot_deletetable.xhp\n"
@@ -1371,7 +1231,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Kimutatástáblák törlése\">Kimutatástáblák törlése</link></variable>"
-#. kKd)
#: datapilot_deletetable.xhp
msgctxt ""
"datapilot_deletetable.xhp\n"
@@ -1381,7 +1240,6 @@ msgctxt ""
msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
msgstr "Kimutatástábla törléséhez jelölje ki a kimutatástábla egy tetszőleges celláját, majd válassza a helyi menü <emph>Törlés</emph> pontját."
-#. GKLO
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1390,7 +1248,6 @@ msgctxt ""
msgid "Converting Text to Numbers"
msgstr "Szöveg átalakítása számokká"
-#. *0il
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1399,7 +1256,6 @@ msgctxt ""
msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
msgstr "<bookmark_value>formátumok; szöveg mint számként</bookmark_value> <bookmark_value>időformátum átalakítása</bookmark_value> <bookmark_value>dátumformátum;átalakítása</bookmark_value> <bookmark_value>átalakítás;szöveget számokká</bookmark_value>"
-#. !:Ky
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1408,7 +1264,6 @@ msgctxt ""
msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Szöveg átalakítása számokká\">Szöveg átalakítása számokká</link></variable>"
-#. ?U$*
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1417,7 +1272,6 @@ msgctxt ""
msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
msgstr "A Calc a cellákban levő szöveget a megfelelő számértékre alakítja át, amennyiben egyértelmű átalakítás lehetséges. Ha nem lehet átalakítani, a Calc #ÉRTÉK! hibát ad vissza."
-#. +^Z@
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1426,7 +1280,6 @@ msgctxt ""
msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
msgstr "Csak egész számok, beleértve a kitevőt, lesznek átalakítva, valamint az ISO 8601 szabvány szerinti dátumok és idők a kiterjesztett formátumokban elválasztókkal. Minden más, például tört számok tizedeselválasztóval vagy nem ISO 8601 szerinti dátumok, nem lesz átalakítva, mert a szöveg függhet a nyelvi és területi beállításoktól. A kezdő és záró üres karakterek nem lesznek figyelembe véve."
-#. RZ/U
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1435,7 +1288,6 @@ msgctxt ""
msgid "The following ISO 8601 formats are converted:"
msgstr "A következő ISO 8601 szerinti formátumok lesznek átalakítva:"
-#. WA;M
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1444,7 +1296,6 @@ msgctxt ""
msgid "CCYY-MM-DD"
msgstr "CCYY-MM-DD"
-#. pE#q
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1453,7 +1304,6 @@ msgctxt ""
msgid "CCYY-MM-DDThh:mm"
msgstr "CCYY-MM-DDThh:mm"
-#. OW3r
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1462,7 +1312,6 @@ msgctxt ""
msgid "CCYY-MM-DDThh:mm:ss"
msgstr "CCYY-MM-DDThh:mm:ss"
-#. ?kwG
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1471,7 +1320,6 @@ msgctxt ""
msgid "CCYY-MM-DDThh:mm:ss,s"
msgstr "CCYY-MM-DDThh:mm:ss,s"
-#. ;t-]
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1480,7 +1328,6 @@ msgctxt ""
msgid "CCYY-MM-DDThh:mm:ss.s"
msgstr "CCYY-MM-DDThh:mm:ss.s"
-#. QNwM
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1489,7 +1336,6 @@ msgctxt ""
msgid "hh:mm"
msgstr "hh:mm"
-#. _4.Y
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1498,7 +1344,6 @@ msgctxt ""
msgid "hh:mm:ss"
msgstr "hh:mm:ss"
-#. !S\z
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1507,7 +1352,6 @@ msgctxt ""
msgid "hh:mm:ss,s"
msgstr "hh:mm:ss,s"
-#. ;6`^
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1516,7 +1360,6 @@ msgctxt ""
msgid "hh:mm:ss.s"
msgstr "hh:mm:ss.s"
-#. *z+q
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1525,7 +1368,6 @@ msgctxt ""
msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
msgstr "Az évszázad CC kódját el lehet hagyni. A T dátum–idő elválasztó helyett egyetlen szóköz karakter is használható."
-#. (%V-
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1534,7 +1376,6 @@ msgctxt ""
msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
msgstr "Ha dátum van megadva, annak érvényes, Gergely-naptár szerinti dátumnak kell lennie. Ebben az esetben az opcionális időnek a 00:00 – 23:59:59.99999 tartományban kell lennie."
-#. )GX+
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1543,7 +1384,6 @@ msgctxt ""
msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
msgstr "Ha csak időkarakterlánc van megadva, akkor az órák értéke lehet 24-nél nagyobb, de a percek és másodpercek értéke legfeljebb 59 lehet."
-#. -k;y
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1552,7 +1392,6 @@ msgctxt ""
msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
msgstr "Az átalakítás csak egyetlen argumentumra lesz elvégezve, például =A1+A2 vagy =\"1E2\"+1. A cellatartomány-argumentumok nem érintettek, tehát a SZUM(A1:A2) nem ugyanaz lesz, mint az A1+A2, ha a két cellából legalább az egyik tartalmaz átalakítható karakterláncot."
-#. \M,,
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1561,7 +1400,6 @@ msgctxt ""
msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
msgstr "A képletekben szereplő karakterláncok szintén át lesznek alakítva, például =\"1999-11-22\"+42, amely az 1999. november 22. után 42 nappal következő dátumot adja vissza. Az olyan számítások esetén, amelyekben honosított dátumok szerepelnek karakterláncként, a képlet hibát ad vissza. Például a honosított „11/22/1999” vagy a „22.11.1999” dátumkarakterlánc nem használható az automatikus átalakításhoz."
-#. F6Na
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1570,7 +1408,6 @@ msgctxt ""
msgid "Example"
msgstr "Példa"
-#. f@wy
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1579,7 +1416,6 @@ msgctxt ""
msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
msgstr "Az A1 cellába írja be az <item type=\"literal\">'1e2</item> szöveget (amely belsőleg a 100 számra konvertálódik)."
-#. =+.J
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1588,7 +1424,6 @@ msgctxt ""
msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
msgstr "Az A2 cellába írja be az <item type=\"literal\">=A1+1</item> képletet (amely a helyes 101 eredményt adja)."
-#. JABv
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
@@ -1597,7 +1432,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formátum - Cellák - Számok\">Formátum - Cellák - Számok</link>"
-#. X*TJ
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1606,7 +1440,6 @@ msgctxt ""
msgid "Inserting and Editing Comments"
msgstr "Megjegyzések beírása és szerkesztése"
-#. `8dg
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1615,7 +1448,6 @@ msgctxt ""
msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
msgstr "<bookmark_value>megjegyzések; cellákra vonatkozó</bookmark_value> <bookmark_value>cellák;megjegyzések</bookmark_value> <bookmark_value>észrevételek; cellákra vonatkozó</bookmark_value> <bookmark_value>formázás;cellák megjegyzései</bookmark_value> <bookmark_value>megtekintés;cellák megjegyzései</bookmark_value>"
-#. Ik;[
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1625,7 +1457,6 @@ msgctxt ""
msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Megjegyzések beírása és szerkesztése\">Megjegyzések beírása és szerkesztése</link></variable>"
-#. 8`_`
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1635,7 +1466,6 @@ msgctxt ""
msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
msgstr "A <link href=\"text/shared/01/04050000.xhp\" name=\"Beszúrás - Megjegyzés\"><emph>Beszúrás - Megjegyzés</emph></link> parancs segítségével minden egyes cellához megjegyzést rendelhet. A megjegyzést a cellában kicsi piros téglalap, a megjegyzésjelző mutatja."
-#. Gn74
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1645,7 +1475,6 @@ msgctxt ""
msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
msgstr "A megjegyzés akkor látható, ha az egérkurzor a cella felett helyezkedik el, feltéve, hogy már aktiválta a <emph>Súgó - Tippek</emph> vagy a <emph>Részletes tippek</emph> lehetőséget."
-#. bGKq
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1655,7 +1484,6 @@ msgctxt ""
msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
msgstr "A cella kijelölésekor a cella helyi menüjéből kiválaszthatja a <emph>Megjegyzés megjelenítése</emph> parancsot. Ebben az esetben a megjegyzés mindaddig látható, amíg a <emph>Megjegyzés megjelenítése</emph> parancsot ugyanazon helyi menüből újra ki nem választja."
-#. I4MF
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1665,7 +1493,6 @@ msgctxt ""
msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
msgstr "A folyamatosan látható megjegyzés szerkesztéséhez csak kattintson a megjegyzésre."
-#. M/mm
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1674,7 +1501,6 @@ msgctxt ""
msgid "Move or resize each comment as you like."
msgstr "Helyezze át vagy méretezze tetszése szerint a megjegyzéseket."
-#. Aq4T
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1683,7 +1509,6 @@ msgctxt ""
msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
msgstr "Formázza a megjegyzéseket a háttérszín, az átlátszóság, a szegélystílus és a szövegrendezés megadásával. Válassza ki a parancsokat a megjegyzés helyi menüjéből."
-#. HjD^
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1693,7 +1518,6 @@ msgctxt ""
msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
msgstr "A megjegyzések jelenlétét mutató jelzések megjelenítéséhez vagy elrejtéséhez válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Nézet</emph> lehetőséget, és jelölje be vagy a törölje a <emph>Megjegyzésjelző</emph> jelölőnégyzetet."
-#. h$XZ
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1703,7 +1527,6 @@ msgctxt ""
msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
msgstr "A kijelölt cellára vonatkozó súgótipp megjelenítéséhez használja az <emph>Adatok - Érvényesség - Segédszöveg</emph> lehetőséget."
-#. OqK^
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
@@ -1713,7 +1536,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Beszúrás - Megjegyzés\">Beszúrás - Megjegyzés</link>"
-#. @VOY
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1722,7 +1544,6 @@ msgctxt ""
msgid "Using AutoFormat for Tables"
msgstr "Automatikus formázás használata táblázatokhoz"
-#. afDy
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1731,7 +1552,6 @@ msgctxt ""
msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
msgstr "<bookmark_value>táblázatok; automatikus formázás funkció</bookmark_value><bookmark_value>definiálás;automatikus formázás táblázatokhoz</bookmark_value><bookmark_value>automatikus formázás funkció</bookmark_value><bookmark_value>formátumok; munkafüzetek automatikus formázása</bookmark_value><bookmark_value>automatikus formázás munkafüzetekben</bookmark_value><bookmark_value>munkalapok;automatikus formázás funkció</bookmark_value>"
-#. Cz;2
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1741,7 +1561,6 @@ msgctxt ""
msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Automatikus formázás használata táblázatokban\">Automatikus formázás használata táblázatokban</link></variable>"
-#. LT\l
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1751,7 +1570,6 @@ msgctxt ""
msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
msgstr "Az automatikus formázás funkcióval gyorsan alkalmazhat formázásokat egy munkalapra vagy egy kijelölt cellatartományra."
-#. 2dO(
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1760,7 +1578,6 @@ msgctxt ""
msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
msgstr "Automatikus formázás alkalmazása egy munkalapra vagy egy kijelölt cellatartományra"
-#. ;rb,
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1769,7 +1586,6 @@ msgctxt ""
msgid "Select the cells, including the column and row headers, that you want to format."
msgstr "Válassza ki a formázandó cellákat, beleértve az oszlop- és sorfejléceket is."
-#. s=$W
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1778,7 +1594,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
msgstr "Válassza a <item type=\"menuitem\">Formátum - Automatikus formázás</item> lehetőséget."
-#. \!MD
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1788,7 +1603,6 @@ msgctxt ""
msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
msgstr "Annak megadásához, hogy melyik tulajdonságokat érintse az Automatikus formázás, kattintson a <emph>Részletek</emph> gombra."
-#. g,R=
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1797,7 +1611,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. !:Qs
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1806,7 +1619,6 @@ msgctxt ""
msgid "The format is applied to the selected range of cells."
msgstr "A formátum a kijelölt cellatartományra lesz érvényes."
-#. ,\Gi
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1816,7 +1628,6 @@ msgctxt ""
msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
msgstr "Ha a cellatartalom színe nem változik, válassza a <item type=\"menuitem\">Nézet - Értékkiemelés</item> lehetőséget."
-#. oa*X
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1826,7 +1637,6 @@ msgctxt ""
msgid "To Define an AutoFormat for Spreadsheets"
msgstr "Automatikus formázás megadása munkafüzethez"
-#. vNM5
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1836,7 +1646,6 @@ msgctxt ""
msgid "You can define a new AutoFormat that is available to all spreadsheets."
msgstr "Megadhat egy új Automatikus formázást, amely az összes munkafüzet számára elérhető lesz."
-#. Kfr=
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1846,7 +1655,6 @@ msgctxt ""
msgid "Format a sheet."
msgstr "Formázzon egy munkalapot."
-#. gW-b
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1856,7 +1664,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
msgstr "Válassza a <item type=\"menuitem\">Szerkesztés - Mindet kijelöli</item> lehetőséget."
-#. JYi,
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1866,7 +1673,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
msgstr "Válassza a <item type=\"menuitem\">Formátum - Automatikus formázás</item> lehetőséget."
-#. no[K
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1875,7 +1681,6 @@ msgctxt ""
msgid "Click <emph>Add</emph>."
msgstr "Kattintson a <emph>Hozzáadás</emph> gombra."
-#. E?O%
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1884,7 +1689,6 @@ msgctxt ""
msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
msgstr "Az <emph>Automatikus formázás hozzáadása</emph> párbeszédablakban adjon nevet a formátumnak a <emph>Név</emph> mezőben."
-#. RaM!
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1893,7 +1697,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. 4R;W
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
@@ -1903,7 +1706,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Formátum - Automatikus formázás\">Formátum - Automatikus formázás</link>"
-#. DP/a
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1912,7 +1714,6 @@ msgctxt ""
msgid "Changing Table Views"
msgstr "Táblázatnézetek megváltoztatása"
-#. ^qh,
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1921,7 +1722,6 @@ msgctxt ""
msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
msgstr "<bookmark_value>sorfejléc; elrejtés</bookmark_value><bookmark_value>oszlopfejléc; elrejtés</bookmark_value><bookmark_value>táblázatok; nézetek</bookmark_value><bookmark_value>nézetek; táblázatok</bookmark_value><bookmark_value>rácsok;sorok elrejtése a munkalapokon</bookmark_value><bookmark_value>elrejtés;fejlécek/rácsvonalak</bookmark_value><bookmark_value>módosítás;táblázatnézetek</bookmark_value>"
-#. sMu?
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1931,7 +1731,6 @@ msgctxt ""
msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Táblázatnézet módosítása\">Táblázatnézet módosítása</link></variable>"
-#. 1OfI
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1941,7 +1740,6 @@ msgctxt ""
msgid "To hide column and line headers in a table:"
msgstr "A táblázatban levő oszlop- és sorfejlécek elrejtéséhez:"
-#. _eiT
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1951,7 +1749,6 @@ msgctxt ""
msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
msgstr "Az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> menüben lépjen a <emph>Nézet</emph> lapra. Szüntesse meg az <emph>Oszlop- és sorfejlécek</emph> négyzet kijelölését. Erősítse meg az <emph>OK</emph> gombbal."
-#. Kpj^
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1961,7 +1758,6 @@ msgctxt ""
msgid "To hide grid lines:"
msgstr "A rácsvonalak elrejtéséhez:"
-#. |kzP
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
@@ -1971,7 +1767,6 @@ msgctxt ""
msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
msgstr "Az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> menüben lépjen a <emph>Nézet</emph> lapra. Szüntesse meg a <emph>Rácsvonalak</emph> négyzet kijelölését. Erősítse meg az <emph>OK</emph> gombbal."
-#. =g-Q
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -1980,7 +1775,6 @@ msgctxt ""
msgid "Calculating Time Differences"
msgstr "Időkülönbségek számítása"
-#. a.?O
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -1989,7 +1783,6 @@ msgctxt ""
msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
msgstr "<bookmark_value>számolás;időkülönbségek</bookmark_value><bookmark_value>időkülönbségek</bookmark_value>"
-#. `LWF
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -1999,7 +1792,6 @@ msgctxt ""
msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Időkülönbségek számítása\">Időkülönbségek számítása</link></variable>"
-#. *4M}
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -2009,7 +1801,6 @@ msgctxt ""
msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
msgstr "Ha időkülönbségeket szeretne számolni, például ugyanazon éjszakán 23:30 és 01:10 között, akkor használja a következő képletet:"
-#. {@Ux
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -2019,7 +1810,6 @@ msgctxt ""
msgid "=(B2<A2)+B2-A2"
msgstr "=(B2<A2)+B2-A2"
-#. 20aT
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -2029,7 +1819,6 @@ msgctxt ""
msgid "The later time is B2 and the earlier time is A2. The result of the example is 01:40 or 1 hour and 40 minutes."
msgstr "A későbbi időpontot a B2, a korábbit az A2 cella tartalmazza. A példában megadott adatokra az eredmény 01:40 vagy 1 óra 40 perc."
-#. bz(E
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
@@ -2039,7 +1828,6 @@ msgctxt ""
msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
msgstr "A képletben egy teljes 24 órás nap értéke 1, és egy óra értéke 1/24. A zárójelben lévő kifejezés logikai értéke 0 vagy 1 lehet, hasonlóan a 0 vagy a 24 órához. Az eredményt a képlet automatikusan időformátumban szolgáltatja az operandusok sorozatának megfelelően."
-#. -PoE
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2048,7 +1836,6 @@ msgctxt ""
msgid "Formatting Numbers as Text"
msgstr "Számok formázása szövegként"
-#. FjdL
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2057,7 +1844,6 @@ msgctxt ""
msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
msgstr "<bookmark_value>számok; bevitel szövegként</bookmark_value><bookmark_value>szövegformátumok; számokhoz</bookmark_value><bookmark_value>formátumok; számok szövegként</bookmark_value><bookmark_value>cellaformátumok; szövegek és számok</bookmark_value><bookmark_value>formázás;számok szövegként</bookmark_value>"
-#. oi7s
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2067,7 +1853,6 @@ msgctxt ""
msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Számok formázása szövegként\">Számok formázása szövegként</link></variable>"
-#. _A%r
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2077,7 +1862,6 @@ msgctxt ""
msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
msgstr "A számokat szövegként is lehet formázni a $[officename] Calc programban. Nyissa meg egy cella vagy cellatartomány helyi menüjét, válassza a <emph>Cellák formázása - Számok</emph> lehetőséget, majd a <emph>Kategória</emph> listából válassza a „Szöveg” lehetőséget. A formázott tartományba ezt követően beírásra kerülő számok szövegként kerülnek értelmezésre. Ezen „számok” megjelenítése balra zárt, hasonlóan a többi szöveghez."
-#. 2F,h
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2087,7 +1871,6 @@ msgctxt ""
msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
msgstr "Ha ezt megelőzően a cellákban normális számokat adott meg, majd „Szöveg” beállításra módosította a cellaformátumot, akkor a számok továbbra is normális számok maradnak és nem kerülnek konvertálásra. Csak a később beírt számok, illetve az ezt követően szerkesztett számok válnak szövegszámmá."
-#. U%p,
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2097,7 +1880,6 @@ msgctxt ""
msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
msgstr "Ha egy számot közvetlenül szövegként kívánt beírni, akkor először írjon be egy aposztrófot ('). Például az oszlopfejlécben található évszámok esetében '1999, '2000, illetve '2001 értéket írjon. Az aposztróf nem látható a cellában, mindössze azt jelöli, hogy a bejegyzés szövegként kerüljön felismerésre. Ez például akkor lehet hasznos, ha nullával (0) kezdődő telefonszámot vagy irányítószámot ad meg, hiszen a számjegysorozat elején található nulla (0) a normális számformátumban eltávolításra kerül."
-#. dN+x
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
@@ -2107,7 +1889,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formátum - Cellák - Számok\">Formátum - Cellák - Számok</link>"
-#. S#rE
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2116,7 +1897,6 @@ msgctxt ""
msgid "Saving and Opening Sheets in HTML"
msgstr "Munkalapok mentése és megnyitása HTML formátumban"
-#. Yzms
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2125,7 +1905,6 @@ msgctxt ""
msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
msgstr "<bookmark_value>HTML; munkalapok</bookmark_value><bookmark_value>munkalapok; HTML</bookmark_value><bookmark_value>mentés; munkalapok HTML-ben</bookmark_value><bookmark_value>megnyitás; munkalapok HTML-ben</bookmark_value>"
-#. RDBY
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2135,7 +1914,6 @@ msgctxt ""
msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Munkalapok mentése és megnyitása HTML-ben\">Munkalapok mentése és megnyitása HTML-ben</link></variable>"
-#. La*)
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2145,7 +1923,6 @@ msgctxt ""
msgid "Saving Sheets in HTML"
msgstr "Munkalapok mentése HTML-ben"
-#. 8cbT
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2155,7 +1932,6 @@ msgctxt ""
msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> Calc HTML-dokumentumként a Calc-dokumentum összes munkalapját együtt menti. A HTML-dokumentum elejéhez automatikusan hozzáadásra kerül egy címsor, illetve a dokumentumon belül található egyedi munkalapokra mutató hiperhivatkozások."
-#. 6RO)
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2165,7 +1941,6 @@ msgctxt ""
msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
msgstr "A számok a beírásnak megfelelően jelennek meg. Ezenkívül az <SDVAL> HTML-kódban a pontos belső számérték kerül eltárolásra, tehát a HTML-dokumentum <item type=\"productname\">%PRODUCTNAME</item> termékben való megnyitásakor tudni fogja, hogy a pontos értékek lettek mentve."
-#. QC?B
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2175,7 +1950,6 @@ msgctxt ""
msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
msgstr "Ha az aktuális Calc-dokumentumot HTML formátumban kívánja menteni, válassza a <emph>Fájl - Mentés másként</emph> parancsot."
-#. mYdK
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2185,7 +1959,6 @@ msgctxt ""
msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
msgstr "A <emph>Fájltípus</emph> listamezőben a többi <item type=\"productname\">%PRODUCTNAME</item> Calc-szűrőket tartalmazó területen válassza a „HTML-dokumentum (<item type=\"productname\">%PRODUCTNAME</item> Calc)” szűrőtípust."
-#. oI9]
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2195,7 +1968,6 @@ msgctxt ""
msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
msgstr "Adjon meg egy <emph>Fájlnevet</emph>, majd kattintson a <emph>Mentés</emph> gombra."
-#. 2SrG
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2205,7 +1977,6 @@ msgctxt ""
msgid "Opening Sheets in HTML"
msgstr "Munkalapok megnyitása HTML-ben"
-#. \H=y
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2215,7 +1986,6 @@ msgctxt ""
msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> számos szűrőt kínál a HTML-fájlok megnyitására, amelyeket a <emph>Fájl - Megnyitás</emph> ablak <emph>Fájltípus</emph> listamezőjében választhatja ki:"
-#. [Q^p
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2225,7 +1995,6 @@ msgctxt ""
msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> Calc programban való megnyitáshoz válassza a „HTML-dokumentum (<item type=\"productname\">%PRODUCTNAME</item> Calc)” fájltípust."
-#. Az5|
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2235,7 +2004,6 @@ msgctxt ""
msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
msgstr "Most már az összes <item type=\"productname\">%PRODUCTNAME</item> Calc-beállítás elérhető. Azonban nem mindegyik, a <item type=\"productname\">%PRODUCTNAME</item> Calc programban szerkesztésre használható beállítás menthető HTML formátumba."
-#. 6E5T
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2245,7 +2013,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Fájl - Megnyitás\">Fájl - Megnyitás</link>"
-#. #Px:
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
@@ -2255,7 +2022,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Fájl - Mentés másként\">Fájl - Mentés másként</link>"
-#. Bm?Q
#: datapilot_updatetable.xhp
msgctxt ""
"datapilot_updatetable.xhp\n"
@@ -2264,7 +2030,6 @@ msgctxt ""
msgid "Updating Pivot Tables"
msgstr "Kimutatástáblák frissítése"
-#. M.]0
#: datapilot_updatetable.xhp
msgctxt ""
"datapilot_updatetable.xhp\n"
@@ -2273,7 +2038,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla importálása</bookmark_value><bookmark_value>kimutatástábla; táblázatok frissítése</bookmark_value><bookmark_value>újraszámítás;kimutatástáblák</bookmark_value><bookmark_value>frissítés;kimutatástáblák</bookmark_value>"
-#. *?Ie
#: datapilot_updatetable.xhp
msgctxt ""
"datapilot_updatetable.xhp\n"
@@ -2283,7 +2047,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Kimutatástáblák frissítése\">Kimutatástáblák frissítése</link></variable>"
-#. ,_Nw
#: datapilot_updatetable.xhp
msgctxt ""
"datapilot_updatetable.xhp\n"
@@ -2293,7 +2056,6 @@ msgctxt ""
msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
msgstr "Ha a forrásmunkalap adatai módosításra kerültek, akkor a $[officename] újraszámítja a kimutatástáblát. A táblázat újraszámításhoz válassza az <emph>Adatok - Kimutatástábla - Frissítés</emph> lehetőséget. Tegye ugyanezt egy Excel-kimutatástábla $[officename] Calc programba való importálása után is."
-#. `=^|
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2302,7 +2064,6 @@ msgctxt ""
msgid "Addresses and References, Absolute and Relative"
msgstr "Címek és hivatkozások, abszolút és relatív"
-#. vpz$
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2311,7 +2072,6 @@ msgctxt ""
msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
msgstr "<bookmark_value>címzés; relatív és abszolút</bookmark_value><bookmark_value>hivatkozások; abszolút/relatív</bookmark_value><bookmark_value>abszolút címek munkafüzetekben</bookmark_value><bookmark_value>relatív címzek</bookmark_value><bookmark_value>abszolút hivatkozások munkafüzetekben</bookmark_value><bookmark_value>relatív hivatkozások</bookmark_value><bookmark_value>hivatkozások; cellákra</bookmark_value><bookmark_value>cellák; hivatkozások</bookmark_value>"
-#. 7V?|
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2321,7 +2081,6 @@ msgctxt ""
msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Címek és hivatkozások, abszolút és relatív\">Címek és hivatkozások, abszolút és relatív</link></variable>"
-#. 9!*$
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2331,7 +2090,6 @@ msgctxt ""
msgid "Relative Addressing"
msgstr "Relatív címzés"
-#. MN{k
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2341,7 +2099,6 @@ msgctxt ""
msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
msgstr "Az A oszlop 1. sorában levő cella címe A1. Egymás melletti cellák tartományát úgy lehet megcímezni, hogy először megadja a bal felső cella koordinátáit, majd beír egy kettőspontot, amelyet a jobb alsó cella koordinátáinak kell követnie. Például a bal felső sarokban levő cellák által formált négyzet megcímzéséhez a következőt kell beírni: A1:B2."
-#. K\\2
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2351,7 +2108,6 @@ msgctxt ""
msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
msgstr "Egy terület ilyen módon megcímzésével egy relatív hivatkozást hoz létre az A1:B2 tartományhoz. A relatív itt azt jelenti, hogy e terület hivatkozása a képletek másolásánál automatikusan módosul."
-#. jE]p
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2361,7 +2117,6 @@ msgctxt ""
msgid "Absolute Addressing"
msgstr "Abszolút címzés"
-#. r0Tm
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2371,7 +2126,6 @@ msgctxt ""
msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
msgstr "Az abszolút címzés a relatív címzés ellentéte. Az abszolút hivatkozásban dollárjelet kell elhelyezni az összes betű és szám elé, például $A$1:$B$2."
-#. 8jqa
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2381,7 +2135,6 @@ msgctxt ""
msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
msgstr "A $[officename] képes az aktuális hivatkozást, amelyen a kurzor jelenleg a beviteli sorban áll, relatívból abszolútba, illetve visszafelé konvertálni a Shift+F4 billentyűkombináció segítségével. Ha relatív címzéssel indul (például: A1), akkor a billentyűkombináció első megnyomását követően a sor, illetve az oszlop egyaránt abszolút hivatkozásra módosul ($A$1). A második alkalommal csak a sor (A$1), a harmadik alkalommal pedig csak az oszlop ($A1) hivatkozástípusa módosul. Ha a billentyűkombinációt újra megnyomja, akkor mind a sor-, mind pedig az oszlophivatkozások visszaváltanak relatív címzésre (A1)."
-#. q;Yx
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2391,7 +2144,6 @@ msgctxt ""
msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
msgstr "A $[officename] Calc megjeleníti a képlethivatkozásokat. Ha például egy cellában rákattint a =SZUM(A1:C5;D15:D24) képletre, akkor a két hivatkozott munkalapterület egy adott színnel kiemelésre kerül a munkalapon. Például az „A1:C5” képletösszetevő kékkel kerül kiemelésre, a kérdéses cellatartomány pedig egyező kék színű keretet kap. A következő képletösszetevő, a „D15:D24” ugyanígy, de pirossal kerül megjelölésre."
-#. Ol{s
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2401,7 +2153,6 @@ msgctxt ""
msgid "When to Use Relative and Absolute References"
msgstr "Mikor használandó a relatív és az abszolút címzés"
-#. gPqS
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2411,7 +2162,6 @@ msgctxt ""
msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
msgstr "Mi különbözteti meg a relatív hivatkozásokat? Tegyük fel, hogy az E1 cellában ki kívánja számítani az A1:B2 cellatartományban található cellák összegét. Az E1 cellába a következő képlet kell beírnia: =SZUM(A1:B2). Ha később úgy dönt, hogy egy új oszlopot szúr be az A oszlop elé, akkor az összeadni kívánt elemek a B1:C2 tartományban lesznek, a képlet pedig az F1 cellában lesz, nem az E1 cellában. Így az új oszlop beszúrása után a munkalap valamennyi képletét le kellene ellenőriznie, és talán ki is kellene javítania, esetleg a többi munkalapon lévőkkel együtt."
-#. 2LH0
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2421,7 +2171,6 @@ msgctxt ""
msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
msgstr "Szerencsére a $[officename] ezt elvégzi a felhasználó helyett. Az új A oszlop beszúrását követően a =SZUM(A1:B2) képlet automatikusan frissítésre kerül, és =SZUM(B1:C2) lesz belőle. A sorszámok hasonlóképpen automatikusan beállításra kerülnek akkor, amikor egy új 1. sor kerül beszúrásra. A $[officename] Calc programban használt abszolút és relatív hivatkozások a hivatkozott területek áthelyezésekor mindig beállításra kerülnek. Azonban a képletek másolásakor gondosan járjon el, mivel ebben az esetben csak a relatív hivatkozások kerülnek beállításra, az abszolút hivatkozások nem."
-#. (CKX
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2431,7 +2180,6 @@ msgctxt ""
msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
msgstr "Az abszolút hivatkozásokat akkor használja, ha egy számítás a munkalap egy megadott cellájára hivatkozik. Ha egy olyan képletet, amely pontosan erre a cellára hivatkozik, az eredeti cella alatti cellába másol, akkor a hivatkozás is lejjebb kerül abban az esetben, ha a cellakoordinátákat nem abszolút módon határozta meg."
-#. \)zn
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
@@ -2441,7 +2189,6 @@ msgctxt ""
msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
msgstr "A sorok, illetve oszlopok beszúrásán kívül a hivatkozások akkor is változhatnak, amikor egy adott cellákra hivatkozó meglévő képletet átmásol a munkalap egy másik területére. Tegyük fel, hogy a 10. sorba a következő képletet írta: =SZUM(A1:A9). Ha a jobbra található szomszédos oszlop összegét kívánja kiszámítani, akkor egyszerűen másolja a képletet a jobbra található cellába. A képlet B oszlopba való másolásakor az automatikusan a következőre módosul: =SZUM(B1:B9)."
-#. j-54
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2450,7 +2197,6 @@ msgctxt ""
msgid "Moving Cells by Drag-and-Drop"
msgstr "Cellák áthelyezése „fogd és vidd” módszerrel"
-#. BO7m
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2459,7 +2205,6 @@ msgctxt ""
msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
msgstr "<bookmark_value>fogd és vidd; cellák áthelyezése</bookmark_value><bookmark_value>cellák; áthelyezés „fogd és vidd” módszerrel</bookmark_value><bookmark_value>oszlopok; áthelyezés „fogd és vidd” módszerrel</bookmark_value><bookmark_value>áthelyezés;cellák, „fogd és vidd” módszerrel</bookmark_value><bookmark_value>beszúrás;cellák, „fogd és vidd” módszerrel</bookmark_value>"
-#. #.H7
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2468,7 +2213,6 @@ msgctxt ""
msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Cellák áthelyezése „fogd és vidd” módszerrel</link></variable>"
-#. -44F
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2477,7 +2221,6 @@ msgctxt ""
msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
msgstr "Ha egy Calc-munkalap kijelölt celláit áthúzza az egérrel egy másik helyre, a célterület cellái felül lesznek írva. Ez a normális <emph>felülíró mód</emph>."
-#. @R_Z
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2486,7 +2229,6 @@ msgctxt ""
msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
msgstr "Ha az egérgomb felengedése közben lenyomva tartja az <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> billentyűt, akkor <emph>beszúró módba</emph> kerül."
-#. 5hsV
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2495,7 +2237,6 @@ msgctxt ""
msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
msgstr "A beszúró módban a célterület cellái jobbra vagy lefelé csúsznak el, és az áthelyezett cellák az üressé váló pozíciókba kerülnek felülírás nélkül."
-#. =}.9
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2504,7 +2245,6 @@ msgctxt ""
msgid "The surrounding box of the moved cells looks different in insert mode."
msgstr "Az áthelyezés alatt álló cellákat körülvevő keret másképp néz ki beszúró módban."
-#. bL7!
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2513,7 +2253,6 @@ msgctxt ""
msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
msgstr "A felülíró módban a kijelölt terület körül mind a négy szegély látszik. A beszúró módban csak a bal oldali szegély látszik, amikor a célcellák jobbra lesznek eltolva. Ha a célcellák lefelé lesznek eltolva, akkor csak a felső szegély látszik."
-#. 7S:G
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2522,7 +2261,6 @@ msgctxt ""
msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
msgstr "Az, hogy a célterület jobbra vagy lefelé csúszik el, a forrás- és a célcellák közötti távolságtól függ, ha ugyanazon a munkalapon belül történik az áthelyezés. Ha másik munkalap a cél, akkor az áthelyezett terület vízszintes és függőleges celláinak számától függ."
-#. E*E$
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2531,7 +2269,6 @@ msgctxt ""
msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
msgstr "Ha beszúró módban ugyanazon a soron belül (csak vízszintesen) helyezi át a cellákat, akkor a cellák beszúrása után minden cella balra lesz eltolva, hogy kitöltse a forrásterületet."
-#. fEKB
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2540,7 +2277,6 @@ msgctxt ""
msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
msgstr "Mindkét módban nyomva tarthatja a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt vagy a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift billentyűkombinációt, miközben az egérgombot felengedi, és ekkor rendre vagy másolat, vagy hivatkozás jön létre."
-#. m9Ds
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2549,7 +2285,6 @@ msgctxt ""
msgid "Keys pressed while releasing the mouse button"
msgstr "Lenyomott billentyűk az egérgomb felengedésekor"
-#. ijd;
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2558,7 +2293,6 @@ msgctxt ""
msgid "Result"
msgstr "Eredmény"
-#. h0VH
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2567,7 +2301,6 @@ msgctxt ""
msgid "No key"
msgstr "Semelyik"
-#. 7**L
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2576,7 +2309,6 @@ msgctxt ""
msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
msgstr "A cellák áthelyezésre kerülnek, és felülírják a célterület celláit. A forráscellák kiürítésre kerülnek."
-#. 70*3
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2585,7 +2317,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyű"
-#. HQ:H
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2594,7 +2325,6 @@ msgctxt ""
msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
msgstr "A cellák másolásra kerülnek, és felülírják a célterület celláit. A forráscellák változatlanul maradnak."
-#. C`.%
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2603,7 +2333,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift billentyűk"
-#. dQZm
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2612,7 +2341,6 @@ msgctxt ""
msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
msgstr "A forráscellákra hivatkozások jönnek létre, és ezek felülírják a célterület celláit. A forráscellák változatlanul maradnak."
-#. j-Y)
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2621,7 +2349,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> billentyű"
-#. ih}V
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2630,7 +2357,6 @@ msgctxt ""
msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
msgstr "A cellák áthelyezésre kerülnek, és a célterület cellái jobbra vagy lefelé csúsznak. A forráscellák kiürítésre kerülnek, kivéve ha ugyanazon munkalap ugyanazon sorain belül történik az áthelyezés."
-#. 5aok
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2639,7 +2365,6 @@ msgctxt ""
msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
msgstr "Ha ugyanazon a munkalapon ugyanazon sorok között történik az áthelyezés, a célterület cellái jobba tolódnak, és az egész sor eltolódik, hogy kitöltse a forrásterületet."
-#. FnUX
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2648,7 +2373,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> billentyűk"
-#. mF?$
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2657,7 +2381,6 @@ msgctxt ""
msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
msgstr "A cellák másolásra kerülnek, és a célterület cellái jobbra vagy lefelé csúsznak. A forráscellák változatlanul maradnak."
-#. fAVI
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2666,7 +2389,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift billentyűk"
-#. :M4Q
#: move_dragdrop.xhp
msgctxt ""
"move_dragdrop.xhp\n"
@@ -2675,7 +2397,6 @@ msgctxt ""
msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
msgstr "A forráscellákra hivatkozások jönnek létre, és a célterület cellái jobbra vagy lefelé csúsznak. A forráscellák változatlanul maradnak."
-#. pcIJ
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2684,7 +2405,6 @@ msgctxt ""
msgid "Calculating in Spreadsheets"
msgstr "Számítás munkafüzetekben"
-#. 5P2,
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2693,7 +2413,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
msgstr "<bookmark_value>munkafüzetek; számítás</bookmark_value><bookmark_value>számítás; munkafüzetek</bookmark_value><bookmark_value>képletek; kiszámítás</bookmark_value>"
-#. HSmJ
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2702,7 +2421,6 @@ msgctxt ""
msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
msgstr "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Számítások munkafüzetekben\">Számítások munkafüzetekben</link></variable>"
-#. 6;WT
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2711,7 +2429,6 @@ msgctxt ""
msgid "The following is an example of a calculation in $[officename] Calc."
msgstr "A következő egy számítási példa a $[officename] Calc programban."
-#. plNZ
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2720,7 +2437,6 @@ msgctxt ""
msgid "Click in a cell, and type a number"
msgstr "Kattintson egy cellába, és írjon be egy számot."
-#. [L5O
#: calculate.xhp
#, fuzzy
msgctxt ""
@@ -2730,7 +2446,6 @@ msgctxt ""
msgid "Press Enter."
msgstr "Nyomja meg az Enter billentyűt."
-#. F*,Q
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2739,7 +2454,6 @@ msgctxt ""
msgid "The cursor moves down to the next cell."
msgstr "A kurzor lefelé, a következő cellára lép."
-#. \u`S
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2748,7 +2462,6 @@ msgctxt ""
msgid "Enter another number."
msgstr "Írjon be egy másik számot."
-#. xYaS
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2757,7 +2470,6 @@ msgctxt ""
msgid "Press the Tab key."
msgstr "Nyomja meg a Tab billentyűt."
-#. %1_4
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2766,7 +2478,6 @@ msgctxt ""
msgid "The cursor moves to the right into the next cell."
msgstr "A kurzor jobbra, a következő cellára lép."
-#. :x2D
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2775,7 +2486,6 @@ msgctxt ""
msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</item>"
msgstr "Írjon be egy képletet, például: <item type=\"literal\">=A3 * A4 / 100.</item>"
-#. QSd0
#: calculate.xhp
#, fuzzy
msgctxt ""
@@ -2785,7 +2495,6 @@ msgctxt ""
msgid "Press Enter."
msgstr "Nyomja meg az Enter billentyűt."
-#. |:SS
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2794,7 +2503,6 @@ msgctxt ""
msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar."
msgstr "A képlet eredménye a cellában jelenik meg. Ha akarja, szerkesztheti a képletet a Képlet eszköztár beviteli sorában."
-#. baE:
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2803,7 +2511,6 @@ msgctxt ""
msgid "When you edit a formula, the new result is calculated automatically."
msgstr "Képlet szerkesztésekor az eredménye automatikusan kiszámításra kerül."
-#. 6U%Q
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2812,7 +2519,6 @@ msgctxt ""
msgid "Rotating Text"
msgstr "Szöveg forgatása"
-#. E}y)
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2821,7 +2527,6 @@ msgctxt ""
msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
msgstr "<bookmark_value>cellák; szöveg forgatása</bookmark_value><bookmark_value>forgatás; szöveg a cellákban</bookmark_value><bookmark_value>szöveg a cellákban; függőleges írás</bookmark_value>"
-#. %/mc
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2831,7 +2536,6 @@ msgctxt ""
msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Szöveg forgatása\">Szöveg forgatása</link></variable>"
-#. n}W5
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2841,7 +2545,6 @@ msgctxt ""
msgid "Select the cells whose text you want to rotate."
msgstr "Válassza ki azokat a cellákat, amelyek szövegét forgatni szeretné."
-#. \f4p
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2851,7 +2554,6 @@ msgctxt ""
msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
msgstr "Válassza a <emph>Formátum - Cellák</emph> lehetőséget. Megjelenik a <emph>Cellák formázása</emph> párbeszédablak."
-#. ]QX5
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2861,7 +2563,6 @@ msgctxt ""
msgid "Click the <emph>Alignment</emph> tab."
msgstr "Kattintson az <emph>Igazítás</emph> fülre."
-#. qfil
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2871,7 +2572,6 @@ msgctxt ""
msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
msgstr "A <emph>Szöveg iránya</emph> terület előnézettárcsáján az egér segítségével állítsa be a szövegforgatás irányát. Kattintson az <emph>OK</emph> gombra."
-#. 7-@j
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2881,7 +2581,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Formátum - Cellák\">Formátum - Cellák</link>"
-#. qY,c
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -2891,7 +2590,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Formátum - Cellák - Igazítás\">Formátum - Cellák - Igazítás</link>"
-#. 5sj!
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2900,7 +2598,6 @@ msgctxt ""
msgid "Protecting Cells from Changes"
msgstr "Cellák módosításokkal szembeni védelme"
-#. %`Df
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2909,7 +2606,6 @@ msgctxt ""
msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
msgstr "<bookmark_value>védelem;cellák és munkalapok</bookmark_value><bookmark_value>cellák; védelem</bookmark_value><bookmark_value>cellavédelem; bekapcsolás</bookmark_value><bookmark_value>munkalapok; védelem</bookmark_value><bookmark_value>dokumentumok; védelem</bookmark_value><bookmark_value>cellák; elrejtés nyomtatáshoz</bookmark_value><bookmark_value>módosítás; munkalapok védelme</bookmark_value><bookmark_value>elrejtés;képletek</bookmark_value><bookmark_value>képletek;elrejtés</bookmark_value>"
-#. mJ~L
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2919,7 +2615,6 @@ msgctxt ""
msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Cellák módosítással szembeni védelme\">Cellák módosítással szembeni védelme</link></variable>"
-#. \%4E
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2929,7 +2624,6 @@ msgctxt ""
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed."
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> Calc programban védhet egyes munkalapokat és a dokumentum egészét is. Kiválaszthatja, hogy a cellák védve legyenek-e a véletlen módosítások ellen, a képletek és cellák láthatók legyenek-e, illetve hogy a cellák nyomtathatók legyenek-e."
-#. eQ{(
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2939,7 +2633,6 @@ msgctxt ""
msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered."
msgstr "A védelem biztosítható jelszóval, de ez nem kötelező. Ha hozzárendel egy jelszót, akkor a védelem csak a helyes jelszó beírásával távolítható el."
-#. eM,R
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2949,7 +2642,6 @@ msgctxt ""
msgid "Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document."
msgstr "A cellák <emph>Védett</emph> attribútummal való védelme csak akkor hatékony, ha a teljes munkalapot védi. Alapértelmezésben minden cella rendelkezik <emph>Védett</emph> attribútummal. Ezért el kell távolítania az attribútumot azokról a cellákról, amelyeket a felhasználók módosíthatnak. Ezután védje az egész munkalapot, és mentse a dokumentumot."
-#. q^uI
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2958,7 +2650,6 @@ msgctxt ""
msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password."
msgstr "Ezek a védelmi funkciók csak a véletlen balesetek megelőzését szolgálják. E funkcióknak nem céljuk a biztonságos védelem nyújtása. Például a munkafüzet másik fájlformátumba exportálásával a felhasználó kiiktathatja a védelmi funkciókat. Csak egyetlen biztonságos védelem létezik: a jelszó, amelyet az OpenDocument-fájl mentésekor megadhat. A jelszóval mentett fájlokat csak ugyanazzal a jelszóval lehet ismét megnyitni."
-#. yu9$
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2967,7 +2658,6 @@ msgctxt ""
msgid "Select the cells that you want to specify the cell protection options for."
msgstr "Válassza ki azokat a cellákat, amelyek védelmi beállításait meg kívánja adni."
-#. 8{;,
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2977,7 +2667,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
msgstr "Válassza a <item type=\"menuitem\">Formátum - Cellák</item> lehetőséget, majd kattintson a <emph>Cellavédelem</emph> fülre."
-#. 8IfJ
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2987,7 +2676,6 @@ msgctxt ""
msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below."
msgstr "Válassza ki a kívánt védelmi beállításokat. A beállítások csak azután lesznek alkalmazva, miután a munkalapot levédte az Eszközök menüből – lásd alább."
-#. fN8Q
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -2996,7 +2684,6 @@ msgctxt ""
msgid "Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells."
msgstr "Kapcsolja ki a <emph>Védett</emph> beállítást, hogy a kijelölt cella felhasználó által módosíthatóvá váljék."
-#. 8.?S
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3006,7 +2693,6 @@ msgctxt ""
msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
msgstr "Egy cella tartalmának vagy formátumának módosításával szembeni védelemhez válassza a <emph>Védett</emph> lehetőséget."
-#. l(P*
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3015,7 +2701,6 @@ msgctxt ""
msgid "Select <emph>Hide formula</emph> to hide and to protect formulas from changes."
msgstr "A <emph>Képletek elrejtése</emph> lehetőség választásával elrejtheti és megvédheti a módosításokkal szemben a képleteket."
-#. ]`r(
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3024,7 +2709,6 @@ msgctxt ""
msgid "Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen."
msgstr "A <emph>Nem nyomtatható</emph> lehetőség választásával elrejtheti a védett cellákat a kinyomtatott dokumentumokban. A cellák a képernyőről nem lesznek elrejtve."
-#. SY91
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3034,7 +2718,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. 5SsZ
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3044,7 +2727,6 @@ msgctxt ""
msgid "Apply the protection options."
msgstr "Alkalmazza a védelmi lehetőségeket."
-#. QohF
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3053,7 +2735,6 @@ msgctxt ""
msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Document - Sheet</item>."
msgstr "Ha meg kívánja akadályozni a cellák megváltoztatását / megtekintését / kinyomtatását a <emph>Formátum - Cellák</emph> beállításai szerint, válassza az <item type=\"menuitem\">Eszközök - Dokumentum védelme - Munkalap</item> menüparancsot."
-#. ]ZLH
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3062,7 +2743,6 @@ msgctxt ""
msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Document - Document</item>."
msgstr "A dokumentum szerkezetének, például a munkalapok számának, <link href=\"text/scalc/guide/rename_table.xhp\">nevének</link> és sorrendjének változtatás elleni védelméhez válassza az <item type=\"menuitem\">Eszközök - Dokumentum védelme - Dokumentum</item> menüparancsot."
-#. LcQ\
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3071,7 +2751,6 @@ msgctxt ""
msgid "(Optional) Enter a password."
msgstr "(Opcionális) Írjon be egy jelszót."
-#. ]`oQ
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3080,7 +2759,6 @@ msgctxt ""
msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password."
msgstr "Ha elfelejti a jelszót, nem kapcsolhatja ki a védelmet. Ha csak az akaratlan megváltoztatásoktól akarja megvédeni a cellákat, kapcsolja be a munkalap védelmét, de ne adjon meg jelszót."
-#. ^?j,
#: cell_protect.xhp
#, fuzzy
msgctxt ""
@@ -3091,7 +2769,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. ms?=
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
@@ -3100,7 +2777,6 @@ msgctxt ""
msgid "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
msgstr "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
-#. P2;7
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3109,7 +2785,6 @@ msgctxt ""
msgid "Defining Database Ranges"
msgstr "Adatbázis-tartományok megadása"
-#. ~fBF
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3118,7 +2793,6 @@ msgctxt ""
msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
msgstr "<bookmark_value>táblázatok; adatbázis-tartományok</bookmark_value><bookmark_value>adatbázis-tartományok; megadás</bookmark_value><bookmark_value>tartományok; adatbázis-tartományok megadása</bookmark_value><bookmark_value>megadás;adatbázis-tartományok</bookmark_value>"
-#. v_/,
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3128,7 +2802,6 @@ msgctxt ""
msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Adatbázis-tartományok megadása\">Adatbázis-tartományok megadása</link></variable>"
-#. `D\L
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3138,7 +2811,6 @@ msgctxt ""
msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
msgstr "A munkafüzetben megadhat egy adatbázisként használható cellatartományt. Az adatbázis-tartomány minden sora egy adatbázis-rekordnak, és minden sor cellája egy adatbázis-mezőnek felel meg. A tartományt sorrendbe teheti, csoportosíthatja, kereshet benne és számításokat végezhet rajta, csakúgy mint egy adatbázissal."
-#. WlAJ
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3148,7 +2820,6 @@ msgctxt ""
msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
msgstr "Csak olyan adatbázis-tartományokat szerkeszthet és érhet el, amelyek tartományokat tartalmazó munkafüzetben vannak. A %PRODUCTNAME Adatforrás nézetében lévő adatbázis-tartományok nem érhetők el."
-#. aiJM
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3157,7 +2828,6 @@ msgctxt ""
msgid "To define a database range"
msgstr "Adatbázis-tartomány megadásához"
-#. :o~J
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3167,7 +2837,6 @@ msgctxt ""
msgid "Select the range of cells that you want to define as a database range."
msgstr "Válassza ki az adatbázis-tartományként megadni kívánt cellatartományt."
-#. jYtl
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3176,7 +2845,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Tartomány definiálása</item> lehetőséget."
-#. :k)t
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3186,7 +2854,6 @@ msgctxt ""
msgid "In the <emph>Name</emph> box, enter a name for the database range."
msgstr "A <emph>Név</emph> mezőben adjon meg egy nevet az adatbázis-tartomány számára."
-#. KY.K
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3195,7 +2862,6 @@ msgctxt ""
msgid "Click <emph>More</emph>."
msgstr "Kattintson a <emph>Részletek</emph> gombra."
-#. ~,MH
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3205,7 +2871,6 @@ msgctxt ""
msgid "Specify the options for the database range."
msgstr "Adja meg az adatbázis-tartomány beállításait."
-#. zUNX
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
@@ -3214,7 +2879,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. QP#v
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3223,7 +2887,6 @@ msgctxt ""
msgid "Naming Cells"
msgstr "Cellák elnevezése"
-#. 6|@k
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3232,7 +2895,6 @@ msgctxt ""
msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
msgstr "<bookmark_value>cellák; nevek megadása</bookmark_value><bookmark_value>nevek; megadás cellákhoz</bookmark_value><bookmark_value>értékek; nevek megadása</bookmark_value><bookmark_value>állandó meghatározások</bookmark_value><bookmark_value>változók; nevek megadása</bookmark_value><bookmark_value>cellatartományok; nevek megadása</bookmark_value><bookmark_value>megadás;cellatartományok neve</bookmark_value><bookmark_value>képletek; nevek megadása</bookmark_value><bookmark_value>címzés; megadott nevekkel</bookmark_value><bookmark_value>cellanevek; megadás/címzés</bookmark_value><bookmark_value>hivatkozások; megadott nevekkel</bookmark_value><bookmark_value>engedélyezett cellanevek</bookmark_value><bookmark_value>átnevezés;cellák</bookmark_value>"
-#. u7j*
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3242,7 +2904,6 @@ msgctxt ""
msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Cellák elnevezése\">Cellák elnevezése</link></variable>"
-#. qx\;
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3251,7 +2912,6 @@ msgctxt ""
msgid "Allowed names"
msgstr "Megengedett nevek"
-#. -DK,
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3260,7 +2920,6 @@ msgctxt ""
msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
msgstr "A Calcban használt nevek tartalmazhatnak betűket, számokat és néhány speciális karaktert. A neveknek vagy betűvel vagy aláhúzás karakterrel kell kezdődniük."
-#. IHg6
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3269,7 +2928,6 @@ msgctxt ""
msgid "Allowed special characters:"
msgstr "A megengedett speciális karakterek:"
-#. {A(m
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3278,7 +2936,6 @@ msgctxt ""
msgid "underline (_)"
msgstr "aláhúzás (_)"
-#. CSr_
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3287,7 +2944,6 @@ msgctxt ""
msgid "period (.) - allowed within a name, but not as first or last character"
msgstr "pont (.) - engedélyezett a néven belül, de az első karakter nem lehet"
-#. BZ56
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3296,7 +2952,6 @@ msgctxt ""
msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
msgstr "szóköz ( ) - engedélyezett a néven belül, de az első karakter nem lehet, és nem szerepelhet cellatartományban"
-#. ?$}R
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3305,7 +2960,6 @@ msgctxt ""
msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
msgstr "A nevek nem lehetnek ugyanazok, mint a cellahivatkozások. Például az A1 név érvénytelen, mert az A1 a bal felső cella cellahivatkozása."
-#. 3`m#
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3314,7 +2968,6 @@ msgctxt ""
msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
msgstr "A nevek nem kezdődhetnek R betűvel és egy azt követő számmal. További információkért lásd a CÍM függvényt."
-#. Xe\s
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3323,7 +2976,6 @@ msgctxt ""
msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
msgstr "A cellatartományok nevében nem lehet szóköz. Lehet szóköz egyes cellák, munkalapok és dokumentumok nevében."
-#. +k8^
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3332,7 +2984,6 @@ msgctxt ""
msgid "Naming cells and formulas"
msgstr "Cellák és képletek elnevezése"
-#. DI;E
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3341,7 +2992,6 @@ msgctxt ""
msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
msgstr "A képletekben használt cella-, illetve cellatartomány-hivatkozások olvashatóvá tételére a tartományok elnevezése kínál megoldást. Például az A1:B2 tartománynak megadhatja a <emph>Kezdés</emph> nevet. Ezt követően például megadhatja a következő képletet: „=SZUM(Kezdés)”. A $[officename] még sorok, illetve oszlopok törlését vagy beszúrását követően is helyesen értelmezi a névvel azonosított tartományokat. A tartománynevek nem tartalmazhatnak szóköz karaktert."
-#. 1#tN
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3350,7 +3000,6 @@ msgctxt ""
msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
msgstr "Például, sokkal egyszerűbb egy forgalmiadó-képlet olvasása, ha azt „= A5 * B12” helyett „= Mennyiség * Adókulcs” formában adja meg. Ebben az esetben az A5 cellának adja meg a „Mennyiség”, a B12 cellának pedig az „Adókulcs” nevet."
-#. =_/V
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3359,7 +3008,6 @@ msgctxt ""
msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
msgstr "Használja a <emph>Nevek megadása</emph> párbeszédablakot a gyakran használt képletek vagy képletelemek elnevezésére. Tartománynevek megadásához:"
-#. g!$I
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3369,7 +3017,6 @@ msgctxt ""
msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
msgstr "Jelöljön ki egy cellát vagy cellatartományt, majd válassza a <emph>Beszúrás - Nevek - Megadás</emph> lehetőséget. Megjelenik a <emph>Nevek megadása</emph> párbeszédablak."
-#. YI0n
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3379,7 +3026,6 @@ msgctxt ""
msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
msgstr "Adja meg a kijelölt terület nevét a <emph>Név</emph> mezőben. Kattintson a <emph>Hozzáadás</emph> gombra. Az újonnan megadott név megjelenik a lenti listában. A párbeszédablak bezárásához kattintson az OK gombra."
-#. Q,zh
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3388,7 +3034,6 @@ msgctxt ""
msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
msgstr "Ebben a párbeszédablakban más cellatartományokat is elláthat névvel úgy, hogy a mezőbe beírja a nevet, majd kijelöli a megfelelő cellákat."
-#. H?nj
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3398,7 +3043,6 @@ msgctxt ""
msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
msgstr "Ha egy képletbe írja be a nevet, akkor az első néhány karakter bevitele után segítségként láthatja a teljes nevet."
-#. ?F-J
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3408,7 +3052,6 @@ msgctxt ""
msgid "Press the Enter key in order to accept the name from the tip."
msgstr "Nyomja meg az Enter billentyűt a tippben levő teljes név elfogadásához."
-#. aw*5
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3418,7 +3061,6 @@ msgctxt ""
msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
msgstr "Ha egynél több név is ugyanazokkal a karakterekkel kezdődik, akkor a Tab billentyű megnyomásával válogathat közöttük."
-#. 4)z-
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
@@ -3428,7 +3070,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Beszúrás - Nevek - Megadás\">Beszúrás - Nevek - Megadás</link>"
-#. =CCT
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3437,7 +3078,6 @@ msgctxt ""
msgid "Entering Values"
msgstr "Értékek megadása"
-#. `bW%
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3446,7 +3086,6 @@ msgctxt ""
msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
msgstr "<bookmark_value>értékek; beszúrás több cellába</bookmark_value><bookmark_value>beszúrás;értékek</bookmark_value><bookmark_value>cellatartományok;kijelölés adatbevitelhez</bookmark_value><bookmark_value>területek, lásd még: cellatartományok</bookmark_value>"
-#. kUE-
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3455,7 +3094,6 @@ msgctxt ""
msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Értékek megadása</link></variable>"
-#. s{bP
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3464,7 +3102,6 @@ msgctxt ""
msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
msgstr "A Calc leegyszerűsíti az adatbevitelt és az értékek több cellába történő beírását. Néhány beállítást igényei szerint módosíthat."
-#. ^sbu
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3473,7 +3110,6 @@ msgctxt ""
msgid "To Enter Values Into a Range of Cells Manually"
msgstr "Értékek beírása kézzel egy cellatartományba"
-#. G#Om
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3482,7 +3118,6 @@ msgctxt ""
msgid "There are two features that assist you when you enter a block of data manually."
msgstr "Két funkció áll rendelkezésre, ha kézzel ír be adatblokkot."
-#. C4-$
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3491,7 +3126,6 @@ msgctxt ""
msgid "Area Detection for New Rows"
msgstr "Területfelismerés új sorokhoz"
-#. $Hcw
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3500,7 +3134,6 @@ msgctxt ""
msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
msgstr "A fejlécsor alatti sorban a Tab billentyűvel léphet a következő cellára. Miután beírta a sor utolsó cellájába is az adatot, nyomja meg az Enter billentyűt. A Calc a kurzort az aktuális blokk első cellája alá helyezi."
-#. Ac#8
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3509,7 +3142,6 @@ msgctxt ""
msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
msgstr "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">területfelismerés</alt></image>"
-#. ]jkA
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3518,7 +3150,6 @@ msgctxt ""
msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
msgstr "A 3. sorban nyomja meg a Tab billentyűt a B3 celláról C3, D3 és E3 cellára történő ugráshoz. Ezután nyomja meg az Enter billentyűt a B4 cellára történő ugráshoz."
-#. tQ$t
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3527,7 +3158,6 @@ msgctxt ""
msgid "Area Selection"
msgstr "Területkijelölés"
-#. ~=KT
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3536,7 +3166,6 @@ msgctxt ""
msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
msgstr "Az egérrel történő húzással jelölje ki azt a területet, ahová adatokat akar beírni. Azonban a terület utolsó cellájánál kezdje a kijelölést, és az első cella kijelölése után engedje fel az egérgombot. Most elkezdheti beírni az értékeket. Mindig nyomja meg a Tab billentyűt a következő cellára történő ugráshoz. A kijelölt területből nem fog kilépni."
-#. Tr@I
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3545,7 +3174,6 @@ msgctxt ""
msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
msgstr "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">területkijelölés</alt></image>"
-#. +f72
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3554,7 +3182,6 @@ msgctxt ""
msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
msgstr "Jelölje ki az E7-től B3-ig terjedő területet. Most a B3 cella bevitelre vár. Nyomja meg a Tab billentyűt a kijelölt tartományon belül a következő cellára történő ugráshoz."
-#. =K)/
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3563,7 +3190,6 @@ msgctxt ""
msgid "To Enter Values to a Range of Cells Automatically"
msgstr "Értékek beírása automatikusan egy cellatartományba"
-#. oBdW
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
@@ -3572,7 +3198,6 @@ msgctxt ""
msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
msgstr "Lásd: <link href=\"text/scalc/guide/calc_series.xhp\">Adatok automatikus kitöltése a szomszédos cellák alapján</link>."
-#. b-R4
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3581,7 +3206,6 @@ msgctxt ""
msgid "Changing Row Height or Column Width"
msgstr "Sormagasság vagy oszlopszélesség módosítása"
-#. 1QbG
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3590,7 +3214,6 @@ msgctxt ""
msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
msgstr "<bookmark_value>cellák magasságai</bookmark_value><bookmark_value>cellamagasságok</bookmark_value><bookmark_value>cellák szélességei</bookmark_value><bookmark_value>cellák; magasság és szélesség</bookmark_value><bookmark_value>cellák szélességei</bookmark_value><bookmark_value>oszlopszélességek</bookmark_value><bookmark_value>sorok; magasságok</bookmark_value><bookmark_value>oszlopok; szélességek</bookmark_value><bookmark_value>módosítás;sormagasságok/oszlopszélességek</bookmark_value>"
-#. Bg=#
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3600,7 +3223,6 @@ msgctxt ""
msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Sormagasság vagy oszlopszélesség módosítása\">Sormagasság vagy oszlopszélesség módosítása</link></variable>"
-#. (Q*m
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3610,7 +3232,6 @@ msgctxt ""
msgid "You can change the height of the rows with the mouse or through the dialog."
msgstr "A sorok magassága módosítható az egér vagy a párbeszédablak segítségével."
-#. IC[m
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3620,7 +3241,6 @@ msgctxt ""
msgid "What is described here for rows and row height applies accordingly for columns and column width."
msgstr "A sorokra és magasságukra leírtak alkalmazhatóak oszlopokra és szélességükre is."
-#. ,#6$
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3630,7 +3250,6 @@ msgctxt ""
msgid "Using the mouse to change the row height or column width"
msgstr "Az egér használata a sormagasság vagy az oszlopszélesség módosításához"
-#. s%J!
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3640,7 +3259,6 @@ msgctxt ""
msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
msgstr "A sormagasság változtatásához kattintson az aktuális sor alatti elválasztón levő fejléc területére, tartsa lenyomva az egérgombot, és mozgassa fel vagy le az egeret."
-#. z%sn
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3650,7 +3268,6 @@ msgctxt ""
msgid "Select the optimal row height by double-clicking the separator below the row."
msgstr "Kattintson duplán a sor alatti elválasztóra az optimális sormagasság megválasztásához."
-#. o^@W
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3660,7 +3277,6 @@ msgctxt ""
msgid "Using the dialog to change the row height or column width"
msgstr "Párbeszédablak használata a sormagasság vagy az oszlopszélesség módosításához"
-#. )1!X
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3670,7 +3286,6 @@ msgctxt ""
msgid "Click the row so that you achieve the focus."
msgstr "Kattintson a sorra, hogy a fókusz a soron legyen."
-#. pBjJ
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3680,7 +3295,6 @@ msgctxt ""
msgid "Start the context menu on the header at the left-hand side."
msgstr "Nyissa meg a helyi menüt a bal oldali fejlécen."
-#. iiJE
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3690,7 +3304,6 @@ msgctxt ""
msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
msgstr "Megjelenik a <emph>Sormagasság</emph> és az <emph>Optimális sormagasság</emph> lehetőség. Bármelyik kiválasztása megnyit egy párbeszédablakot."
-#. CM7M
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3700,7 +3313,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Sormagasság\">Sormagasság</link>"
-#. )+L+
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3710,7 +3322,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimális sormagasság\">Optimális sormagasság</link>"
-#. .$UY
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3720,7 +3331,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Oszlopszélesség\">Oszlopszélesség</link>"
-#. +B6p
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
@@ -3730,7 +3340,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimális oszlopszélesség\">Optimális oszlopszélesség</link>"
-#. u@?L
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3739,7 +3348,6 @@ msgctxt ""
msgid "Freezing Rows or Columns as Headers"
msgstr "Sorok és oszlopok fejlécként való rögzítése"
-#. ,8#x
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3748,7 +3356,6 @@ msgctxt ""
msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
msgstr "<bookmark_value>táblázatok; rögzítés</bookmark_value><bookmark_value>címsorok; rögzítés táblázatfelosztás közben</bookmark_value><bookmark_value>sorok; rögzítés</bookmark_value><bookmark_value>oszlopok; rögzítés</bookmark_value><bookmark_value>sorok vagy oszlopok rögzítés</bookmark_value><bookmark_value>fejlécek; rögzítés táblázatfelosztás közben</bookmark_value><bookmark_value>görgetés megakadályozása táblázatokban</bookmark_value><bookmark_value>ablakok; felosztás</bookmark_value><bookmark_value>táblázatok; ablakok felosztása</bookmark_value>"
-#. YI2+
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3758,7 +3365,6 @@ msgctxt ""
msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Sorok és oszlopok fejlécként való rögzítése\">Sorok és oszlopok fejlécként való rögzítése</link></variable>"
-#. n]/V
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3768,7 +3374,6 @@ msgctxt ""
msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
msgstr "Ha olyan, adatokat tartalmazó hosszú sorokkal vagy oszlopokkal rendelkezik, amelyek a munkalap látható területén túlnyúlnak, akkor rögzítheti a sorokat vagy oszlopokat, hogy a rögzített sorokat vagy oszlopokat a maradék adatok görgetése közben is lássa."
-#. 4V6n
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3778,7 +3383,6 @@ msgctxt ""
msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
msgstr "Válassz ki a rögzített területbe felvenni kívánt sor alatti sort vagy oszloptól jobbra lévő oszlopot. A kijelölés felett lévő sorok vagy az attól balra lévő oszlopok rögzítve lesznek."
-#. ~r4q
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3788,7 +3392,6 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Ha egy területet vízszintesen és függőlegesen is rögzíteni kíván, akkor válassza ki a rögzíteni kívánt sor alatt, illetve oszloptól jobbra elhelyezkedő <emph>cellát</emph>."
-#. XPVt
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3798,7 +3401,6 @@ msgctxt ""
msgid "Choose <emph>Window - Freeze</emph>."
msgstr "Válassza az <emph>Ablak - Rögzítés</emph> lehetőséget."
-#. tK(H
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3808,7 +3410,6 @@ msgctxt ""
msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
msgstr "A rögzítés megszüntetéséhez válassza ismét az <emph>Ablak - Rögzítés</emph> lehetőséget."
-#. rt(S
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3818,7 +3419,6 @@ msgctxt ""
msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
msgstr "Ha a megadott területet görgetni akarja, alkalmazza az <emph>Ablak - Felosztás</emph> lehetőséget."
-#. ;v^j
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3828,7 +3428,6 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
msgstr "Ha egy adott sort a nyomtatás során a dokumentum összes oldalán meg kíván jeleníteni, akkor válassza a <emph>Formátum - Nyomtatási tartomány - Szerkesztés</emph> lehetőséget."
-#. o!rg
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3838,7 +3437,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Ablak - Rögzítés\">Ablak - Rögzítés</link>"
-#. =N6B
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3848,7 +3446,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Ablak - Felosztás\">Ablak - Felosztás</link>"
-#. Hb*B
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
@@ -3858,7 +3455,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Formátum - Nyomtatási tartomány - Szerkesztés\">Formátum - Nyomtatási tartomány - Szerkesztés</link>"
-#. rRXI
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3867,7 +3463,6 @@ msgctxt ""
msgid "Recognizing Names as Addressing"
msgstr "Nevek felismerése címzésként"
-#. %30m
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3876,7 +3471,6 @@ msgctxt ""
msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
msgstr "<bookmark_value>automatikus címzés táblázatokban</bookmark_value><bookmark_value>természetes nyelvi címzés</bookmark_value><bookmark_value>képletek; sor-/oszlopcímkék használatával</bookmark_value><bookmark_value>szöveg a cellákban; mint címzés</bookmark_value><bookmark_value>címzés; automatikus</bookmark_value><bookmark_value>névfelismerés be/ki</bookmark_value><bookmark_value>sorfejlécek;használata képletekben</bookmark_value><bookmark_value>oszlopfejlécek;használata képletekben</bookmark_value><bookmark_value>oszlopok; címkék automatikus felismerése</bookmark_value><bookmark_value>sorok; címkék automatikus felismerése</bookmark_value><bookmark_value>felismerés; oszlop- és sorcímkék</bookmark_value>"
-#. b`MS
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3886,7 +3480,6 @@ msgctxt ""
msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Nevek felismerése címzésként\">Nevek felismerése címzésként</link></variable>"
-#. ]!t5
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3896,7 +3489,6 @@ msgctxt ""
msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
msgstr "A cellákat tartalmazó sorokra és oszlopokra való hivatkozáshoz használhat szöveges cellákat."
-#. H3Y@
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3905,7 +3497,6 @@ msgctxt ""
msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Példa-munkafüzet</alt></image>"
-#. }w!W
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3915,7 +3506,6 @@ msgctxt ""
msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
msgstr "A példa-munkafüzetben az <item type=\"literal\">'Első oszlop'</item> karakterláncot használhatja egy képletben a <item type=\"literal\">B3</item>-<item type=\"literal\">B5</item> cellatartományra való hivatkozáshoz, vagy a <item type=\"literal\">'Második oszlop'</item> karakterláncot a <item type=\"literal\">C2</item>-<item type=\"literal\">C5</item> tartományra való hivatkozáshoz. Az <item type=\"literal\">'Első sor'</item> a <item type=\"literal\">B3</item>-<item type=\"literal\">D3</item> tartományt, a <item type=\"literal\">'Második sor'</item> a <item type=\"literal\">B4</item>-<item type=\"literal\">D4</item> cellatartományt jelöli. Egy cellanevet használó képlet eredménye, például a <item type=\"literal\">SZUM('Első oszlop')</item> 600 lesz."
-#. (2*g
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3925,7 +3515,6 @@ msgctxt ""
msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
msgstr "Ez a funkció alapértelmezésben aktív. Kikapcsolásához válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Számítás</emph> lehetőséget, és törölje a <emph>Oszlop- és sorcímkék automatikus megkeresése</emph> jelölőnégyzet kijelölését."
-#. YXzo
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
@@ -3935,7 +3524,6 @@ msgctxt ""
msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
msgstr "Ha azt akarja, hogy a Calc automatikusan felismerjen egy nevet, a névnek betűvel kell kezdődnie, és alfanumerikus karaktereket kell tartalmaznia. Ha a nevet egy képletbe kézzel írja be, tegye a nevet aposztrófok közé. Ha a név tartalmaz aposztrófot, akkor elé egy fordított törtjelet kell írnia, például: <item type=\"literal\">Harry\\'s Bar</item>."
-#. 0W6?
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -3944,7 +3532,6 @@ msgctxt ""
msgid "Applying Filters"
msgstr "Szűrők alkalmazása"
-#. e\?)
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -3953,7 +3540,6 @@ msgctxt ""
msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
msgstr "<bookmark_value>szűrők; alkalmazás/eltávolítás</bookmark_value><bookmark_value>sorok;eltávolítás/újra megjelenítés szűrőkkel</bookmark_value><bookmark_value>eltávolítás;szűrők</bookmark_value>"
-#. ~mjK
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -3963,7 +3549,6 @@ msgctxt ""
msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Szűrők alkalmazása\">Szűrők alkalmazása</link></variable>"
-#. {`l]
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -3973,7 +3558,6 @@ msgctxt ""
msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
msgstr "A szűrők és az irányított szűrők lehetővé teszik, hogy csak az adattartomány bizonyos sorai (rekordjai) legyenek láthatóak. A $[officename]-munkafüzetekben a szűrők alkalmazására számos mód áll rendelkezésre."
-#. Eg(8
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -3983,7 +3567,6 @@ msgctxt ""
msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
msgstr "Az <emph>Automatikus szűrő</emph> egyik felhasználási módjaként gyorsan beállíthatja, hogy egy adatmezőben csak az azonos értékeket tartalmazó rekordok jelenjenek meg."
-#. +EG`
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -3993,7 +3576,6 @@ msgctxt ""
msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
msgstr "Az <emph>Általános szűrő</emph> párbeszédablakban tartományokat is megadhat, amelyek az értékeket adott adatmezőkben tárolják. Az általános szűrő segítségével legfeljebb három feltételt köthet össze logikai ÉS vagy logikai VAGY operátorral."
-#. $gn+
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -4003,7 +3585,6 @@ msgctxt ""
msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
msgstr "Az <emph>Irányított szűrő</emph> akár nyolc szűrőfeltétel használatát is lehetővé teszi. Az Irányított szűrő esetében a feltételeket közvetlenül a munkalapon adhatja meg."
-#. O.YI
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -4012,7 +3593,6 @@ msgctxt ""
msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
msgstr "Szűrő eltávolításához és az összes cella ismételt megjelenítéséhez kattintson abba a cellába, amelyre a szűrőt alkalmazta, majd válassza az <item type=\"menuitem\">Adatok - Szűrő - Szűrő eltávolítása</item> menüparancsot."
-#. ,Soc
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -4021,7 +3601,6 @@ msgctxt ""
msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
msgstr "Ha több sort jelöl ki egy olyan területen, ahol szűrőt alkalmazott, akkor ez a kijelölt terület tartalmazhat olyan sorokat, amelyek látszanak, és olyanokat, amelyeket a szűrő elrejtett. Ha ezekre a sorokra formázást alkalmaz, vagy törli a kijelölt sorokat, a művelet csak a látható sorokra lesz érvényes. A rejtett sorokat a művelet nem érinti."
-#. Y-m7
#: filters.xhp
msgctxt ""
"filters.xhp\n"
@@ -4030,7 +3609,6 @@ msgctxt ""
msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
msgstr "Fordítva működik ez azon sorok esetén, amelyeket kézzel rejtett el a <emph>Formátum - Sorok - Sorok elrejtése</emph> paranccsal. A kézzel elrejtett sorok törlésre kerülnek, ha a törlésre kijelölt tartomány tartalmazza azokat."
-#. P%f^
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4039,7 +3617,6 @@ msgctxt ""
msgid "Automatically Calculating Series"
msgstr "Sorozatok automatikus számítása"
-#. N?B$
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4048,7 +3625,6 @@ msgctxt ""
msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
msgstr "<bookmark_value>sorozatok; számítás</bookmark_value><bookmark_value>számítás; sorozatok</bookmark_value><bookmark_value>lineáris sorozatok</bookmark_value><bookmark_value>növekvő sorozatok</bookmark_value><bookmark_value>2 hatványainak kiszámítása</bookmark_value><bookmark_value>cellák; automatikus kitöltés</bookmark_value><bookmark_value>cellák automatikus kitöltése</bookmark_value><bookmark_value>automatikus kitöltés</bookmark_value><bookmark_value>kitöltés;cellák, automatikusan</bookmark_value>"
-#. HVh]
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4058,7 +3634,6 @@ msgctxt ""
msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Sorozatok automatikus számolása\">Adatok automatikus kitöltése a szomszédos cellák alapján</link></variable>"
-#. sUdi
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4067,7 +3642,6 @@ msgctxt ""
msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
msgstr "Az Automatikus kitöltés vagy a Sorozatok lehetőséggel automatikusan feltöltheti adatokkal a cellákat."
-#. `f8~
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4076,7 +3650,6 @@ msgctxt ""
msgid "Using AutoFill"
msgstr "Automatikus kitöltés használata"
-#. HLa-
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4085,7 +3658,6 @@ msgctxt ""
msgid "AutoFill automatically generates a data series based on a defined pattern."
msgstr "Az Automatikus kitöltés adatsorozatot generál a megadott minta alapján."
-#. \Nq#
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4095,7 +3667,6 @@ msgctxt ""
msgid "On a sheet, click in a cell, and type a number."
msgstr "Egy munkalapon kattintson egy cellába, és írjon be egy számot."
-#. YHm\
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4104,7 +3675,6 @@ msgctxt ""
msgid "Click in another cell and then click back in the cell where you typed the number."
msgstr "Kattintson egy másik cellába, majd kattintson vissza abba a cellába, ahová a számot írta."
-#. .y+\
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4114,7 +3684,6 @@ msgctxt ""
msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
msgstr "Húzza a cella jobb alsó sarkában lévő kitöltésfogantyút a kitöltendő cellákon át, majd engedje fel az egérgombot."
-#. N{3o
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4124,7 +3693,6 @@ msgctxt ""
msgid "The cells are filled with ascending numbers."
msgstr "A célcellák növekvő számokkal lesznek feltöltve."
-#. pc59
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4133,7 +3701,6 @@ msgctxt ""
msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
msgstr "Egymást követő napok listájának gyors létrehozásához írja be a <item type=\"literal\">hétfő</item> szót egy cellába, majd húzza le a kitöltésfogantyút."
-#. E/L3
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4142,7 +3709,6 @@ msgctxt ""
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
msgstr "Tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, ha nem akarja különböző értékekkel feltölteni a cellákat."
-#. 7\3^
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4152,7 +3718,6 @@ msgctxt ""
msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
msgstr "Ha kettő vagy több, különböző számokat tartalmazó szomszédos cellát jelöl ki, és ezeket elhúzza, a maradék cellák a számokban felismert aritmetikus minta alapján kerülnek kitöltésre. Az Automatikus kitöltés az <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Rendezett listák</item> pontban megadott listákat is felismeri."
-#. BG;c
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4161,7 +3726,6 @@ msgctxt ""
msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
msgstr "Az aktuális adattartomány üres mezőinek automatikus kitöltéséhez kattintson duplán a kitöltésfogantyúra. Például előbb írja be a „január” szót az A1-es cellába, majd húzza le a kitöltésfogantyút az A12-es celláig, így az első oszlopban lesznek a hónapnevek. Most írjon be értékeket a B1 és C1 cellákba. Jelölje ki azt a két cellát, majd kattintson duplán a kitöltésfogantyúra. Ezzel automatikusan kitölti a B1:C12 adattartományt."
-#. jLH]
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4170,7 +3734,6 @@ msgctxt ""
msgid "Using a Defined Series"
msgstr "Megadott sorozatok használata"
-#. =CR=
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4180,7 +3743,6 @@ msgctxt ""
msgid "Select the cell range in the sheet that you want to fill."
msgstr "Először válassza ki a munkalap kitölteni kívánt tartományát."
-#. ~rdz
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4190,7 +3752,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
msgstr "Válassza a <item type=\"menuitem\">Szerkesztés - Kitöltés - Sorozatok</item> elemet."
-#. `dDi
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4199,7 +3760,6 @@ msgctxt ""
msgid "Select the parameters for the series."
msgstr "Válassza ki a sorozat paramétereit."
-#. MYAO
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4208,7 +3768,6 @@ msgctxt ""
msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
msgstr "Ha egy <emph>számtani</emph> sorozatot választ, a megadott növekmény <emph>hozzáadásra</emph> kerül minden következő számhoz a sorozatban, így hozva létre a következő értéket."
-#. 4{;-
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4217,7 +3776,6 @@ msgctxt ""
msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
msgstr "Ha egy <emph>mértani</emph> sorozatot választ, a megadott növekmény <emph>összeszorzásra</emph> kerül minden következő számmal a sorozatban, így hozva létre a következő értéket."
-#. ZDli
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4226,7 +3784,6 @@ msgctxt ""
msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
msgstr "Ha egy <emph>dátumsorozatot</emph> választ, a megadott növekmény a megadott időegységhez kerül hozzáadásra."
-#. ,o6h
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
@@ -4236,7 +3793,6 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Rendezett listák\">Rendezett listák</link>"
-#. P1ok
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4245,7 +3801,6 @@ msgctxt ""
msgid "Deactivating Automatic Changes"
msgstr "Automatikus módosítások kikapcsolása"
-#. *e_8
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4254,7 +3809,6 @@ msgctxt ""
msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
msgstr "<bookmark_value>kikapcsolás; automatikus módosítások</bookmark_value><bookmark_value>táblázatok; automatikus módosítások kikapcsolása</bookmark_value><bookmark_value>Automatikus bevitel be/ki</bookmark_value><bookmark_value>szöveg cellákban;automatikus bevitel</bookmark_value><bookmark_value>cellák; szöveg Automatikus bevitele</bookmark_value><bookmark_value>bevitel támogatása munkafüzetekben</bookmark_value><bookmark_value>módosítás; bevitel cellákban</bookmark_value><bookmark_value>Automatikus javítás;cellatartalmak</bookmark_value><bookmark_value>cellabevitel;Automatikus bevitel</bookmark_value><bookmark_value>kisbetűk;Automatikus bevitel (cellákban)</bookmark_value><bookmark_value>nagybetűk;Automatikus bevitel (cellákban)</bookmark_value><bookmark_value>dátumformátumok;átalakítás elkerülése</bookmark_value><bookmark_value>számkiegészítés be/ki</bookmark_value><bookmark_value>szövegkiegészítés be/ki</bookmark_value><bookmark_value>szókiegészítés be/ki</bookmark_value>"
-#. cp;F
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4264,7 +3818,6 @@ msgctxt ""
msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Automatikus módosítások kikapcsolása\">Automatikus módosítások kikapcsolása</link></variable>"
-#. n_rt
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4274,7 +3827,6 @@ msgctxt ""
msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
msgstr "Alapértelmezésben a $[officename] gépelés közben automatikusan javítja a gyakori gépelési hibákat és formázza a szöveget. Az automatikus módosításokat azonnal visszavonhatja a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z segítségével."
-#. 38Ni
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4284,7 +3836,6 @@ msgctxt ""
msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
msgstr "A következőkben megláthatja, hogyan kapcsolhatja ki és be az automatikus módosításokat a $[officename] Calc programban:"
-#. 2`Ad
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4294,7 +3845,6 @@ msgctxt ""
msgid "Automatic Text or Number Completion"
msgstr "Automatikus szöveg- vagy számkiegészítés"
-#. PorH
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4304,7 +3854,6 @@ msgctxt ""
msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
msgstr "Adatbevitel során a $[officename] Calc automatikusan felajánlja az azonos oszlopban található egyező bejegyzéseket. Ez a funkció az <emph>Automatikus bevitel</emph>."
-#. \1-Y
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4314,7 +3863,6 @@ msgctxt ""
msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
msgstr "Az Automatikus bevitel ki-, illetve bekapcsolásához állítsa be vagy távolítsa el az <link href=\"text/scalc/01/06130000.xhp\" name=\"Eszközök - Cellatartalom - Automatikus bevitel\"><emph>Eszközök - Cellatartalom - Automatikus bevitel</emph></link> menüpont jelölését."
-#. N^cj
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4324,7 +3872,6 @@ msgctxt ""
msgid "Automatic Conversion to Date Format"
msgstr "Automatikus átalakítás dátumformátumra"
-#. @TqT
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4334,7 +3881,6 @@ msgctxt ""
msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
msgstr "A $[officename] Calc bizonyos bejegyzéseket automatikusan dátumokká alakít át. Például az <emph>1.1</emph> bejegyzés értelmezhető az aktuális év január 1-jeként az operációs rendszer területi beállításai szerint, és ezt követően a bejegyzés a cellában alkalmazott dátumformátum szerint kerülhet megjelenítésre."
-#. .WZ!
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4344,7 +3890,6 @@ msgctxt ""
msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
msgstr "A bejegyzés szövegként való értelmezésének biztosítása érdekében írjon egy aposztrófot a bejegyzés elé. Az aposztróf nem jelenik meg a cellában."
-#. pt-y
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4354,7 +3899,6 @@ msgctxt ""
msgid "Quotation Marks Replaced by Custom Quotes"
msgstr "Idézőjelek cseréje egyéni idézőjelekre"
-#. .U4#
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4364,7 +3908,6 @@ msgctxt ""
msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
msgstr "Válassza az <emph>Eszközök - Automatikus javítás beállításai</emph> menüparancsot. Válassza a <emph>Nyelvfüggő beállítások</emph> fület, majd szüntesse meg a <emph>Csere</emph> kijelölését."
-#. !_ka
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4374,7 +3917,6 @@ msgctxt ""
msgid "Cell Content Always Begins With Uppercase"
msgstr "Cellatartalom mindig nagybetűvel kezdődik"
-#. 8z(l
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4384,7 +3926,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
msgstr "Válassza az <item type=\"menuitem\">Eszközök - Automatikus javítás</item> lehetőséget. Lépjen a <item type=\"menuitem\">Beállítások</item> lapra. Törölje a <item type=\"menuitem\">Mondat első betűje nagybetű</item> jelölőnégyzet jelölését."
-#. u(bG
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4394,7 +3935,6 @@ msgctxt ""
msgid "Replace Word With Another Word"
msgstr "Szó cseréje másik szóra"
-#. 9QvR
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4404,7 +3944,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
msgstr "Válassza az <item type=\"menuitem\">Eszközök - Automatikus javítás</item> lehetőséget. Kattintson a <item type=\"menuitem\">Csere</item> fülre. Jelölje ki a szópárt, majd kattintson a <item type=\"menuitem\">Törlés</item> gombra."
-#. v|Z1
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4414,7 +3953,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Eszközök - Cellatartalom - Automatikus bevitel\">Eszközök - Cellatartalom - Automatikus bevitel</link>"
-#. pwm,
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
@@ -4424,7 +3962,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Eszközök - Automatikus javítás\">Eszközök - Automatikus javítás beállításai</link>"
-#. l0ng
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4433,7 +3970,6 @@ msgctxt ""
msgid "References to Other Sheets and Referencing URLs"
msgstr "Hivatkozás más munkalapokra és URL-ekre"
-#. YhEw
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4442,7 +3978,6 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr "<bookmark_value>HTML; munkalap-cellákban</bookmark_value><bookmark_value>hivatkozások; URL a cellákban</bookmark_value><bookmark_value>cellák; internetes hivatkozások</bookmark_value><bookmark_value>URL; Calcban</bookmark_value>"
-#. 7i+I
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4452,7 +3987,6 @@ msgctxt ""
msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">Referencing URLs</link></variable>"
msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Hivatkozás URL-ekre\">Hivatkozás URL-ekre</link></variable>"
-#. 9L6/
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4461,7 +3995,6 @@ msgctxt ""
msgid "For example, if you found an Internet page containing current stock exchange information in spreadsheet cells, you can load this page in $[officename] Calc by using the following procedure:"
msgstr "Ha talál egy olyan internetes oldalt, amely egy munkafüzetben közöl például tőzsdei információikat, ezt az oldalt a következő módon töltheti be a $[officename] Calc programba:"
-#. v]2#
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4471,7 +4004,6 @@ msgctxt ""
msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
msgstr "Egy $[officename] Calc-dokumentumban helyezze a kurzort abba a cellába, amelybe a külső adatokat akarja beilleszteni."
-#. B,K\
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4481,7 +4013,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Insert - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
msgstr "Válassza a <item type=\"menuitem\">Beszúrás - Hivatkozás külső adatra</item> lehetőséget. Megjelenik a <link href=\"text/scalc/01/04090000.xhp\" name=\"Külső adatok\"><item type=\"menuitem\">Külső adatok</item></link> párbeszédablak."
-#. 6-QP
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4491,7 +4022,6 @@ msgctxt ""
msgid "Enter the URL of the document or Web page in the dialog. The URL must be in the format: http://www.my-bank.com/table.html. The URL for local or local area network files is the path seen in the <item type=\"menuitem\">File - Open</item> dialog."
msgstr "Írja be a dokumentum vagy weboldal URL-címét a párbeszédablakba. Az URL formátumának a következőnek kell lennie: http://www.my-bank.com/table.html. A helyben vagy a helyi hálózaton levő fájlok URL-je az az elérési út, amely a <item type=\"menuitem\">Fájl - Megnyitás</item> párbeszédablakban látszik."
-#. I*E:
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4501,7 +4031,6 @@ msgctxt ""
msgid "$[officename] loads the Web page or file in the \"background\", that is, without displaying it. In the large list box of the <item type=\"menuitem\">External Data</item> dialog, you can see the name of all the sheets or named ranges you can choose from."
msgstr "A $[officename] a weboldalt vagy a fájlt a háttérben tölti be, vagyis nem jeleníti meg azt. A <item type=\"menuitem\">Külső adatok</item> párbeszédablak legnagyobb listapaneljében megtekintheti az összes munkalap vagy névvel ellátott tartomány nevét."
-#. =EIA
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4511,7 +4040,6 @@ msgctxt ""
msgid "Select one or more sheets or named ranges. You can also activate the automatic update function every \"n\" seconds and click <item type=\"menuitem\">OK</item>."
msgstr "Jelöljön ki egy vagy több munkalapot vagy névvel rendelkező tartományt. Az automatikus frissítés funkciót is aktiválhatja, hogy „n” másodpercenként frissítsen. Ezután kattintson az <item type=\"menuitem\">OK</item> gombra."
-#. K.tD
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4521,7 +4049,6 @@ msgctxt ""
msgid "The contents will be inserted as a link in the $[officename] Calc document."
msgstr "A tartalom hivatkozásként beszúrásra kerül a $[officename] Calc-dokumentumba."
-#. [^Ri
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4531,7 +4058,6 @@ msgctxt ""
msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry."
msgstr "Mentse a munkafüzetet. Ha később újra megnyitja azt, a $[officename] Calc program egy kérdés után frissíteni fogja a hivatkozással rendelkező cellákat."
-#. :VUY
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
@@ -4541,7 +4067,6 @@ msgctxt ""
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
msgstr "Az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Táblázatkezelő - Általános\"><item type=\"menuitem\">%PRODUCTNAME Calc - Általános</item></link> pontban kiválaszthatja, hogy a frissítés megnyitáskor automatikusan kérdés nélkül vagy kérésre kerüljön végrehajtásra, vagy soha ne legyen frissítés. A frissítés kézzel is elindítható a <item type=\"menuitem\">Szerkesztés - Hivatkozások</item> párbeszédablakban."
-#. Tijf
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4550,7 +4075,6 @@ msgctxt ""
msgid "Navigating Through Sheets Tabs"
msgstr "Navigálás munkalapfüleken keresztül"
-#. \pip
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4559,7 +4083,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
msgstr "<bookmark_value>munkalapok; több megjelenítése</bookmark_value><bookmark_value>munkalapfülek; használat</bookmark_value><bookmark_value>nézetek;több munkalap</bookmark_value>"
-#. -k$6
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4569,7 +4092,6 @@ msgctxt ""
msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigálás munkalapfüleken keresztül\">Navigálás munkalapfüleken keresztül</link> </variable>"
-#. |92y
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4579,7 +4101,6 @@ msgctxt ""
msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
msgstr "Alapértelmezés szerint a $[officename] három munkalapot (”Munkalap1”-től „Munkalap3”-ig) jelenít meg minden egyes új munkafüzetben. A munkafüzet lapjai között a képernyő alján látható fülekkel válthat."
-#. tGEW
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4588,7 +4109,6 @@ msgctxt ""
msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Munkalapfülek</alt></image>"
-#. e-.4
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4597,7 +4117,6 @@ msgctxt ""
msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Ikon</alt></image>"
-#. ajrm
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4607,7 +4126,6 @@ msgctxt ""
msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
msgstr "Egy dokumentum összes munkalapjának megjelenítéséhez használja a navigációs gombokat. A bal szélső és a jobb szélső gombokra való kattintással egyenként megjelenítheti az első és az utolsó munkalapfület. A középső gombokkal a felhasználó előre és hátra lépkedhet az összes munkalapfül között. A munkalap megjelenítéséhez kattintson a fülre."
-#. VU?k
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
@@ -4617,7 +4135,6 @@ msgctxt ""
msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
msgstr "Ha nem áll rendelkezésre elegendő hely a munkalapcímkék megjelenítéséhez, akkor a terület növeléséhez vigye az egérmutatót a görgetősáv és a munkalapcímkék között található elválasztóra, nyomja meg az egérgombot, és húzza a mutatót jobbra. Ezáltal a rendelkezésre álló területet megosztja a vízszintes görgetősáv, illetve a munkalapcímkék között."
-#. 5dK2
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4626,7 +4143,6 @@ msgctxt ""
msgid "Applying Multiple Operations"
msgstr "Többszörös műveletek alkalmazása"
-#. qJJJ
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4635,7 +4151,6 @@ msgctxt ""
msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
msgstr "<bookmark_value>többszörös műveletek</bookmark_value><bookmark_value>„mi lenne, ha” típusú műveletek;két váltózó</bookmark_value><bookmark_value>táblázatok; többszörös műveletek</bookmark_value><bookmark_value>adattáblázatok; többszörös műveletek</bookmark_value><bookmark_value>keresztosztályozott táblázatok</bookmark_value>"
-#. 9n@B
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4645,7 +4160,6 @@ msgctxt ""
msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Többszörös műveletek alkalmazása\">Többszörös műveletek alkalmazása</link></variable>"
-#. /XjI
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4655,7 +4169,6 @@ msgctxt ""
msgid "Multiple Operations in Columns or Rows"
msgstr "Többszörös műveletek sorokban és oszlopokban"
-#. H$j{
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4664,7 +4177,6 @@ msgctxt ""
msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
msgstr "Az <item type=\"menuitem\">Adatok - Többszörös műveletek</item> menüparancs egy tervezőeszközt biztosít a „mi lenne, ha” típusú kérdésekhez. A munkafüzetbe írjon be egy képletet, amely más cellákban tárolt értékekből számít ki egy eredményt. Ezután állítson be egy cellatartományt, amelybe rögzített értékeket ír be, és a Többszörös műveletek parancs kiszámítja az eredményeket a képlet alapján."
-#. V*4:
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4674,7 +4186,6 @@ msgctxt ""
msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
msgstr "A <emph>Képletek</emph> mezőbe írja be annak képletnek a cellahivatkozását, amelyet az adattartományra alkalmazni kell. Az <emph>Oszlopbemeneti cella/Sorbemeneti cella</emph> mezőbe írja be a képlet részeinek megfelelő cellára vonatkozó cellahivatkozást. Ezt legjobban egy példán keresztül lehet megérteni:"
-#. pom|
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4684,7 +4195,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. v%DB
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4694,7 +4204,6 @@ msgctxt ""
msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
msgstr "Játékokat gyárt, amiket 10 dolláros áron ad el. Minden játék előállítása 2 dollárba kerül, emellett évi 10000 dolláros fix költsége van. Mennyi profitot termel egy évben, ha adott mennyiségű játékot ad el?"
-#. NIXi
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4703,7 +4212,6 @@ msgctxt ""
msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
msgstr "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">„mi lenne, ha” terület</alt></image>"
-#. }(A[
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4713,7 +4221,6 @@ msgctxt ""
msgid "Calculating With One Formula and One Variable"
msgstr "Számítás egy képlettel és egy változóval"
-#. uPgP
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4723,7 +4230,6 @@ msgctxt ""
msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
msgstr "A nyereség kiszámításához először adja meg a mennyiséget (eladott tétel), ebben a példában 2000-et. A nyereséget a Nyereség=Mennyiség * (Értékesítési ár - Közvetlen költség) - Fix költség képletből számíthatja ki. Írja be ezt a képletet a B5-ös cellába."
-#. )PN-
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4733,7 +4239,6 @@ msgctxt ""
msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
msgstr "A D oszlopba írja be az éves eladásokat egymás alá, például 500-as lépésekkel 500-tól 5000-ig."
-#. c?8\
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4743,7 +4248,6 @@ msgctxt ""
msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
msgstr "Jelölje ki a D2:E11 tartományt, tehát a D oszlopot és a közvetlenül mellette levő E oszlopot."
-#. AP\e
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4753,7 +4257,6 @@ msgctxt ""
msgid "Choose <emph>Data - Multiple operations</emph>."
msgstr "Válassza az <emph>Adatok - Többszörös műveletek</emph> lehetőséget."
-#. S==O
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4763,7 +4266,6 @@ msgctxt ""
msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
msgstr "Miközben a kurzor a <emph>Képletek</emph> mezőben van, kattintson a B5 cellára."
-#. XzhW
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4773,7 +4275,6 @@ msgctxt ""
msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
msgstr "Vigye a kurzort az <emph>Oszlopbemeneti cella</emph> mezőbe, majd kattintson a B4 cellára. Ennek jelentése: a B4, vagyis a mennyiség a változó a képletben, amely helyettesítésre kerül a kijelölt oszlopban található értékekkel."
-#. ,$LJ
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4783,7 +4284,6 @@ msgctxt ""
msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
msgstr "Zárja be a párbeszédablakot az <emph>OK</emph> gombbal. Az E oszlopban megjelenik a különböző mennyiségekhez tartozó nyereség."
-#. :PyN
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4793,7 +4293,6 @@ msgctxt ""
msgid "Calculating with Several Formulas Simultaneously"
msgstr "Számítás egyidejűleg több képlettel"
-#. a:Tl
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4803,7 +4302,6 @@ msgctxt ""
msgid "Delete column E."
msgstr "Törölje az E oszlopot."
-#. ^:H%
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4813,7 +4311,6 @@ msgctxt ""
msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
msgstr "Írja be a következő képletet a C5-ös cellába: =B5/B4. Az éves nyereséget most az eladott tételek által hozott nyereség alapján számolja."
-#. Um\q
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4823,7 +4320,6 @@ msgctxt ""
msgid "Select the range D2:F11, thus three columns."
msgstr "Válassza ki a D2:F11 tartományt, tehát három oszlopot."
-#. r^;m
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4833,7 +4329,6 @@ msgctxt ""
msgid "Choose <emph>Data - Multiple Operations</emph>."
msgstr "Válassza az <emph>Adatok - Többszörös műveletek</emph> elemet."
-#. NT$!
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4843,7 +4338,6 @@ msgctxt ""
msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
msgstr "Miközben a kurzor a <emph>Képletek</emph> mezőben van, jelölje ki a cellákat B5-től C5-ig."
-#. v~v5
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4853,7 +4347,6 @@ msgctxt ""
msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
msgstr "Vigye a kurzort az <emph>Oszlopbemeneti cella</emph> mezőbe, majd kattintson a B4 cellára."
-#. h~L(
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4863,7 +4356,6 @@ msgctxt ""
msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
msgstr "Zárja be a párbeszédablakot az <emph>OK</emph> gomb megnyomásával. Az E oszlopban megjelennek a nyereségek, illetve az F oszlopban a tételekre vonatkozó éves nyereségek."
-#. k#)n
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4873,7 +4365,6 @@ msgctxt ""
msgid "Multiple Operations Across Rows and Columns"
msgstr "Többszörös műveletek sorokon és oszlopokon keresztül"
-#. 0gMX
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4883,7 +4374,6 @@ msgctxt ""
msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
msgstr "Az <item type=\"productname\">%PRODUCTNAME</item> lehetővé teszi több közös művelet elvégzését az úgynevezett kereszttáblák oszlopain és sorain. A képletcellának egyaránt hivatkoznia kell a sorokba, illetve az oszlopokba rendezett adattartományokra. Jelölje ki a két adattartomány által meghatározott területet, majd nyissa meg a többszörös műveletre vonatkozó párbeszédablakot. A <emph>Képletek</emph> mezőben adja meg a képlethivatkozást. A <emph>Sorbemeneti cella</emph> és az <emph>Oszlopbemeneti cella</emph> mezőkbe írható be a képlet megfelelő celláira vonatkozó hivatkozás."
-#. 2k_]
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4893,7 +4383,6 @@ msgctxt ""
msgid "Calculating with Two Variables"
msgstr "Számítás két változóval"
-#. Ffm\
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4903,7 +4392,6 @@ msgctxt ""
msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
msgstr "Vegyük a fenti táblázat A és B oszlopát. Most nem csak az éves termelt mennyiséget akarja megváltoztatni, hanem az értékesítési árat is, és arra kíváncsi, hogyan érinti ez a nyereséget."
-#. `0@s
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4913,7 +4401,6 @@ msgctxt ""
msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
msgstr "Bővítse ki a táblázatot a fenti módon. A D2 és D11 közötti cellák az 500, 1000 stb. számokat tartalmazzák egészen 5000-ig. Az E1 és H1 közötti cellákba írja be a 8, 10, 15 és 20 számokat."
-#. +4Hl
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4923,7 +4410,6 @@ msgctxt ""
msgid "Select the range D1:H11."
msgstr "Válassza ki a D1:H11 tartományt."
-#. mn}x
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4933,7 +4419,6 @@ msgctxt ""
msgid "Choose <emph>Data - Multiple Operations</emph>."
msgstr "Válassza az <emph>Adatok - Többszörös műveletek</emph> elemet."
-#. rF/K
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4943,7 +4428,6 @@ msgctxt ""
msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
msgstr "Miközben a kurzor a <emph>Képletek</emph> mezőben van, kattintson a B5 cellára."
-#. Ypk(
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4953,7 +4437,6 @@ msgctxt ""
msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
msgstr "Vigye a kurzort a <emph>Sorbemeneti cella</emph> mezőbe, majd kattintson a B1 cellára. Ez azt jelenti, hogy a B1, az eladási ár a vízszintesen megadott változó (8, 10, 15, illetve 20 értékkel)."
-#. cG^c
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4963,7 +4446,6 @@ msgctxt ""
msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
msgstr "Vigye a kurzort az <emph>Oszlopbemeneti cella</emph> mezőbe, majd kattintson a B4 cellába. Ez azt jelenti, hogy a B4, vagyis a mennyiség a függőlegesen megadott változó."
-#. {$yo
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4973,7 +4455,6 @@ msgctxt ""
msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
msgstr "Zárja be a párbeszédablakot az OK gombbal. A különböző eladási árakhoz tartozó nyereség az E2:H11 tartományban jelenik meg."
-#. AL}d
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
@@ -4983,7 +4464,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=\"Többszörös műveletek\">Többszörös műveletek</link>"
-#. b?q-
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -4992,7 +4472,6 @@ msgctxt ""
msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
msgstr "Gyorsbillentyűk (%PRODUCTNAME Calc kisegítő lehetőségei)"
-#. }i+Q
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5001,7 +4480,6 @@ msgctxt ""
msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
msgstr "<bookmark_value>kisegítő lehetőségek; %PRODUCTNAME Calc gyorsbillentyűi</bookmark_value><bookmark_value>gyorsbillentyűk;%PRODUCTNAME Calc kisegítő lehetőségei</bookmark_value>"
-#. ^dsl
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5011,7 +4489,6 @@ msgctxt ""
msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Billentyűparancsok (%PRODUCTNAME Calc kisegítő lehetőségei)\">Billentyűparancsok (<item type=\"productname\">%PRODUCTNAME</item> Calc kisegítő lehetőségei)</link></variable>"
-#. hF?L
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5021,7 +4498,6 @@ msgctxt ""
msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
msgstr "Ezenkívül tekintse meg a <item type=\"productname\">%PRODUCTNAME</item> Calc és a <item type=\"productname\">%PRODUCTNAME</item> billentyűparancsainak listáját is."
-#. pqY^
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5031,7 +4507,6 @@ msgctxt ""
msgid "Cell Selection Mode"
msgstr "Cellakijelölés-mód"
-#. y33T
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5040,7 +4515,6 @@ msgctxt ""
msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
msgstr "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Ikon</alt></image>"
-#. 48$U
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5050,7 +4524,6 @@ msgctxt ""
msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
msgstr "A párbeszédablak kisméretűvé tételére szolgáló gombbal rendelkező szövegmezőkben nyomja meg az <item type=\"keycode\">F2</item> billentyűt a cellakijelölési módba való belépéshez. Jelöljön ki tetszőleges számú cellát, majd ismételten nyomja meg az <item type=\"keycode\">F2</item> billentyűt a párbeszédablak megjelenítéséhez."
-#. iH@N
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5060,7 +4533,6 @@ msgctxt ""
msgid "In the cell selection mode, you can use the common navigation keys to select cells."
msgstr "A cellakijelölés-módban a szokásos navigálást segítő billentyűket használhatja a cellák kijelöléséhez."
-#. LID[
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5070,7 +4542,6 @@ msgctxt ""
msgid "Controlling the Outline"
msgstr "Vázlat vezérlése"
-#. er}M
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5080,7 +4551,6 @@ msgctxt ""
msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
msgstr "A <link href=\"text/scalc/01/12080000.xhp\" name=\"Vázlatban\">Vázlatban</link> is használhatja a billentyűzetet:"
-#. ;Js1
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5090,7 +4560,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
msgstr "Nyomja meg az <item type=\"keycode\">F6</item> vagy a <item type=\"keycode\">Shift+F6</item> billentyűt, amíg a függőleges vagy a vízszintes vázlatablakra kerül a fókusz."
-#. P!Ud
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5100,7 +4569,6 @@ msgctxt ""
msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
msgstr "A <item type=\"keycode\">Tab</item> nyomogatásával az összes látható gombon végigléphet fentről lefelé vagy balról jobbra."
-#. !(x6
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5110,7 +4578,6 @@ msgctxt ""
msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
msgstr "A <item type=\"keycode\">Shift+Tab</item> billentyűkombináció nyomogatásával ellenkező irányba léphet a gombokon."
-#. ]68o
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5120,7 +4587,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1-től Command+8-ig</caseinline><defaultinline>Ctrl+1-től Ctrl+8-ig</defaultinline></switchinline> - a megadott számig megjelenít minden szintet, és minden magasabb szintet elrejt."
-#. w+DY
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5130,7 +4596,6 @@ msgctxt ""
msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
msgstr "Használja a <item type=\"keycode\">+</item> vagy a <item type=\"keycode\">-</item> billentyűt a fókuszban lévő vázlatcsoport megjelenítéséhez vagy elrejtéséhez."
-#. kprf
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5140,7 +4605,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
msgstr "Nyomja meg az <item type=\"keycode\">Enter</item> billentyűt a fókuszban lévő gomb aktiválásához."
-#. %M;t
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5150,7 +4614,6 @@ msgctxt ""
msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
msgstr "Használja a <item type=\"keycode\">felfelé</item>, <item type=\"keycode\">lefelé</item>, <item type=\"keycode\">balra</item> vagy <item type=\"keycode\">jobbra</item> nyilat az aktuális szinten lévő gombokon való lépegetéshez."
-#. _G^[
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5160,7 +4623,6 @@ msgctxt ""
msgid "Selecting a Drawing Object or a Graphic"
msgstr "Rajzobjektum vagy kép kijelölése"
-#. I;?4
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5169,7 +4631,6 @@ msgctxt ""
msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
msgstr "Válassza a Nézet - Eszköztárak - Rajz lehetőséget a Rajz eszköztár megnyitásához."
-#. Ibp-
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5179,7 +4640,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
msgstr "Nyomja meg az <item type=\"keycode\">F6</item> billentyűt többször, amíg a <emph>Rajz</emph> eszköztár kiválasztásra nem kerül."
-#. #6f9
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5189,7 +4649,6 @@ msgctxt ""
msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
msgstr "Ha a kijelölőeszköz aktív, nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline> Ctrl</defaultinline></switchinline>+Enter billentyűkombinációt. Ez kijelöli az első rajzobjektumot vagy képet a munkalapon."
-#. %QM6
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5199,7 +4658,6 @@ msgctxt ""
msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
msgstr "A <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 kombináció segítségével a fókuszt a dokumentumra állíthatja."
-#. T|%$
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -5209,7 +4667,6 @@ msgctxt ""
msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
msgstr "Most már használhatja a <item type=\"keycode\">Tab</item> billentyűt a következő, és a <item type=\"keycode\">Shift+Tab</item> billentyűkombinációt az előző rajzobjektum/kép kijelöléséhez."
-#. WU3E
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5218,7 +4675,6 @@ msgctxt ""
msgid "Copying Formulas"
msgstr "Képletek másolása"
-#. =fNJ
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5227,7 +4683,6 @@ msgctxt ""
msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
msgstr "<bookmark_value>képletek; másolás és beillesztés</bookmark_value><bookmark_value>másolás; képletek</bookmark_value><bookmark_value>beillesztés; képletek</bookmark_value>"
-#. l?J)
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5237,7 +4692,6 @@ msgctxt ""
msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Képletek másolása\">Képletek másolása</link></variable>"
-#. 6BRd
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5247,7 +4701,6 @@ msgctxt ""
msgid "There are various ways to copy a formula. One suggested method is:"
msgstr "Több módon is átmásolhat egy képletet. Egy ajánlott eljárás a következő:"
-#. EQ`u
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5257,7 +4710,6 @@ msgctxt ""
msgid "Select the cell containing the formula."
msgstr "Válassza ki a képletet tartalmazó cellát."
-#. ==Cm
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5267,7 +4719,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
msgstr "A másoláshoz válassza a <emph>Szerkesztés - Másolás</emph> lehetőséget, vagy nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline> </switchinline>+ C billentyűkombinációt."
-#. a)[A
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5277,7 +4728,6 @@ msgctxt ""
msgid "Select the cell into which you want the formula to be copied."
msgstr "Válassza ki azt a cellát, amelybe a képletet be szeretné másolni."
-#. :^f(
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5287,7 +4737,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
msgstr "Válassza a <emph>Szerkesztés - Beillesztés</emph> lehetőséget, vagy nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline> </switchinline>+V billentyűkombinációt. A képlet megjelenik az új cellában."
-#. X,X-
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5297,7 +4746,6 @@ msgctxt ""
msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
msgstr "Ha egy képletet több cellába is át szeretne másolni, akkor van egy egyszerű és gyors mód annak átmásolására a szomszédos cellaterületekre:"
-#. s_BU
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5307,7 +4755,6 @@ msgctxt ""
msgid "Select the cell containing the formula."
msgstr "Válassza ki a képletet tartalmazó cellát."
-#. \-Y[
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5317,7 +4764,6 @@ msgctxt ""
msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
msgstr "Helyezze a kurzort a cella kiemelt szegélyének jobb alsó részére, majd tartsa lenyomva az egér gombját mindaddig, amíg a kurzor célkereszt alakúvá nem változik."
-#. 8Wo|
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5327,7 +4773,6 @@ msgctxt ""
msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
msgstr "Az egérgomb nyomva tartása közben húzza lefelé vagy jobbra mindaddig, amíg minden olyan cellát el nem ért, amelybe a képletet át szeretné másolni."
-#. DlnQ
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5337,7 +4782,6 @@ msgctxt ""
msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
msgstr "Az egérgomb elengedésekor a képlet bemásolódik a cellákba, és automatikusan beállításra kerül."
-#. b5F|
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
@@ -5347,7 +4791,6 @@ msgctxt ""
msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
msgstr "Ha nem akarja, hogy az értékek és szövegek automatikusan igazításra kerüljenek, akkor húzás közben tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline> </switchinline> billentyűt. Azonban a képletek mindig igazításra kerülnek a megfelelő módon."
-#. 4T#!
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
@@ -5356,7 +4799,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "Kimutatástábla"
-#. c+4S
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
@@ -5365,7 +4807,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla funkció; bemutatás</bookmark_value><bookmark_value>pivot tábla, lásd: kimutatástábla funkció</bookmark_value>"
-#. kY-n
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
@@ -5375,7 +4816,6 @@ msgctxt ""
msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Kimutatástábla\">Kimutatástábla</link></variable>"
-#. gg`j
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
@@ -5385,7 +4825,6 @@ msgctxt ""
msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
msgstr "A <emph>kimutatástábla</emph> (angolul Pivot table) – korábbi nevén <emph>adattündér</emph> – segítségével lehetősége nyílik nagy mennyiségű adat összefésülésére, összehasonlítására, illetve elemzésére. A forrásadatokra vonatkozóan különféle összegzéseket jeleníthet meg, megjelenítheti több tetszőleges terület részleteit, illetve jelentéseket hozhat létre."
-#. eG!$
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
@@ -5395,7 +4834,6 @@ msgctxt ""
msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
msgstr "A <link href=\"text/scalc/01/12090000.xhp\" name=\"kimutatástábla\">kimutatástáblával</link> létrehozott táblázatok interaktív táblázatok. Az adatokat tetszőlegesen elrendezheti, újrarendezheti, illetve különböző szempontok szerint összesítheti."
-#. NgZ5
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5404,7 +4842,6 @@ msgctxt ""
msgid "Cells in Currency Format"
msgstr "Cellák pénznem-formátumban"
-#. =e1L
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5413,7 +4850,6 @@ msgctxt ""
msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
msgstr "<bookmark_value>pénznemformátumok; munkafüzetek</bookmark_value><bookmark_value>cellák; pénznemformátumok</bookmark_value><bookmark_value>nemzetközi pénznemformátumok</bookmark_value><bookmark_value>formátumok; pénznemformátumok cellákban</bookmark_value><bookmark_value>pénznemek; alapértelmezett pénznemek</bookmark_value><bookmark_value>alapértelmezések; pénznemformátumok</bookmark_value><bookmark_value>módosítás;pénznemformátumok</bookmark_value>"
-#. xkC?
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5423,7 +4859,6 @@ msgctxt ""
msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cellák pénznem-formátumban\">Cellák pénznem-formátumban</link></variable>"
-#. 315L
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5433,7 +4868,6 @@ msgctxt ""
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> Calc programban a számokhoz tetszőleges pénznemformátumot rendelhet. Amikor a <item type=\"menuitem\">Formázás</item> eszköztáron egy szám formázásához a <item type=\"menuitem\">Pénznem</item> <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Ikon</alt></image> ikonra kattint, akkor a cella az <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek</item> pontban megadott alapértelmezett pénznemformátumot veszi fel."
-#. .7=,
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5443,7 +4877,6 @@ msgctxt ""
msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> Calc-dokumentumok megosztása esetén félreértésekhez vezethet, ha a <item type=\"productname\">%PRODUCTNAME</item> Calc-dokumentumot eltérő alapértelmezett pénznembeállítások mellett nyitják meg."
-#. L)5i
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5453,7 +4886,6 @@ msgctxt ""
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
msgstr "A <item type=\"productname\">%PRODUCTNAME</item> Calc programban megadhatja, hogy egy „1,234.50 €” formátumú szám egy másik országban is euróban maradjon, és ne változzon dollárrá."
-#. CtI?
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5463,7 +4895,6 @@ msgctxt ""
msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
msgstr "A pénznemformátumot két országbeállítás segítségével a <item type=\"menuitem\">Cellák formázása</item> párbeszédablakban módosíthatja. (Ehhez válassza a <item type=\"menuitem\">Formátum - Cellák - Számok</item> lapot.) A <item type=\"menuitem\">Nyelv</item> kombinált listában kijelölheti a tizedes-, illetve az ezreselválasztókra vonatkozó alapvető beállítást. A <item type=\"menuitem\">Formátum</item> listában az alapértelmezett formátumokból kijelölheti a pénznem jelét és annak helyzetét."
-#. 4L^]
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5473,7 +4904,6 @@ msgctxt ""
msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
msgstr "Ha például a nyelv beállítása „Alapértelmezett”, és német területi beállításokat használ, akkor a pénznemformátum „1.234,00 €” lesz. Az ezresek előtt pont, a tizedesek előtt pedig vessző jelenik meg. Ha ezt követően a <item type=\"menuitem\">Formátum</item> listából az „$ Angol (US)” pénznemformátumot választja, akkor a következő formátumot kapja: „$ 1.234,00”. Amint az látható, az elválasztók változatlanok maradtak. Kizárólag a pénznem jele módosult, de a jelölés alapjául szolgáló formátum változatlanul a területi beállításoknak megfelelő maradt."
-#. )/p`
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5483,7 +4913,6 @@ msgctxt ""
msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
msgstr "Ha a <item type=\"menuitem\">Nyelv</item> részben a cellákat „Angol (US)” beállításra alakítja át, akkor az angol nyelvű területi beállítások is átkerülnek, és az alapértelmezett pénznemformátum „$ 1,234.00” formátumra változik."
-#. {R#n
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
@@ -5493,7 +4922,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formátum - Cellák - Számok\">Formátum - Cellák - Számok</link>"
-#. kp(.
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5502,7 +4930,6 @@ msgctxt ""
msgid "Selecting Multiple Cells"
msgstr "Több cella kijelölése"
-#. s1*x
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5511,7 +4938,6 @@ msgctxt ""
msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
msgstr "<bookmark_value>cellák; kijelölés</bookmark_value> <bookmark_value>cellák megjelölése</bookmark_value> <bookmark_value>kijelölés;cellák</bookmark_value> <bookmark_value>több cella kijelölése</bookmark_value> <bookmark_value>kijelölésmódok munkafüzetekben</bookmark_value> <bookmark_value>táblázatok; tartományok kijelölése</bookmark_value>"
-#. 8Xd-
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5521,7 +4947,6 @@ msgctxt ""
msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Több cella kijelölése\">Több cella kijelölése</link></variable>"
-#. LSNF
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5531,7 +4956,6 @@ msgctxt ""
msgid "Select a rectangular range"
msgstr "Téglalap alakú tartomány kijelölése"
-#. T7-r
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5541,7 +4965,6 @@ msgctxt ""
msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
msgstr "A nyomva tartott egérgomb segítségével húzza az egérmutatót az egyik sarokból a tartomány átlójának másik sarkába."
-#. +SlC
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5551,7 +4974,6 @@ msgctxt ""
msgid "Mark a single cell"
msgstr "Egy cella kijelölése"
-#. ^{}f
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5561,7 +4983,6 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Tegye az alábbiak egyikét:"
-#. pyzo
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5571,7 +4992,6 @@ msgctxt ""
msgid "Click, then Shift-click the cell."
msgstr "Kattintson, majd nyomja meg a Shiftet, és közben kattintson a cellára."
-#. 8zzY
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5581,7 +5001,6 @@ msgctxt ""
msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
msgstr "Nyomja folyamatosan az egér gombját, húzzon egy tartományt két cellán át, ne engedje fel az egérgombot, majd húzza vissza az első cellához. Engedje fel az egérgombot. Most már áthelyezhet egy cellát a „fogd és vidd” módszerrel."
-#. `L%q
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5591,7 +5010,6 @@ msgctxt ""
msgid "Select various dispersed cells"
msgstr "Szétszórt cellák kijelölése"
-#. D{oK
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5600,7 +5018,6 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Tegye az alábbiak közül az egyiket:"
-#. lN7/
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5610,7 +5027,6 @@ msgctxt ""
msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
msgstr "Jelöljön ki legalább egy cellát. Ezt követően a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyű lenyomva tartása mellett kattintson egyesével a további cellákra."
-#. nDk7
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5619,7 +5035,6 @@ msgctxt ""
msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
msgstr "Az állapotsoron kattintson az Egyszeres / Bővítés / Többszörös területre, és válassza a Többszörös lehetőséget. Ezután kattintson a kijelölni kívánt cellákra."
-#. pllI
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5629,7 +5044,6 @@ msgctxt ""
msgid "Switch marking mode"
msgstr "Kijelölési módba váltás"
-#. hgaM
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5639,7 +5053,6 @@ msgctxt ""
msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
msgstr "Az állapotsoron kattintson az Egyszeres / Bővítés / Többszörös felirattal rendelkező mezőre kijelölési módba való váltáshoz:"
-#. .{RB
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5649,7 +5062,6 @@ msgctxt ""
msgid "Field contents"
msgstr "Mező tartalma"
-#. 3u`N
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5659,7 +5071,6 @@ msgctxt ""
msgid "Effect of clicking the mouse"
msgstr "Az egérkattintás hatása"
-#. bHZB
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5669,7 +5080,6 @@ msgctxt ""
msgid "STD"
msgstr "Egyszeres"
-#. PvCO
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5679,7 +5089,6 @@ msgctxt ""
msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
msgstr "Az egérkattintás kijelöli azt a cellát, amelyre rákattintott. Az újabb kattintás megszünteti a kijelölést."
-#. |*P8
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5689,7 +5098,6 @@ msgctxt ""
msgid "EXT"
msgstr "Bővítés"
-#. :P]`
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5699,7 +5107,6 @@ msgctxt ""
msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
msgstr "Egy egérkattintás hatására az aktuális cellától egy téglalaptartományt jelöl ki addig a celláig, amelynél felengedi az egérgombot. Alternatív megoldásként Shift+kattintással is kijelölheti a tartományt."
-#. CZ,[
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5709,7 +5116,6 @@ msgctxt ""
msgid "ADD"
msgstr "Többszörös"
-#. $[n[
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5719,7 +5125,6 @@ msgctxt ""
msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
msgstr "A cellára kattintás hozzáadja a cellát a már kijelölt cellákhoz. Egy kijelölt cellára kattintás megszünteti annak kijelölését. Alternatív megoldásként a cellára való kattintáskor tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> gombot."
-#. 0LpQ
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
@@ -5729,7 +5134,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Állapotsor\">Állapotsor</link>"
-#. dT$s
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5738,7 +5142,6 @@ msgctxt ""
msgid "Entering a Number with Leading Zeros"
msgstr "Kezdő nullákkal rendelkező szám megadása"
-#. |SEP
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5747,7 +5150,6 @@ msgctxt ""
msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
msgstr "<bookmark_value>nulla értékek; kezdő nullák megadása</bookmark_value> <bookmark_value>számok; kezdő nullákkal</bookmark_value> <bookmark_value>kezdő nullák</bookmark_value> <bookmark_value>egész számok kezdő nullákkal</bookmark_value> <bookmark_value>cellák; szöveg-/számformátum módosítása</bookmark_value> <bookmark_value>formátumok; szöveg/szám módosítása</bookmark_value> <bookmark_value>szöveg cellákban; módosítás számokra</bookmark_value> <bookmark_value>konvertálás; kezdő nullákkal rendelkező szöveg számmá</bookmark_value>"
-#. v*WJ
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5757,7 +5159,6 @@ msgctxt ""
msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Kezdő nullákkal rendelkező szám megadása\">Kezdő nullákkal rendelkező szám megadása</link></variable>"
-#. 0Z9t
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5767,7 +5168,6 @@ msgctxt ""
msgid "There are various ways to enter integers starting with a zero:"
msgstr "Sokféleképpen adhat meg nullával kezdődő egész számokat:"
-#. Y6c`
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5777,7 +5177,6 @@ msgctxt ""
msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
msgstr "Adja meg a számot szövegként. Ennek legegyszerűbb módja, ha a szám elé egy aposztrófot ír be (például: <item type=\"input\">'0987</item>). Az aposztróf nem jelenik meg a cellában, a szám pedig szövegként lesz formázva. Azonban mivel szövegformátumban van, a számmal számítások nem végezhetők."
-#. $J[N
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5787,7 +5186,6 @@ msgctxt ""
msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
msgstr "Formázza a cellát egy számformátummal, például: <item type=\"input\">\\0000</item>. Ez a formátum a <emph>Formátum - Cellák - Számok</emph> fülön a <emph>Formátumkód</emph> mezőben rendelhető hozzá, és a cella megjelenítését a következő módon adja meg: „először egy nulla, majd egy egész szám, legalább három tizedesjeggyel, balról nullával kitöltve, ha kevesebb, mint három számjegy”."
-#. x@3]
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5797,7 +5195,6 @@ msgctxt ""
msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
msgstr "Ha egy teljes oszlopnyi, szövegformátumban megadott számra számformátumot kíván alkalmazni (például a „000123” szövegből „123” szám), akkor tegye a következőket:"
-#. ~vs+
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5807,7 +5204,6 @@ msgctxt ""
msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
msgstr "Jelölje ki azon oszlopot, amelyben a számjegyek szövegformátumban találhatók. Állítsa be az oszlop cellaformátumát „Szám” formátumra."
-#. _MqV
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5817,7 +5213,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Find & Replace</emph>"
msgstr "Válassza a <emph>Szerkesztés - Keresés és csere</emph> lehetőséget."
-#. L%D`
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5827,7 +5222,6 @@ msgctxt ""
msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
msgstr "A <emph>Keresett szöveg</emph> mezőbe írja be a következőt: <item type=\"input\">^[0-9]</item>."
-#. xPHS
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5837,7 +5231,6 @@ msgctxt ""
msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
msgstr "A <emph>Csere erre</emph> mezőbe írja be a következőt: <item type=\"input\">&</item>."
-#. na!Q
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5847,7 +5240,6 @@ msgctxt ""
msgid "Check <emph>Regular expressions</emph>"
msgstr "Jelölje be a <emph>Reguláris kifejezés</emph> négyzetet."
-#. #(!+
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5857,7 +5249,6 @@ msgctxt ""
msgid "Check <emph>Current selection only</emph>"
msgstr "Jelölje be a <emph>Csak az aktuális kijelölésben</emph> négyzetet."
-#. )H%Q
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
@@ -5867,7 +5258,6 @@ msgctxt ""
msgid "Click <emph>Replace All</emph>"
msgstr "Kattintson a <emph>Mindet cseréli</emph> gombra."
-#. Y[I[
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5876,7 +5266,6 @@ msgctxt ""
msgid "Referencing a Cell in Another Document"
msgstr "Hivatkozás egy másik dokumentumban lévő cellára"
-#. =vEE
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5885,7 +5274,6 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
msgstr "<bookmark_value>munkalap-hivatkozások</bookmark_value><bookmark_value>hivatkozások; más munkalapon/dokumentumban lévő cellákra</bookmark_value><bookmark_value>cellák; művelet másik dokumentumban</bookmark_value><bookmark_value>dokumentumok;hivatkozások</bookmark_value>"
-#. aUY0
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5895,7 +5283,6 @@ msgctxt ""
msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Hivatkozás más munkalapokra\">Hivatkozás más munkalapokra</link></variable>"
-#. MF9w
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5904,7 +5291,6 @@ msgctxt ""
msgid "In a sheet cell you can show a reference to a cell in another sheet."
msgstr "Egy munkalapcellában megtekintheti a másik munkalap cellájára mutató hivatkozást."
-#. Q$/s
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5913,7 +5299,6 @@ msgctxt ""
msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
msgstr "Ugyanígy hivatkozhat egy másik dokumentum cellájára is, feltéve, hogy az már mentve lett fájlként."
-#. ymQ=
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5922,7 +5307,6 @@ msgctxt ""
msgid "To Reference a Cell in the Same Document"
msgstr "Azonos dokumentumban levő cellára hivatkozáshoz"
-#. 4mou
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5931,7 +5315,6 @@ msgctxt ""
msgid "Open a new, empty spreadsheet."
msgstr "Nyisson meg egy új, üres munkafüzetet."
-#. .y\#
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5940,7 +5323,6 @@ msgctxt ""
msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
msgstr "Például írja be a következő képletet az 1. munkalap A1-es cellájába:"
-#. lGF~
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5949,7 +5331,6 @@ msgctxt ""
msgid "<item type=\"literal\">=Sheet2.A1</item>"
msgstr "<item type=\"literal\">=Munkalap2.A1</item>"
-#. 11@D
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5958,7 +5339,6 @@ msgctxt ""
msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
msgstr "Kattintson a munkafüzet alján található <emph>Munkalap2</emph> fülre. Vigye a kurzort az A1 cellába, és írjon be egy szöveget vagy egy számot."
-#. hQ9D
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5967,7 +5347,6 @@ msgctxt ""
msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
msgstr "Ha visszavált az 1. munkalapra, ugyanazt a tartalmat fogja látni ott az A1 cellában. Ha megváltozik a Munkalap2.A1 tartalma, akkor a Munkalap1.A1 tartalma is változni fog."
-#. ~s@;
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5976,7 +5355,6 @@ msgctxt ""
msgid "To Reference a Cell in Another Document"
msgstr "Egy másik dokumentumban lévő cellára hivatkozáshoz"
-#. 655)
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5985,7 +5363,6 @@ msgctxt ""
msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
msgstr "Válassza a <emph>Fájl - Megnyitás</emph> lehetőséget, és nyisson meg egy létező munkafüzet-dokumentumot."
-#. e1X6
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -5994,7 +5371,6 @@ msgctxt ""
msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
msgstr "Válassza a <emph>Fájl - Új</emph> lehetőséget egy új munkafüzet-dokumentum létrehozására. A kurzort állítsa arra a cellára, amelybe a külső adatot beszúrni kívánja, és írjon be egy egyenlőségjelet, amely jelzi, hogy egy képlet kezdődik."
-#. Uy6+
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -6003,7 +5379,6 @@ msgctxt ""
msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
msgstr "Most váltson át az imént betöltött dokumentumra. Kattintson arra a cellára, amelynek adatát be szeretné szúrni az új dokumentumba."
-#. +UT=
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -6012,7 +5387,6 @@ msgctxt ""
msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
msgstr "Váltson vissza az új munkafüzetre. A beviteli sorban most azt fogja látni, hogyan adta hozzá a $[officename] Calc a hivatkozást a képlethez."
-#. Rbg%
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -6021,7 +5395,6 @@ msgctxt ""
msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
msgstr "Egy másik dokumentum cellájára történő hivatkozás tartalmazza a másik dokumentum nevét aposztrófokkal közbezárva, majd egy kettőskereszt (#) következik, azt követi a másik dokumentumban lévő munkalap neve, végül egy pont és a cella neve."
-#. }cJ8
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -6030,7 +5403,6 @@ msgctxt ""
msgid "Confirm the formula by clicking the green check mark."
msgstr "Erősítse meg a képletet a zöld pipára való kattintással."
-#. rAK^
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -6039,7 +5411,6 @@ msgctxt ""
msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
msgstr "Ha elhúzza az aktív cella jobb alsó sarkában lévő mezőt egy cellatartomány kiválasztásához, a $[officename] automatikusan beszúrja a szomszédos cellákba a megfelelő hivatkozásokat. Ennek eredményeként a munkalapnév egy „$” jellel egészül ki, amely jelzi, hogy abszolút hivatkozásról van szó."
-#. 5:F8
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
@@ -6048,7 +5419,6 @@ msgctxt ""
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr "Ha megvizsgálja a képletben lévő másik dokumentum nevét, megfigyelheti, hogy az <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>-ként szerepel. Ez azt jelenti, hogy egy URL-t is beírhat az internetről."
-#. _Y\T
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6057,7 +5427,6 @@ msgctxt ""
msgid "Consolidating Data"
msgstr "Adatok összesítése"
-#. `.RQ
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6066,7 +5435,6 @@ msgctxt ""
msgid "<bookmark_value>consolidating data</bookmark_value> <bookmark_value>ranges; combining</bookmark_value> <bookmark_value>combining;cell ranges</bookmark_value> <bookmark_value>tables; combining</bookmark_value> <bookmark_value>data; merging cell ranges</bookmark_value> <bookmark_value>merging;data ranges</bookmark_value>"
msgstr "<bookmark_value>adatok összesítése</bookmark_value><bookmark_value>tartományok; összevonás</bookmark_value><bookmark_value>összevonás;cellatartományok</bookmark_value><bookmark_value>táblázatok; összevonás</bookmark_value><bookmark_value>adat; cellatartományok egyesítése</bookmark_value><bookmark_value>egyesítés;adattartományok</bookmark_value>"
-#. ](mU
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6076,7 +5444,6 @@ msgctxt ""
msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Consolidating Data</link></variable>"
msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Adatok összesítése\">Adatok összesítése</link></variable>"
-#. krpp
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6086,7 +5453,6 @@ msgctxt ""
msgid "During consolidation, the contents of the cells from several sheets will be combined in one place."
msgstr "Összesítés során különböző munkalapok celláinak tartalma egy helyre kerül."
-#. @`S{
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6095,7 +5461,6 @@ msgctxt ""
msgid "To Combine Cell Contents"
msgstr "Cellatartalmak összevonásához"
-#. g+FF
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6105,7 +5470,6 @@ msgctxt ""
msgid "Open the document that contains the cell ranges to be consolidated."
msgstr "Nyissa meg az összesíteni kívánt cellatartományokat tartalmazó dokumentumot."
-#. giVt
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6115,7 +5479,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Összesítés</item> lehetőséget az <emph>Összesítés</emph> párbeszédablak megnyitásához."
-#. p?\E
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6125,7 +5488,6 @@ msgctxt ""
msgid "From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas."
msgstr "A <emph>Forrásadat-tartomány</emph> mezőben jelölje ki a más területekkel összesíteni kívánt forrás-cellatartományt."
-#. J3hh
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6135,7 +5497,6 @@ msgctxt ""
msgid "If the range is not named, click in the field next to the <emph>Source data area</emph>. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse."
msgstr "Ha a tartomány nem rendelkezik névvel, akkor kattintson a <emph>Forrásadat-tartomány</emph> mellett található mezőre. Megjelenik egy villogó szövegkurzor. Írja be az első forrás-adattartomány hivatkozását, vagy jelölje ki a tartományt az egér segítségével."
-#. za{.
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6145,7 +5506,6 @@ msgctxt ""
msgid "Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field."
msgstr "Kattintson a <emph>Hozzáadás</emph> gombra a kijelölt tartomány <emph>Összesített tartományok</emph> mezőbe való beszúrásához."
-#. NFY[
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6155,7 +5515,6 @@ msgctxt ""
msgid "Select additional ranges and click <emph>Add</emph> after each selection."
msgstr "Jelöljön ki további tartományokat, majd minden kijelölés után kattintson a <emph>Hozzáadás</emph> gombra."
-#. 3Ro,
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6165,7 +5524,6 @@ msgctxt ""
msgid "Specify where you want to display the result by selecting a target range from the <emph>Copy results to</emph> box."
msgstr "A céltartomány <emph>Eredmény másolási helye</emph> mezőben való kijelölésével adja meg, hol jelenjen meg az eredmény."
-#. CT=e
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6175,7 +5533,6 @@ msgctxt ""
msgid "If the target range is not named, click in the field next to <emph>Copy results to</emph> and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range."
msgstr "Ha a céltartomány nem rendelkezik névvel, akkor kattintson az <emph>Eredmény másolási helye</emph> mellett található mezőre, majd adja meg a céltartomány hivatkozását. Alternatív megoldásként kijelölheti a tartományt az egér segítségével, vagy a kurzort a céltartomány bal felső cellájába helyezheti."
-#. 73:R
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6185,7 +5542,6 @@ msgctxt ""
msgid "Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The \"Sum\" function is the default setting."
msgstr "Válasszon egy függvényt a <emph>Függvény</emph> listából. A függvény meghatározza, hogy az egyesítési tartományok értékei milyen módon kerülnek összesítésre. Az „Összeg” függvény az alapértelmezett beállítás."
-#. VKU3
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6195,7 +5551,6 @@ msgctxt ""
msgid "Click <emph>OK</emph> to consolidate the ranges."
msgstr "A tartományok összesítéséhez kattintson az <emph>OK</emph> gombra."
-#. #l!C
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6204,7 +5559,6 @@ msgctxt ""
msgid "Additional Settings"
msgstr "További beállítások"
-#. p?%X
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6214,7 +5568,6 @@ msgctxt ""
msgid "Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:"
msgstr "További beállítások megjelenítéséhez kattintson az <emph>Összesítés</emph> párbeszédablak <emph>Részletek</emph> gombjára:"
-#. ~u$X
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6224,7 +5577,6 @@ msgctxt ""
msgid "Select <emph>Link to source data</emph> to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range."
msgstr "Válassza az <emph>Összekötés a forrásadattal</emph> lehetőséget, ha a tényleges eredmények helyett a céltartomány eredményeit előállító képleteket kívánja beszúrni. Ha összeköti az adatokat, akkor a forrástartományban módosított értékek automatikusan frissítésre kerülnek a céltartományban."
-#. )2J?
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6234,7 +5586,6 @@ msgctxt ""
msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed."
msgstr "A céltartományban lévő megfelelő cellahivatkozások beszúrásra kerülnek az egymást követő sorokba, amelyek automatikusan rendeződnek, majd elrejtésre kerülnek a nézetből. Csak a kijelölt függvényen alapuló végső eredmény jelenik meg."
-#. gLA6
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6244,7 +5595,6 @@ msgctxt ""
msgid "Under <emph>Consolidate by</emph>, select either <emph>Row labels</emph> or <emph>Column labels</emph> if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label."
msgstr "Az <emph>Összesítve:</emph> rész alatt jelölje ki a <emph>Sorcímkék</emph> vagy az <emph>Oszlopcímkék</emph> beállítást, ha a forrás-adattartomány celláit nem a tartományban elfoglalt egyező helyzetük alapján, hanem az egyező sor- vagy oszlopcímke alapján kívánja összesíteni."
-#. o{Jt
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6254,7 +5604,6 @@ msgctxt ""
msgid "To consolidate by row labels or column labels, the label must be contained in the selected source ranges."
msgstr "Sorcímkék vagy oszlopcímkék alapján történő összesítéshez a kijelölt forrástartománynak tartalmaznia kell a címkét."
-#. wn:J
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6264,7 +5613,6 @@ msgctxt ""
msgid "The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column."
msgstr "A címkében lévő szövegnek azonosnak kell lennie, hogy a sorok vagy oszlopok pontosan megfeleltethetők legyenek. Ha a sor- vagy az oszlopcímke nem egyezik meg egyik forrástartományban lévő címkével sem, akkor az új sorként vagy oszlopként kerül hozzáfűzésre."
-#. I`O@
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6274,7 +5622,6 @@ msgctxt ""
msgid "The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available."
msgstr "A dokumentum mentésekor az összesített tartományokban és a céltartományokban lévő adatok is mentésre kerülnek. Ha később megnyit egy olyan dokumentumot, amelyben összesítés történt, akkor azok az adatok ismét elérhetővé válnak."
-#. m#gF
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
@@ -6284,7 +5631,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Data - Consolidate</link>"
msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Adatok - Összesítés\">Adatok - Összesítés</link>"
-#. ]_D\
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6293,7 +5639,6 @@ msgctxt ""
msgid "Importing and Exporting CSV Files"
msgstr "Strukturált szövegfájlok (CSV) importálása és exportálása"
-#. oES9
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6302,7 +5647,6 @@ msgctxt ""
msgid "<bookmark_value>number series import</bookmark_value><bookmark_value>data series import</bookmark_value><bookmark_value>exporting; tables as text</bookmark_value><bookmark_value>importing; tables as text</bookmark_value><bookmark_value>delimited values and files</bookmark_value><bookmark_value>comma separated files and values</bookmark_value><bookmark_value>text file import and export</bookmark_value><bookmark_value>csv files;importing and exporting</bookmark_value><bookmark_value>tables; importing/exporting as text</bookmark_value><bookmark_value>text documents; importing to spreadsheets</bookmark_value><bookmark_value>opening;text csv files</bookmark_value><bookmark_value>saving;as text csv</bookmark_value>"
msgstr "<bookmark_value>számsorozatok importálása</bookmark_value><bookmark_value>adatsorozatok; importálás</bookmark_value><bookmark_value>exportálás; táblázatok szövegként</bookmark_value><bookmark_value>importálás; táblázatok szövegként</bookmark_value><bookmark_value>elhatárolt értékek</bookmark_value><bookmark_value>elhatárolt fájlok</bookmark_value><bookmark_value>vesszővel elválasztott fájlok és értékek</bookmark_value><bookmark_value>szövegfájl importálása és exportálása</bookmark_value><bookmark_value>csv-fájlok;importálás és exportálás</bookmark_value><bookmark_value>szövegfájlok;importálás munkafüzetbe</bookmark_value><bookmark_value>megnyitás;strukturált szöveg</bookmark_value><bookmark_value>mentés;strukturált szöveg</bookmark_value>"
-#. g6U;
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6311,7 +5655,6 @@ msgctxt ""
msgid "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">Opening and Saving Text CSV Files</link></variable>"
msgstr "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">Strukturált szövegfájlok (CSV) megnyitása és mentése</link></variable>"
-#. \@9?
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6320,7 +5663,6 @@ msgctxt ""
msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character."
msgstr "A vesszővel elválasztott értékek (CSV) egy strukturált szövegesfájl-formátum, amellyel adatbázis- vagy munkafüzetadatokat cserélhet alkalmazások között. A strukturált szövegfájl minden egyes sora egy adatbázisrekordot vagy egy munkafüzetsort jelöl. Az adatbázisrekord mezőit, illetve a munkafüzetsor celláit általában vessző választja el egymástól. Azonban a mezők határolásához más karaktert is használhat, például tabulátort."
-#. -*Hp
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6329,7 +5671,6 @@ msgctxt ""
msgid "If the field or cell contains a comma, the field or cell <emph>must</emph> be enclosed by single quotes (') or double quotes (\")."
msgstr "Ha a mező vagy a cella tartalmaz vesszőt, akkor a tartalmakat aposztrófok vagy idézőjelek közé <emph>kell</emph> tenni."
-#. 12g?
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6338,7 +5679,6 @@ msgctxt ""
msgid "To Open a Text CSV File in Calc"
msgstr "Strukturált szövegfájl (CSV) megnyitása Calcban"
-#. 7D+m
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6347,7 +5687,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">File - Open</item>."
msgstr "Válassza a <item type=\"menuitem\">Fájl - Megnyitás</item> menüparancsot."
-#. RK?)
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6356,7 +5695,6 @@ msgctxt ""
msgid "Locate the CSV file that you want to open."
msgstr "Keresse meg a megnyitni kívánt CSV-fájlt."
-#. \C]C
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6365,7 +5703,6 @@ msgctxt ""
msgid "If the file has a *.csv extension, select the file."
msgstr "Ha a fájl CSV kiterjesztéssel rendelkezik, válassza ki a fájlt."
-#. N|p*
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6374,7 +5711,6 @@ msgctxt ""
msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the <item type=\"menuitem\">File type</item> box"
msgstr "Ha a CSV-fájl másik kiterjesztéssel rendelkezik, válassza ki a fájlt, majd válassza a „Strukturált szöveg (CSV)” lehetőséget a <item type=\"menuitem\">Fájltípus</item> mezőből."
-#. /4e-
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6383,7 +5719,6 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">Open</item>."
msgstr "Kattintson a <item type=\"menuitem\">Megnyitás</item> lehetőségre."
-#. N?NB
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6392,7 +5727,6 @@ msgctxt ""
msgid "The <item type=\"menuitem\">Text Import</item> dialog opens."
msgstr "Megnyílik a <item type=\"menuitem\">Szöveg importálása</item> párbeszédablak."
-#. \N@l
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6401,7 +5735,6 @@ msgctxt ""
msgid "Specify the options to divide the text in the file into columns."
msgstr "Adja meg a szöveg oszlopokba való osztásának beállításait."
-#. ZVS`
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6410,7 +5743,6 @@ msgctxt ""
msgid "You can preview the layout of the imported data at the bottom of the <item type=\"menuitem\">Text Import</item> dialog."
msgstr "Megtekintheti az importált adatok előnézetét a <item type=\"menuitem\">Szöveg importálása</item> párbeszédablak alján."
-#. %=\6
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6419,7 +5751,6 @@ msgctxt ""
msgid "Right-click a column in the preview to set the format or to hide the column."
msgstr "Kattintson a jobb egérgombbal egy oszlopra a formátumának beállításához, vagy az oszlop elrejtéséhez."
-#. `7`F
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6428,7 +5759,6 @@ msgctxt ""
msgid "Check the text delimiter box that matches the character used as text delimiter in the file. In case of an unlisted delimiter, type the character into the input box."
msgstr "Nézze meg, hogy a Szöveghatároló mezőben ugyanaz a karakter szerepel-e, mint ami a fájlban a szöveghatároló. Ha a CSV-fájl olyan szöveghatárolót használ, amely nincs felsorolva a Szöveghatároló mezőben, kattintson a mezőre, majd írjon be egy karaktert."
-#. 5b7N
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6437,7 +5767,6 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">OK</item>."
msgstr "Kattintson az <item type=\"menuitem\">OK</item> gombra."
-#. ,-uu
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6446,7 +5775,6 @@ msgctxt ""
msgid "To Save a Sheet as a Text CSV File"
msgstr "Munkalap mentése strukturált szövegfájlként (CSV)"
-#. xrWT
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6455,7 +5783,6 @@ msgctxt ""
msgid "When you export a spreadsheet to CSV format, only the data on the current sheet is saved. All other information, including formulas and formatting, is lost."
msgstr "Amikor egy munkafüzetet CSV formátumba exportál, csak az aktuális munkalap adatai lesznek mentve. Minden más információ, beleértve a képleteket és formázást, elvész."
-#. QwhS
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6464,7 +5791,6 @@ msgctxt ""
msgid "Open the Calc sheet that you want to save as a Text CSV file."
msgstr "Nyissa meg a Strukturált szövegfájlként (CSV) menteni kívánt Calc-munkalapot."
-#. Pu^G
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6473,7 +5799,6 @@ msgctxt ""
msgid "Only the current sheet can be exported."
msgstr "Csak az aktuális munkalap exportálható."
-#. J.0i
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6482,7 +5807,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">File - Save as</item>."
msgstr "Válassza a <item type=\"menuitem\">Fájl - Mentés másként</item> menüparancsot."
-#. gsNG
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6491,7 +5815,6 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">File name</item> box, enter a name for the file."
msgstr "A <item type=\"menuitem\">Fájlnév</item> mezőben adjon meg egy nevet a fájl számára."
-#. M1lv
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6500,7 +5823,6 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">File type</item> box, select \"Text CSV\"."
msgstr "A <item type=\"menuitem\">Fájltípus</item> mezőben válassza ki a „Strukturált szöveg (CSV)” lehetőséget."
-#. (-y|
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6509,7 +5831,6 @@ msgctxt ""
msgid "(Optional) Set the field options for the Text CSV file."
msgstr "(Opcionális) Megadhatja a strukturált szövegfájl (CSV) mezőbeállításait."
-#. Qm5v
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6518,7 +5839,6 @@ msgctxt ""
msgid "Select <item type=\"menuitem\">Edit filter settings</item>."
msgstr "Válassza ki a <item type=\"menuitem\">Szűrő beállításainak módosítása</item> lehetőséget."
-#. 4PEK
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6527,7 +5847,6 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">Export of text files</item> dialog, select the options that you want."
msgstr "A <item type=\"menuitem\">Szövegfájlok exportálása</item> párbeszédablakban válassza ki a kívánt beállításokat."
-#. cJyc
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6536,7 +5855,6 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">OK</item>."
msgstr "Kattintson az <item type=\"menuitem\">OK</item> gombra."
-#. P6~4
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6545,7 +5863,6 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">Save</item>."
msgstr "Kattintson a <item type=\"menuitem\">Mentés</item> gombra."
-#. L{QP
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6555,7 +5872,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr "Válassza az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Táblázatkezelő - Nézet\">%PRODUCTNAME Calc - Nézet</link> lehetőséget."
-#. hu}y
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6565,7 +5881,6 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Szövegfájlok exportálása\">Szövegfájlok exportálása</link>"
-#. Dh:s
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
@@ -6575,7 +5890,6 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Szövegfájlok importálása\">Szövegfájlok importálása</link>"
-#. ^`rC
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6584,7 +5898,6 @@ msgctxt ""
msgid "Filter: Applying Advanced Filters"
msgstr "Szűrő: Irányított szűrők alkalmazása"
-#. K[_S
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6593,7 +5906,6 @@ msgctxt ""
msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
msgstr "<bookmark_value>szűrők;irányított szűrők megadása</bookmark_value><bookmark_value>irányított szűrők</bookmark_value><bookmark_value>meghatározás; irányított szűrők</bookmark_value><bookmark_value>adatbázis-tartományok; irányított szűrők</bookmark_value>"
-#. GC\V
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6603,7 +5915,6 @@ msgctxt ""
msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Szűrő: Irányított szűrők alkalmazása\">Szűrő: Irányított szűrők alkalmazása</link> </variable>"
-#. ;3ib
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6613,7 +5924,6 @@ msgctxt ""
msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
msgstr "Másolja át a munkalap egy üres területére a munkalap-tartományok szűrendő oszlopcímkéit, majd írja be a szűrési feltételt a címkék mellett lévő sorba. A sorban egymás mellett lévő adatok mindig logikai ÉS kapcsolatban állnak, az oszlopban függőlegesen elhelyezett adatok pedig mindig logikai VAGY kapcsolatban állnak."
-#. j;`,
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6623,7 +5933,6 @@ msgctxt ""
msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
msgstr "A szűrőmátrix létrehozását követően jelölje ki a szűrni kívánt munkalap-tartományokat. Nyissa meg az <emph>Irányított szűrő</emph> párbeszédablakot az <emph>Adatok - Szűrő - Irányított szűrő</emph> lehetőség választásával, majd adja meg a szűrőfeltételeket."
-#. Ht+v
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6633,7 +5942,6 @@ msgctxt ""
msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
msgstr "Ezután kattintson az OK gombra, és látni fogja, hogy az eredeti munkafüzetnek már csak a keresési feltételeknek megfelelő sorai láthatók. Az összes többi sor ideiglenesen elrejtésre kerül, de a <emph>Formátum - Sor - Megjelenítés</emph> lehetőséggel újra megjelenítheti azokat."
-#. jpcE
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6643,7 +5951,6 @@ msgctxt ""
msgid "<emph>Example</emph>"
msgstr "<emph>Példa</emph>"
-#. T82M
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6653,7 +5960,6 @@ msgctxt ""
msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
msgstr "Töltsön be egy sok rekordot tartalmazó munkafüzetet. Egy kitalált <emph>Áruforgalom</emph> dokumentumot használunk, de tetszőleges, más dokumentumot is használhat. A dokumentum az alábbi elrendezéssel rendelkezik:"
-#. ;cuv
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6663,7 +5969,6 @@ msgctxt ""
msgid "<emph>A</emph>"
msgstr "<emph>A</emph>"
-#. 3o53
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6673,7 +5978,6 @@ msgctxt ""
msgid "<emph>B</emph>"
msgstr "<emph>B</emph>"
-#. gvZo
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6683,7 +5987,6 @@ msgctxt ""
msgid "<emph>C</emph>"
msgstr "<emph>C</emph>"
-#. hxn^
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6693,7 +5996,6 @@ msgctxt ""
msgid "<emph>D</emph>"
msgstr "<emph>D</emph>"
-#. -dCP
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6703,7 +6005,6 @@ msgctxt ""
msgid "<emph>E</emph>"
msgstr "<emph>E</emph>"
-#. }L.i
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6713,7 +6014,6 @@ msgctxt ""
msgid "<emph>1</emph>"
msgstr "<emph>1</emph>"
-#. `9S6
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6723,7 +6023,6 @@ msgctxt ""
msgid "Month"
msgstr "Hónap"
-#. #kE4
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6733,7 +6032,6 @@ msgctxt ""
msgid "Standard"
msgstr "Standard"
-#. d/MT
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6743,7 +6041,6 @@ msgctxt ""
msgid "Business"
msgstr "Üzleti"
-#. eaXU
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6753,7 +6050,6 @@ msgctxt ""
msgid "Luxury"
msgstr "Luxus"
-#. 3$tK
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6763,7 +6059,6 @@ msgctxt ""
msgid "Suite"
msgstr "Lakosztály"
-#. X9YK
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6773,7 +6068,6 @@ msgctxt ""
msgid "<emph>2</emph>"
msgstr "<emph>2</emph>"
-#. Cjx.
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6783,7 +6077,6 @@ msgctxt ""
msgid "January"
msgstr "Január"
-#. EOOr
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6793,7 +6086,6 @@ msgctxt ""
msgid "125600"
msgstr "125600"
-#. n{J-
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6803,7 +6095,6 @@ msgctxt ""
msgid "200500"
msgstr "200500"
-#. rGr\
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6813,7 +6104,6 @@ msgctxt ""
msgid "240000"
msgstr "240000"
-#. C_C]
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6823,7 +6113,6 @@ msgctxt ""
msgid "170000"
msgstr "170000"
-#. +NYY
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6833,7 +6122,6 @@ msgctxt ""
msgid "<emph>3</emph>"
msgstr "<emph>3</emph>"
-#. 5t_f
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6843,7 +6131,6 @@ msgctxt ""
msgid "February"
msgstr "Február"
-#. `y_h
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6853,7 +6140,6 @@ msgctxt ""
msgid "160000"
msgstr "160000"
-#. #Lj9
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6863,7 +6149,6 @@ msgctxt ""
msgid "180300"
msgstr "180300"
-#. :K)a
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6873,7 +6158,6 @@ msgctxt ""
msgid "362000"
msgstr "362000"
-#. 1i2#
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6883,7 +6167,6 @@ msgctxt ""
msgid "220000"
msgstr "220000"
-#. WJ}J
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6893,7 +6176,6 @@ msgctxt ""
msgid "<emph>4</emph>"
msgstr "<emph>4</emph>"
-#. G!8-
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6903,7 +6185,6 @@ msgctxt ""
msgid "March"
msgstr "Március"
-#. ?\n/
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6913,7 +6194,6 @@ msgctxt ""
msgid "170000"
msgstr "170000"
-#. [PMJ
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6923,7 +6203,6 @@ msgctxt ""
msgid "and so on..."
msgstr "és így tovább..."
-#. f]Y_
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6933,7 +6212,6 @@ msgctxt ""
msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
msgstr "Másolja át például az 1-es sort a sorcímkével együtt (mezőnevek) a 20-as sorba. Adja meg a szűrési feltételeket VAGY kapcsolattal a 21-es, a 22-es stb. sorokban."
-#. Zn8_
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6943,7 +6221,6 @@ msgctxt ""
msgid "<emph>A</emph>"
msgstr "<emph>A</emph>"
-#. *m~D
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6953,7 +6230,6 @@ msgctxt ""
msgid "<emph>B</emph>"
msgstr "<emph>B</emph>"
-#. O8k#
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6963,7 +6239,6 @@ msgctxt ""
msgid "<emph>C</emph>"
msgstr "<emph>C</emph>"
-#. s/E0
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6973,7 +6248,6 @@ msgctxt ""
msgid "<emph>D</emph>"
msgstr "<emph>D</emph>"
-#. *I1N
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6983,7 +6257,6 @@ msgctxt ""
msgid "<emph>E</emph>"
msgstr "<emph>E</emph>"
-#. y%T@
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -6993,7 +6266,6 @@ msgctxt ""
msgid "<emph>20</emph>"
msgstr "<emph>20</emph>"
-#. Y-ev
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7003,7 +6275,6 @@ msgctxt ""
msgid "Month"
msgstr "Hónap"
-#. my+_
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7013,7 +6284,6 @@ msgctxt ""
msgid "Standard"
msgstr "Standard"
-#. -W:Q
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7023,7 +6293,6 @@ msgctxt ""
msgid "Business"
msgstr "Üzleti"
-#. wbWH
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7033,7 +6302,6 @@ msgctxt ""
msgid "Luxury"
msgstr "Luxus"
-#. HX/X
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7043,7 +6311,6 @@ msgctxt ""
msgid "Suite"
msgstr "Lakosztály"
-#. nR)]
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7053,7 +6320,6 @@ msgctxt ""
msgid "<emph>21</emph>"
msgstr "<emph>21</emph>"
-#. xG09
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7063,7 +6329,6 @@ msgctxt ""
msgid "January"
msgstr "Január"
-#. %HW]
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7073,7 +6338,6 @@ msgctxt ""
msgid "<emph>22</emph>"
msgstr "<emph>22</emph>"
-#. [wk:
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7083,7 +6347,6 @@ msgctxt ""
msgid "<160000"
msgstr "<160000"
-#. 8U,+
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7093,7 +6356,6 @@ msgctxt ""
msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr "Adja meg, hogy csak a <emph>Hónap</emph> cellában <item type=\"literal\">Január</item> értékkel rendelkező VAGY a <emph>Standard</emph> cellákban 160000-nél kisebb értékkel rendelkező cellák kerüljenek megjelenítésre."
-#. BKb8
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
@@ -7103,7 +6365,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
msgstr "Válassza az <emph>Adatok - Szűrő - Irányított szűrő</emph> lehetőséget, majd jelölje ki az A20:E22 tartományt. Miután az OK gombra kattint, csak a szűrt sorok kerülnek megjelenítésre. A többi sor rejtett lesz."
-#. XbdD
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7112,7 +6373,6 @@ msgctxt ""
msgid "Importing and Exporting Text Files"
msgstr "Szövegfájlok importálása és exportálása"
-#. %[m@
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7121,7 +6381,6 @@ msgctxt ""
msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
msgstr "<bookmark_value>CSV-fájlok;képletek</bookmark_value><bookmark_value>képletek; importálás CSV-fájlból/exportálás CSV-fájlba</bookmark_value><bookmark_value>exportálás;képletek CSV-fájlba</bookmark_value><bookmark_value>importálás;képleteket tartalmazó CSV-fájlból</bookmark_value>"
-#. M)Y9
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7131,7 +6390,6 @@ msgctxt ""
msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Szövegfájlok importálása és exportálása\">CSV szövegfájlok importálása és exportálása</link></variable>"
-#. $@^M
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7141,7 +6399,6 @@ msgctxt ""
msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
msgstr "A CSV-fájlok (vesszővel elválasztott értékek) olyan szövegfájlok, amelyek egy egyszerű munkalap celláinak bejegyzéseit tartalmazzák. Vesszők, pontosvesszők vagy más karakterek használhatóak a cellák közötti határok megadására. A szöveg-karakterláncok idézőjelek közé kerülnek, a számok nem."
-#. K5CQ
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7151,7 +6408,6 @@ msgctxt ""
msgid "To Import a CSV File"
msgstr "CSV-fájl importálása"
-#. U`}E
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7161,7 +6417,6 @@ msgctxt ""
msgid "Choose <emph>File - Open</emph>."
msgstr "Válassza a <emph>Fájl - Megnyitás</emph> lehetőséget."
-#. ,Teb
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7171,7 +6426,6 @@ msgctxt ""
msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
msgstr "A <emph>Fájltípus</emph> mezőben jelölje ki a „Strukturált szöveg (CSV)” formátumot. Válassza ki a fájlt, majd kattintson a <emph>Megnyitás</emph> lehetőségre. Ha a fájl .csv kiterjesztéssel rendelkezik, akkor a fájltípust a program automatikusan felismeri."
-#. _xm/
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7181,7 +6435,6 @@ msgctxt ""
msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
msgstr "Megjelenik a <item type=\"menuitem\">Szöveg importálása</item> párbeszédablak. Kattintson az <item type=\"menuitem\">OK</item> gombra."
-#. J%af
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7191,7 +6444,6 @@ msgctxt ""
msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
msgstr "Ha a CSV-fájl tartalmaz képleteket, de a képletek eredményét akarja importálni, válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Nézet</emph> lehetőséget, és törölje a <emph>Képletek</emph> jelölőnégyzetet."
-#. aH6L
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7201,7 +6453,6 @@ msgctxt ""
msgid "To Export Formulas and Values as CSV Files"
msgstr "Képletek és értékek exportálása CSV-fájlként"
-#. wS31
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7211,7 +6462,6 @@ msgctxt ""
msgid "Click the sheet to be written as a csv file."
msgstr "Kattintson a munkalapra a csv-fájlba való íráshoz."
-#. W`0d
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7221,7 +6471,6 @@ msgctxt ""
msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
msgstr "Ha a képleteket képletként szeretne exportálni, például a =SZUM(A1:B5) képlet esetében, akkor tegye az alábbiakat:"
-#. `jG{
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7231,7 +6480,6 @@ msgctxt ""
msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
msgstr "Válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Nézet</emph> lehetőséget."
-#. CI=7
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7241,7 +6489,6 @@ msgctxt ""
msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
msgstr "A <emph>Megjelenítés</emph> szakaszban jelölje be a <emph>Képletek</emph> jelölőnégyzetet. Kattintson az <emph>OK</emph> gombra."
-#. bk_w
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7251,7 +6498,6 @@ msgctxt ""
msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
msgstr "Ha a képletek helyett a számítások eredményét kívánja exportálni, akkor ne jelölje be a <emph>Képletek</emph> jelölőnégyzetet."
-#. \`aQ
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7261,7 +6507,6 @@ msgctxt ""
msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
msgstr "Válassza a <emph>Fájl - Mentés másként</emph> lehetőséget. Megjelenik a <emph>Mentés másként</emph> párbeszédablak."
-#. eg;\
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7271,7 +6516,6 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
msgstr "A <item type=\"menuitem\">Fájltípus</item> mezőben jelölje ki a „Strukturált szöveg (CSV)” formátumot."
-#. S)44
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7281,7 +6525,6 @@ msgctxt ""
msgid "Enter a name and click <emph>Save</emph>."
msgstr "Adja meg a nevet, és kattintson a <emph>Mentés</emph> gombra."
-#. A`M1
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7291,7 +6534,6 @@ msgctxt ""
msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
msgstr "A megjelenő <emph>Szövegfájlok exportálása</emph> párbeszédablakból jelölje ki a karakterkészletet és az exportálni kívánt adatok mező-, illetve szövegelválasztóit, majd erősítse meg a beállításokat az <emph>OK</emph> gomb megnyomásával."
-#. ~ACH
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7301,7 +6543,6 @@ msgctxt ""
msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
msgstr "Ha szükséges, mentés után törölje a <emph>Képletek</emph> jelölőnégyzetet, hogy a táblázatban ismét a kiszámított értékeket láthassa."
-#. h.P-
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7311,7 +6552,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr "Válassza az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Táblázatkezelő - Nézet\">%PRODUCTNAME Calc - Nézet</link> lehetőséget."
-#. @J:h
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7321,7 +6561,6 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Szövegfájlok exportálása\">Szövegfájlok exportálása</link>"
-#. Fl}r
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
@@ -7331,7 +6570,6 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Szövegfájlok importálása\">Szövegfájlok importálása</link>"
-#. ]-L;
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7340,7 +6578,6 @@ msgctxt ""
msgid "Grouping Pivot Tables"
msgstr "Kimutatástáblák csoportosítása"
-#. iH,+
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7349,7 +6586,6 @@ msgctxt ""
msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
msgstr "<bookmark_value>csoportosítás; kimutatástáblák</bookmark_value><bookmark_value>kimutatástábla funkció;táblázatbejegyzések csoportosítása</bookmark_value><bookmark_value>bejegyzéscsoportok szétbontása kimutatástáblákban</bookmark_value>"
-#. ^;].
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7358,7 +6594,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Kimutatástáblák csoportosítása</link></variable>"
-#. %B6h
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7367,7 +6602,6 @@ msgctxt ""
msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
msgstr "Az eredményként létrejövő kimutatástábla számos különböző bejegyzést tartalmazhat. A bejegyzések csoportosításával áttekinthetőbbé teheti a táblázatot."
-#. @oYv
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7376,7 +6610,6 @@ msgctxt ""
msgid "Select a cell or range of cells in the pivot table."
msgstr "Válasszon egy cellát vagy egy cellatartományt a kimutatástáblában."
-#. (n_C
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7385,7 +6618,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Group</emph>."
msgstr "Válassza az <emph>Adatok - Csoportosítás és vázlat - Csoportosítás</emph> menüparancsot."
-#. ^T4R
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7394,7 +6626,6 @@ msgctxt ""
msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
msgstr "A kijelölt cellák formátumától függően egy új csoportmező kerül hozzáadásra a kimutatástáblához, vagy megjelenik a két <link href=\"text/scalc/01/12090400.xhp\">Csoportosítás</link> párbeszédablak egyike, vagy a szám- vagy az adatértékekhez."
-#. !E)Z
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7403,7 +6634,6 @@ msgctxt ""
msgid "The pivot table must be organized in a way that grouping can be applied."
msgstr "A kimutatástáblát úgy kell szervezni, hogy a csoportosítás alkalmazható legyen."
-#. ^8do
#: datapilot_grouping.xhp
msgctxt ""
"datapilot_grouping.xhp\n"
@@ -7412,7 +6642,6 @@ msgctxt ""
msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
msgstr "Csoportosítás eltávolításához kattintson a csoportba, majd válassza az <emph>Adatok - Csoportosítás és vázlat - Csoport szétbontása</emph> menüparancsot."
-#. ]^F6
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7421,7 +6650,6 @@ msgctxt ""
msgid "Editing Pivot Tables"
msgstr "Kimutatástáblák szerkesztése"
-#. N{|~
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7430,7 +6658,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><bookmark_value>editing;pivot tables</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla funkció; táblázatok szerkesztése</bookmark_value><bookmark_value>szerkesztés;kimutatástáblák</bookmark_value>"
-#. .=kG
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7440,7 +6667,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Editing Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Kimutatástáblák szerkesztése\">Kimutatástáblák szerkesztése</link></variable>"
-#. lo~N
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7450,7 +6676,6 @@ msgctxt ""
msgid "Click one of the buttons in the pivot table and hold the mouse button down. A special symbol will appear next to the mouse pointer."
msgstr "Kattintson a kimutatástáblában levő gombok egyikére, és tartsa lenyomva az egér gombját. Az egér mutatója mellett egy speciális szimbólum jelenik meg."
-#. ra1h
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7460,7 +6685,6 @@ msgctxt ""
msgid "By dragging the button to a different position in the same row you can alter the order of the columns. If you drag a button to the left edge of the table into the row headings area, you can change a column into a row."
msgstr "Módosíthatja az oszlopok sorrendjét, ha ugyanazon sor másik pozíciójába húzza a gombot. Ha a gombot a táblázat bal szélén lévő sorcímkék területére viszi, akkor az oszlopot sorrá változtathatja."
-#. R@`*
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7469,7 +6693,6 @@ msgctxt ""
msgid "In the Pivot Table dialog, you can drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter."
msgstr "A Kimutatástábla párbeszédablakban egy gombot az <emph>Oldalmezők</emph> területre húzva gombot és listamezőt hozhat létre a kimutatástábla tetején. A listamező a kimutatástábla kiválasztott elemek tartalma alapján való szűréséhez használható. Húzás segítségével a kimutatástáblában más mezőket is használhat szűrőként."
-#. cCjA
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7479,7 +6702,6 @@ msgctxt ""
msgid "To remove a button from the table, just drag it out of the pivot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted."
msgstr "Ha egy gombot el kíván távolítani a táblázatból, akkor egyszerűen húzza azt a kimutatástáblán kívülre. Amikor a munkalapon az egérmutató „nem megengedett” ikonra vált, engedje fel az egérgombot. A gomb törlődik."
-#. m1sV
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7489,7 +6711,6 @@ msgctxt ""
msgid "To edit the pivot table, click a cell inside the pivot table and open the context menu. In the context menu you find the command <emph>Edit Layout</emph>, which displays the <emph>Pivot Table</emph> dialog for the current pivot table."
msgstr "A kimutatástábla szerkesztéséhez kattintson a kimutatástáblán belül egy cellára, majd nyissa meg a helyi menüt. A helyi menüben találja az <emph>Indítás</emph> parancsot, amely megjeleníti az aktuális kimutatástáblára vonatkozó <emph>Kimutatástábla</emph> párbeszédablakot."
-#. C.z[
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7498,7 +6719,6 @@ msgctxt ""
msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields."
msgstr "A kimutatástáblában használhat egérrel történő húzást, vagy kivágási/beillesztési parancsokat az adatmezők sorrendjének átrendezéséhez."
-#. TaNh
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
@@ -7507,7 +6727,6 @@ msgctxt ""
msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
msgstr "A kimutatástáblákon belül egyéni nevekkel láthatja el a mezőket, a mezőtagokat, a részösszegeket (bizonyos megkötésekkel) és az összegeket. Egy elemhez úgy rendelhet hozzá egyéni nevet, hogy az eredeti nevet egy másik névvel írja felül."
-#. f_~t
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7516,7 +6735,6 @@ msgctxt ""
msgid "Using Rounded Off Numbers"
msgstr "Lekerekített számok használata"
-#. i-]/
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7525,7 +6743,6 @@ msgctxt ""
msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
msgstr "<bookmark_value>számok; lekerekítés</bookmark_value><bookmark_value>lekerekített számok</bookmark_value><bookmark_value>pontos számok a $[officename] Calc programban</bookmark_value><bookmark_value>tizedesjegyek; megjelenítés</bookmark_value><bookmark_value>megváltoztatás;tizedesjegyek száma</bookmark_value><bookmark_value>értékek;kerekítve számításokban</bookmark_value><bookmark_value>számítás;lekerekített értékek</bookmark_value><bookmark_value>számok; tizedesjegyek</bookmark_value><bookmark_value>pontosság a kijelzés szerint</bookmark_value><bookmark_value>kerekítési pontosság</bookmark_value><bookmark_value>munkafüzetek; értékek a kijelzés szerint</bookmark_value>"
-#. j/_c
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7535,7 +6752,6 @@ msgctxt ""
msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Lekerekített számok használata\">Lekerekített számok használata</link></variable>"
-#. \Za,
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7545,7 +6761,6 @@ msgctxt ""
msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
msgstr "A $[officename] Calc programban minden decimális szám 2 tizedesjegyre lekerekítve jelenik meg."
-#. emQ;
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7555,7 +6770,6 @@ msgctxt ""
msgid "To change this for selected cells"
msgstr "Módosítás a kiválasztott cellák esetén"
-#. \MW0
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7565,7 +6779,6 @@ msgctxt ""
msgid "Mark all the cells you want to modify."
msgstr "Jelölje ki a módosítani kívánt cellákat."
-#. +R)K
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7575,7 +6788,6 @@ msgctxt ""
msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
msgstr "Válassza a <emph>Formátum - Cellák</emph> menüparancsot, majd kattintson a <emph>Számok</emph> fülre."
-#. IFdq
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7585,7 +6797,6 @@ msgctxt ""
msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
msgstr "A <emph>Kategória</emph> mezőben válassza a <emph>Szám</emph> lehetőséget. A <emph>Beállítások</emph> részben módosítsa a <emph>Tizedesjegyek</emph> számát, majd az OK gombra kattintva lépjen ki a párbeszédablakból."
-#. -})(
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7595,7 +6806,6 @@ msgctxt ""
msgid "To change this everywhere"
msgstr "Módosítás mindenhol"
-#. x./#
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7605,7 +6815,6 @@ msgctxt ""
msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
msgstr "Válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> lehetőséget."
-#. iv,H
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7615,7 +6824,6 @@ msgctxt ""
msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
msgstr "Nyissa meg a <emph>Számítás</emph> oldalt. Módosítsa a <emph>Tizedesjegyek</emph> számát, majd az OK gombra kattintva lépjen ki a párbeszédablakból."
-#. (Z=g
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7625,7 +6833,6 @@ msgctxt ""
msgid "To calculate with the rounded off numbers instead of the internal exact values"
msgstr "Lekerekített számok használata belső pontos értékek helyett"
-#. P:?Y
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7635,7 +6842,6 @@ msgctxt ""
msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
msgstr "Válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> lehetőséget."
-#. SGfK
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7645,7 +6851,6 @@ msgctxt ""
msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
msgstr "Nyissa meg a <emph>Számítás</emph> oldalt. Jelölje meg az <emph>A belső pontosság a kijelzett pontossággal egyezzen meg</emph> mezőt, majd az OK gombra kattintva lépjen ki a párbeszédablakból."
-#. k@3S
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7655,7 +6860,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Számok\">Számok</link>"
-#. m4dd
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
@@ -7665,7 +6869,6 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Számítás\">Számítás</link>"
-#. 9jn@
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7674,7 +6877,6 @@ msgctxt ""
msgid "Importing and Exporting dBASE Files"
msgstr "dBASE-fájlok importálása és exportálása"
-#. ]*`n
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7683,7 +6885,6 @@ msgctxt ""
msgid "<bookmark_value>exporting;spreadsheets to dBASE</bookmark_value> <bookmark_value>importing;dBASE files</bookmark_value> <bookmark_value>dBASE import/export</bookmark_value> <bookmark_value>spreadsheets; importing from/exporting to dBASE files</bookmark_value> <bookmark_value>tables in databases;importing dBASE files</bookmark_value>"
msgstr "<bookmark_value>exportálás;munkafüzetek dBASE-be</bookmark_value> <bookmark_value>importálás;dBASE-fájlok</bookmark_value> <bookmark_value>dBASE importálás és exportálás</bookmark_value> <bookmark_value>munkafüzetek;dBASE-fájlok importálása</bookmark_value> <bookmark_value>munkafüzetek;dBASE-fájlok exportálása</bookmark_value> <bookmark_value>adatbázistáblák;dBASE-fájlok importálása</bookmark_value>"
-#. +Rn9
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7692,7 +6893,6 @@ msgctxt ""
msgid "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">Importing and Exporting dBASE Files</link></variable>"
msgstr "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">dBASE-fájlok importálása és exportálása</link></variable>"
-#. W$ig
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7701,7 +6901,6 @@ msgctxt ""
msgid "You can open and save data in the dBASE file format (*.dbf file extension) in $[officename] Base or a spreadsheet. In %PRODUCTNAME Base, a dBASE database is a folder that contains files with the .dbf file extension. Each file corresponds to a table in the database. Formulas and formatting are lost when you open and save a dBASE file from %PRODUCTNAME."
msgstr "dBASE fájlformátumban (*.dbf kiterjesztéssel) a $[officename] Base programból vagy egy munkafüzetből nyithat meg és menthet adatokat. A %PRODUCTNAME Base-ben a dBASE-adatbázis egy olyan könyvtár, amely .dbf kiterjesztésű fájlok gyűjteményét tartalmazza. Minden egyes fájl az adatbázis egy táblájához tartozik. A képletek és a formázás elvész, ha egy dBASE-fájlt %PRODUCTNAME-programban nyit meg vagy onnan ment."
-#. EH*.
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7710,7 +6909,6 @@ msgctxt ""
msgid "To Import a dBASE File Into a Spreadsheet"
msgstr "Egy dBASE-fájl munkafüzetbe való importálása"
-#. b9Jf
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7719,7 +6917,6 @@ msgctxt ""
msgid "Choose <emph>File - Open</emph>."
msgstr "Válassza a <emph>Fájl - Megnyitás</emph> lehetőséget."
-#. c(Qd
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7728,7 +6925,6 @@ msgctxt ""
msgid "Locate the *.dbf file that you want to import."
msgstr "Keresse meg az importálni kívánt *.dbf-fájlt."
-#. \lr\
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7737,7 +6933,6 @@ msgctxt ""
msgid "Click <emph>Open</emph>."
msgstr "Kattintson a <emph>Megnyitás</emph> lehetőségre."
-#. lD^0
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7746,7 +6941,6 @@ msgctxt ""
msgid "The <emph>Import dBASE files</emph> dialog opens."
msgstr "Megnyílik a <emph>dBASE-fájlok importálása</emph> párbeszédablak."
-#. J_J+
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7755,7 +6949,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. 9~=T
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7764,7 +6957,6 @@ msgctxt ""
msgid "The dBASE file opens as a new Calc spreadsheet."
msgstr "A dBASE-fájl egy új Calc-munkafüzetként nyílik meg."
-#. qd`d
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7773,7 +6965,6 @@ msgctxt ""
msgid "If you want to save the spreadsheet as a dBASE file, do not alter or delete the first row in the imported file. This row contains information that is required by a dBASE database."
msgstr "Ha a munkafüzetet dBASE-fájlként kívánja menteni, ne módosítsa és ne törölje az importált fájl első sorát. Ez a sor a dBASE-adatbázis számára szükséges információkat tartalmaz."
-#. 9se|
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7782,7 +6973,6 @@ msgctxt ""
msgid "To Import a dBASE File Into a Database Table"
msgstr "dBASE-fájl adatbázis-táblába való importálása"
-#. @UYR
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7791,7 +6981,6 @@ msgctxt ""
msgid "A %PRODUCTNAME Base database table is actually a link to an existing database."
msgstr "A %PRODUCTNAME Base-adatbázis tulajdonképpen egy hivatkozás egy meglévő adatbázisra."
-#. ;)oQ
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7800,7 +6989,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">File - New - Database</item>."
msgstr "Válassza a <item type=\"menuitem\">Fájl - Új - Adatbázis</item> lehetőséget."
-#. j4Y[
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7809,7 +6997,6 @@ msgctxt ""
msgid "In the <emph>File name</emph> box of the <emph>Save As</emph> dialog, enter a name for the database."
msgstr "A <emph>Mentés másként</emph> párbeszédablak <emph>Fájlnév</emph> mezőjébe írja be az adatbázis nevét."
-#. u9,u
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7818,7 +7005,6 @@ msgctxt ""
msgid "Click <emph>Save</emph>."
msgstr "Kattintson a <emph>Mentés</emph> gombra."
-#. 2dj)
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7827,7 +7013,6 @@ msgctxt ""
msgid "In the <emph>Database type </emph>box of the <emph>Database Properties</emph> dialog, select \"dBASE\"."
msgstr "Az <emph>Adatbázis tulajdonságai</emph> párbeszédablak <emph>Adatbázis típusa</emph> mezőjében válassza a „dBASE” lehetőséget."
-#. eN$T
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7836,7 +7021,6 @@ msgctxt ""
msgid "Click <emph>Next</emph>."
msgstr "Kattintson a <emph>Tovább</emph> gombra."
-#. !GLJ
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7845,7 +7029,6 @@ msgctxt ""
msgid "Click <emph>Browse</emph>."
msgstr "Kattintson a <emph>Tallózás</emph> gombra."
-#. blnF
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7854,7 +7037,6 @@ msgctxt ""
msgid "Locate the directory that contains the dBASE file, and click <emph>OK</emph>."
msgstr "Keresse meg a dBASE-fájlt tartalmazó könyvtárat, majd kattintson az <emph>OK</emph> gombra."
-#. eP8!
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7863,7 +7045,6 @@ msgctxt ""
msgid "Click <emph>Create</emph>."
msgstr "Kattintson a <emph>Létrehozás</emph> gombra."
-#. E8d/
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7872,7 +7053,6 @@ msgctxt ""
msgid "To Save a Spreadsheet as a dBASE File"
msgstr "Munkafüzet mentése dBASE-fájlként"
-#. bdlT
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7881,7 +7061,6 @@ msgctxt ""
msgid "Choose <emph>File - Save As</emph>."
msgstr "Válassza a <emph>Fájl - Mentés másként</emph> menüparancsot."
-#. fUbl
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7890,7 +7069,6 @@ msgctxt ""
msgid "In the <emph>File format</emph> box, select \"dBASE file\"."
msgstr "A <emph>Fájlformátum</emph> mezőben válassza a „dBASE-fájl” lehetőséget."
-#. -3t7
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7899,7 +7077,6 @@ msgctxt ""
msgid "In the <emph>File name</emph> box, type a name for the dBASE file."
msgstr "Adjon nevet a dBASE-fájlnak a <emph>Fájlnév</emph> mezőben."
-#. izh^
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7908,7 +7085,6 @@ msgctxt ""
msgid "Click <emph>Save</emph>."
msgstr "Kattintson a <emph>Mentés</emph> gombra."
-#. W:\n
#: dbase_files.xhp
msgctxt ""
"dbase_files.xhp\n"
@@ -7917,7 +7093,6 @@ msgctxt ""
msgid "Only the data on the current sheet is exported."
msgstr "Csak az aktuális munkalap adatai kerülnek exportálásra."
-#. Ya.,
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7926,7 +7101,6 @@ msgctxt ""
msgid "Finding and Replacing in Calc"
msgstr "Keresés és csere a Calcban"
-#. #UQ2
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7935,7 +7109,6 @@ msgctxt ""
msgid "<bookmark_value>searching, see also finding</bookmark_value><bookmark_value>finding;formulas/values/text/objects</bookmark_value><bookmark_value>replacing; cell contents</bookmark_value><bookmark_value>formatting;multiple cell texts</bookmark_value>"
msgstr "<bookmark_value>keresés; lásd még: találat</bookmark_value><bookmark_value>keresés;képletek/értékek/szöveg/objektumok</bookmark_value><bookmark_value>csere; cellatartalom</bookmark_value><bookmark_value>formázás;több cella szövege</bookmark_value>"
-#. a3lj
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7944,7 +7117,6 @@ msgctxt ""
msgid "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Finding and Replacing in Calc</link></variable>"
msgstr "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Keresés és csere a Calcban</link></variable>"
-#. K3UK
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7953,7 +7125,6 @@ msgctxt ""
msgid "In spreadsheet documents you can find words, formulas, and styles. You can navigate from one result to the next, or you can highlight all matching cells at once, then apply another format or replace the cell content by other content."
msgstr "Munkafüzet-dokumentumokban szavakra, képletekre és stílusokra lehet keresni. Navigálhat egyik találattól a következőig, vagy kijelölheti egyszerre az összes illeszkedő cellát, majd új formátumot alkalmazhat rájuk, vagy kicserélheti a cellatartalmat másra."
-#. Lkn7
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7962,7 +7133,6 @@ msgctxt ""
msgid "The Find & Replace dialog"
msgstr "Keresés és csere párbeszédablak"
-#. vNYh
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7971,7 +7141,6 @@ msgctxt ""
msgid "Cells can contain text or numbers that were entered directly as in a text document. But cells can also contain text or numbers as the result of a calculation. For example, if a cell contains the formula =1+2 it displays the result 3. You must decide whether to search for the 1 respective 2, or to search the 3."
msgstr "A cellák tartalmazhatnak közvetlenül beírt szöveget és számokat, de tartalmazhatnak képletek eredményeként létrejött szöveget és számokat is. Ha például egy cella az =1+2 képletet tartalmazza, a cellában 3 jelenik meg. El kell döntenie, hogy az 1 plusz 2-re vagy a 3-ra keres rá."
-#. T[EQ
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7980,7 +7149,6 @@ msgctxt ""
msgid "To find formulas or values"
msgstr "Képletek vagy értékek keresése"
-#. +-?N
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7989,7 +7157,6 @@ msgctxt ""
msgid "You can specify in the Find & Replace dialog either to find the parts of a formula or the results of a calculation."
msgstr "A Keresés és csere párbeszédablakban megadhatja, hogy képletekre vagy a számolás eredményére vonatkozzon-e a keresés."
-#. KV:V
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7998,7 +7165,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
msgstr "Válassza a <emph>Szerkesztés - Keresés és csere</emph> menüparancsot a Keresés és csere párbeszédpanel megnyitásához."
-#. (I#(
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8007,7 +7173,6 @@ msgctxt ""
msgid "Click <emph>More Options</emph> to expand the dialog."
msgstr "Kattintson a <emph>Több beállítás</emph> gombra a párbeszédablak kibővítéséhez."
-#. @zgh
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8016,7 +7181,6 @@ msgctxt ""
msgid "Select \"Formulas\" or \"Values\" in the <emph>Search in</emph> list box."
msgstr "Válassza a „Képletek” vagy az „Értékek” lehetőséget a <emph>Keresés</emph> listából."
-#. X]XS
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8025,7 +7189,6 @@ msgctxt ""
msgid "With \"Formulas\" you will find all parts of the formulas."
msgstr "A „Képletek” kiválasztásával a képletrészletekben kereshet."
-#. ;RqB
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8034,7 +7197,6 @@ msgctxt ""
msgid "With \"Values\" you will find the results of the calculations."
msgstr "Az „Értékek” kiválasztásával a számítások eredményei között kereshet."
-#. 2_qt
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8043,7 +7205,6 @@ msgctxt ""
msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. You see the currency symbol in the cell, but you cannot search for it."
msgstr "A cellák tartalma különbözőképpen lehet formázva. Például egy szám lehet pénznemformátumban, és mellette megjelenhet a pénznem jele. A pénznem jele látszik a cellában, de a keresés nem találja meg."
-#. ;)41
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8052,7 +7213,6 @@ msgctxt ""
msgid "Finding text"
msgstr "Szöveg keresése"
-#. /A.o
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8061,7 +7221,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
msgstr "Válassza a <emph>Szerkesztés - Keresés és csere</emph> menüparancsot a Keresés és csere párbeszédpanel megnyitásához."
-#. *y6Y
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8070,7 +7229,6 @@ msgctxt ""
msgid "Enter the text to find in the <emph>Search for</emph> text box."
msgstr "A <emph>Keresett szöveg</emph> mezőben adja meg a keresni kívánt szöveget."
-#. -1.9
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8079,7 +7237,6 @@ msgctxt ""
msgid "Either click <emph>Find</emph> or <emph>Find All</emph>."
msgstr "Kattintson a <emph>Keresés</emph> vagy a <emph>Mindet keresi</emph> gombra."
-#. 2$Wk
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8088,7 +7245,6 @@ msgctxt ""
msgid "When you click <emph>Find</emph>, Calc will select the next cell that contains your text. You can watch and edit the text, then click <emph>Find</emph> again to advance to the next found cell."
msgstr "A <emph>Keresés</emph> gombra kattintás után a Calc kijelöli a következő olyan cellát, amely a keresett szöveget tartalmazza. A szöveg közben látszik és szerkeszthető, ha újra a <emph>Keresés</emph> gombra kattint, akkor a következő találatra ugrik."
-#. hUA0
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8097,7 +7253,6 @@ msgctxt ""
msgid "If you closed the dialog, you can press a key combination (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F) to find the next cell without opening the dialog."
msgstr "Ha bezárta a párbeszédablakot, egy billentyűkombinációval (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F) keresheti meg a következő cellát a párbeszédablak megnyitása nélkül."
-#. 4BvS
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8106,7 +7261,6 @@ msgctxt ""
msgid "By default, Calc searches the current sheet. Click <emph>More Options</emph>, then enable <emph>Search in all sheets</emph> to search through all sheets of the document."
msgstr "Alapértelmezés szerint a Calc az aktuális munkalapon keres. Kattintson a <emph>Több beállítás</emph> gombra, majd jelölje be a <emph>Keresés az összes munkalapon</emph> négyzetet a dokumentum összes munkalapján való kereséshez."
-#. ]!Gv
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8115,7 +7269,6 @@ msgctxt ""
msgid "When you click <emph>Find All</emph>, Calc selects all cells that contain your entry. Now you can for example set all found cells to bold, or apply a Cell Style to all at once."
msgstr "A <emph>Mindet keresi</emph> gombra kattintás után a Calc kijelöli az összes olyan cellát, amely a keresett szöveget tartalmazza. Ekkor például egyszerre állíthatja be az összes cellát félkövérre, vagy alkalmazhat egy cellaformázást."
-#. }J;^
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8124,7 +7277,6 @@ msgctxt ""
msgid "The Navigator"
msgstr "A Navigátor"
-#. 8!`.
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8133,7 +7285,6 @@ msgctxt ""
msgid "Choose <emph>View - Navigator</emph> to open the Navigator window."
msgstr "Válassza a <emph>Nézet - Navigátor</emph> menüparancsot a Navigátor ablak megnyitásához."
-#. 3Prw
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8142,7 +7293,6 @@ msgctxt ""
msgid "The Navigator is the main tool for finding and selecting objects."
msgstr "A Navigátor az objektumok megkeresésének és kijelölésének legfőbb eszköze."
-#. ~=:[
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -8151,7 +7301,6 @@ msgctxt ""
msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
msgstr "Használja a Navigátort objektumok és hivatkozások beszúrására a dokumentumon belül vagy különböző megnyitott dokumentumok között."
-#. G9D#
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8160,7 +7309,6 @@ msgctxt ""
msgid "Instructions for Using $[officename] Calc"
msgstr "A $[officename] Calc használati utasítása"
-#. :JFU
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8169,7 +7317,6 @@ msgctxt ""
msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
msgstr "<bookmark_value>Hogyanok a Calchoz</bookmark_value><bookmark_value>útmutató; $[officename] Calc</bookmark_value>"
-#. :qhK
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8179,7 +7326,6 @@ msgctxt ""
msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"A $[officename] Calc használati utasítása\">A $[officename] Calc használati utasítása</link></variable>"
-#. tGwJ
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8189,7 +7335,6 @@ msgctxt ""
msgid "Formatting Tables and Cells"
msgstr "Táblázatok és cellák formázása"
-#. +@m;
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8199,7 +7344,6 @@ msgctxt ""
msgid "Entering Values and Formulas"
msgstr "Képletek és értékek megadása"
-#. d2%y
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8209,7 +7353,6 @@ msgctxt ""
msgid "Entering References"
msgstr "Hivatkozások megadása"
-#. k0/K
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8219,7 +7362,6 @@ msgctxt ""
msgid "Database Ranges in Tables"
msgstr "Adatbázis-tartományok táblázatokban"
-#. N@[@
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8229,7 +7371,6 @@ msgctxt ""
msgid "Advanced Calculations"
msgstr "Haladó számítások"
-#. Dv78
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8239,7 +7380,6 @@ msgctxt ""
msgid "Printing and Page Preview"
msgstr "Nyomtatás és Oldal nézet"
-#. [K7w
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8249,7 +7389,6 @@ msgctxt ""
msgid "Importing and Exporting Documents"
msgstr "Dokumentumok importálása és exportálása"
-#. pthF
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -8259,7 +7398,6 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Egyebek"
-#. HlpM
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8268,7 +7406,6 @@ msgctxt ""
msgid "Validity of Cell Contents"
msgstr "Cellatartalmak érvényessége"
-#. R1Y=
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8277,7 +7414,6 @@ msgctxt ""
msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
msgstr "<bookmark_value>értékek; korlátozás a bevitelnél</bookmark_value><bookmark_value>korlátozások; értékkorlátozások megadása a bevitelnél</bookmark_value><bookmark_value>megengedett cellatartalmak</bookmark_value><bookmark_value>adatérvényesség</bookmark_value><bookmark_value>érvényesség</bookmark_value><bookmark_value>cellák; érvényesség</bookmark_value><bookmark_value>hibaüzenetek; meghatározás hibás bevitelnél</bookmark_value><bookmark_value>műveletek hibás bevitelnél</bookmark_value><bookmark_value>súgótippek; szöveg meghatározása a cellabevitel számára</bookmark_value><bookmark_value>megjegyzések;súgószövegek cellákhoz</bookmark_value><bookmark_value>cellák; segédszöveg megadása</bookmark_value><bookmark_value>makrók; futtatás hibás bevitelnél</bookmark_value><bookmark_value>adat; érvényesség-ellenőrzés</bookmark_value>"
-#. L2,p
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8287,7 +7423,6 @@ msgctxt ""
msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Cellatartalmak érvényessége\">Cellatartalmak érvényessége</link></variable>"
-#. i^5G
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8297,7 +7432,6 @@ msgctxt ""
msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
msgstr "Minden cellára megadható, hogy milyen érték lehet érvényes. A cellába írt érvénytelen érték vissza lesz utasítva."
-#. P0{b
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8307,7 +7441,6 @@ msgctxt ""
msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
msgstr "Az érvényességi szabály új érték megadásakor kerül aktiválásra. Ha a cellába már ezt megelőzően érvénytelen érték került beszúrásra, illetve ha a cellába „fogd és vidd” módszerrel vagy a másolás és beillesztés művelet segítségével szúr be értéket, akkor az érvényességi szabály nem fog érvényesülni."
-#. @r=B
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8316,7 +7449,6 @@ msgctxt ""
msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
msgstr "Az érvénytelen adatokat tartalmazó cellákat bármikor megjelenítheti az <emph>Eszközök - Detektív</emph> lehetőség, majd az <link href=\"text/scalc/01/06030800.xhp\" name=\"Érvénytelen adatok megjelölése\"><emph>Érvénytelen adatok megjelölése</emph></link> kiválasztásával."
-#. AiM@
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8326,7 +7458,6 @@ msgctxt ""
msgid "Using Cell Contents Validity"
msgstr "Cellatartalmak érvényességének használata"
-#. ;R9V
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8336,7 +7467,6 @@ msgctxt ""
msgid "Select the cells for which you want to define a new validity rule."
msgstr "Jelölje ki a cellákat, amelyekhez új érvényességi szabályt akar megadni."
-#. @dI$
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8346,7 +7476,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Érvényesség</item> menüparancsot."
-#. xSiA
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8356,7 +7485,6 @@ msgctxt ""
msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
msgstr "A <emph>Feltételek</emph> lapon adja meg a cellában újonnan megadásra kerülő értékekre vonatkozó feltételeket."
-#. Q,_C
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8366,7 +7494,6 @@ msgctxt ""
msgid "In the <emph>Allow</emph> field, select an option."
msgstr "Az <emph>Engedélyezés</emph> mezőben válasszon ki egy lehetőséget."
-#. ezO0
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8376,7 +7503,6 @@ msgctxt ""
msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
msgstr "Ha az „Egész számok” beállítást jelöli ki, akkor a „12,5”-höz hasonló értékek nem engedélyezettek. A „Dátum” kiválasztása esetén a dátum lehet akár a helyi dátumformátumban, akár <link href=\"text/sbasic/shared/03030101.xhp\" name=\"dátumsorszám\">dátumsorszám</link> formátumában. Hasonlóan, az „Idő” feltétel megadása esetén csak a „12:00” vagy sorszámformátumú időértékek használhatók. A „Szöveghossz” feltételezi, hogy a cellák csak szöveget tartalmazhatnak."
-#. ~EO*
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8385,7 +7511,6 @@ msgctxt ""
msgid "Select \"List\" to enter a list of valid entries."
msgstr "Válassza a „Lista” lehetőséget az érvényes értékek listájának megadásához."
-#. K`^1
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8395,7 +7520,6 @@ msgctxt ""
msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
msgstr "Válassza ki a következő feltételt az <emph>Adat</emph> alatt. A választástól függően további beállítási lehetőségek jelennek meg."
-#. xP~l
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8405,7 +7529,6 @@ msgctxt ""
msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
msgstr "Miután meghatározta a cella érvényességének feltételét, a másik két lapot használhatja üzenetablakok létrehozására:"
-#. jphE
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8415,7 +7538,6 @@ msgctxt ""
msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
msgstr "A <emph>Segédszöveg</emph> lapon adja meg a cella kijelölése esetén megjelenő tipp címét és szövegét."
-#. :q#K
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8425,7 +7547,6 @@ msgctxt ""
msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
msgstr "A <emph>Figyelmeztetés hibára</emph> lapon jelölje ki a hiba esetén végrehajtandó műveletet."
-#. J4Q~
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8435,7 +7556,6 @@ msgctxt ""
msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
msgstr "Ha műveletként a „Leállítás” műveletet választja, akkor az érvénytelen bejegyzéseket a függvény nem fogadja el, és a cella ezt megelőző tartalma változatlanul megmarad."
-#. -qBJ
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8445,7 +7565,6 @@ msgctxt ""
msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
msgstr "Válassza a „Figyelmeztetés” vagy „Információ” beállítást egy olyan párbeszédablak megjelenítéséhez, amelyben a bejegyzés törölhető, illetve elfogadható."
-#. ,Ul!
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8455,7 +7574,6 @@ msgctxt ""
msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
msgstr "Ha a „Makró” lehetőséget használja, a <emph>Tallózás</emph> gomb használatával meghatározhatja a hiba esetén futtatandó makrót."
-#. FOQ}
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8465,7 +7583,6 @@ msgctxt ""
msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
msgstr "A hibaüzenet megjelenítéséhez jelölje be a <emph>Hibaüzenet megjelenítése érvénytelen érték bevitele esetén</emph> négyzetet."
-#. P:j*
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8475,7 +7592,6 @@ msgctxt ""
msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
msgstr "Miután a <emph>Figyelmeztetés hibára</emph> lapon módosította a cellára vonatkozó műveletet, illetve az OK gomb segítségével a párbeszédablakot bezárta, a módosítások érvénybe lépése előtt ki kell jelölnie egy másik cellát."
-#. wLkq
#: validity.xhp
msgctxt ""
"validity.xhp\n"
@@ -8485,7 +7601,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Adatok - Érvényesség\">Adatok - Érvényesség</link>"
-#. 4Lk~
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8494,7 +7609,6 @@ msgctxt ""
msgid "Defining Background Colors or Background Graphics"
msgstr "Háttérszínek vagy háttérképek meghatározása"
-#. .U2*
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8503,7 +7617,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
msgstr "<bookmark_value>munkafüzetek; hátterek</bookmark_value><bookmark_value>hátterek;cellatartományok</bookmark_value><bookmark_value>táblázatok; hátterek</bookmark_value><bookmark_value>cellák; hátterek</bookmark_value><bookmark_value>sorok, lásd: cellák</bookmark_value><bookmark_value>oszlopok, lásd: cellák</bookmark_value>"
-#. 3{Y*
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8513,7 +7626,6 @@ msgctxt ""
msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Háttérszínek vagy háttérképek meghatározása\">Háttérszínek vagy háttérképek meghatározása</link></variable>"
-#. xmK\
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8522,7 +7634,6 @@ msgctxt ""
msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
msgstr "A $[officename] Calc cellatartományaihoz megadhat háttérszínt, vagy képet is használhat háttérként."
-#. 4-NH
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8532,7 +7643,6 @@ msgctxt ""
msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
msgstr "Háttérszín alkalmazása $[officename] Calc-munkafüzetre"
-#. f^%,
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8542,7 +7652,6 @@ msgctxt ""
msgid "Select the cells."
msgstr "Jelölje ki a cellákat."
-#. B.:t
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8552,7 +7661,6 @@ msgctxt ""
msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
msgstr "Válassza a <emph>Formátum - Cellák</emph> menüparancsot (vagy a <emph>Cellák formázása</emph> menüparancsot a helyi menüből)."
-#. {%il
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8562,7 +7670,6 @@ msgctxt ""
msgid "On the <emph>Background</emph> tab page, select the background color."
msgstr "A <emph>Háttér</emph> lapon válassza ki a háttérszínt."
-#. T70}
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8572,7 +7679,6 @@ msgctxt ""
msgid "Graphics in the Background of Cells"
msgstr "Képek a cellák háttereként"
-#. oBUv
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8582,7 +7688,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Picture - From File</emph>."
msgstr "Válassza a <emph>Beszúrás - Kép - Fájlból</emph> menüparancsot."
-#. |]Jc
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8592,7 +7697,6 @@ msgctxt ""
msgid "Select the graphic and click <emph>Open</emph>."
msgstr "Válassza ki a képet, majd kattintson a <emph>Megnyitás</emph> gombra."
-#. ;A.?
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8602,7 +7706,6 @@ msgctxt ""
msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
msgstr "A beszúrt kép az aktuális cellához van horgonyozva. A kép igény szerint áthelyezhető és méretezhető. A háttérbe helyezéshez a helyi menüben használhatja az <emph>Igazítás - Háttérhez</emph> parancsot. A háttérbe helyezett kép kijelöléséhez használja a <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigátor\">Navigátort</link></caseinline><defaultinline>Navigátort</defaultinline></switchinline>."
-#. WCJ+
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8611,7 +7714,6 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
msgstr "<link href=\"text/shared/guide/background.xhp\">Vízjelek</link>"
-#. miw{
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8621,7 +7723,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Háttér lap\"><emph>Háttér</emph> lap</link>"
-#. %=8^
#: background.xhp
msgctxt ""
"background.xhp\n"
@@ -8630,7 +7731,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Munkafüzetek formázása</link>"
-#. LfmZ
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8639,7 +7739,6 @@ msgctxt ""
msgid "Text Superscript / Subscript"
msgstr "Szöveg felső és alsó indexben"
-#. %S-J
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8648,7 +7747,6 @@ msgctxt ""
msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
msgstr "<bookmark_value>felső indexű szöveg cellákban</bookmark_value><bookmark_value>alsó indexű szöveg cellákban</bookmark_value><bookmark_value>cellák; szöveg felső és alsó indexben</bookmark_value><bookmark_value>karakterek;felső index/alsó index</bookmark_value>"
-#. nJbv
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8658,7 +7756,6 @@ msgctxt ""
msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Szöveg felső vagy alsó indexben\">Szöveg felső vagy alsó indexben</link></variable>"
-#. FjYO
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8668,7 +7765,6 @@ msgctxt ""
msgid "In the cell, select the character that you want to put in superscript or subscript."
msgstr "A cellában válassza ki azt a karaktert, amelyet felső vagy alsó indexbe szeretne rakni."
-#. ;\z*
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8678,7 +7774,6 @@ msgctxt ""
msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
msgstr "Ha például a H2O kifejezésben a 2-est alsó indexbe szeretné írni, válassza ki a 2-est a cellában (nem a beviteli sorban)."
-#. ~ZH8
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8688,7 +7783,6 @@ msgctxt ""
msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
msgstr "Nyissa meg a kijelölt karakterhez tartozó helyi menüt, majd válassza a <emph>Karakter</emph> lehetőséget. Megjelenik a <emph>Karakter</emph> párbeszédablak."
-#. ~5P:
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8698,7 +7792,6 @@ msgctxt ""
msgid "Click the <emph>Font Position</emph> tab."
msgstr "Kattintson a <emph>Betűhelyzet</emph> fülre."
-#. D-uS
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8708,7 +7801,6 @@ msgctxt ""
msgid "Select the <emph>Subscript</emph> option and click OK."
msgstr "Jelölje ki az <emph>Alsó index</emph> beállítást, majd kattintson az OK gombra."
-#. q4=h
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
@@ -8718,7 +7810,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Helyi menü - Karakter - Betűhelyzet\">Helyi menü - Karakter - Betűhelyzet</link>"
-#. 5lva
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8727,7 +7818,6 @@ msgctxt ""
msgid "Creating Pivot Tables"
msgstr "Kimutatástáblák létrehozása"
-#. U-ad
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8736,7 +7826,6 @@ msgctxt ""
msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
msgstr "<bookmark_value>kimutatástáblák</bookmark_value><bookmark_value>kimutatástábla funkció; meghívás és alkalmazás</bookmark_value>"
-#. r_f^
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8746,7 +7835,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Kimutatástáblák létrehozása\">Kimutatástáblák létrehozása</link></variable>"
-#. W=j%
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8756,7 +7844,6 @@ msgctxt ""
msgid "Position the cursor within a range of cells containing values, row and column headings."
msgstr "Helyezze a kurzort egy olyan cellatartományra, amelyben értékek, sor- és oszlopcímsorok vannak."
-#. es34
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8766,7 +7853,6 @@ msgctxt ""
msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
msgstr "Válassza az <emph>Adatok - Kimutatástábla - Létrehozás</emph> lehetőséget. Megjelenik a <emph>Forrás kijelölése</emph> párbeszédablak. Válassza az <emph>Aktuális kijelölés</emph> lehetőséget, majd erősítse meg az <emph>OK</emph> gombbal. A <emph>Kimutatástábla</emph> párbeszédablakban a táblázat fejlécei gomb formájában jelennek meg. A kívánt gombokat húzza az „Oldalmezők”, „Oszlopmezők”, „Sormezők”, illetve „Adatmezők” elrendezés-területekre."
-#. (b,{
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8776,7 +7862,6 @@ msgctxt ""
msgid "Drag the desired buttons into one of the four areas."
msgstr "Fogja meg a kívánt gombokat a négy terület egyikéből."
-#. $0qG
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8785,7 +7870,6 @@ msgctxt ""
msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
msgstr "Húzzon egy gombot az <emph>Oldalmezők</emph> területre ahhoz, hogy egy gombot és egy listaelemet hozzon létre a generált kimutatástábla tetején. A listapanel a kimutatástábla kiválasztott elemek tartalma alapján való szűréséhez használható. Húzás segítségével a létrehozott kimutatástáblában más mezőket is használhat szűrőként."
-#. eLDr
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8795,7 +7879,6 @@ msgctxt ""
msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
msgstr "Ha a gombot az <emph>Adatmezők</emph> területre húzza, akkor a gombhoz megjelenik egy felirat, amely az adatok számításakor felhasználásra kerülő képletet tartalmazza."
-#. EhQu
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8805,7 +7888,6 @@ msgctxt ""
msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
msgstr "Az <link href=\"text/scalc/01/12090105.xhp\" name=\"Adatmezők\"><emph>Adatmezők</emph></link> párbeszédablak előhívásához kattintson duplán az <emph>Adatmezők</emph> terület valamelyik mezőjére."
-#. 2eW_
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8815,7 +7897,6 @@ msgctxt ""
msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
msgstr "Az <item type=\"menuitem\">Adatmezők</item> párbeszédablak segítségével kijelölheti az adatokon elvégzendő számításokat. Több elem kijelöléséhez tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, miközben a kívánt számításokra kattint."
-#. pgI/
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8825,7 +7906,6 @@ msgctxt ""
msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
msgstr "A gombok sorrendje bármikor megváltoztatható, ha egyszerűen áthelyezi őket az egér segítségével a területen egy másik helyre."
-#. ?.dM
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8835,7 +7915,6 @@ msgctxt ""
msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
msgstr "Gomb eltávolításához húzza azt vissza a párbeszédablaktól jobbra lévő területre, ahol a többi gomb is található."
-#. g~Pq
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8845,7 +7924,6 @@ msgctxt ""
msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
msgstr "Az <link href=\"text/scalc/01/12090105.xhp\" name=\"Adatmező\"><emph>Adatmező</emph></link> párbeszédablak megnyitásához kattintson duplán a <emph>Sormezők</emph> vagy az <emph>Oszlopmezők</emph> terület valamelyik gombjára. A párbeszédablak segítségével beállíthatja, hogy a <item type=\"productname\">%PRODUCTNAME</item> számít, illetve megjelenít-e részösszegeket, és ha igen, akkor milyen mértékben."
-#. LQLP
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
@@ -8855,7 +7933,6 @@ msgctxt ""
msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
msgstr "A Kimutatástábla párbeszédablakból az OK gomb megnyomásával léphet ki. Egy <emph>Szűrő</emph> gomb vagy oldalgomb lesz beszúrva minden olyan adatmező számára, amelyet az <emph>Oldalmezők</emph> területre húzott. A kimutatástábla alább kerül beszúrásra."
-#. HoJA
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8864,7 +7941,6 @@ msgctxt ""
msgid "Writing Multi-line Text"
msgstr "Többsoros szöveg írása"
-#. l$(A
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8873,7 +7949,6 @@ msgctxt ""
msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
msgstr "<bookmark_value>szöveg cellákban; több sor</bookmark_value><bookmark_value>cellák; szövegtörések</bookmark_value><bookmark_value>törések cellákban</bookmark_value><bookmark_value>többsoros szöveg cellákban</bookmark_value>"
-#. lU9V
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8883,7 +7958,6 @@ msgctxt ""
msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Többsoros szöveg írása\">Többsoros szöveg írása</link></variable>"
-#. 6osm
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8893,7 +7967,6 @@ msgctxt ""
msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut only works directly in the cell, not in the input line."
msgstr "A <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter billentyűk megnyomását követően kézi sortörés kerül beszúrásra. A billentyűparancs csak közvetlenül a cellában működik, a bevitel sorban nem."
-#. `ld.
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8903,7 +7976,6 @@ msgctxt ""
msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
msgstr "Ha azt akarja, hogy a szöveg automatikusan törjön a cella jobb szélénél, tegye a következőket:"
-#. Tt5O
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8913,7 +7985,6 @@ msgctxt ""
msgid "Select all the cells where you want the text to break at the right border."
msgstr "Válassza ki azokat a cellákat, amelyekben a szöveget a cella jobb szélénél akarja törni."
-#. 0\aR
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8923,7 +7994,6 @@ msgctxt ""
msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
msgstr "A <emph>Formátum - Cellák - Igazítás</emph> lapon jelölje be az <emph>Automatikus szövegtördelés</emph> négyzetet, majd kattintson az OK gombra."
-#. hw37
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
@@ -8933,7 +8003,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Formátum - Cellák\">Formátum - Cellák</link>"
-#. (g`^
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -8942,7 +8011,6 @@ msgctxt ""
msgid "Calculating With Formulas"
msgstr "Számítás képletekkel"
-#. o~~`
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -8951,7 +8019,6 @@ msgctxt ""
msgid "<bookmark_value>formulas;calculating with</bookmark_value><bookmark_value>calculating; with formulas</bookmark_value><bookmark_value>examples;formula calculation</bookmark_value>"
msgstr "<bookmark_value>képletek;számolások</bookmark_value><bookmark_value>számolások;képletekkel</bookmark_value><bookmark_value>példák;számolás képletekkel</bookmark_value>"
-#. h}=a
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -8961,7 +8028,6 @@ msgctxt ""
msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Calculating With Formulas</link></variable>"
msgstr "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Számítás képletekkel\">Számítás képletekkel</link></variable>"
-#. P[42
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -8971,7 +8037,6 @@ msgctxt ""
msgid "All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions."
msgstr "Minden képlet egy egyenlőségjellel kezdődik. A képletek tartalmazhatnak számokat, szöveget, aritmetikai operátorokat, logikai operátorokat vagy függvényeket."
-#. c,2D
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -8981,7 +8046,6 @@ msgctxt ""
msgid "Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the \"Multiplication and Division before Addition and Subtraction\" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1."
msgstr "Fontos megjegyezni, hogy az alapvető aritmetikai operátorok (+, -, *, /) a képletekben a „szorzás és osztás az összeadás és kivonás előtt” szabály szerint használhatók. A =SZUM(A1:B1) helyett írhatja az =A1+B1 képletet is."
-#. JU0l
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -8991,7 +8055,6 @@ msgctxt ""
msgid "Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3."
msgstr "Zárójelek szintén használhatók. Az =(1+2)*3 és az =1+2*3 képlet eltérő eredményeket ad."
-#. ,9!M
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9001,7 +8064,6 @@ msgctxt ""
msgid "Here are a few examples of $[officename] Calc formulas:"
msgstr "Íme néhány példa $[officename] Calc-képletre:"
-#. CJAC
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9011,7 +8073,6 @@ msgctxt ""
msgid "=A1+10"
msgstr "=A1+10"
-#. 9{.I
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9021,7 +8082,6 @@ msgctxt ""
msgid "Displays the contents of cell A1 plus 10."
msgstr "Megjeleníti az A1-es cella tartalmát, de hozzáad még 10-et."
-#. FGwG
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9031,7 +8091,6 @@ msgctxt ""
msgid "=A1*16%"
msgstr "=A1*16%"
-#. f=16
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9041,7 +8100,6 @@ msgctxt ""
msgid "Displays 16% of the contents of A1."
msgstr "Megjeleníti az A1-es cella tartalmának 16%-át."
-#. 8+LO
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9051,7 +8109,6 @@ msgctxt ""
msgid "=A1 * A2"
msgstr "=A1 * A2"
-#. LY/*
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9061,7 +8118,6 @@ msgctxt ""
msgid "Displays the result of the multiplication of A1 and A2."
msgstr "Megjeleníti az A1-es és az A2-es cella szorzatát."
-#. n,zU
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9071,7 +8127,6 @@ msgctxt ""
msgid "=ROUND(A1;1)"
msgstr "=KEREK(A1;1)"
-#. 4!*X
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9081,7 +8136,6 @@ msgctxt ""
msgid "Displays the contents of cell A1 rounded to one decimal place."
msgstr "Az A1-es cella tartalmát egy tizedesjegyre kerekítve jeleníti meg."
-#. @c`[
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9091,7 +8145,6 @@ msgctxt ""
msgid "=EFFECTIVE(5%;12)"
msgstr "=EFFECTIVE(5%;12)"
-#. V+\d
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9101,7 +8154,6 @@ msgctxt ""
msgid "Calculates the effective interest for 5% annual nominal interest with 12 payments a year."
msgstr "Kiszámolja a reálkamatot 5%-os névleges éves kamattal és 12 havi részletfizetéssel."
-#. v%pt
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9111,7 +8163,6 @@ msgctxt ""
msgid "=B8-SUM(B10:B14)"
msgstr "=B8-SZUM(B10:B14)"
-#. `krZ
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9121,7 +8172,6 @@ msgctxt ""
msgid "Calculates B8 minus the sum of the cells B10 to B14."
msgstr "Összeadja a B10-től a B14-ig terjedő cellák értékeit, és ezt kivonja a B8-as cella értékéből."
-#. 0h$(
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9131,7 +8181,6 @@ msgctxt ""
msgid "=SUM(B8;SUM(B10:B14))"
msgstr "=SZUM(B8;SZUM(B10:B14))"
-#. A?6a
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9141,7 +8190,6 @@ msgctxt ""
msgid "Calculates the sum of cells B10 to B14 and adds the value to B8."
msgstr "Kiszámolja a B10-től a B14-ig terjedő cellák tartalmának összegét, és ezt hozzáadja a B8-as cella értékéhez."
-#. $]9$
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9151,7 +8199,6 @@ msgctxt ""
msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions."
msgstr "A képletekbe függvények is ágyazhatók, amint azt a példa is mutatja. Függvényeket függvényekbe is ágyazhat. A Függvénytündér segítséget nyújt az egymásba ágyazott függvényekkel kapcsolatban."
-#. $yk(
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9161,7 +8208,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Functions list</link>"
msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Függvénylista\">Függvénylista</link>"
-#. V5YR
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
@@ -9171,7 +8217,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Tündér: Függvények\">Függvénytündér</link>"
-#. @nGM
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9180,7 +8225,6 @@ msgctxt ""
msgid "Renaming Sheets"
msgstr "Munkalapok átnevezése"
-#. IEhr
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9189,7 +8233,6 @@ msgctxt ""
msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
msgstr "<bookmark_value>átnevezés;munkalapok</bookmark_value><bookmark_value>munkalapfülek;átnevezés</bookmark_value><bookmark_value>táblázatok;átnevezés</bookmark_value><bookmark_value>nevek; munkalapok</bookmark_value>"
-#. Ov5D
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9199,7 +8242,6 @@ msgctxt ""
msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Munkalapok átnevezése\">Munkalapok átnevezése</link></variable>"
-#. H!v?
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9209,7 +8251,6 @@ msgctxt ""
msgid "Click the name of the sheet that you want to change."
msgstr "Kattintson a módosítandó munkalap nevére."
-#. 0Ejg
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9219,7 +8260,6 @@ msgctxt ""
msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
msgstr "Nyissa meg a helyi menüt, majd válassza ki a <emph>Munkalap átnevezése</emph> lehetőséget. Megjelenik egy párbeszédablak, ahol egy új nevet adhat meg."
-#. R)A:
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9229,7 +8269,6 @@ msgctxt ""
msgid "Enter a new name for the sheet and click <emph>OK</emph>."
msgstr "Írja be a munkalap új nevét, majd kattintson az <emph>OK</emph> gombra."
-#. 3+UA
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9239,7 +8278,6 @@ msgctxt ""
msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
msgstr "Alternatív megoldásként tartsa lenyomva az <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> billentyűt, és kattintson egy munkalapnévre, majd írja be közvetlenül az új nevet."
-#. op73
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9248,7 +8286,6 @@ msgctxt ""
msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
msgstr "A munkalapnevek majdnem minden karaktert tartalmazhatnak. Néhány elnevezési korlátozás fennáll, ha a táblázatot Microsoft Excel formátumba kívánja menteni."
-#. k0/U
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9257,7 +8294,6 @@ msgctxt ""
msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
msgstr "Ha Microsoft Excel formátumba ment, a munkalapnevek nem tartalmazhatják a következő karaktereket:"
-#. q,8P
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9266,7 +8302,6 @@ msgctxt ""
msgid "colon :"
msgstr "kettőspont :"
-#. (4#c
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9275,7 +8310,6 @@ msgctxt ""
msgid "back slash \\"
msgstr "fordított osztásjel \\"
-#. F2BY
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9284,7 +8318,6 @@ msgctxt ""
msgid "forward slash /"
msgstr "osztásjel /"
-#. *|Oj
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9293,7 +8326,6 @@ msgctxt ""
msgid "question mark ?"
msgstr "kérdőjel ?"
-#. $bRX
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9302,7 +8334,6 @@ msgctxt ""
msgid "asterisk *"
msgstr "csillag *"
-#. 4,*p
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9311,7 +8342,6 @@ msgctxt ""
msgid "left square bracket ["
msgstr "bal szögletes zárójel ["
-#. !PDl
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9320,7 +8350,6 @@ msgctxt ""
msgid "right square bracket ]"
msgstr "jobb szögletes zárójel ]"
-#. `36K
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9329,7 +8358,6 @@ msgctxt ""
msgid "single quote ' as the first or last character of the name"
msgstr "egyszeres idézőjel a név első vagy utolsó karaktereként"
-#. @n`5
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9338,7 +8366,6 @@ msgctxt ""
msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
msgstr "Cellahivatkozásokban a munkalapnevet egyszeres idézőjelek (') közé kell tenni, ha a név alfanumerikus vagy az aláhúzás karaktertől eltérő karaktereket tartalmaz. A névben lévő egyszeres idézőjelet (aposztrófot) meg kell duplázni. Ha például az A1 cellára kíván hivatkozni a következő nevű munkalapon:"
-#. B1Qq
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9347,7 +8374,6 @@ msgctxt ""
msgid "This year's sheet"
msgstr "A '94-es év adatai"
-#. lD0Y
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9356,7 +8382,6 @@ msgctxt ""
msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
msgstr "A referenciát egyszeres idézőjelek közé kell tenni, a néven belüli egyszeres idézőjelet (aposztrófot) meg kell duplázni:"
-#. RGi5
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9365,7 +8390,6 @@ msgctxt ""
msgid "'This year''s sheet'.A1"
msgstr "'A ''94-es év adatai'.A1"
-#. rp,(
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
@@ -9375,7 +8399,6 @@ msgctxt ""
msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
msgstr "A munkalap neve független a táblázat nevétől. A táblázat nevét akkor adja meg, amikor először menti egy fájlba. A dokumentum 256 különböző munkalapot tartalmazhat, amelyek különböző nevűek lehetnek."
-#. 5u:;
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9384,7 +8407,6 @@ msgctxt ""
msgid "Selecting Pivot Table Output Ranges"
msgstr "Kimutatástábla kimeneti tartományainak kiválasztása"
-#. A`63
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9393,7 +8415,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
msgstr "<bookmark_value>kimutatástábla funkció; adatok felülírásának megelőzése</bookmark_value><bookmark_value>kimutatástáblák kimeneti tartományai</bookmark_value>"
-#. 8brQ
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9403,7 +8424,6 @@ msgctxt ""
msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Kimutatástábla kimeneti tartományainak kiválasztása\">Kimutatástábla kimeneti tartományainak kiválasztása</link></variable>"
-#. ]*,N
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9413,7 +8433,6 @@ msgctxt ""
msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
msgstr "Kattintson a <emph>Kimutatástábla</emph> párbeszédablak <emph>Részletek</emph> gombjára. A párbeszédablak kiterjesztésre kerül."
-#. @}@L
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9423,7 +8442,6 @@ msgctxt ""
msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
msgstr "Az <emph>Eredménye</emph> mezőben kijelölheti azt a névvel rendelkező tartományt, amelyben a kimutatástáblát létre kívánja hozni. Ha az eredménytartomány nem rendelkezik névvel, akkor adja meg a tartomány bal felső cellájának koordinátáit az <emph>Eredménye</emph> mezőtől jobbra elhelyezkedő mezőben. Ezenkívül a megfelelő cellákra rá is kattinthat ahhoz, hogy a megfelelő koordináták beírásra kerüljenek."
-#. kEE+
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9433,7 +8451,6 @@ msgctxt ""
msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
msgstr "Ha bejelöli az <emph>Üres sorok mellőzése</emph> jelölőnégyzetet, akkor azok figyelmen kívül maradnak a kimutatástábla létrehozásakor."
-#. !\#r
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
@@ -9443,7 +8460,6 @@ msgctxt ""
msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
msgstr "Ha a <emph>Kategóriák azonosítása</emph> jelölőnégyzet be van jelölve, akkor a kategóriák fejlécük alapján kerülnek azonosításra, illetve ennek megfelelően kerülnek hozzárendelésre a kimutatástábla létrehozásakor."
-#. W`Is
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9452,7 +8468,6 @@ msgctxt ""
msgid "Applying AutoFilter"
msgstr "Automatikus szűrő alkalmazása"
-#. F@,=
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9461,7 +8476,6 @@ msgctxt ""
msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
msgstr "<bookmark_value>szűrők, lásd még automatikus szűrő</bookmark_value><bookmark_value>automatikus szűrő;alkalmazás</bookmark_value><bookmark_value>munkalapok; szűrőértékek</bookmark_value><bookmark_value>számok; szűrőmunkalapok</bookmark_value><bookmark_value>oszlopok; automatikus szűrő</bookmark_value><bookmark_value>legördülő menük munkalaposzlopokban</bookmark_value><bookmark_value>adatbázis-tartományok; automatikus szűrő</bookmark_value>"
-#. _r1O
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9471,7 +8485,6 @@ msgctxt ""
msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Automatikus szűrő alkalmazása\">Automatikus szűrő alkalmazása</link></variable>"
-#. |(.$
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9481,7 +8494,6 @@ msgctxt ""
msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
msgstr "Az <emph>Automatikus szűrő</emph> egy kombinált listát helyez el egy vagy több adatoszlopon, amelyek segítségével kijelölheti a megjeleníteni kívánt rekordokat (sorokat)."
-#. l@b;
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9491,7 +8503,6 @@ msgctxt ""
msgid "Select the columns you want to use AutoFilter on."
msgstr "Jelölje ki azokat az oszlopokat, amelyeknél az automatikus szűrőt használni szeretné."
-#. cOY5
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9501,7 +8512,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
msgstr "Válassza az <emph>Adatok - Szűrő - Automatikus szűrő</emph> lehetőséget. A kombinált lista nyilai a kijelölt tartomány első sorában láthatók."
-#. 3AH7
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9511,7 +8521,6 @@ msgctxt ""
msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
msgstr "Az oszlop címsorában lévő legördülő nyílra kattintva indítsa el a szűrőt, majd válasszon ki egy elemet."
-#. i$~F
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9521,7 +8530,6 @@ msgctxt ""
msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
msgstr "Csak azon sorok kerülnek megjelenítésre, amelyek tartalma kielégíti a szűrési feltételeket. A többi sor ki lesz szűrve. A szűrt sorok jelenlétét onnan láthatja, hogy a sorszámozás nem folyamatos. A szűrőként használt oszlopot eltérő színű nyílgomb jelöli."
-#. lT0A
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9530,7 +8538,6 @@ msgctxt ""
msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
msgstr "Ha a szűrt adattartomány másik oszlopán további automatikus szűrőt használ, akkor a többi legördülő lista csak a szűrt adatokat jeleníti meg."
-#. cPGc
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9540,7 +8547,6 @@ msgctxt ""
msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
msgstr "Az összes rekord ismételt megjelenítéséhez válassza az Automatikus szűrő kombinált listájában a <emph>Minden</emph> lehetőséget. Ha az <emph>Általános szűrő</emph> lehetőséget választja, megjelenik az <item type=\"menuitem\">Általános szűrő</item> párbeszédablak, amelynek segítségével beállíthat egy általános szűrőt. Válassza az <item type=\"menuitem\">Első 10</item> bejegyzést, ha csupán a 10 legmagasabb értéket kívánja megjeleníteni."
-#. e;f9
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9550,7 +8556,6 @@ msgctxt ""
msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
msgstr "Az Automatikus szűrő leállításához jelölje ki újra az 1. lépésben kijelölt cellákat, és válassza ismét az <emph>Adatok - Szűrő - Automatikus szűrő</emph> lehetőséget."
-#. 8YOJ
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9559,7 +8564,6 @@ msgctxt ""
msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
msgstr "Ha különböző munkalapokhoz különböző automatikus szűrőket szeretne, először minden munkalapon meg kell határozni egy adatbázis-tartományt."
-#. !jC?
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9569,7 +8573,6 @@ msgctxt ""
msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
msgstr "Az aritmetikai függvények is figyelembe veszik a szűrők által elrejtett cellákat. Egy teljes oszlop összege például tartalmazni fogja a rejtett cellákban található értékeket is. Használja a <link href=\"text/scalc/01/04060106.xhp\" name=\"RÉSZÖSSZEG\">RÉSZÖSSZEG</link> függvényt, ha csak a szűrő alkalmazását követően látható cellákat kívánja figyelembe venni."
-#. ;@]p
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9579,7 +8582,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Adatok - Szűrő - Automatikus szűrő\">Adatok - Szűrő - Automatikus szűrő</link>"
-#. LO;/
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
@@ -9589,7 +8591,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"RÉSZÖSSZEG\">RÉSZÖSSZEG</link>"
-#. PSgz
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9598,7 +8599,6 @@ msgctxt ""
msgid "Referencing Cells by Drag-and-Drop"
msgstr "Hivatkozás cellákra „fogd és vidd” módszerrel"
-#. :vio
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9607,7 +8607,6 @@ msgctxt ""
msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
msgstr "<bookmark_value>fogd és vidd; hivatkozás cellákra</bookmark_value><bookmark_value>cellák, hivatkozás „fogd és vidd” módszerrel</bookmark_value><bookmark_value>hivatkozások;beszúrás „fogd és vidd” módszerrel</bookmark_value><bookmark_value>beszúrás;hivatkozások, „fogd és vidd” módszerrel</bookmark_value>"
-#. .q:#
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9617,7 +8616,6 @@ msgctxt ""
msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Hivatkozás cellákra „fogd és vidd” módszerrel\">Hivatkozás cellákra „fogd és vidd” módszerrel</link></variable>"
-#. A5:p
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9627,7 +8625,6 @@ msgctxt ""
msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
msgstr "A Navigátor segítségével hivatkozhat egy táblázatból egy másik dokumentum vagy ugyanazon dokumentum másik munkalapjának celláira. A cellák beszúrhatóak másolatként, hivatkozásként vagy hiperhivatkozásként. A beszúrt tartománynak az eredeti fájlban névvel kell rendelkeznie, mert csak így szúrható be a célfájlba."
-#. wCq-
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9637,7 +8634,6 @@ msgctxt ""
msgid "Open the document that contains the source cells."
msgstr "Nyissa meg a forráscellákat tartalmazó dokumentumot."
-#. m~[k
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9647,7 +8643,6 @@ msgctxt ""
msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
msgstr "Ha tartományként a forrástartományt kívánja beállítani, jelölje ki a cellákat, majd válassza a <emph>Beszúrás - Nevek - Megadás</emph> lehetőséget. Mentse a forrásdokumentumot, de ne zárja be."
-#. t|T_
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9657,7 +8652,6 @@ msgctxt ""
msgid "Open the sheet in which you want to insert something."
msgstr "Nyissa meg azt a munkalapot, amelybe be szeretne szúrni valamit."
-#. |PA+
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9667,7 +8661,6 @@ msgctxt ""
msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
msgstr "Nyissa meg a <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigátort\">Navigátort</link>. A Navigátor alsó mezőjében jelölje ki a forrásfájlt."
-#. o?TI
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9677,7 +8670,6 @@ msgctxt ""
msgid "In the Navigator, the source file object appears under \"Range names\"."
msgstr "A Navigátorban a forrásfájl-objektum a „Tartománynevek” alatt jelenik meg."
-#. m(d2
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9687,7 +8679,6 @@ msgctxt ""
msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
msgstr "A Navigátor <emph>Beszúrás módja</emph> ikonjának segítségével jelölje ki, hogy a hivatkozás hiperhivatkozás, hivatkozás vagy másolat legyen-e."
-#. VC_P
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9697,7 +8688,6 @@ msgctxt ""
msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
msgstr "Kattintson a Navigátor „Tartománynevek” pontja alatt található névre, majd húzza a nevet az aktuális munkalap azon cellájába, amelybe a hivatkozást be kívánja szúrni."
-#. UE2(
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
@@ -9707,7 +8697,6 @@ msgctxt ""
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr "Ez az eljárás akkor is használható, ha az aktuális munkalapba ugyanazon dokumentum másik munkalapjából szeretne egy tartományt beilleszteni. Ekkor válassza ki az aktív dokumentumot a fenti 4. lépésnek megfelelően."
-#. 5f`H
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9716,7 +8705,6 @@ msgctxt ""
msgid "Using Print Ranges on a Spreadsheet"
msgstr "Nyomtatási tartományok használata egy munkafüzeten"
-#. V~Gn
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9725,7 +8713,6 @@ msgctxt ""
msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
msgstr "<bookmark_value> exportálás;cellák</bookmark_value><bookmark_value>nyomtatás; cellák</bookmark_value><bookmark_value>tartományok;nyomtatási tartományok</bookmark_value><bookmark_value>PDF-exportálás;nyomtatási tartományok</bookmark_value><bookmark_value>cellatartományok; nyomtatás</bookmark_value><bookmark_value>cellák; nyomtatási tartományok</bookmark_value><bookmark_value>eltávolítás;lásd még törlés</bookmark_value><bookmark_value>meghatározás;nyomtatási tartományok</bookmark_value><bookmark_value>nyomtatandó oldalak kibővítése</bookmark_value><bookmark_value>hozzáadás;cellák a nyomtatási tartományhoz</bookmark_value><bookmark_value>eltávolítás;nyomtatási tartományok</bookmark_value>"
-#. ZV:z
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9734,7 +8721,6 @@ msgctxt ""
msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Nyomtatási tartományok megadása egy munkalapon</link> </variable>"
-#. A.OW
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9743,7 +8729,6 @@ msgctxt ""
msgid "You can define which range of cells on a spreadsheet to print."
msgstr "Megadhatja, hogy egy munkafüzet mely cellatartománya kerüljön kinyomtatásra."
-#. =GH~
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9752,7 +8737,6 @@ msgctxt ""
msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
msgstr "A megadott nyomtatási tartományba nem tartozó munkalapcellák nem lesznek kinyomtatva vagy exportálva. A megadott nyomtatási tartomány nélküli munkalapok nem lesznek kinyomtatva, illetve PDF-be exportálva, kivéve ha a dokumentum Excel formátumban van."
-#. nj@C
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9761,7 +8745,6 @@ msgctxt ""
msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
msgstr "Az Excel formátumban megnyitott fájloknál a nyomtatási területtel nem rendelkező munkalapok kinyomtatásra kerülnek. Ugyanez történik, ha egy Excel formátumú munkafüzetet PDF-fájlba exportál."
-#. :$Y(
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9770,7 +8753,6 @@ msgctxt ""
msgid "To Define a Print Range"
msgstr "Nyomtatási tartomány megadása"
-#. :HGX
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9779,7 +8761,6 @@ msgctxt ""
msgid "Select the cells that you want to print."
msgstr "Válassza ki a kinyomtatandó cellákat."
-#. __n]
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9788,7 +8769,6 @@ msgctxt ""
msgid "Choose <emph>Format - Print Ranges - Define</emph>."
msgstr "Válassza a <emph>Formátum - Nyomtatási tartomány - Meghatározás</emph> lehetőséget."
-#. v|UZ
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9797,7 +8777,6 @@ msgctxt ""
msgid "To Add Cells to a Print Range"
msgstr "Cellák hozzáadása nyomtatási tartományhoz"
-#. PpB9
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9806,7 +8785,6 @@ msgctxt ""
msgid "Select the cells that you want to add to the existing print range."
msgstr "Válassza ki a meglévő oldaltartományhoz hozzáadni kívánt cellákat."
-#. YwRN
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9815,7 +8793,6 @@ msgctxt ""
msgid "Choose <emph>Format - Print Ranges - Add</emph>."
msgstr "Válassza a <emph>Formátum - Nyomtatási tartomány - Hozzáadás</emph> lehetőséget."
-#. G,D4
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9824,7 +8801,6 @@ msgctxt ""
msgid "To Clear a Print Range"
msgstr "Nyomtatási tartomány törlése"
-#. xSD#
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9833,7 +8809,6 @@ msgctxt ""
msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
msgstr "Válassza a <emph>Formátum - Nyomtatási tartomány - Eltávolítás</emph> lehetőséget."
-#. )nU|
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9842,7 +8817,6 @@ msgctxt ""
msgid "Using the Page Break Preview to Edit Print Ranges"
msgstr "Az Oldaltörés előnézete funkció használata a nyomtatási tartomány szerkesztéséhez"
-#. *.9W
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9851,7 +8825,6 @@ msgctxt ""
msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
msgstr "Az <emph>Oldaltörés előnézete</emph> nézetben a nyomtatási tartományok és az oldaltörések kék kerettel vannak megjelölve, és középen egy szürke oldalszámot tartalmaznak. A nem nyomtatandó területek háttere szürke."
-#. 6}/_
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9861,7 +8834,6 @@ msgctxt ""
msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
msgstr "Új oldaltörési terület meghatározásához húzza a szegélyt az új helyre. Új oldaltörési terület megadásakor az automatikus oldaltörést kézi oldaltörés váltja."
-#. 0[7u
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9870,7 +8842,6 @@ msgctxt ""
msgid "To View and Edit Print Ranges"
msgstr "Nyomtatási tartományok megtekintése és szerkesztése"
-#. k/C\
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9879,7 +8850,6 @@ msgctxt ""
msgid "Choose <emph>View - Page Break Preview</emph>."
msgstr "Válassza a <emph>Nézet - Oldaltörés előnézete</emph> lehetőséget."
-#. BKVZ
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9888,7 +8858,6 @@ msgctxt ""
msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
msgstr "Az <emph>Oldaltörés előnézete</emph> alapértelmezett nagyítási tényezőjének módosításához kattintson duplán az <emph>Állapotsoron</emph> lévő százalékértékre, és válasszon egy új nagyítási tényezőt."
-#. .=Xu
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9897,7 +8866,6 @@ msgctxt ""
msgid "Edit the print range."
msgstr "Szerkessze a nyomtatási tartományt."
-#. IZi\
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9906,7 +8874,6 @@ msgctxt ""
msgid "To change the size of a print range, drag a border of the range to a new location."
msgstr "A nyomtatási tartomány méretének módosításához húzza a tartomány egyik szegélyét az új helyre."
-#. Emk{
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9916,7 +8883,6 @@ msgctxt ""
msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
msgstr "A nyomtatási tartományban lévő oldaltörés törléséhez húzza az oldaltörés szegélyét a nyomtatási tartományon kívülre."
-#. 0ObV
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9925,7 +8891,6 @@ msgctxt ""
msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
msgstr "Nyomtatási tartomány törléséhez húzza a tartomány egyik szegélyét a szemben lévő szegélyre."
-#. ~t([
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9934,7 +8899,6 @@ msgctxt ""
msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
msgstr "Az <emph>Oldaltörés előnézete</emph> módból való kilépéshez válassza a <emph>Nézet - Normál</emph> lehetőséget."
-#. (=o;
#: printranges.xhp
msgctxt ""
"printranges.xhp\n"
@@ -9943,7 +8907,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
msgstr "<link href=\"text/scalc/01/05080300.xhp\">Nyomtatási tartományok szerkesztése</link>"
-#. 3]jG
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -9952,7 +8915,6 @@ msgctxt ""
msgid "User Defined Borders in Cells"
msgstr "Cellák szegélyeinek egyéni megadása"
-#. dJ@{
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -9961,7 +8923,6 @@ msgctxt ""
msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
msgstr "<bookmark_value>cellák;szegélyek</bookmark_value><bookmark_value>vonalbeállítások;cellák</bookmark_value><bookmark_value>szegélyek;cellák</bookmark_value>"
-#. i!ki
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -9970,7 +8931,6 @@ msgctxt ""
msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
msgstr "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">Cellák szegélyeinek egyéni megadása</link></variable>"
-#. );-^
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -9979,7 +8939,6 @@ msgctxt ""
msgid "You can apply a variety of different lines to selected cells."
msgstr "A kijelölt cellákra számos különféle vonalstílus alkalmazható."
-#. {*uz
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -9988,7 +8947,6 @@ msgctxt ""
msgid "Select the cell or a block of cells."
msgstr "Jelöljön ki egy cellát vagy egy cellablokkot."
-#. Z3]f
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -9997,7 +8955,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
msgstr "Válassza a <item type=\"menuitem\">Formátum - Cellák</item> menüparancsot."
-#. sczm
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10006,7 +8963,6 @@ msgctxt ""
msgid "In the dialog, click the <emph>Borders</emph> tab."
msgstr "A párbeszédablakban kattintson a <emph>Szegélyek</emph> lapra."
-#. D08$
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10015,7 +8971,6 @@ msgctxt ""
msgid "Choose the border options you want to apply and click OK."
msgstr "Válassza ki a használni kívánt szegélybeállításokat, majd kattintson az OK gombra."
-#. PVe1
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10024,7 +8979,6 @@ msgctxt ""
msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
msgstr "A <emph>Szegély elrendezése</emph> terület többféle szegélystílus alkalmazására ad lehetőséget."
-#. ?}wp
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10033,7 +8987,6 @@ msgctxt ""
msgid "Selection of cells"
msgstr "Cellák kijelölése"
-#. fnR?
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10042,7 +8995,6 @@ msgctxt ""
msgid "Depending on the selection of cells, the area looks different."
msgstr "A cellák kijelölésétől függően a terület másképp jelenik meg."
-#. F9|f
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10051,7 +9003,6 @@ msgctxt ""
msgid "Selection"
msgstr "Kijelölés"
-#. 7?eV
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10060,7 +9011,6 @@ msgctxt ""
msgid "Line arrangement area"
msgstr "Szegély elrendezése terület"
-#. .0]a
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10069,7 +9019,6 @@ msgctxt ""
msgid "One cell"
msgstr "Egy cella"
-#. Vl@=
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10078,7 +9027,6 @@ msgctxt ""
msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">szegélyek egy cella kijelölése esetén</alt></image>"
-#. ZfbY
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10087,7 +9035,6 @@ msgctxt ""
msgid "Cells in a column"
msgstr "Cellák egy oszlopban"
-#. 0/}/
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10096,7 +9043,6 @@ msgctxt ""
msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">szegélyek egy oszlop kijelölése esetén</alt></image>"
-#. jg!g
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10105,7 +9051,6 @@ msgctxt ""
msgid "Cells in a row"
msgstr "Cellák egy sorban"
-#. -h2D
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10114,7 +9059,6 @@ msgctxt ""
msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">szegélyek egy sor kijelölése esetén</alt></image>"
-#. N0v2
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10123,7 +9067,6 @@ msgctxt ""
msgid "Cells in a block of 2x2 or more"
msgstr "Cellák egy 2×2-es vagy nagyobb blokkban"
-#. q6X(
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10132,7 +9075,6 @@ msgctxt ""
msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">szegélyek egy blokk kijelölése esetén</alt></image>"
-#. [_p:
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10141,7 +9083,6 @@ msgctxt ""
msgid "You cannot apply borders to multiple selections."
msgstr "Többszörös kijelölésre nem alkalmazhatók a szegélyek."
-#. YnbN
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10150,7 +9091,6 @@ msgctxt ""
msgid "Default Settings"
msgstr "Alapbeállítások"
-#. 1|q]
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10159,7 +9099,6 @@ msgctxt ""
msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
msgstr "Az <emph>Előre definiált</emph> ikonokra kattintva állíthatja be vagy vissza a szegélyeket."
-#. 8N-u
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10168,7 +9107,6 @@ msgctxt ""
msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
msgstr "Az ikon belsejében a vékony szürke vonalak jelzik, hogy az a szegély visszaállítva, illetve törölve lesz."
-#. YSS[
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10177,7 +9115,6 @@ msgctxt ""
msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
msgstr "Az ikon belsejében a sötét vonalak jelzik azokat a vonalakat, amelyek a kijelölt vonalstílussal és színnel meg lesznek húzva."
-#. 2sEO
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10186,7 +9123,6 @@ msgctxt ""
msgid "The thick gray lines inside an icon show the lines that will not be changed."
msgstr "Az ikon belsejében a vastag szürke vonalak a változatlanul maradó vonalakat jelzik."
-#. oRF;
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10195,7 +9131,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. D$d4
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10204,7 +9139,6 @@ msgctxt ""
msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
msgstr "Jelöljön ki egy 8×8-as cellablokkot, majd válassza a <emph>Formátum - Cellák - Szegélyek</emph> lehetőséget."
-#. bl=]
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10213,7 +9147,6 @@ msgctxt ""
msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">előre definiált szegélyek ikonsora a Szegélyek lapon</alt></image>"
-#. knUF
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10222,7 +9155,6 @@ msgctxt ""
msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
msgstr "Kattintson a bal oldali ikonra az összes vonal törléséhez. Ez eltávolítja az összes külső szegélyt, valamint a belső és az átlós vonalakat."
-#. jP:y
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10231,7 +9163,6 @@ msgctxt ""
msgid "Click the second icon from the left to set an outer border and to remove all other lines."
msgstr "Kattintson a balról második ikonra a külső szegély beállításához, és az összes többi vonal törléséhez."
-#. V#G|
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10240,7 +9171,6 @@ msgctxt ""
msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
msgstr "Kattintson a jobb szélső ikonra a külső szegély beállításához. A belső vonalak nem változnak meg, kivéve az átlósakat, amelyek törlődnek."
-#. Z}*J
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10249,7 +9179,6 @@ msgctxt ""
msgid "Now you can continue to see which lines the other icons will set or remove."
msgstr "Innentől kezdve egyedül is felfedezheti, hogy az egyes ikonok melyik vonalakat húzzák meg, illetve törlik."
-#. |u.g
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10258,7 +9187,6 @@ msgctxt ""
msgid "User Defined Settings"
msgstr "Felhasználó által megadott beállítások"
-#. v.sT
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10267,7 +9195,6 @@ msgctxt ""
msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
msgstr "Az <emph>Egyéni</emph> területen kattintásokkal állíthatók be egyesével a vonalak. Az előnézetben a vonalak három állapotban lehetnek."
-#. 3Vj]
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10276,7 +9203,6 @@ msgctxt ""
msgid "Repeatedly click an edge or a corner to switch through the three different states."
msgstr "Egy élre vagy sarokra való ismételt kattintással válthat át a három különböző állapot között."
-#. edJ1
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10285,7 +9211,6 @@ msgctxt ""
msgid "Line types"
msgstr "Vonaltípusok"
-#. Efm;
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10294,7 +9219,6 @@ msgctxt ""
msgid "Image"
msgstr "Kép"
-#. #P6)
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10303,7 +9227,6 @@ msgctxt ""
msgid "Meaning"
msgstr "Jelentés"
-#. #7l6
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10312,7 +9235,6 @@ msgctxt ""
msgid "A black line"
msgstr "Fekete vonal"
-#. r-D[
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10321,7 +9243,6 @@ msgctxt ""
msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">folytonos vonal az egyéni szegélyhez</alt></image>"
-#. `^$5
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10330,7 +9251,6 @@ msgctxt ""
msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
msgstr "A fekete vonal beállítja a kijelölt cellákra a megfelelő vonalat. A szaggatott vonal akkor jelenik meg, ha a 0,05 pontos vonalstílus van kijelölve. Dupla vonalak jelennek meg a duplavonalas stílus kijelölésekor."
-#. ,eTU
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10339,7 +9259,6 @@ msgctxt ""
msgid "A gray line"
msgstr "Szürke vonal"
-#. )Y$w
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10348,7 +9267,6 @@ msgctxt ""
msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">szürke vonal az egyéni szegélyhez</alt></image>"
-#. }k_[
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10357,7 +9275,6 @@ msgctxt ""
msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
msgstr "A szürke vonal azt jelenti, hogy a kijelölt cellák megfelelő vonala nem fog megváltozni. Se új vonal nem lesz húzva, se egy meglévő eltávolítva ebben a pozícióban."
-#. =4n6
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10366,7 +9283,6 @@ msgctxt ""
msgid "A white line"
msgstr "Fehér vonal"
-#. lQ@5
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10375,7 +9291,6 @@ msgctxt ""
msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">fehér vonal az egyéni szegélyhez</alt></image>"
-#. R5Rk
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10384,7 +9299,6 @@ msgctxt ""
msgid "A white line is shown when the corresponding line of the selected cells will be removed."
msgstr "A fehér vonal azt jelenti, hogy a kijelölt cellák megfelelő vonala törölve lesz."
-#. /8.A
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10393,7 +9307,6 @@ msgctxt ""
msgid "Examples"
msgstr "Példák"
-#. tJ+f
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10402,7 +9315,6 @@ msgctxt ""
msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
msgstr "Jelöljön ki egyetlen cellát, majd válassza a <emph>Formátum - Cellák - Szegélyek</emph> lehetőséget."
-#. Q=L/
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10411,7 +9323,6 @@ msgctxt ""
msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
msgstr "Kattintson az alsó élre, hogy beállítson egy nagyon vékony alsó szegélyt. Minden más vonal törölve lesz a cellából."
-#. S1*o
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10420,7 +9331,6 @@ msgctxt ""
msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">vékony alsó szegély beállítása</alt></image>"
-#. l1.+
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10429,7 +9339,6 @@ msgctxt ""
msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
msgstr "Válasszon egy vastagabb vonalstílust, majd kattintson az alsó szegélyre. Ezzel beállítja a vastagabb vonalat alsó szegélyként."
-#. WKg;
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10438,7 +9347,6 @@ msgctxt ""
msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">vastag vonal beállítása szegélyként</alt></image>"
-#. !;*k
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10447,7 +9355,6 @@ msgctxt ""
msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
msgstr "A balról második <emph>Előre definiált</emph> ikon segítségével állítsa be mind a négy szegélyt. Majd addig kattintgasson az alsó szegélyre, amíg fehér vonal nem lesz ott. Ezzel eltávolította az alsó szegélyt."
-#. LmB,
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10456,7 +9363,6 @@ msgctxt ""
msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">alsó szegély eltávolítása</alt></image>"
-#. Pm|5
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10465,7 +9371,6 @@ msgctxt ""
msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
msgstr "Többféle vonaltípust és vonalstílust kombinálhat. Az utolsó képen azt mutatjuk be, hogyan állíthat be vastag külső szegélyeket (vastag fekete vonalak), miközben a cellán belüli átlós vonalak (szürke vonalak) nem változnak."
-#. c+C.
#: borders.xhp
msgctxt ""
"borders.xhp\n"
@@ -10474,7 +9379,6 @@ msgctxt ""
msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">összetett példa cellaszegélyekre</alt></image>"
-#. #z5!
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10483,7 +9387,6 @@ msgctxt ""
msgid "User-Defined Functions"
msgstr "Egyéni függvények"
-#. ,v$M
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10492,7 +9395,6 @@ msgctxt ""
msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
msgstr "<bookmark_value>függvények; egyéni</bookmark_value><bookmark_value>egyéni függvények</bookmark_value><bookmark_value>Basic IDE az egyéni függvényekhez</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programozás;függvények</bookmark_value>"
-#. 535P
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10502,7 +9404,6 @@ msgctxt ""
msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Függvények kézi megadása\">Felhasználói függvények</link></variable>"
-#. `574
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10512,7 +9413,6 @@ msgctxt ""
msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
msgstr "A $[officename] Calc programban felhasználói függvényeket az alábbi módokon alkalmazhat:"
-#. n;F`
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10522,7 +9422,6 @@ msgctxt ""
msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
msgstr "Saját függvényeket a Basic-IDE segítségével hozhat létre. Ez a módszer alapvető programozási ismereteket igényel."
-#. .m2m
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10532,7 +9431,6 @@ msgctxt ""
msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Kiegészítőket\">Kiegészítőket</link> is programozhat. A módszer használata haladó szintű programozási ismereteket igényel."
-#. (RPm
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10542,7 +9440,6 @@ msgctxt ""
msgid "Defining A Function Using %PRODUCTNAME Basic"
msgstr "Függvény meghatározása a %PRODUCTNAME Basic segítségével"
-#. =K0V
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10552,7 +9449,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
msgstr "Válassza az <item type=\"menuitem\">Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</item> lehetőséget."
-#. -kgz
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10562,7 +9458,6 @@ msgctxt ""
msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
msgstr "Kattintson a <emph>Szerkesztés</emph> gombra. Megjelenik a Basic IDE."
-#. lZK[
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10572,7 +9467,6 @@ msgctxt ""
msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
msgstr "Adja meg a függvénykódot. Ebben a példában meghatározunk egy <item type=\"literal\">VOL(a, b, c)</item> függvényt, amely kiszámolja egy téglatest térfogatát a téglatest három oldalhosszúsága (<item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>) alapján:"
-#. mjOf
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10582,7 +9476,6 @@ msgctxt ""
msgid "Close the Basic-IDE window."
msgstr "Zárja be a Basic-IDE ablakot."
-#. O,gY
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10592,7 +9485,6 @@ msgctxt ""
msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
msgstr "A függvény automatikusan mentésre kerül az alapértelmezett modulban, és elérhetővé válik. Ha a függvényt egy olyan Calc-dokumentumban alkalmazza, amely egy másik számítógépen kerül felhasználásra, akkor a függvényt átmásolhatja a Calc-dokumentumba, a következő részben leírt módon."
-#. n*ba
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10602,7 +9494,6 @@ msgctxt ""
msgid "Copying a Function To a Document"
msgstr "Függvény másolása dokumentumba"
-#. +.UP
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10612,7 +9503,6 @@ msgctxt ""
msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
msgstr "A „Függvény meghatározása a %PRODUCTNAME Basic segítségével” című rész 2. lépésében a <emph>Makró</emph> párbeszédablakban a <emph>Szerkesztés</emph> gombra kattintott. Alapértelmezés szerint a <emph>Makró forrása</emph> mezőben a <emph>Saját makrók - Standard - Module1</emph> modul van kijelölve. A <emph>Standard</emph> programkönyvtár helyileg a felhasználói könyvtárban található."
-#. #1GY
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10622,7 +9512,6 @@ msgctxt ""
msgid "If you want to copy the user-defined function to a Calc document:"
msgstr "Ha át szeretné másolni az egyéni függvényét egy Calc-dokumentumba, tegye a következőket:"
-#. 5f3R
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10632,7 +9521,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
msgstr "Válassza az <item type=\"menuitem\">Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</item> lehetőséget."
-#. LX7L
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10642,7 +9530,6 @@ msgctxt ""
msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
msgstr "A <emph>Makró forrása</emph> mezőben jelölje ki a <emph>Saját makrók - Standard - Module1</emph> lehetőséget, és kattintson a <emph>Szerkesztés</emph> gombra."
-#. Ev*/
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10652,7 +9539,6 @@ msgctxt ""
msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
msgstr "A Basic-IDE környezetben jelölje ki az egyéni függvény forrását, majd másolja azt a vágólapra."
-#. P.m]
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10661,7 +9547,6 @@ msgctxt ""
msgid "Close the Basic-IDE."
msgstr "Zárja be a Basic-IDE környezetet."
-#. ]V@0
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10671,7 +9556,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
msgstr "Válassza az <item type=\"menuitem\">Eszközök - Makrók - Makrók rendezése - %PRODUCTNAME Basic</item> lehetőséget."
-#. 3VOw
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10681,7 +9565,6 @@ msgctxt ""
msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
msgstr "A <emph>Makró forrása</emph> mezőben válassza a <emph>(Calc-dokumentum neve) - Standard - Module1</emph> lehetőséget. Kattintson a <emph>Szerkesztés</emph> lehetőségre."
-#. NNdk
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10691,7 +9574,6 @@ msgctxt ""
msgid "Paste the clipboard contents in the Basic-IDE of the document."
msgstr "Illessze be a vágólap tartalmát a dokumentum Basic-IDE felületére."
-#. sSk=
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10701,7 +9583,6 @@ msgctxt ""
msgid "Applying a User-defined Function in $[officename] Calc"
msgstr "Egyéni függvény alkalmazása a $[officename] Calc programban"
-#. qFDT
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10711,7 +9592,6 @@ msgctxt ""
msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
msgstr "Miután a <item type=\"literal\">VOL(a; b; c)</item> függvényt meghatározta a Basic-IDE környezetben, a függvényt a $[officename] Calc beépített függvényeivel teljesen egyező módon alkalmazhatja."
-#. Tn@(
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10721,7 +9601,6 @@ msgctxt ""
msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
msgstr "Nyisson meg egy Calc-dokumentumot, majd adjon meg számokat az <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> függvényparaméterekhez az A1, B1 és C1 cellákban."
-#. h{FH
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10731,7 +9610,6 @@ msgctxt ""
msgid "Set the cursor in another cell and enter the following:"
msgstr "Vigye a kurzort egy másik cellába, és írja be a következőt:"
-#. ?sZ7
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10741,7 +9619,6 @@ msgctxt ""
msgid "=VOL(A1;B1;C1)"
msgstr "=VOL(A1;B1;C1)"
-#. fA[n
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
@@ -10751,7 +9628,6 @@ msgctxt ""
msgid "The function is evaluated and you will see the result in the selected cell."
msgstr "A függvény kiértékelésre kerül, és az eredmény a kijelölt cellában láthatóvá válik."
-#. \Rms
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10760,7 +9636,6 @@ msgctxt ""
msgid "Highlighting Negative Numbers"
msgstr "Negatív számok kiemelése"
-#. yBo.
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10769,7 +9644,6 @@ msgctxt ""
msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
msgstr "<bookmark_value>negatív számok</bookmark_value><bookmark_value>számok; negatív számok kiemelése</bookmark_value><bookmark_value>kiemelés;negatív számok</bookmark_value><bookmark_value>színek;negatív számok</bookmark_value><bookmark_value>számformátumok;színek a negatív számokhoz</bookmark_value>"
-#. +q/_
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10779,7 +9653,6 @@ msgctxt ""
msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Negatív számok kiemelése\">Negatív számok kiemelése</link></variable>"
-#. w7d|
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10789,7 +9662,6 @@ msgctxt ""
msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
msgstr "Olyan számformátumot is rendelhet a cellákhoz, amely pirossal kiemeli a negatív számokat. Ezen kívül megadhat saját számformátumot is, amelyben a negatív számok más színnel kerülnek kiemelésre."
-#. Ao;K
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10799,7 +9671,6 @@ msgctxt ""
msgid "Select the cells and choose <emph>Format - Cells</emph>."
msgstr "Jelölje ki a cellákat, majd válassza a <emph>Formátum - Cellák</emph> parancsot."
-#. #d0q
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10809,7 +9680,6 @@ msgctxt ""
msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
msgstr "A <emph>Számok</emph> lapon válasszon egy számformátumot, majd jelölje be a <emph>Negatív számok pirossal</emph> jelölőnégyzetet. Kattintson az <emph>OK</emph> gombra."
-#. K^Av
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
@@ -10819,7 +9689,6 @@ msgctxt ""
msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
msgstr "A cella számformátuma két részből tevődik össze. A pozitív számok, illetve a nulla számformátuma a pontosvessző előtt, a negatív számok formátuma pedig a pontosvesszőt követően van meghatározva. A kódot (RED) a <item type=\"menuitem\">Formátumkód</item> alatt módosíthatja. Például a RED helyett adjon meg <item type=\"literal\">YELLOW</item> értéket. Ha az új kód a <item type=\"menuitem\">Hozzáadás</item> ikonra kattintva megjelenik a listában, akkor a bejegyzés érvényes."
-#. Sg.s
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10828,7 +9697,6 @@ msgctxt ""
msgid "Printing Sheets in Landscape Format"
msgstr "Munkalapok nyomtatása fekvő formátumban"
-#. ]#*j
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10837,7 +9705,6 @@ msgctxt ""
msgid "<bookmark_value>printing; sheet selections</bookmark_value> <bookmark_value>sheets; printing in landscape</bookmark_value> <bookmark_value>printing; landscape</bookmark_value> <bookmark_value>landscape printing</bookmark_value>"
msgstr "<bookmark_value>nyomtatás; munkalap kiválasztása</bookmark_value> <bookmark_value>munkalapok; fekvő nyomtatás</bookmark_value> <bookmark_value>nyomtatás; fekvő</bookmark_value> <bookmark_value>fekvő nyomtatás</bookmark_value>"
-#. y1TX
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10847,7 +9714,6 @@ msgctxt ""
msgid "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Printing Sheets in Landscape Format\">Printing Sheets in Landscape Format</link></variable>"
msgstr "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Munkalapok nyomtatása fekvő formátumban\">Munkalapok nyomtatása fekvő formátumban</link></variable>"
-#. :a,9
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10857,7 +9723,6 @@ msgctxt ""
msgid "In order to print a sheet you have a number of interactive options available under <emph>View - Page Break Preview</emph>. Drag the delimiter lines to define the range of printed cells on each page."
msgstr "Egy munkalap nyomtatásához számos interaktív lehetőség áll rendelkezésére a <emph>Nézet - Oldaltörés előnézete</emph> pontban. Az egyes oldalakon nyomtatásra kerülő cellatartományok meghatározásához húzza el az elválasztó vonalakat."
-#. Uj[F
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10867,7 +9732,6 @@ msgctxt ""
msgid "To print in landscape format, proceed as follows:"
msgstr "Fekvő formátumú nyomtatáshoz tegye a következőket:"
-#. q91m
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10877,7 +9741,6 @@ msgctxt ""
msgid "Go to the sheet to be printed."
msgstr "Menjen a nyomtatandó oldalra."
-#. /Z8n
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10887,7 +9750,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page</emph>."
msgstr "Válassza a <emph>Formátum - Oldal</emph> menüparancsot."
-#. .007
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10897,7 +9759,6 @@ msgctxt ""
msgid "The command is not visible if the sheet has been opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> bar."
msgstr "A parancs nem látható, ha a munkalap írásvédetten került megnyitásra. Ebben az esetben a <emph>Standard</emph> eszköztáron kattintson a <emph>Fájl szerkesztése</emph> ikonra."
-#. O3Yu
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10907,7 +9768,6 @@ msgctxt ""
msgid "Select the <emph>Page</emph> tab. Select the <emph>Landscape</emph> paper format and click OK."
msgstr "Kattintson az <emph>Oldal</emph> fülre. Jelölje ki a <emph>Fekvő</emph> papírformátumot, majd kattintson az OK gombra."
-#. CD]X
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10917,7 +9777,6 @@ msgctxt ""
msgid "Choose <emph>File - Print</emph>. You will see the <emph>Print</emph> dialog."
msgstr "Válassza a <emph>Fájl - Nyomtatás</emph> lehetőséget. Megjelenik a <emph>Nyomtatás</emph> párbeszédablak."
-#. ,RC-
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10927,7 +9786,6 @@ msgctxt ""
msgid "Depending on the printer driver and the operating system, it may be necessary to click the <emph>Properties</emph> button and to change your printer to landscape format there."
msgstr "A nyomtató-illesztőprogramtól, illetve az operációs rendszertől függően lehet, hogy a <emph>Tulajdonságok</emph> gombra kell kattintania a nyomtató elrendezésének fekvő helyzetbe állításához."
-#. 2!4D
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10937,7 +9795,6 @@ msgctxt ""
msgid "In the <emph>Print </emph>dialog in the <emph>General</emph> tab page, select the contents to be printed:"
msgstr "A <emph>Nyomtatás</emph> párbeszédablak <emph>Általános</emph> lapján adja meg a kinyomtatni kívánt tartalmakat:"
-#. CJ~K
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10947,7 +9804,6 @@ msgctxt ""
msgid "<emph>All sheets</emph> - All sheets will be printed."
msgstr "<emph>Minden munkalap</emph> - Minden munkalap ki lesz nyomtatva."
-#. ?]v)
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10957,7 +9813,6 @@ msgctxt ""
msgid "<emph>Selected sheets</emph> - Only the selected sheets will be printed. All sheets whose names (at the bottom on the sheet tabs) are selected will be printed. By pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while clicking a sheet name you can change this selection."
msgstr "<emph>Kijelölt munkalapok</emph> - Csak a kijelölt munkalapok lesznek kinyomtatva. Minden munkalap, amelynek a nevét (a munkalap alján lévő fülön) kiválasztotta, ki lesz nyomtatva. Módosíthatja a kijelölést, ha a munkalap nevére kattintás közben lenyomva tartja a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt."
-#. !F4+
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10966,7 +9821,6 @@ msgctxt ""
msgid "<emph>Selected cells</emph> - All selected cells are printed."
msgstr "<emph>Kijelölt cellák</emph> - Az összes kijelölt cella nyomtatásra kerül."
-#. igeg
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10975,7 +9829,6 @@ msgctxt ""
msgid "From all the paper pages that result from the above selection, you can select the range of paper pages to be printed:"
msgstr "A fenti kijelölés eredményeként létrejött összes oldal közül kiválaszthatja a nyomtatandó oldaltartományt:"
-#. ghG`
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10984,7 +9837,6 @@ msgctxt ""
msgid "<emph>All pages</emph> - Print all resulting pages."
msgstr "<emph>Összes oldal</emph> - Az összes kapott oldal nyomtatása."
-#. LArX
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -10994,7 +9846,6 @@ msgctxt ""
msgid "<emph>Pages</emph> - Enter the pages to be printed. The pages will also be numbered from the first sheet onwards. If you see in the Page Break Preview that Sheet1 will be printed on 4 pages and you want to print the first two pages of Sheet2, enter 5-6 here."
msgstr "<emph>Oldalak</emph> - Adja meg a kinyomtatni kívánt oldalakat. Az oldalak is az első munkalaptól kezdve kerülnek számozásra. Ha az Oldaltörések előnézete szerint a Munkalap1 4 oldalra kerülne kinyomtatásra, de a Munkalap2 első két oldalát kívánja kinyomtatni, akkor itt az 5-6 értéket adja meg."
-#. Sn#[
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -11004,7 +9855,6 @@ msgctxt ""
msgid "If under <emph>Format - Print ranges</emph> you have defined one or more print ranges, only the contents of these print ranges will be printed."
msgstr "Ha a <emph>Formátum - Nyomtatási tartomány</emph> párbeszédablakban megadott egy vagy több nyomtatási tartományt, akkor csak ezen nyomtatási tartományok tartalma kerül kinyomtatásra."
-#. $15=
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -11014,7 +9864,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Nézet - Oldaltörés előnézete\">Nézet - Oldaltörés előnézete</link>"
-#. aCNV
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
@@ -11023,7 +9872,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link>"
msgstr "<link href=\"text/scalc/guide/printranges.xhp\">Nyomtatási tartományok megadása egy munkalapon</link>"
-#. OrSd
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11032,7 +9880,6 @@ msgctxt ""
msgid "Calculating With Dates and Times"
msgstr "Számolás dátumokkal és idővel"
-#. ~Kc{
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11041,7 +9888,6 @@ msgctxt ""
msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
msgstr "<bookmark_value>dátumok; cellákban</bookmark_value><bookmark_value>idők; cellákban</bookmark_value><bookmark_value>cellák;dátum- és időformátumok</bookmark_value><bookmark_value>aktuális dátum- és időértékek</bookmark_value>"
-#. 8)fp
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11051,7 +9897,6 @@ msgctxt ""
msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Számítás dátumokkal és időkkel\">Számítás dátumokkal és időkkel</link></variable>"
-#. Y`Y+
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11061,7 +9906,6 @@ msgctxt ""
msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
msgstr "A $[officename] Calc programban számításokat végezhet az aktuális dátum- és időértékekkel. Ha például meg kívánja határozni pontos életkorát másodpercekben vagy órákban, akkor tegye a következőket:"
-#. n#Ht
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11071,7 +9915,6 @@ msgctxt ""
msgid "In a spreadsheet, enter your birthday in cell A1."
msgstr "Egy táblázat A1-es cellájába írja be a születési dátumát."
-#. $HkE
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11081,7 +9924,6 @@ msgctxt ""
msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
msgstr "Az A3 cellába írja be a következő képletet: <item type=\"literal\">=MOST()-A1</item>."
-#. FB*~
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11091,7 +9933,6 @@ msgctxt ""
msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
msgstr "Az <item type=\"keycode\">Enter</item> billentyű megnyomását követően dátumformátumban jelenik meg az eredmény. Mivel az eredmény a két dátum között eltelt időt napban adja meg, az A3 cellát szám formátumúra kell állítani."
-#. raXz
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11101,7 +9942,6 @@ msgctxt ""
msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
msgstr "Vigye a kurzort az A3 cellába, kattintson a jobb egérgombbal a helyi menü megnyitásához, majd válassza a <emph>Cellák formázása</emph> lehetőséget."
-#. ;{nm
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11111,7 +9951,6 @@ msgctxt ""
msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
msgstr "Megjelenik a <item type=\"menuitem\">Cellák formázása</item> párbeszédablak. A <item type=\"menuitem\">Számok</item> lapon a <item type=\"menuitem\">Számok</item> kategória már kijelölve jelenik meg. A formátum „Általános”, aminek eredményeképpen a dátumbejegyzéseket tartalmazó számítások eredményei dátumként kerülnek megjelenítésre. Ha az eredményt számként kívánja megjeleníteni, akkor állítsa a számformátumot „-1234” értékre, és az OK gombra kattintva zárja be a párbeszédablakot."
-#. 4%N}
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11121,7 +9960,6 @@ msgctxt ""
msgid "The number of days between today's date and the specified date is displayed in cell A3."
msgstr "A mai nap és a megadott dátum között lévő napok száma megjelenik az A3-as cellában."
-#. RSGB
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11131,7 +9969,6 @@ msgctxt ""
msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
msgstr "Kísérlet néhány további képlettel: az A4-es cellába írja be az =A3*24 képletet az órák kiszámításához, az A5-ös cellába írja be az =A4*60 képletet a percek, az A6-osba pedig az =A5*60 képletet a másodpercek kiszámításához. Minden egyes képlet megadását követően nyomja meg az <item type=\"keycode\">Enter</item> billentyűt."
-#. (l07
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
@@ -11141,7 +9978,6 @@ msgctxt ""
msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
msgstr "Kiszámításra kerül a születése óta eltelt idő, majd az érték megjelenik különböző egységekben. Az értékek azon pillanattól kerülnek kiszámításra, amikor az utolsó képletet megadta, majd megnyomta az <item type=\"keycode\">Enter</item> billentyűt. Annak ellenére, hogy a „MOST” értéke folyamatosan változik, az érték automatikusan nem kerül frissítésre. Az <emph>Eszközök</emph> menü <emph>Cellatartalom - Automatikus számítás</emph> menüpontja általában aktív, azonban az automatikus számítás nem vonatkozik a MOST függvényre. Ez biztosítja, hogy a számítógépet ne a munkalap frissítése foglalja le teljesen."
-#. ~Kbq
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11150,7 +9986,6 @@ msgctxt ""
msgid "User-defined Number Formats"
msgstr "Egyéni számformátumok"
-#. [DAQ
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11159,7 +9994,6 @@ msgctxt ""
msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
msgstr "<bookmark_value>számok; egyéni formázás táblázatokban</bookmark_value> <bookmark_value>formázás; egyéni számok</bookmark_value> <bookmark_value>számformátumok; milliók </bookmark_value> <bookmark_value>formátumkódok; egyéni számformátumok</bookmark_value>"
-#. C0LU
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11169,7 +10003,6 @@ msgctxt ""
msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"Egyéni számformátumok\">Egyéni számformátumok</link></variable>"
-#. nKMH
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11179,7 +10012,6 @@ msgctxt ""
msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
msgstr "Megadhatja, milyen formátumban jelenjenek meg a számok a <item type=\"productname\">%PRODUCTNAME</item> Calc programban. A számformátumkódokban előforduló szóközöket a láthatóság kedvéért □ jelek helyettesítik."
-#. wZKE
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11189,7 +10021,6 @@ msgctxt ""
msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
msgstr "Például a „10 200 000” „10,2 millió”-ként való megjelenítéséhez:"
-#. ?%3:
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11199,7 +10030,6 @@ msgctxt ""
msgid "Select the cells to which you want to apply a new, user-defined format."
msgstr "Jelölje ki azokat a cellákat, amelyekre alkalmazni szeretné az új, egyéni számformátumot."
-#. 30F6
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11209,7 +10039,6 @@ msgctxt ""
msgid "Choose <emph>Format - Cells - Numbers</emph>."
msgstr "Válassza a <emph>Formátum - Cellák - Számok</emph> lehetőséget."
-#. `e}]
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11219,7 +10048,6 @@ msgctxt ""
msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
msgstr "A <emph>Kategória</emph> listában jelölje ki az „Egyéni” lehetőséget."
-#. olt\
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11229,7 +10057,6 @@ msgctxt ""
msgid "In the <emph>Format code</emph> text box enter the following code:"
msgstr "A <emph>Formátumkód</emph> mezőbe írja be a következő kódot:"
-#. 7G5q
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11239,7 +10066,6 @@ msgctxt ""
msgid "0.0,, \"Million\""
msgstr "0,0□□\"□millió\""
-#. G#Xx
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11249,7 +10075,6 @@ msgctxt ""
msgid "Click OK."
msgstr "Kattintson az OK gombra."
-#. fHmR
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11259,7 +10084,6 @@ msgctxt ""
msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
msgstr "A következő táblázat bemutatja a kerekítés, ezreselválasztók (□), tizedeselválasztók (,), illetve a # és a 0 helykitöltők hatását."
-#. I@vk
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11269,7 +10093,6 @@ msgctxt ""
msgid "Number"
msgstr "Szám"
-#. )5W=
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11279,7 +10102,6 @@ msgctxt ""
msgid ".#,, \"Million\""
msgstr ",#□□\"□millió\""
-#. )LU(
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11289,7 +10111,6 @@ msgctxt ""
msgid "0.0,, \"Million\""
msgstr "0,0□□\"□millió\""
-#. rmlm
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11299,7 +10120,6 @@ msgctxt ""
msgid "#,, \"Million\""
msgstr "#□□\"□millió\""
-#. M3pO
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11309,7 +10129,6 @@ msgctxt ""
msgid "10200000"
msgstr "10200000"
-#. ^mq(
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11319,7 +10138,6 @@ msgctxt ""
msgid "10.2 Million"
msgstr "10,2 millió"
-#. M`eL
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11329,7 +10147,6 @@ msgctxt ""
msgid "10.2 Million"
msgstr "10,2 millió"
-#. 63ul
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11339,7 +10156,6 @@ msgctxt ""
msgid "10 Million"
msgstr "10 millió"
-#. JEg4
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11349,7 +10165,6 @@ msgctxt ""
msgid "500000"
msgstr "500000"
-#. o3;r
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11359,7 +10174,6 @@ msgctxt ""
msgid ".5 Million"
msgstr ",5 millió"
-#. GrN9
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11369,7 +10183,6 @@ msgctxt ""
msgid "0.5 Million"
msgstr "0,5 millió"
-#. 5o?[
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11379,7 +10192,6 @@ msgctxt ""
msgid "1 Million"
msgstr "1 millió"
-#. VNko
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11389,7 +10201,6 @@ msgctxt ""
msgid "100000000"
msgstr "100000000"
-#. ;T]8
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11399,7 +10210,6 @@ msgctxt ""
msgid "100. Million"
msgstr "100, millió"
-#. G$V(
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11409,7 +10219,6 @@ msgctxt ""
msgid "100.0 Million"
msgstr "100,0 millió"
-#. 6Bj(
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
@@ -11419,7 +10228,6 @@ msgctxt ""
msgid "100 Million"
msgstr "100 millió"
-#. {-A~
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11428,7 +10236,6 @@ msgctxt ""
msgid "Copying to Multiple Sheets"
msgstr "Másolás több munkalapra"
-#. DrMx
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11437,7 +10244,6 @@ msgctxt ""
msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
msgstr "<bookmark_value>másolás;értékek, több munkalapba</bookmark_value><bookmark_value>beillesztés;értékek több munkalapba</bookmark_value><bookmark_value>adatok;beszúrás több munkalapba</bookmark_value> <bookmark_value>munkalapok; párhuzamos többszörös kitöltés</bookmark_value>"
-#. )I`o
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11447,7 +10253,6 @@ msgctxt ""
msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Másolás több munkalapra\">Másolás több munkalapra</link> </variable>"
-#. E%.c
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11457,7 +10262,6 @@ msgctxt ""
msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
msgstr "A $[officename] Calc programban olyan értékeket, képleteket vagy szöveget szúrhat be, amelyek párhuzamosan a dokumentum többi kijelölt táblázatába is átmásolásra kerülnek."
-#. ^cd_
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11467,7 +10271,6 @@ msgctxt ""
msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
msgstr "Jelölje ki a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyű lenyomása mellett a kívánt munkalapokat, majd kattintson a munkaterület alsó margóján lévő, megfelelő szürke regiszterfülekre. Az összes kijelölt regiszterfül fehérré változik."
-#. Qux_
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11476,7 +10279,6 @@ msgctxt ""
msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
msgstr "A Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Page Up vagy Page Down billentyűkkel több munkalapot is kijelölhet."
-#. JnDo
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
@@ -11486,7 +10288,6 @@ msgctxt ""
msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
msgstr "Ha most a munkalapokba értékeket, szöveget vagy képleteket szúr be, akkor azok az összes többi munkalapon is ugyanazon a helyen jelennek meg. Például az aktív munkalap A1 cellájában megadott adatok automatikusan beírásra kerülnek minden más kiválasztott munkalap A1 cellájába."
-#. =:+W
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11495,7 +10296,6 @@ msgctxt ""
msgid "Applying Sort Lists"
msgstr "Rendezett listák alkalmazása"
-#. h;+j
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11504,7 +10304,6 @@ msgctxt ""
msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
msgstr "<bookmark_value>kitöltés;egyedi listák</bookmark_value><bookmark_value>rendezett listák;alkalmazás</bookmark_value><bookmark_value>meghatározás; rendezett listák</bookmark_value><bookmark_value>geometriai listák</bookmark_value><bookmark_value>aritmetikai listák</bookmark_value><bookmark_value>sorozat; rendezett listák</bookmark_value><bookmark_value>listák; egyéni</bookmark_value><bookmark_value>egyedi listák</bookmark_value>"
-#. WH\D
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11514,7 +10313,6 @@ msgctxt ""
msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Rendezett listák alkalmazása\">Rendezett listák alkalmazása</link> </variable>"
-#. 3VG]
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11524,7 +10322,6 @@ msgctxt ""
msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
msgstr "A rendezett listák lehetővé teszik egy információdarab cellába való beírását, valamint ezen információ elemek folyamatos listájába történő áthúzását."
-#. d%6M
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11534,7 +10331,6 @@ msgctxt ""
msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
msgstr "Például egy üres cellába írja be a „Jan” vagy „Január” szöveget. Jelölje ki a cellát, majd kattintson az egérrel a cellaszegély jobb alsó sarkára. Ezt követően húzza a kijelölt cellát pár cellával jobbra vagy lefelé. Amikor felengedi az egérgombot, a kijelölt cellák kitöltésre kerülnek a hónapok neveivel."
-#. 3R(Y
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11543,7 +10339,6 @@ msgctxt ""
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
msgstr "Tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, ha nem akarja különböző értékekkel feltölteni a cellákat."
-#. %?$=
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11553,7 +10348,6 @@ msgctxt ""
msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
msgstr "Az előre meghatározott sorozatok az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Rendezett listák</emph> pontban találhatók. Ezenkívül létrehozhatja saját listáját, például egy a cég telephelyeit tartalmazó listát. Amikor a listákban lévő információkat a későbbiekben felhasználja (például fejlécként), akkor elég a listában található első nevet megadni, majd a bejegyzést az egér húzásával kiterjeszteni."
-#. 9%hg
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
@@ -11563,7 +10357,6 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Rendezett listák\">Rendezett listák</link>"
-#. f.6@
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11572,7 +10365,6 @@ msgctxt ""
msgid "Entering Formulas"
msgstr "Képletek megadása"
-#. L[1k
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11581,7 +10373,6 @@ msgctxt ""
msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
msgstr "<bookmark_value>képlet eszköztár; beviteli sor</bookmark_value><bookmark_value>beviteli sor a képlet eszköztárban</bookmark_value><bookmark_value>képletek; bevitel</bookmark_value><bookmark_value>beszúrás;képletek</bookmark_value>"
-#. OgCe
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11591,7 +10382,6 @@ msgctxt ""
msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Képletek megadása\">Képletek megadása</link></variable>"
-#. Lnz3
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11600,7 +10390,6 @@ msgctxt ""
msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
msgstr "Többféleképpen is megadhat képleteket: ikonok használatával, a billentyűzeten történő beírással vagy a kettő keverékével."
-#. 5/Jc
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11610,7 +10399,6 @@ msgctxt ""
msgid "Click the cell in which you want to enter the formula."
msgstr "Kattintson arra a cellára, amelybe be szeretné írni a képletet."
-#. {5vL
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11620,7 +10408,6 @@ msgctxt ""
msgid "Click the <emph>Function</emph> icon on the Formula Bar."
msgstr "Kattintson a Képlet eszköztár <emph>Függvény</emph> ikonjára."
-#. eQq[
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11630,7 +10417,6 @@ msgctxt ""
msgid "You will now see an equals sign in the input line and you can begin to input the formula."
msgstr "Egy egyenlőségjelet láthat a beviteli sorban, és így megkezdheti a képlet beírását."
-#. ns/e
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11640,7 +10426,6 @@ msgctxt ""
msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
msgstr "A kívánt értékek megadását követően nyomja meg az Entert, vagy kattintson az <emph>Elfogadás</emph> gombra az eredmény beszúrásához az aktív cellába. Ha törölni kívánja a beviteli sorba beírt elemet, nyomja meg az Esc billentyűt, vagy kattintson a <emph>Mégse</emph> gombra."
-#. rUHv
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11650,7 +10435,6 @@ msgctxt ""
msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
msgstr "Az értékeket és a képleteket közvetlenül a cellákba is beírhatja, még akkor is, ha nem lát beviteli kurzort. A képleteknek mindig egy egyenlőségjellel kell kezdődniük."
-#. hds3
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11659,7 +10443,6 @@ msgctxt ""
msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
msgstr "A képlet beírásának megkezdéséhez megnyomhatja a numerikus billentyűzet + vagy - billentyűjét is. A NumLocknak be kell lennie kapcsolva. Például nyomja meg egymás után a következő billentyűket:"
-#. Hp#5
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11668,7 +10451,6 @@ msgctxt ""
msgid "+ 5 0 - 8 Enter"
msgstr "+ 5 0 - 8 Enter"
-#. :{\i
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11677,7 +10459,6 @@ msgctxt ""
msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
msgstr "A cellában megjelenik a <item type=\"literal\">42</item> eredmény. A cella az <item type=\"literal\">=+50-8</item> képletet tartalmazza."
-#. @j=N
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11687,7 +10468,6 @@ msgctxt ""
msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
msgstr "Ha hivatkozásokat tartalmazó képletet szerkeszt, akkor a hivatkozások, illetve a hozzá tartozó cellák egyforma színnel kiemelésre kerülnek. Ezt követően a hivatkozás szegélyét az egér segítségével átméretezheti. A beviteli sorban megjelenő képletben található hivatkozás is módosul. A <emph>Hivatkozások jelölése színekkel</emph> beállítás kikapcsolható az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Táblázatkezelő - Nézet\">%PRODUCTNAME Calc - Nézet</link> panelen."
-#. %s|?
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11697,7 +10477,6 @@ msgctxt ""
msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
msgstr "<variable id=\"tip\">Ha egy képlet egyedi elemeinek kiszámítását kívánja megtekinteni, akkor jelölje ki a kívánt elemeket, majd nyomja meg az F9 billentyűt. Például a =SZUM(A1:B12)*SZUM(C1:D12) képletben jelölje ki a SZUM(C1:D12) szakaszt, majd nyomja meg az F9 billentyűt, így megjelenik a területre számított részösszeg. </variable>"
-#. F]XQ
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11707,7 +10486,6 @@ msgctxt ""
msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
msgstr "Ha a képlet létrehozása során hiba történik, akkor az aktív cellában egy <link href=\"text/scalc/05/02140000.xhp\" name=\"hibaüzenet\">hibaüzenet</link> jelenik meg."
-#. ~TPF
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
@@ -11717,7 +10495,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Képlet eszköztár\">Képlet eszköztár</link>"
-#. ,p0c
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11726,7 +10503,6 @@ msgctxt ""
msgid "Assigning Formats by Formula"
msgstr "Formátumok hozzárendelése képlet alapján"
-#. LKw*
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11735,7 +10511,6 @@ msgctxt ""
msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
msgstr "<bookmark_value>formátumok; hozzárendelés képletekkel</bookmark_value><bookmark_value>cellaformátumok; hozzárendelés képletekkel</bookmark_value><bookmark_value>STYLE függvény példa</bookmark_value><bookmark_value>cellastílusok;hozzárendelés képletekkel</bookmark_value><bookmark_value>képletek;cellaformátumok hozzárendelése</bookmark_value>"
-#. UiL+
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11745,7 +10520,6 @@ msgctxt ""
msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Formátumok hozzárendelése képlettel\">Formátumok hozzárendelése képlettel</link> </variable>"
-#. Un#i
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11755,7 +10529,6 @@ msgctxt ""
msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
msgstr "A STYLE() függvényt a cellában már létező képlethez is hozzáadhatja. A CURRENT függvénnyel együtt használva például a cellákat azok értékétől függően színezheti ki. A =...+STYLE(HA(CURRENT()>3; \"Piros\"; \"Zöld\")) képlet a „Piros” cellastílust alkalmazza a cellára, ha az érték 3-nál nagyobb, ellenkező esetben a „Zöld” cellastílus kerül alkalmazásra."
-#. 6Gsv
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11765,7 +10538,6 @@ msgctxt ""
msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
msgstr "Ha egy képletet a kijelölt terület valamennyi cellájára alkalmazni kíván, akkor azt a <item type=\"menuitem\">Keresés és csere</item> párbeszédablak segítségével teheti meg."
-#. fFnZ
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11775,7 +10547,6 @@ msgctxt ""
msgid "Select all the desired cells."
msgstr "Jelölje ki a kívánt cellákat."
-#. sK6G
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11785,7 +10556,6 @@ msgctxt ""
msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
msgstr "Válassza a <emph>Szerkesztés - Keresés és csere</emph> lehetőséget."
-#. U:~!
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11795,7 +10565,6 @@ msgctxt ""
msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
msgstr "A <item type=\"menuitem\">Keresett szöveg</item> kifejezésnek adja meg a következőt: <item type=\"menuitem\">.*</item>"
-#. #6pN
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11805,7 +10574,6 @@ msgctxt ""
msgid "\".*\" is a regular expression that designates the contents of the current cell."
msgstr "A „.*” egy reguláris kifejezés, amely az aktuális cella tartalmát jelöli."
-#. M85M
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11815,7 +10583,6 @@ msgctxt ""
msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
msgstr "Írja be a következő képletet a <item type=\"menuitem\">Csere erre</item> mezőbe: <item type=\"menuitem\">=&+STYLE(HA(CURRENT()>3;\"Piros\";\"Zöld\"))</item>"
-#. 5iTZ
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11825,7 +10592,6 @@ msgctxt ""
msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
msgstr "A „&” szimbólum a <emph>Keresett szöveg</emph> mező aktuális tartalmát jelöli. A sornak egyenlőségjellel kell kezdődnie, hiszen képletről van szó. Feltételezzük, hogy a „Piros” és a „Zöld” cellastílusok már léteznek."
-#. EIoh
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11835,7 +10601,6 @@ msgctxt ""
msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
msgstr "Jelölje meg a <link href=\"text/shared/01/02100000.xhp\" name=\"Reguláris kifejezés\"><emph>Reguláris kifejezés</emph></link> és a <emph>Csak az aktuális kijelölésben</emph> mezőket. Kattintson a <emph>Mindet keresi</emph> gombra."
-#. 3if!
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11845,7 +10610,6 @@ msgctxt ""
msgid "All cells with contents that were included in the selection are now highlighted."
msgstr "A kijelölésben szereplő tartalommal rendelkező összes cella kiemelésre került."
-#. 0h$I
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
@@ -11855,7 +10619,6 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">Replace all</item>."
msgstr "Kattintson a <item type=\"menuitem\">Mindet cseréli</item> gombra."
-#. P0@\
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11864,7 +10627,6 @@ msgctxt ""
msgid "Defining Number of Pages for Printing"
msgstr "Nyomtatandó oldalak számának meghatározása"
-#. y:[b
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11873,7 +10635,6 @@ msgctxt ""
msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
msgstr "<bookmark_value>nyomtatás; munkalapszámozások</bookmark_value><bookmark_value>munkalapok; munkalapszámozások nyomtatása</bookmark_value><bookmark_value>oldaltörések; táblázat előnézet</bookmark_value><bookmark_value>szerkesztés;nyomtatási tartományok</bookmark_value><bookmark_value>megtekintés;nyomtatási tartományok</bookmark_value><bookmark_value>előnézet;oldaltörések a nyomtatáshoz</bookmark_value>"
-#. R7nh
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11883,7 +10644,6 @@ msgctxt ""
msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Nyomtatandó oldalak számának meghatározása\">Nyomtatandó oldalak számának meghatározása</link></variable>"
-#. w%`a
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11893,7 +10653,6 @@ msgctxt ""
msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
msgstr "Ha egy munkalap nem fér rá egyetlen nyomtatott oldalra, akkor a $[officename] Calc az aktuális munkalapot több oldalra, egyenletesen elosztva fogja kinyomtatni. Mivel az automatikus oldaltörés nem minden esetben az optimális helyre esik, az oldalak felosztását saját maga is meghatározhatja."
-#. e%oJ
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11903,7 +10662,6 @@ msgctxt ""
msgid "Go to the sheet to be printed."
msgstr "Menjen a nyomtatandó oldalra."
-#. oU*,
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11913,7 +10671,6 @@ msgctxt ""
msgid "Choose <emph>View - Page Break Preview</emph>."
msgstr "Válassza a <emph>Nézet - Oldaltörés előnézete</emph> lehetőséget."
-#. M:l2
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11923,7 +10680,6 @@ msgctxt ""
msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
msgstr "Látni fogja a munkalap automatikus tagolását a nyomtatási oldalakon. Az automatikusan létrehozott nyomtatási tartományok sötétkék vonalakkal, a felhasználó által meghatározottak pedig világoskék vonalakkal vannak jelölve. Az oldaltörések (sor- és oszloptörések) fekete vonallal vannak jelölve."
-#. d4@U
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11933,7 +10689,6 @@ msgctxt ""
msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
msgstr "A kék vonalakat az egér segítségével helyezheti át. További beállításokat a helyi menü tartalmaz. Többek között itt nyílik lehetősége további nyomtatási tartományok hozzáadására, a méretezés eltávolítására, illetve kézi sor- és oszloptörések beszúrására."
-#. fl[u
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
@@ -11943,7 +10698,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Nézet - Oldaltörés előnézete\">Nézet - Oldaltörés előnézete</link>"
-#. J,m$
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -11952,7 +10706,6 @@ msgctxt ""
msgid "Filtering Cell Ranges"
msgstr "Cellatartományok szűrése"
-#. O(US
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -11961,7 +10714,6 @@ msgctxt ""
msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
msgstr "<bookmark_value>cellatartományok;szűrők alkalmazása/eltávolítása</bookmark_value><bookmark_value>szűrés;cellatartományok/adatbázis-tartományok</bookmark_value><bookmark_value>adatbázis-tartományok;szűrők alkalmazása/eltávolítása</bookmark_value><bookmark_value>eltávolítás;cellatartomány-szűrők</bookmark_value>"
-#. +=e+
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -11971,7 +10723,6 @@ msgctxt ""
msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Cellatartományok szűrése\">Cellatartományok szűrése</link></variable>"
-#. [8m)
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -11981,7 +10732,6 @@ msgctxt ""
msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
msgstr "Cellatartományok munkafüzetből való kiszűréséhez többféle szűrőt használhat. Az általános szűrő az adatok szűrésére megadott beállításokat használja. Az Automatikus szűrő egy megadott érték vagy karakterlánc alapján szűr. Az irányított szűrő a megadott cellákból veszi a szűrési feltételeket."
-#. ll(X
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -11990,7 +10740,6 @@ msgctxt ""
msgid "To Apply a Standard Filter to a Cell Range"
msgstr "Általános szűrő alkalmazása egy cellatartományra"
-#. \%TU
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12000,7 +10749,6 @@ msgctxt ""
msgid "Click in a cell range."
msgstr "Kattintson egy cellatartományra."
-#. ]phh
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12009,7 +10757,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Szűrő - Általános szűrő</item> lehetőséget."
-#. q!:@
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12019,7 +10766,6 @@ msgctxt ""
msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
msgstr "Az <emph>Általános szűrő</emph> párbeszédablakban válassza ki a használni kívánt szűrőbeállításokat."
-#. Wm,q
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12028,7 +10774,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. MCuW
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12038,7 +10783,6 @@ msgctxt ""
msgid "The records that match the filter options that you specified are shown."
msgstr "A megadott szűrőfeltételeknek megfelelő rekordok jelennek meg."
-#. ]zA3
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12048,7 +10792,6 @@ msgctxt ""
msgid "To Apply an AutoFilter to a Cell Range"
msgstr "Automatikus szűrő alkalmazása egy cellatartományra"
-#. ~pb;
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12058,7 +10801,6 @@ msgctxt ""
msgid "Click in a cell range or a database range."
msgstr "Kattintson egy cellatartományra vagy egy adatbázis-tartományra."
-#. pDhL
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12067,7 +10809,6 @@ msgctxt ""
msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
msgstr "Ha ugyanarra a munkalapra több automatikus szűrőt akar alkalmazni, először adatbázis-tartományokat kell meghatároznia, majd az automatikus szűrőket az adatbázis-tartományokra kell alkalmaznia."
-#. hKU=
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12077,7 +10818,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Szűrő - Automatikus szűrő</item> lehetőséget."
-#. ot3b
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12086,7 +10826,6 @@ msgctxt ""
msgid "An arrow button is added to the head of each column in the database range."
msgstr "Egy nyílgomb kerül hozzáadásra az adatbázis-tartomány minden egyes oszlopának fejlécéhez."
-#. [`JX
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12096,7 +10835,6 @@ msgctxt ""
msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
msgstr "Kattintson azon oszlopban lévő nyílra, amely a feltételnek megadni kívánt értéket vagy karakterláncot tartalmazza."
-#. 3Y+(
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12105,7 +10843,6 @@ msgctxt ""
msgid "Select the value or string that you want to use as the filter criteria."
msgstr "Válassza ki a szűrőként használni kívánt értéket vagy karakterláncot."
-#. V/}h
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12114,7 +10851,6 @@ msgctxt ""
msgid "The records that match the filter criteria that you selected are shown."
msgstr "A kiválasztott szűrőfeltételeknek megfelelő rekordok jelennek meg."
-#. caV=
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12123,7 +10859,6 @@ msgctxt ""
msgid "To Remove a Filter From a Cell Range"
msgstr "Szűrő eltávolítása egy cellatartományból"
-#. GQ#M
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12132,7 +10867,6 @@ msgctxt ""
msgid "Click in a filtered cell range."
msgstr "Kattintson egy szűrt cellatartományra."
-#. TfdM
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12141,7 +10875,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Szűrő - Szűrő eltávolítása</item> lehetőséget."
-#. P[Qv
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
@@ -12150,7 +10883,6 @@ msgctxt ""
msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
msgstr "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wikioldal adattartományok definiálásáról</link>"
-#. OnQ8
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12159,7 +10891,6 @@ msgctxt ""
msgid "Selecting Themes for Sheets"
msgstr "Témák kiválasztása munkalapokhoz"
-#. sE~T
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12168,7 +10899,6 @@ msgctxt ""
msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
msgstr "<bookmark_value> téma kiválasztása munkalapokhoz </bookmark_value><bookmark_value>elrendezés;munkafüzetek</bookmark_value><bookmark_value>cellastílusok; kijelölés</bookmark_value><bookmark_value>kijelölés;formázási témák</bookmark_value><bookmark_value>munkalapok;formázási témák</bookmark_value><bookmark_value>formátumok;munkalapok témái</bookmark_value><bookmark_value>formázás;munkalapok témái</bookmark_value>"
-#. `wfv
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12178,7 +10908,6 @@ msgctxt ""
msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Témák kiválasztása munkalapokhoz\">Témák kiválasztása munkalapokhoz</link> </variable>"
-#. ^DOJ
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12188,7 +10917,6 @@ msgctxt ""
msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
msgstr "A $[officename] Calc előre megadott formázótémákkal rendelkezik, amelyeket alkalmazhat a munkafüzetekre."
-#. o12w
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12198,7 +10926,6 @@ msgctxt ""
msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
msgstr "A Calc programban nincs lehetőség téma hozzáadására, és a témák nem is módosíthatók. Azonban módosíthatja a stílusukat, miután alkalmazta azokat a munkafüzetre."
-#. kKSr
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12208,7 +10935,6 @@ msgctxt ""
msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
msgstr "Mielőtt a munkalapot témával formázná, a munkalap celláira legalább egy egyedi cellastílust alkalmaznia kell. Ezt követően módosíthatja a cellaformátumot úgy, hogy kiválaszt egy témát a <emph>Témaválasztás</emph> párbeszédablakban, majd alkalmazza azt."
-#. Ih/P
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12218,7 +10944,6 @@ msgctxt ""
msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
msgstr "Ha egy cellára egyedi cellastílust kíván alkalmazni, megnyithatja a Stílusok és formázás ablakot, és az ablak alsó listapaneljén beállíthatja az Egyéni stílusok nézetet. Megjelenik a meglévő egyénileg megadott cellastílusok listája. Ha ezt a stílust alkalmazni kívánja a kijelölt cellákra, kattintson duplán a Stílusok és formázás ablakban a stílus nevére."
-#. H;))
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12228,7 +10953,6 @@ msgctxt ""
msgid "To apply a theme to a spreadsheet:"
msgstr "Téma alkalmazásához a munkafüzetre:"
-#. 8pvk
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12238,7 +10962,6 @@ msgctxt ""
msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
msgstr "Az <emph>Eszközök</emph> eszköztáron kattintson a <emph>Témaválasztás</emph> ikonra."
-#. evSc
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12248,7 +10971,6 @@ msgctxt ""
msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
msgstr "Megjelenik a <emph>Témaválasztás</emph> párbeszédablak. Ez a párbeszédablak tartalmazza a teljes munkafüzethez elérhető témákat, a Stílusok és formázás ablak pedig felsorolja az egyedi cellákhoz tartozó egyéni stílusokat."
-#. nid:
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12258,7 +10980,6 @@ msgctxt ""
msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
msgstr "A <emph>Témaválasztás</emph> párbeszédablakban jelölje ki a munkafüzetre alkalmazni kívánt témát."
-#. Do+$
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12268,7 +10989,6 @@ msgctxt ""
msgid "Click OK"
msgstr "Kattintson az OK gombra"
-#. _`^z
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12278,7 +10998,6 @@ msgctxt ""
msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
msgstr "Amint a <emph>Témaválasztás</emph> párbeszédablakban egy másik témát jelöl ki, az egyedi stílus tulajdonságainak egy része alkalmazásra kerül az aktuális munkafüzeten. A módosítások azonnal láthatók a munkafüzeten."
-#. X;m6
#: design.xhp
msgctxt ""
"design.xhp\n"
@@ -12288,7 +11007,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Témaválasztás\">Témaválasztás</link>"
-#. Jk1g
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12297,7 +11015,6 @@ msgctxt ""
msgid "Unprotecting Cells"
msgstr "Cellavédelem megszüntetése"
-#. H$06
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12306,7 +11023,6 @@ msgctxt ""
msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
msgstr "<bookmark_value>cellavédelem; feloldás</bookmark_value><bookmark_value>védelem; cellavédelem feloldása</bookmark_value><bookmark_value>cellavédelem feloldása</bookmark_value>"
-#. _D(Z
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12316,7 +11032,6 @@ msgctxt ""
msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Cellavédelem megszüntetése\">Cellavédelem megszüntetése</link> </variable>"
-#. 3qJ4
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12326,7 +11041,6 @@ msgctxt ""
msgid "Click the sheet for which you want to cancel the protection."
msgstr "Kattintson arra a munkalapra, amelyben meg szeretné szüntetni a védelmet."
-#. 0k~!
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12336,7 +11050,6 @@ msgctxt ""
msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
msgstr "Válassza az <emph>Eszközök - Dokumentum védelme</emph> lehetőséget, majd válassza a <emph>Munkalap</emph> vagy a <emph>Dokumentum</emph> pontot a védett állapotot jelölő jelölés eltávolításához."
-#. ZVG[
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12346,7 +11059,6 @@ msgctxt ""
msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
msgstr "Ha hozzárendelt jelszót, írja be ezt a párbeszédablakba, majd kattintson az <emph>OK</emph> gombra."
-#. eAQ[
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
@@ -12356,7 +11068,6 @@ msgctxt ""
msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
msgstr "A cellák most már szerkeszthetőek, a képletek megtekinthetők, és minden cella nyomtatható, amíg a dokumentum vagy a munkalap védelmét újra be nem kapcsolja."
-#. UdoP
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
@@ -12365,7 +11076,6 @@ msgctxt ""
msgid "19xx/20xx Years"
msgstr "19xx/20xx évek"
-#. csgU
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
@@ -12374,7 +11084,6 @@ msgctxt ""
msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
msgstr "<bookmark_value>évek; 2 számjegy</bookmark_value><bookmark_value>dátumok; 19xx/20xx</bookmark_value>"
-#. GkGb
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
@@ -12384,7 +11093,6 @@ msgctxt ""
msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx évek\">19xx/20xx évek</link></variable>"
-#. 6V+?
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
@@ -12394,7 +11102,6 @@ msgctxt ""
msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
msgstr "A dátumbejegyzések évrésze gyakran két számjegyként kerül beírásra. Belsőleg a $[officename] az éveket négy számjegyként kezeli, tehát ha a 99/1/1 és 01/1/1 közötti különbségre kíváncsi, akkor a helyes eredmény 2 év lesz."
-#. OP-l
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
@@ -12404,7 +11111,6 @@ msgctxt ""
msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
msgstr "Az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - $[officename] - Általános</emph> pontban beállíthatja, hogy melyik évszázad használandó akkor, ha egy évszámot két számjeggyel ad meg. Az alapértelmezett tartomány: 1930-2029."
-#. cT*2
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
@@ -12414,7 +11120,6 @@ msgctxt ""
msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
msgstr "Ez azt jelenti, hogy ha egy 30/1/1 dátumnál későbbi dátumot ír, akkor azt a program 1930/1/1 vagy későbbiként fogja kezelni. Minden korábbi kétszámjegyű évszám a 20xx évszámra vonatkozik. Így például a 20/1/1 a 2020/1/1 dátummá lesz alakítva."
-#. s2ov
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12423,7 +11128,6 @@ msgctxt ""
msgid "Applying Conditional Formatting"
msgstr "Feltételes formázás alkalmazása"
-#. 1wA2
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12432,7 +11136,6 @@ msgctxt ""
msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
msgstr "<bookmark_value>feltételes formázás; cellák</bookmark_value><bookmark_value>cellák; feltételes formázás</bookmark_value><bookmark_value>formázás; feltételes formázás</bookmark_value><bookmark_value>stílusok;feltételes stílusok</bookmark_value><bookmark_value>cellaformátumok; feltételes</bookmark_value><bookmark_value>véletlen számok; példák</bookmark_value><bookmark_value>cellastílusok; másolás</bookmark_value><bookmark_value>másolás; cellastílusok</bookmark_value><bookmark_value>táblázatok; cellastílusok másolása</bookmark_value>"
-#. mVKy
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12442,7 +11145,6 @@ msgctxt ""
msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Feltételes formázás alkalmazása\">Feltételes formázása alkalmazása</link></variable>"
-#. pOlg
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12452,7 +11154,6 @@ msgctxt ""
msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
msgstr "A <emph>Formátum - Feltételes formázás</emph> menüpont kiválasztásakor megjelenő párbeszédablak lehetővé teszi cellánként akár három feltétel megadását, amelyeknek teljesülniük kell ahhoz, hogy a kijelölt cellák egy adott formátumot kapjanak."
-#. 0g+]
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12461,7 +11162,6 @@ msgctxt ""
msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
msgstr "A feltételes formázás alkalmazásához engedélyezni kell az Automatikus számítás funkciót. Válassza az <emph>Eszközök - Cellatartalom - Automatikus számítás</emph> menüparancsot (a menüparancs mellett egy pipa jelenik meg, ha engedélyezve van az Automatikus számítás)."
-#. A):*
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12471,7 +11171,6 @@ msgctxt ""
msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
msgstr "A feltételes formázással például kiemelheti az átlagot meghaladó végösszeget. Ha a végösszeg módosul, akkor a formátum annak megfelelően, más stílusok kézi alkalmazása nélkül módosul."
-#. Af^o
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12480,7 +11179,6 @@ msgctxt ""
msgid "To Define the Conditions"
msgstr "A feltétel meghatározásához"
-#. f!Pp
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12490,7 +11188,6 @@ msgctxt ""
msgid "Select the cells to which you want to apply a conditional style."
msgstr "Jelölje ki azokat a cellákat, amelyekre alkalmazni szeretné a feltételes stílust."
-#. kU,t
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12500,7 +11197,6 @@ msgctxt ""
msgid "Choose <emph>Format - Conditional Formatting</emph>."
msgstr "Válassza a <emph>Formátum - Feltételes formázás</emph> lehetőséget."
-#. :5,F
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12510,7 +11206,6 @@ msgctxt ""
msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
msgstr "A párbeszédablakban adja meg a feltételeket. A párbeszédablak részletes leírását az <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Súgó\">$[officename] Súgó</link> tartalmazza, és az alábbiakban egy példa látható:"
-#. f=iq
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12520,7 +11215,6 @@ msgctxt ""
msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
msgstr "Példa feltételes formázásra: az átlagos érték feletti/alatti összegek kiemelése"
-#. ?q?]
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12529,7 +11223,6 @@ msgctxt ""
msgid "Step1: Generate Number Values"
msgstr "1. lépés: Számértékek generálása"
-#. Gu%1
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12539,7 +11232,6 @@ msgctxt ""
msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
msgstr "A táblázatban szereplő bizonyos értékeknek különböző kiemelést szeretne adni. Tegyük fel, hogy egy forgalmat tartalmazó táblázatban minden átlag feletti értéket zölddel és minden átlag alatti értéket pirossal szeretne látni. Ez a feltételes formázással oldható meg."
-#. %5qk
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12549,7 +11241,6 @@ msgctxt ""
msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
msgstr "Először is készítsen egy táblázatot, amelyben több különböző érték szerepel. A táblázatot véletlen számok segítségével is létrehozhatja:"
-#. FV_Z
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12559,7 +11250,6 @@ msgctxt ""
msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
msgstr "A cellák valamelyikébe írja be a =VÉL() képletet, ezt követően megjelenik egy 0 és 1 között lévő véletlen szám. Ha egész számokat szeretne 0 és 50 között, a következő képletet használja: =INT(VÉL()*50)."
-#. z6ks
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12569,7 +11259,6 @@ msgctxt ""
msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
msgstr "Másolja át a képletet egy véletlenszám-sorozat létrehozásához. Kattintson a kijelölt cella jobb alsó sarkába, és húzza jobbra addig, amíg a kívánt cellatartományt ki nem jelölte."
-#. [fsD
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12579,7 +11268,6 @@ msgctxt ""
msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
msgstr "A fent leírt módon ismételje meg a műveletet, húzza lefelé a jobbra lévő cella sarkát több sornyi véletlen szám előállításához."
-#. eSNR
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12589,7 +11277,6 @@ msgctxt ""
msgid "Step 2: Define Cell Styles"
msgstr "2. lépés: Cellastílusok meghatározása"
-#. K^j7
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12599,7 +11286,6 @@ msgctxt ""
msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
msgstr "A következő lépés a cellastílus összes átlagon felüli és aluli forgalomértékre való alkalmazása. A folytatás előtt győződjön meg arról, hogy a Stílusok és formázás ablak látható."
-#. Ua?e
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12609,7 +11295,6 @@ msgctxt ""
msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
msgstr "Kattintson egy üres cellára, majd a helyi menüből válassza a <emph>Cellák formázása</emph> lehetőséget."
-#. ;REi
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12619,7 +11304,6 @@ msgctxt ""
msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
msgstr "A <emph>Cellák formázása</emph> párbeszédablak <emph>Háttér</emph> lapján jelöljön ki egy háttérszínt. Kattintson az <emph>OK</emph> gombra."
-#. v+!Y
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12629,7 +11313,6 @@ msgctxt ""
msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
msgstr "A Stílusok és formázás ablakban kattintson a <emph>Új stílus a kijelölés alapján</emph> ikonra. Adja meg az új stílus nevét. A példa kedvéért nevezze el a stílust „Felett”-nek."
-#. m*)9
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12639,7 +11322,6 @@ msgctxt ""
msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
msgstr "Egy második stílus meghatározásához kattintson ismételten egy üres cellára, majd kövesse a fent leírt lépéseket. A cellához rendeljen eltérő háttérszínt, majd rendeljen hozzá egy nevet (például „Alatt”)."
-#. KaJs
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12649,7 +11331,6 @@ msgctxt ""
msgid "Step 3: Calculate Average"
msgstr "3. lépés: Átlagszámítás"
-#. DM;,
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12659,7 +11340,6 @@ msgctxt ""
msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
msgstr "Az adott példában számolja ki a véletlen értékek átlagát. Az eredményt egy cellába kerül:"
-#. Cny!
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12669,7 +11349,6 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "Vigye a kurzort egy üres cellára, például a J14-re, és válassza a <emph>Beszúrás - Függvény</emph> lehetőséget."
-#. *8d*
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12679,7 +11358,6 @@ msgctxt ""
msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
msgstr "Jelölje ki az ÁTLAG függvényt. Az egér segítségével jelölje ki az összes véletlen számot. Ha a Függvénytündér miatt nem látja a teljes tartományt, akkor átmenetileg lekicsinyítheti a párbeszédablakot a <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Zsugorítás vagy Maximalizálás\"><item type=\"menuitem\">Zsugorítás / Maximalizálás</item></link> ikon segítségével."
-#. 4L2s
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12689,7 +11367,6 @@ msgctxt ""
msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
msgstr "Zárja be a Függvénytündért az <item type=\"menuitem\">OK</item> gombbal."
-#. %4qK
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12699,7 +11376,6 @@ msgctxt ""
msgid "Step 4: Apply Cell Styles"
msgstr "4. lépés: Cellastílusok alkalmazása"
-#. ,RmY
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12709,7 +11385,6 @@ msgctxt ""
msgid "Now you can apply the conditional formatting to the sheet:"
msgstr "Most már alkalmazhatja a munkalapra a feltételes formázást:"
-#. pQch
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12719,7 +11394,6 @@ msgctxt ""
msgid "Select all cells with the random numbers."
msgstr "Jelölje ki az összes véletlen számot tartalmazó cellát."
-#. J}1P
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12729,7 +11403,6 @@ msgctxt ""
msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
msgstr "Válassza a <emph>Formátum - Feltételes formázás</emph> lehetőséget a megfelelő párbeszédablak megnyitásához."
-#. =Isx
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12739,7 +11412,6 @@ msgctxt ""
msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
msgstr "Adja meg a feltételt az alábbiak szerint: Ha a cella értéke kisebb J14-nél, akkor formázza a cellát az „Alatt” stílussal, és ha a cellaérték nagyobb vagy egyenlő J14-gyel, akkor formázza a cellát a „Felett” stílussal."
-#. s;y{
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12749,7 +11421,6 @@ msgctxt ""
msgid "Step 5: Copy Cell Style"
msgstr "5. lépés: Cellastílus másolása"
-#. w.So
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12759,7 +11430,6 @@ msgctxt ""
msgid "To apply the conditional formatting to other cells later:"
msgstr "A feltételes formázás többi cellán való későbbi alkalmazásához:"
-#. @p5C
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12769,7 +11439,6 @@ msgctxt ""
msgid "Click one of the cells that has been assigned conditional formatting."
msgstr "Kattintson az egyik olyan cellára, amelyhez feltételes formázást rendelt."
-#. E8DO
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12779,7 +11448,6 @@ msgctxt ""
msgid "Copy the cell to the clipboard."
msgstr "Másolja a cellát a vágólapra."
-#. maNK
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12789,7 +11457,6 @@ msgctxt ""
msgid "Select the cells that are to receive this same formatting."
msgstr "Jelölje ki azokat a cellákat, amelyeknek ugyanilyen formátumot akar."
-#. 6S8.
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12799,7 +11466,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
msgstr "Válassza a <emph>Szerkesztés - Irányított beillesztés</emph> lehetőséget. Megjelenik a <emph>Irányított beillesztés</emph> párbeszédablak."
-#. 46,Q
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12809,7 +11475,6 @@ msgctxt ""
msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
msgstr "A <emph>Kijelölés</emph> területen csak a <emph>Formázások</emph> jelölőnégyzetet jelölje be. A többi jelölőnégyzet kijelölését törölje. Kattintson az <emph>OK</emph> gombra."
-#. ,)g7
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
@@ -12819,7 +11484,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Formátum - Feltételes formázás\">Formátum - Feltételes formázás</link>"
-#. \gEq
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12828,7 +11492,6 @@ msgctxt ""
msgid "Entering Matrix Formulas"
msgstr "Mátrixok megadása"
-#. R.P)
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12837,7 +11500,6 @@ msgctxt ""
msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
msgstr "<bookmark_value>mátrixok; mátrixképletek megadása</bookmark_value><bookmark_value>képletek; mátrixképletek</bookmark_value><bookmark_value>beszúrás;mátrixképletek</bookmark_value>"
-#. Kq+X
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12847,7 +11509,6 @@ msgctxt ""
msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Mátrixok megadása\">Mátrixok megadása</link></variable>"
-#. K23O
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12857,7 +11518,6 @@ msgctxt ""
msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
msgstr "Az alábbi példa szemlélteti egy mátrixképlet megadásának módját, a mátrixfüggvények részletes bemutatása nélkül."
-#. VBtl
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12867,7 +11527,6 @@ msgctxt ""
msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
msgstr "Tegyük fel, hogy beír 10 számot az A és a B oszlopba (A1:A10 és B1:B10), és ki szeretné számolni az egyes sorok összegét a C oszlopban."
-#. cY}8
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12877,7 +11536,6 @@ msgctxt ""
msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
msgstr "Az egér segítségével jelölje ki a C1:C10 tartományt, az eredmény itt fog megjelenni."
-#. 4pIF
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12887,7 +11545,6 @@ msgctxt ""
msgid "Press F2, or click in the input line of the Formula bar."
msgstr "Nyomja meg az F2-t, vagy kattintson a Képlet eszköztár beviteli sorára."
-#. yO,J
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12897,7 +11554,6 @@ msgctxt ""
msgid "Enter an equal sign (=)."
msgstr "Írjon be egy egyenlőségjelet (=)."
-#. W4Wn
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12907,7 +11563,6 @@ msgctxt ""
msgid "Select the range A1:A10, which contains the first values for the sum formula."
msgstr "Jelölje ki az összegképlet első értékeit tartalmazó A1:A10 tartományt."
-#. vKY.
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12917,7 +11572,6 @@ msgctxt ""
msgid "Press the (+) key from the numerical keypad."
msgstr "Nyomja meg a numerikus billentyűzeten lévő (+) billentyűt."
-#. 7Gjd
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12927,7 +11581,6 @@ msgctxt ""
msgid "Select the numbers in the second column in cells B1:B10."
msgstr "Jelölje ki a második oszlop B1:B10 celláiban lévő számokat."
-#. adf;
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12937,7 +11590,6 @@ msgctxt ""
msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr "Fejezze be a bevitelt a mátrix-billentyűkombinációval: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-#. 13yV
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
@@ -12947,7 +11599,6 @@ msgctxt ""
msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
msgstr "A mátrix területe a módosításokkal szemben (például sorok vagy oszlopok törlése) automatikusan védelem alá kerül. Mindezek ellenére lehetséges a formátum szerkesztése, például a cella hátterének megváltoztatása."
-#. i%mI
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -12956,7 +11607,6 @@ msgctxt ""
msgid "Merging and Splitting Cells"
msgstr "Cellák egyesítése és felosztása"
-#. 0=Sb
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -12965,7 +11615,6 @@ msgctxt ""
msgid "<bookmark_value>cells; merging/unmerging</bookmark_value> <bookmark_value>tables; merging cells</bookmark_value> <bookmark_value>cell merges</bookmark_value> <bookmark_value>unmerging cells</bookmark_value> <bookmark_value>splitting cells</bookmark_value> <bookmark_value>merging;cells</bookmark_value>"
msgstr "<bookmark_value>cellák; egyesítés/felosztás</bookmark_value><bookmark_value>táblázatok; cellák egyesítése</bookmark_value><bookmark_value>cellaegyesítések</bookmark_value> <bookmark_value>cellaegyesítések törlése</bookmark_value> <bookmark_value>cellák felosztása</bookmark_value><bookmark_value>egyesítés;cellák</bookmark_value>"
-#. oy=@
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -12974,7 +11623,6 @@ msgctxt ""
msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Merging and Unmerging Cells</link></variable>"
msgstr "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Cellák egyesítése és felosztása\">Cellák egyesítése és felosztása</link></variable>"
-#. R:s\
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -12983,7 +11631,6 @@ msgctxt ""
msgid "You can select adjacent cells, then merge them into a single cell. Conversely, you can take a large cell that has been created by merging single cells, and divide it back into individual cells."
msgstr "Kiválaszthat egymás melletti cellákat, majd egyesítheti őket egy cellává. Ennek megfelelően kiválaszthat egy nagy cellát, amely cellák egyesítésével jött létre, és újra feloszthatja egyedi cellákká."
-#. xY_5
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -12992,7 +11639,6 @@ msgctxt ""
msgid "When you copy cells into a target range containing merged cells, the target range gets unmerged first, then the copied cells are pasted in. If the copied cells are merged cells, they retain their merge state."
msgstr "Ha egy egyesített cellákat tartalmazó céltartományba másol cellákat, akkor a céltartományt először fel kell osztani, ezután lehet beilleszteni a másolt cellákat. Ha a másolt cellák egyesített cellák, akkor az egyesített állapotuk megmarad."
-#. ;p]m
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -13001,7 +11647,6 @@ msgctxt ""
msgid "Merging Cells"
msgstr "Cellák egyesítése"
-#. (g*)
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -13010,7 +11655,6 @@ msgctxt ""
msgid "Select the adjacent cells."
msgstr "Jelölje ki a szomszédos cellákat."
-#. y+/f
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -13019,7 +11663,6 @@ msgctxt ""
msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>. If you choose <emph>Format - Merge Cells - Merge and Center Cells</emph>, the cell content will be centered in the merged cell."
msgstr "Válassza a <emph>Formátum - Cellák összefésülése - Cellák összefésülése</emph> menüpontot. Ha a <emph>Formátum - Cellák összefésülése - Cellák egyesítése és középre igazítása</emph> menüpontot választja, akkor a cellatartalom középre lesz igazítva az összefésült cellában."
-#. 21W;
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -13028,7 +11671,6 @@ msgctxt ""
msgid "Splitting Cells"
msgstr "Cellák felosztása"
-#. kl4x
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -13037,7 +11679,6 @@ msgctxt ""
msgid "Place the cursor in the cell to be split."
msgstr "Helyezze a kurzort a felosztani kívánt cellába."
-#. +P20
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
@@ -13046,7 +11687,6 @@ msgctxt ""
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>."
msgstr "Válassza a <emph>Formátum - Cellák egyesítése - Cellák felosztása</emph> menüpontot."
-#. +EyT
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13055,7 +11695,6 @@ msgctxt ""
msgid "Sorting Data"
msgstr "Adatok rendezése"
-#. Y5Kl
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13064,7 +11703,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
msgstr "<bookmark_value>adatbázis-tartományok; rendezés</bookmark_value><bookmark_value>rendezés; adatbázis-tartományok</bookmark_value><bookmark_value>adatok;rendezés adatbázisokban</bookmark_value>"
-#. sH#/
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13074,7 +11712,6 @@ msgctxt ""
msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Adatbázis-tartományok rendezése\">Adatok rendezése</link></variable>"
-#. XP{.
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13084,7 +11721,6 @@ msgctxt ""
msgid "Click in a database range."
msgstr "Kattintson egy adatbázis-tartományra."
-#. Fpb?
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13093,7 +11729,6 @@ msgctxt ""
msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
msgstr "Ha kijelöl egy cellatartományt, akkor csak ezek a cellák lesznek rendezve. Ha kijelölés helyett csak rákattint egy cellára, akkor az egész adatbázis-tartomány rendezve lesz."
-#. 5{7s
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13102,7 +11737,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
msgstr "Válassza az <item type=\"menuitem\">Adatok - Rendezés</item> lehetőséget."
-#. @;o(
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13111,7 +11745,6 @@ msgctxt ""
msgid "The range of cells that will get sorted is shown in inverted colors."
msgstr "A cellatartomány, amely rendezve lesz, inverz színnel jelenik meg."
-#. i:;/
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13120,7 +11753,6 @@ msgctxt ""
msgid "Select the sort options that you want."
msgstr "Adja meg a kívánt rendezési beállításokat."
-#. 6Bh*
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13129,7 +11761,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. *ISR
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
@@ -13138,7 +11769,6 @@ msgctxt ""
msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
msgstr "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wikioldal adattartományok definiálásáról</link>"
-#. {!ej
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13147,7 +11777,6 @@ msgctxt ""
msgid "Displaying Formulas or Values"
msgstr "Képletek vagy értékek megjelenítése"
-#. 7$$k
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13156,7 +11785,6 @@ msgctxt ""
msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
msgstr "<bookmark_value>képletek; megjelenítés cellákban</bookmark_value><bookmark_value>értékek; megjelenítés táblázatokban</bookmark_value><bookmark_value>táblázatok; képletek/értékek megjelenítése</bookmark_value><bookmark_value>eredmények vagy képletek megjelenítése</bookmark_value><bookmark_value>megjelenítés;képletek az eredmények helyett</bookmark_value>"
-#. \%7y
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13166,7 +11794,6 @@ msgctxt ""
msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Képletek vagy értékek megjelenítése\">Képletek vagy értékek megjelenítése</link></variable>"
-#. mxLS
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13176,7 +11803,6 @@ msgctxt ""
msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
msgstr "Ha a képleteket szeretné megjeleníteni a cellákban, például a =SZUM(A1:B5) képletet, akkor kövesse az alábbiakat:"
-#. *H[z
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13186,7 +11812,6 @@ msgctxt ""
msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
msgstr "Válassza az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Calc - Nézet</emph> lehetőséget."
-#. QOmM
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13196,7 +11821,6 @@ msgctxt ""
msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
msgstr "A <emph>Megjelenítés</emph> területen jelölje ki a <emph>Képletek</emph> jelölőnégyzetet. Kattintson az OK gombra."
-#. T0@*
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13206,7 +11830,6 @@ msgctxt ""
msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
msgstr "Ha a számítás eredményét szeretné látni a képlet helyett, akkor ne jelölje be a Képletek négyzetet."
-#. s.%~
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
@@ -13216,7 +11839,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr "Válassza az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Táblázatkezelő - Nézet\">%PRODUCTNAME Calc - Nézet</link> lehetőséget."
-#. Z4)C
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13225,7 +11847,6 @@ msgctxt ""
msgid "Formatting Numbers With Decimals"
msgstr "Számok formázása tizedesekkel"
-#. #$S1
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13234,7 +11855,6 @@ msgctxt ""
msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
msgstr "<bookmark_value>számok; tizedesjegyek formázása</bookmark_value> <bookmark_value>számok; formázás munkafüzetekben</bookmark_value> <bookmark_value>formátumok; számok munkafüzetekben</bookmark_value> <bookmark_value>táblázatok; számformátumok</bookmark_value> <bookmark_value>alapértelmezések; számformátumok munkafüzetekben</bookmark_value> <bookmark_value>számformátumok; cellákban</bookmark_value> <bookmark_value>tizedesjegyek;számok formázása</bookmark_value> <bookmark_value>formázás;tizedesjegyekkel rendelkező számok</bookmark_value> <bookmark_value>formázás;tizedesjegyek hozzáadás/törlés</bookmark_value> <bookmark_value>számformátumok; tizedesjegyek hozzáadása/törlése a cellában</bookmark_value> <bookmark_value>törlés; tizedesjegyek</bookmark_value> <bookmark_value>tizedesjegyek; hozzáadás/törlés</bookmark_value>"
-#. b4%u
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13244,7 +11864,6 @@ msgctxt ""
msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Számok formázása tizedesekkel\">Számok formázása tizedesekkel</link></variable>"
-#. htKr
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13254,7 +11873,6 @@ msgctxt ""
msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
msgstr "Írjon be a munkalapba egy számot, például: 1234,5678. Ez a szám az alapértelmezett számformátum szerint kerül megjelenítésre két tizedesjeggyel. A bejegyzés megerősítésekor 1234,57-et fog látni. Csak a megjelenítés során kerül a szám lekerekítésre, a program belsejében a vessző után álló mind a négy tizedesjegy megmarad."
-#. [\?Z
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13264,7 +11882,6 @@ msgctxt ""
msgid "To format numbers with decimals:"
msgstr "Számok tizedesjegyekkel való formázásához:"
-#. +C,8
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13274,7 +11891,6 @@ msgctxt ""
msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
msgstr "Helyezze a kurzort egy számra, majd válassza a <emph>Formátum - Cellák</emph> parancsot a <emph>Cellák formázása</emph> párbeszédablak megnyitásához."
-#. afZH
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13284,7 +11900,6 @@ msgctxt ""
msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
msgstr "A <emph>Számok</emph> lapon megjelenik az előre meghatározott számformátumok kínálata. A párbeszédablak jobb alsó részében láthatja, hogy az aktuális szám - egy adott formátum hozzárendelését követően - milyen módon kerülne megjelenítésre."
-#. }6|f
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13293,7 +11908,6 @@ msgctxt ""
msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Ikon</alt></image>"
-#. g:!\
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
@@ -13303,7 +11917,6 @@ msgctxt ""
msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
msgstr "Ha csak a tizedesjegyek számát kívánja módosítani, akkor azt legegyszerűbben a Formázás eszköztár <emph>Számformátum: tizedesjegy hozzáadása</emph> vagy <emph>Számformátum: tizedesjegy törlése</emph> ikonjaival teheti meg."
-#. ksVV
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13312,7 +11925,6 @@ msgctxt ""
msgid "Printing Rows or Columns on Every Page"
msgstr "Sorok és oszlopok nyomtatása az összes oldalra"
-#. ef_M
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13321,7 +11933,6 @@ msgctxt ""
msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
msgstr "<bookmark_value>nyomtatás; több oldalon levő munkalapok</bookmark_value><bookmark_value>munkalapok; több oldalra történő nyomtatás</bookmark_value><bookmark_value>sorok; ismétlés nyomtatásnál</bookmark_value><bookmark_value>oszlopok; ismétlés nyomtatásnál</bookmark_value><bookmark_value>rögzített sorok vagy oszlopok; nyomtatás</bookmark_value><bookmark_value>ismétlés;oszlopok/sorok a kinyomtatott oldalon</bookmark_value><bookmark_value>címsorok; nyomtatás az összes munkalapon</bookmark_value><bookmark_value>élőfejek; nyomtatás a munkalapon</bookmark_value><bookmark_value>élőlábak; nyomtatás a munkalapokon</bookmark_value><bookmark_value>nyomtatás; sorok/oszlopok táblázatfejlécként</bookmark_value>"
-#. H]bU
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13331,7 +11942,6 @@ msgctxt ""
msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Sorok, illetve oszlopok nyomtatása minden oldalon\">Sorok, illetve oszlopok nyomtatása minden oldalon</link></variable>"
-#. 97P@
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13341,7 +11951,6 @@ msgctxt ""
msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
msgstr "Ha egy olyan nagy munkalapja van, amelyet csak több oldalra lehet kinyomtatni, akkor megadhat olyan sorokat és oszlopokat, amelyek az összes kinyomtatott oldalon megismétlődnek."
-#. .qrp
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13351,7 +11960,6 @@ msgctxt ""
msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
msgstr "Ha például ki szeretné nyomtatni az összes munkalap legfelső két sorát és az első (A) oszlopát, akkor tegye a következőket:"
-#. Ss#!
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13361,7 +11969,6 @@ msgctxt ""
msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
msgstr "Válassza a <emph>Formátum - Nyomtatási tartomány - Szerkesztés</emph> lehetőséget. Megjelenik a <emph>Nyomtatási tartományok módosítása</emph> párbeszédablak."
-#. @8H0
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13371,7 +11978,6 @@ msgctxt ""
msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
msgstr "Kattintson az <emph>Ismétlendő sorok</emph> terület jobb szélén található ikonra."
-#. =0n(
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13381,7 +11987,6 @@ msgctxt ""
msgid "The dialog shrinks so that you can see more of the sheet."
msgstr "A párbeszédablak mérete lecsökken, így többet láthat a munkalapból."
-#. 0?.M
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13391,7 +11996,6 @@ msgctxt ""
msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
msgstr "Válassza ki az első két sort, és ebben a példában kattintson az A1 cellára, majd húzza azt át az A2 cellára."
-#. =nD%
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13401,7 +12005,6 @@ msgctxt ""
msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
msgstr "A lekicsinyített párbeszédablakban ezt láthatja: $1:$2. Az 1. és 2. sorok így most ismétlendő sorok."
-#. |F`7
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13411,7 +12014,6 @@ msgctxt ""
msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
msgstr "Kattintson az <emph>Ismétlendő sorok</emph> terület jobb szélén található ikonra. A párbeszédablak újra visszaállításra kerül."
-#. CZ1W
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13421,7 +12023,6 @@ msgctxt ""
msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
msgstr "Ha az A oszlopot kívánja ismétlésre kerülő oszlopként megjelölni, kattintson az <emph>Ismétlendő oszlopok</emph> terület jobb szélén található ikonra."
-#. TN|a
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13431,7 +12032,6 @@ msgctxt ""
msgid "Click column A (not in the column header)."
msgstr "Kattintson az A oszlopra (ne az oszlopfejlécben)."
-#. %h[x
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13441,7 +12041,6 @@ msgctxt ""
msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
msgstr "Kattintson újra az <emph>Ismétlendő oszlopok</emph> terület jobb szélén található ikonra."
-#. qy!l
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13451,7 +12050,6 @@ msgctxt ""
msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
msgstr "Az ismétlésre kerülő sorok a munkalapon található sorok. Ettől függetlenül meghatározhatja az összes oldalon nyomtatásra kerülő élőfejet és élőlábat a <emph>Formátum - Oldal</emph> pontban."
-#. R?=A
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13461,7 +12059,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Nézet - Oldaltörés előnézete\">Nézet - Oldaltörés előnézete</link>"
-#. Ch?h
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13471,7 +12068,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Formátum - Nyomtatási tartomány - Szerkesztés\">Formátum - Nyomtatási tartomány - Szerkesztés</link>"
-#. mL-u
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
@@ -13481,7 +12077,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Formátum - Oldal - (Élőfej / Élőláb)\">Formátum - Oldal - (Élőfej / Élőláb)</link>"
-#. bF46
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13490,7 +12085,6 @@ msgctxt ""
msgid "Printing Sheet Details"
msgstr "Munkalap részleteinek nyomtatása"
-#. 8|Md
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13499,7 +12093,6 @@ msgctxt ""
msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
msgstr "<bookmark_value>nyomtatás;munkalap részletei</bookmark_value><bookmark_value>munkalapok; részletek nyomtatása</bookmark_value><bookmark_value>rácsok; munkalaprácsok nyomtatása</bookmark_value><bookmark_value>képletek; nyomtatás, eredmények helyett</bookmark_value><bookmark_value>megjegyzések; nyomtatás</bookmark_value><bookmark_value>diagramok;nyomtatás</bookmark_value><bookmark_value>munkalaprácsok; nyomtatás</bookmark_value><bookmark_value>cellák; rácsok nyomtatása</bookmark_value><bookmark_value>szegélyek; cellák nyomtatása</bookmark_value><bookmark_value>zérus értékek; nyomtatás</bookmark_value><bookmark_value>nulla értékek; nyomtatás</bookmark_value><bookmark_value>rajzobjektumok;nyomtatás</bookmark_value>"
-#. M27.
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13509,7 +12102,6 @@ msgctxt ""
msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Munkalap részleteinek nyomtatása\">Munkalap részleteinek nyomtatása</link></variable>"
-#. @3,k
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13519,7 +12111,6 @@ msgctxt ""
msgid "When printing a sheet you can select which details are to be printed:"
msgstr "Munkalap nyomtatásánál kiválaszthatja a kinyomtatandó részleteket:"
-#. :GM2
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13529,7 +12120,6 @@ msgctxt ""
msgid "Row and column headers"
msgstr "Sor- és oszlopfejlécek"
-#. qZUT
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13539,7 +12129,6 @@ msgctxt ""
msgid "Sheet grid"
msgstr "Munkalaprács"
-#. a\x8
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13549,7 +12138,6 @@ msgctxt ""
msgid "Comments"
msgstr "Megjegyzések"
-#. cWPW
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13559,7 +12147,6 @@ msgctxt ""
msgid "Objects and graphics"
msgstr "Objektumok és képek"
-#. 30mD
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13569,7 +12156,6 @@ msgctxt ""
msgid "Charts"
msgstr "Diagramok"
-#. h6/g
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13579,7 +12165,6 @@ msgctxt ""
msgid "Drawing objects"
msgstr "Rajzobjektumok"
-#. (NIA
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13589,7 +12174,6 @@ msgctxt ""
msgid "Formulas"
msgstr "Képletek"
-#. 6F;9
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13599,7 +12183,6 @@ msgctxt ""
msgid "To choose the details proceed as follows:"
msgstr "A részletek kiválasztásához tegye a következőket:"
-#. CMl,
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13609,7 +12192,6 @@ msgctxt ""
msgid "Select the sheet you want to print."
msgstr "Válassza ki a kinyomtatandó munkalapot."
-#. tSyA
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13619,7 +12201,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page</emph>."
msgstr "Válassza a <emph>Formátum - Oldal</emph> menüparancsot."
-#. $7B;
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13629,7 +12210,6 @@ msgctxt ""
msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
msgstr "Ha a munkalap írásvédetten került megnyitásra, akkor a parancs nem látható. Ebben az esetben a <emph>Standard</emph> eszköztáron kattintson a <emph>Fájl szerkesztése</emph> ikonra."
-#. sJ{v
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13639,7 +12219,6 @@ msgctxt ""
msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
msgstr "Válassza a <emph>Munkalap</emph> fület. A <emph>Nyomtatás</emph> területen jelölje meg a nyomtatni kívánt részleteket, majd kattintson az OK gombra."
-#. ,N`F
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
@@ -13649,7 +12228,6 @@ msgctxt ""
msgid "Print the document."
msgstr "Nyomtassa ki a dokumentumot."
-#. %f=H
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/schart.po b/source/hu/helpcontent2/source/text/schart.po
index 1acacf7984c..0d80be204f4 100644
--- a/source/hu/helpcontent2/source/text/schart.po
+++ b/source/hu/helpcontent2/source/text/schart.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-03-25 12:11+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. R6tf
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "$[officename] Chart Features"
msgstr "A $[officename] Chart funkciói"
-#. =UVs
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
msgstr "<link href=\"text/schart/main0503.xhp\" name=\"A $[officename] Chart funkciói\">A $[officename] Chart funkciói</link>"
-#. Fy.7
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Charts allow you to present data so that it is easy to visualize."
msgstr "A diagramok az adatok bemutatására használhatók, így könnyebb azokat megjeleníteni."
-#. yP_p
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
msgstr "Diagramot akár egy Calc-munkafüzet vagy Writer-táblázat adatai alapján is létrehozhat. Ha a diagram az adatokkal megegyező dokumentumba kerül beágyazásra, akkor megmarad a kapcsolata az adatokkal, vagyis a forrásadatok változása automatikusan frissíti a diagramot."
-#. q*!8
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Chart Types"
msgstr "Diagramtípusok"
-#. n#[n
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
msgstr "Térbeli és síkbeli diagramok széles választéka áll rendelkezésére, többek között oszlopdiagramok, vonaldiagramok és árfolyamdiagramok. Egy létező diagram típusát néhány egérkattintással megváltoztathatja."
-#. P16_
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Individual Formatting"
msgstr "Egyéni formázás"
-#. |mhS
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
msgstr "Az olyan diagramelemeket, mint például a tengelyek, adatfeliratok és jelmagyarázatok, az elemre való jobb kattintással, az eszköztár ikonjaival, valamit a menüparancsokkal szerkesztheti át."
-#. +LUD
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "Formázás eszköztár"
-#. +WGX
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr "<link href=\"text/schart/main0202.xhp\" name=\"Formázás eszköztár\">Formázás eszköztár</link>"
-#. $QKD
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -121,7 +110,6 @@ msgctxt ""
msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
msgstr "A Formázás eszköztár akkor jelenik meg, amikor a diagram szerkesztési módban van. Kattintson duplán a diagramra a szerkesztési módba való belépéshez. Kattintson a diagramon kívülre a szerkesztési mód elhagyásához."
-#. 1EOB
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
msgstr "A diagram formázása a Formázás eszköztár vezérlőelemei és ikonjai segítségével módosítható."
-#. #b7`
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -139,7 +126,6 @@ msgctxt ""
msgid "Select Chart Element"
msgstr "Diagramelemek kijelölése"
-#. jC@s
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -148,7 +134,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
msgstr "<ahelp hid=\".\">Jelölje ki azt a diagramelemet, amelyet formázni szeretne. Az elem kijelölődik a diagram előnézetén. Kattintson a Kijelölés formázása gombra a kijelölt elem tulajdonság-párbeszédablakának megnyitásához.</ahelp>"
-#. QS^O
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -157,7 +142,6 @@ msgctxt ""
msgid "Format Selection"
msgstr "Kijelölés formázása"
-#. LJ[F
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -166,7 +150,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a kiválasztott elem tulajdonság-párbeszédablakát.</ahelp>"
-#. z44c
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -175,7 +158,6 @@ msgctxt ""
msgid "Chart Type"
msgstr "Diagramtípus"
-#. TG]H
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -184,7 +166,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Diagramtípus párbeszédablakot.</ahelp>"
-#. Y*U}
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -193,7 +174,6 @@ msgctxt ""
msgid "Chart Data Table"
msgstr "Diagram-adattábla"
-#. /{J:
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -202,7 +182,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja az Adattáblázat párbeszédablakot, amelyen szerkesztheti a diagram adatait.</ahelp>"
-#. x(5b
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -211,7 +190,6 @@ msgctxt ""
msgid "Horizontal Grid On/Off"
msgstr "Vízszintes rácsozat be/ki"
-#. %T5}
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -220,7 +198,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
msgstr "<ahelp hid=\".\">A Formázás eszköztár Vízszintes rácsozat be/ki ikonja megjeleníti vagy elrejti az Y tengelyhez tartozó rácsvonalakat.</ahelp>"
-#. h:h3
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -229,7 +206,6 @@ msgctxt ""
msgid "Legend On/Off"
msgstr "Jelmagyarázat be/ki"
-#. iBWZ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -238,7 +214,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
msgstr "<ahelp hid=\".\">A jelmagyarázat megjelenítéséhez, illetve elrejtéséhez kattintson a Jelmagyarázat be/ki gombra a Formátum eszköztáron.</ahelp>"
-#. XJL@
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -247,7 +222,6 @@ msgctxt ""
msgid "Scale Text"
msgstr "Szöveg átméretezése"
-#. !+TR
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -256,7 +230,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
msgstr "<ahelp hid=\".\">Átméretezi a szöveget a diagramon a diagram méretének megváltozásakor.</ahelp>"
-#. cdcd
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -265,7 +238,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr "Automatikus elrendezés"
-#. GA!(
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -274,7 +246,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
msgstr "<ahelp hid=\".\">Visszahelyezi az összes diagramelemet az alapértelmezett helyzetébe az aktuális diagramon belül. Ez a funkció nem módosítja a diagram típusát vagy bármilyen tulajdonságát az elemek helyzetén kívül.</ahelp>"
-#. rK3-
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -283,7 +254,6 @@ msgctxt ""
msgid "Charts in $[officename]"
msgstr "Diagramok a $[officename] programban"
-#. U0iz
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -292,7 +262,6 @@ msgctxt ""
msgid "<bookmark_value>charts; overview</bookmark_value> <bookmark_value>HowTos for charts</bookmark_value>"
msgstr "<bookmark_value>diagramok; áttekintés</bookmark_value><bookmark_value>Hogyanok diagramokhoz</bookmark_value>"
-#. ;]OJ
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -302,7 +271,6 @@ msgctxt ""
msgid "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\">Using Charts in %PRODUCTNAME</link></variable>"
msgstr "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Diagramok a $[officename] programban\">Diagramok használata a %PRODUCTNAME programban</link></variable>"
-#. nny)
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations. </variable>"
msgstr "<variable id=\"chart\">A $[officename] lehetővé teszi, hogy az adatokat grafikus módon is megjeleníthesse, így az adatsorokat vizuálisan össze tudja hasonlítani, valamint meg tudja nézni az adatokban levő trendeket. A diagramokat beszúrhatja munkafüzetekbe, szöveges dokumentumokba, rajzokba és bemutatókba. </variable>"
-#. Hp}Z
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "Chart Data"
msgstr "Diagramadat"
-#. IZ%L
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -331,7 +297,6 @@ msgctxt ""
msgid "Charts can be based on the following data:"
msgstr "A diagramok a következő adatokon alapulhatnak:"
-#. 3nYt
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -340,7 +305,6 @@ msgctxt ""
msgid "Spreadsheet values from Calc cell ranges"
msgstr "Munkafüzetértékek Calc-cellatartományokból"
-#. C7Ja
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -349,7 +313,6 @@ msgctxt ""
msgid "Cell values from a Writer table"
msgstr "Cellaértékek Writer-táblázatokból"
-#. /ibE
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -358,7 +321,6 @@ msgctxt ""
msgid "Values that you enter in the Chart Data Table dialog (you can create these charts in Writer, Draw, or Impress, and you can copy and paste them also to Calc)"
msgstr "A Diagram adattáblázata párbeszédpanelen bevitt értékek (ezeket a diagramokat létrehozhatja a Writer, a Draw vagy az Impress alkalmazásokban, és átmásolhatja a Calcba is)"
-#. VdGQ
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -367,7 +329,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Diagramot készít az aktuális dokumentumban. Ha egy folytonos cellatartományt akar adatforrásként használni a diagramhoz, akkor kattintson a cellatartományba, majd válassza ezt a parancsot. Más esetben jelölje ki a cellákat, majd válassza ezt a parancsot a diagram létrehozásához a kijelölt cellákból.</ahelp>"
-#. Ljfa
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -376,7 +337,6 @@ msgctxt ""
msgid "To insert a chart"
msgstr "Egy diagram beszúrásához"
-#. \Mj~
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -385,7 +345,6 @@ msgctxt ""
msgid "To edit a chart"
msgstr "Egy diagram szerkesztéséhez"
-#. E9mK
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -394,7 +353,6 @@ msgctxt ""
msgid "Click a chart to edit the object properties:"
msgstr "Kattintson a diagramra a diagram objektumtulajdonságainak szerkesztéséhez:"
-#. [ah;
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -403,7 +361,6 @@ msgctxt ""
msgid "Size and position on the current page."
msgstr "Méret és elhelyezkedés az aktuális lapon"
-#. F9_Z
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -412,7 +369,6 @@ msgctxt ""
msgid "Alignment, text wrap, outer borders, and more."
msgstr "Igazítás, szövegtördelés, külső szegélyek stb."
-#. _FaS
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -421,7 +377,6 @@ msgctxt ""
msgid "Double-click a chart to enter the chart edit mode:"
msgstr "Kattintson duplán a diagramra, hogy belépjen a diagramszerkesztési módba:"
-#. :m6G
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -430,7 +385,6 @@ msgctxt ""
msgid "Chart data values (for charts with own data)."
msgstr "Diagramadat-értékek (saját adatok nélküli diagramokhoz)"
-#. kz!O
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -439,7 +393,6 @@ msgctxt ""
msgid "Chart type, axes, titles, walls, grid, and more."
msgstr "Diagramtípusok, tengelyek, címek, hátterek, rács stb."
-#. TP)%
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -448,7 +401,6 @@ msgctxt ""
msgid "Double-click a chart element in chart edit mode:"
msgstr "Kattintson duplán egy diagramelemre a diagramszerkesztési módban:"
-#. YQ!+
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -457,7 +409,6 @@ msgctxt ""
msgid "Double-click an axis to edit the scale, type, color, and more."
msgstr "Kattintson duplán a tengelyen a skála, típus, szín stb. szerkesztéséhez."
-#. [ZFg
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -466,7 +417,6 @@ msgctxt ""
msgid "Double-click a data point to select and edit the data series to which the data point belongs."
msgstr "Kattintson duplán egy adatpontra annak kijelöléséhez, és az adatponthoz tartozó adatsor szerkesztéséhez."
-#. glR*
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -475,7 +425,6 @@ msgctxt ""
msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)."
msgstr "Kijelölt adatsornál kattintson, majd kattintson duplán egy adatpontra az adott adatpont tulajdonságainak szerkesztéséhez (például egyetlen oszlopra egy oszlopdiagramban)."
-#. sSds
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -484,7 +433,6 @@ msgctxt ""
msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series."
msgstr "Kattintson duplán a jelmagyarázatra a kijelöléséhez és szerkesztéséhez. Kattintson, ezután kattintson duplán egy szimbólumra a kijelölt jelmagyarázatban a hozzá kapcsolódó adatsor szerkesztéséhez."
-#. xH.n
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -493,7 +441,6 @@ msgctxt ""
msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties."
msgstr "A tulajdonságok szerkesztéséhez kattintson duplán bármelyik diagramelemen, vagy kattintson az elemre, és nyissa meg a Formátum menüt."
-#. CE-h
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -502,7 +449,6 @@ msgctxt ""
msgid "Click outside the chart to leave the current edit mode."
msgstr "Kattintson a diagramon kívülre az aktuális szerkesztési mód elhagyásához."
-#. `z%;
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -511,7 +457,6 @@ msgctxt ""
msgid "To print a chart in high quality, you can export the chart to a PDF file and print that file."
msgstr "A diagram jó minőségű kinyomtatásához a diagramot exportálhatja PDF-fájlba, és ezt a fájlt kinyomtathatja."
-#. `J%*
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -520,7 +465,6 @@ msgctxt ""
msgid "In chart edit mode, you see the <link href=\"text/schart/main0202.xhp\">Formatting Bar</link> for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the <link href=\"text/simpress/main0210.xhp\">Drawing</link> toolbar of Draw and Impress."
msgstr "Diagramszerkesztési módban megjelenik a diagramokhoz való <link href=\"text/schart/main0202.xhp\">Formázás eszköztár</link> a dokumentum felső szegélye közelében. A diagramokhoz való Rajz eszköztár a dokumentum alsó szegélye közelében jelenik meg. Ezen a Rajz eszköztáron a Draw és az Impress <link href=\"text/simpress/main0210.xhp\">Rajz</link> eszköztáráról már ismerős ikonok jelennek meg."
-#. `7cR
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -529,7 +473,6 @@ msgctxt ""
msgid "You can right-click an element of a chart to open the context menu. The context menu offers many commands to format the selected element."
msgstr "A diagram egy elemére a jobb egérgombbal kattintva előhívható a helyi menü. A helyi menü a kijelölt elem formázásához tartalmaz parancsokat."
-#. :dgr
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -538,7 +481,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected title.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt cím formázása módosítható.</ahelp>"
-#. }prO
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -547,7 +489,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart area.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A diagramterület formázása módosítható.</ahelp>"
-#. XkZ:
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -556,7 +497,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart wall.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A diagramháttér formázása módosítható.</ahelp>"
-#. \.Hf
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -565,7 +505,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart floor.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A diagram alapsíkjának formázása módosítható.</ahelp>"
-#. 0OnY
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -574,7 +513,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart legend.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A diagram jelmagyarázata módosítható.</ahelp>"
-#. 6]6^
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -583,7 +521,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt tengely formázása módosítható.</ahelp>"
-#. [08_
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -592,7 +529,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data point.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt adatpont formázása módosítható.</ahelp>"
-#. SOZZ
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -601,7 +537,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the major grid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A főrács formázása módosítható.</ahelp>"
-#. #64]
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -610,7 +545,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the minor grid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A segédrács formázása módosítható.</ahelp>"
-#. MNuj
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -619,7 +553,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data series.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az adatsorok formázása módosítható.</ahelp>"
-#. GAT6
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -628,7 +561,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock loss indicators.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az árfolyamveszteség-jelzők formázása módosítható.</ahelp>"
-#. keW/
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -637,7 +569,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock gain indicators.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az árfolyamnyereség-jelzők formázása módosítható.</ahelp>"
-#. N!Wb
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -646,7 +577,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data labels.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formázza az adatcímkéket.</ahelp>"
-#. Onpl
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -655,7 +585,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the Y error bars.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az Y hibasávok formázása módosítható.</ahelp>"
-#. A,,J
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -664,7 +593,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the mean value line.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A középértékvonal formázása módosítható.</ahelp>"
-#. @f\[
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -673,7 +601,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A trendvonal formázása módosítható.</ahelp>"
-#. 0Rba
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -682,7 +609,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline equation.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A trendvonal egyenletének formázása módosítható.</ahelp>"
-#. G((o
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -691,7 +617,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data label.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt adatfeliratok formázása módosítható.</ahelp>"
-#. 4hOV
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -700,7 +625,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert chart titles.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot a diagramcímek beszúrásához.</ahelp>"
-#. HMGB
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -709,7 +633,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert or delete axes.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot, amelyen beszúrhat vagy törölhet tengelyeket.</ahelp>"
-#. _hBL
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -718,7 +641,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot, amelyen beszúrhat egy tengelyt.</ahelp>"
-#. W4tw
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -727,7 +649,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis title.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot, amelyen beszúrhat egy tengelyfeliratot.</ahelp>"
-#. 5AY\
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -736,7 +657,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a major grid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Főrácsot szúr be.</ahelp>"
-#. #U.0
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -745,7 +665,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a minor grid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Segédrácsot szúr be.</ahelp>"
-#. 3L\p
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -754,7 +673,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts data labels.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adatfeliratokat szúr be.</ahelp>"
-#. M1@-
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -763,7 +681,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the trendline equation and the coefficient of determination R².</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Beszúrja a trendvonal egyenletét és az R² determinációs együtthatót.</ahelp>"
-#. WnhE
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -772,7 +689,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the coefficient of determination R² value.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Beszúrja az R² determinációs együttható értékét.</ahelp>"
-#. lL7T
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -781,7 +697,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a single data label.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egyetlen adatfeliratot szúr be.</ahelp>"
-#. yI:q
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -790,7 +705,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the chart legend.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli a diagram jelmagyarázatát.</ahelp>"
-#. }Ihk
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -799,7 +713,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli a kijelölt tengelyt.</ahelp>"
-#. 9Z6~
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -808,7 +721,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the major grid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli a főrácsot.</ahelp>"
-#. tXa%
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -817,7 +729,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the minor grid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli a segédrácsot.</ahelp>"
-#. 9Cu/
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -826,7 +737,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes all data labels.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli az összes adatfeliratot.</ahelp>"
-#. A2Z/
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -835,7 +745,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the trendline equation.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli a trendvonal egyenletét.</ahelp>"
-#. @dw(
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -844,7 +753,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the R² value.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli az R² értékét.</ahelp>"
-#. AEV%
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -853,7 +761,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected data label.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli a kijelölt adatfeliratot.</ahelp>"
-#. s5qS
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -862,7 +769,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the mean value line.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli az átlagértékvonalat.</ahelp>"
-#. n(@m
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -871,7 +777,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the Y error bars.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli az Y hibasávokat.</ahelp>"
-#. d%a~
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -880,7 +785,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets the selected data point to default format.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt adatpont formázását az alapértelmezettre állítja vissza.</ahelp>"
-#. n)NK
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/schart/00.po b/source/hu/helpcontent2/source/text/schart/00.po
index 9de8758d831..eb37ef26537 100644
--- a/source/hu/helpcontent2/source/text/schart/00.po
+++ b/source/hu/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-01-28 14:20+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. [Vlo
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "To access this function..."
msgstr "Ennek a funkciónak az eléréséhez..."
-#. RdO;
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<variable id=\"wie\">To access this function...</variable>"
msgstr "<variable id=\"wie\">Ennek a funkciónak az eléréséhez...</variable>"
-#. G92L
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Choose <emph>View - Chart Data Table</emph> (Charts)"
msgstr "Válassza a <emph>Nézet - Diagram adattáblázata</emph> menüparancsot."
-#. XCS7
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "On Formatting bar, click"
msgstr "A Formázás eszköztáron kattintson"
-#. s*-\
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Icon</alt></image>"
msgstr "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Ikon</alt></image>"
-#. 3O3J
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Chart Data"
msgstr "Diagramadat"
-#. ;0PI
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "<variable id=\"efgttl\">Choose <emph>Insert - Title </emph>(Charts)</variable>"
msgstr "<variable id=\"efgttl\">Válassza a <emph>Beszúrás - Cím</emph> (Diagramok) menüparancsot.</variable>"
-#. 2]X$
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Legend </emph>(Charts)"
msgstr "Válassza a <emph>Beszúrás - Jelmagyarázat</emph> menüparancsot (Diagramok)."
-#. B6pH
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
msgstr "Válassza az <emph>Formátum - Jelmagyarázat - Pozíció</emph> fület."
-#. Td2p
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Data Labels </emph>(Charts)"
msgstr "Válassza a <emph>Beszúrás - Adatfeliratok</emph> menüparancsot."
-#. ;.;V
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Choose <emph>Format - Format Selection - Data Point/Data Series - Data Labels</emph> tab (for data series and data point) (Charts)"
msgstr "Kattintson a <emph>Formátum - Kijelölés formázása - Adatpont/Adatsor - Adatfeliratok</emph> fülre (adatsor vagy adatpont esetén)."
-#. j*cW
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes </emph>(Charts)</variable>"
msgstr "<variable id=\"efgaug\">Válassza a <emph>Beszúrás - Tengelyek</emph> (Diagramok) menüparancsot.</variable>"
-#. pGyw
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Grids </emph>(Charts)"
msgstr "Válassza a <emph>Beszúrás - Rács</emph> menüparancsot."
-#. _FAs
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "On Formatting bar, click"
msgstr "A Formázás eszköztáron kattintson"
-#. :WGl
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Icon</alt></image>"
msgstr "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Ikon</alt></image>"
-#. ^^*a
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "Horizontal Grid On/Off"
msgstr "Vízszintes rácsozat be/ki"
-#. 6#))
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -181,7 +164,6 @@ msgctxt ""
msgid "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Icon</alt></image>"
msgstr "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Ikon</alt></image>"
-#. #/1+
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -191,7 +173,6 @@ msgctxt ""
msgid "Vertical Grid On/Off"
msgstr "Függőleges rácsozat be/ki"
-#. !,pb
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -201,7 +182,6 @@ msgctxt ""
msgid "<variable id=\"efgsta\">Choose <emph>Insert - Y Error Bars </emph>(Charts)</variable>"
msgstr "<variable id=\"efgsta\">Válassza a <emph>Beszúrás - Y hibasávok beszúrása</emph> (Diagramok) menüparancsot.</variable>"
-#. S^RR
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -210,7 +190,6 @@ msgctxt ""
msgid "<variable id=\"trendlines\">Choose Insert - Trend Lines (Charts)</variable>"
msgstr "<variable id=\"trendlines\">Válassza a Beszúrás - Trendvonalak (Diagramok) menüparancsot </variable>"
-#. QI6E
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -220,7 +199,6 @@ msgctxt ""
msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character </emph>(Charts)</variable>"
msgstr "<variable id=\"sonderz\">Válassza a <emph>Beszúrás - Különleges karakter</emph> (Diagramok) menüparancsot.</variable>"
-#. e6@]
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -230,7 +208,6 @@ msgctxt ""
msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection </emph>(Charts)</variable>"
msgstr "<variable id=\"frtoes\">Válassza a <emph>Formátum - Kijelölés formázása</emph> (Diagramok) menüparancsot.</variable>"
-#. KLNg
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "<variable id=\"frtodd\">Choose <emph>Format - Format Selection - Data Point</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtodd\">Válassza a <emph>Formátum - Kijelölés formázása - Adatpont</emph> (Diagramok) párbeszédablakot.</variable>"
-#. Tb*q
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "<variable id=\"frtodr\">Choose <emph>Format - Format Selection - Data Series</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtodr\">Válassza a <emph>Formátum - Kijelölés formázása - Adatsorok</emph> (Diagramok) párbeszédablakot.</variable>"
-#. s`kg
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "<variable id=\"optionen\">Choose <emph>Format - Format Selection - Data Series - Options</emph> tab (Charts)</variable>"
msgstr "<variable id=\"optionen\">Válassza a <emph>Formátum - Kijelölés formázása - Adatsor - Beállítások</emph> fület (Diagramok).</variable>"
-#. @s/.
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -270,7 +244,6 @@ msgctxt ""
msgid "<variable id=\"frtttl\">Choose <emph>Format - Title </emph>(Charts)</variable>"
msgstr "<variable id=\"frtttl\">Válassza a <emph>Formátum - Cím</emph> (Diagramok) menüparancsot.</variable>"
-#. eUh`
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "<variable id=\"frtoe\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtoe\">Válassza a <emph>Formátum - Kijelölés formázása - Cím</emph> párbeszédablakot.</variable>"
-#. X++V
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -290,7 +262,6 @@ msgctxt ""
msgid "<variable id=\"frtegt\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtegt\">Válassza a <emph>Formátum - Kijelölés formázása - Cím</emph> párbeszédablakot.</variable>"
-#. VjQ6
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -300,7 +271,6 @@ msgctxt ""
msgid "<variable id=\"frttya\">Choose <emph>Format - Title </emph>(Charts)</variable>"
msgstr "<variable id=\"frttya\">Válassza a <emph>Formátum - Cím</emph> menüparancsot.</variable>"
-#. Mmd(
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -310,7 +280,6 @@ msgctxt ""
msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis </emph>(Charts)</variable>"
msgstr "<variable id=\"frttyab\">Válassza a <emph>Formátum - Tengely</emph> menüparancsot.</variable>"
-#. A]/G
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -320,7 +289,6 @@ msgctxt ""
msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend, or Format - Format Selection</emph> - <emph>Legend </emph>(Charts)</variable>"
msgstr "<variable id=\"frtlgd\">Válassza a <emph>Formátum - Jelmagyarázat</emph> vagy a <emph>Formátum - Formátumkijelölés - Jelmagyarázat </emph> lehetőséget.</variable>"
-#. b1fL
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -330,7 +298,6 @@ msgctxt ""
msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes </emph>(Charts)</variable>"
msgstr "<variable id=\"frtaa\">Válassza a <emph>Formátum - Tengely - X tengely/Másodlagos X tengely/Z tengely/Minden tengely</emph> menüparancsot.</variable>"
-#. cm`q
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -340,7 +307,6 @@ msgctxt ""
msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis </emph>(Charts)</variable>"
msgstr "<variable id=\"frtyas\">Válassza a <emph>Formátum - Tengely - Y tengely/másodlagos Y tengely</emph> menüparancsot.</variable>"
-#. HM);
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -350,7 +316,6 @@ msgctxt ""
msgid "<variable id=\"frtysk\">Choose <emph>Format - Axis - Y Axis - Scale</emph> tab (Charts)</variable>"
msgstr "<variable id=\"frtysk\">Válassza a <emph>Formátum - Tengely - Y tengely - Méretezés</emph> menüparancsot.</variable>"
-#. .9j_
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "<variable id=\"positioning\">Choose <emph>Format - Axis - X Axis - Positioning</emph> tab (Charts)</variable>"
msgstr "<variable id=\"positioning\">Válassza a <emph>Formátum - Tengely -X tengely - Elhelyezés</emph> menüparancsot.</variable>"
-#. Vgaj
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "<variable id=\"positioningy\">Choose <emph>Format - Axis - Y Axis - Positioning</emph> tab (Charts)</variable>"
msgstr "<variable id=\"positioningy\">Válassza a <emph>Formátum - Tengely -Y tengely - Elhelyezés</emph> menüparancsot.</variable>"
-#. T!$`
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid </emph>(Charts)</variable>"
msgstr "<variable id=\"frtgt\">Válassza a <emph>Formátum - Rács</emph> menüparancsot.</variable>"
-#. !]s6
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids </emph>(Charts)</variable>"
msgstr "<variable id=\"frtgtr\">Válassza a <emph>Formátum - Rács - X, Y, Z tengely főrács/X, Y, Z segédrács/Minden tengelyrács</emph> menüparancsot.</variable>"
-#. RXB@
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "<variable id=\"frtdgw\">Choose <emph>Format - Chart Wall - Chart</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtdgw\">Nyissa meg a <emph>Formátum - Diagramháttér - Diagram</emph> párbeszédablakot.</variable>"
-#. k1PG
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -409,7 +369,6 @@ msgctxt ""
msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph>(Charts)</variable>"
msgstr "<variable id=\"frtdgb\">Válassza a <emph>Formátum - Diagram alapsíkja</emph> menüparancsot.</variable>"
-#. jbu6
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -419,7 +378,6 @@ msgctxt ""
msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph>(Charts)</variable>"
msgstr "<variable id=\"frtdgf\">Válassza a <emph>Formátum - Diagramterület</emph> menüparancsot.</variable>"
-#. 34@7
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -429,7 +387,6 @@ msgctxt ""
msgid "Choose <emph>Format - Chart Type </emph>(Charts)"
msgstr "Válassza a <emph>Formátum - Diagramtípus</emph> menüparancsot."
-#. oDsr
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -439,7 +396,6 @@ msgctxt ""
msgid "On Formatting bar, click"
msgstr "A Formázás eszköztáron kattintson"
-#. z2;t
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -448,7 +404,6 @@ msgctxt ""
msgid "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Icon</alt></image>"
msgstr "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Ikon</alt></image>"
-#. @;1i
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -458,7 +413,6 @@ msgctxt ""
msgid "Edit Chart Type"
msgstr "Diagramtípus szerkesztése"
-#. 3F-F
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -468,7 +422,6 @@ msgctxt ""
msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph>(Charts)</variable>"
msgstr "<variable id=\"frtdda\">Válassza a <emph>Formátum - Térbeli nézet</emph> menüparancsot.</variable>"
-#. [-+S
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -478,7 +431,6 @@ msgctxt ""
msgid "Choose <emph>Format - Arrangement </emph>(Charts)"
msgstr "Válassza a <emph>Formátum - Elrendezés</emph> menüparancsot."
-#. ^UQ9
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -488,7 +440,6 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
msgstr "Hívja elő a környezetfüggő menüt, majd válassza az <emph>Elrendezés</emph> lehetőséget."
-#. QaWM
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -497,7 +448,6 @@ msgctxt ""
msgid "<image id=\"img_id3150936\" src=\"cmd/sc_toggletitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150936\">Icon</alt></image>"
msgstr "<image id=\"img_id3150936\" src=\"cmd/sc_toggletitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150936\">Ikon</alt></image>"
-#. FHYm
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -507,7 +457,6 @@ msgctxt ""
msgid "Title On/Off"
msgstr "Cím be/ki"
-#. s/Wx
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -516,7 +465,6 @@ msgctxt ""
msgid "<image id=\"img_id3149781\" src=\"cmd/sc_toggleaxistitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149781\">Icon</alt></image>"
msgstr "<image id=\"img_id3149781\" src=\"cmd/sc_toggleaxistitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149781\">Ikon</alt></image>"
-#. GjuP
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -526,7 +474,6 @@ msgctxt ""
msgid "Axis Titles On/Off"
msgstr "Tengelyfelirat be/ki"
-#. Itju
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -535,7 +482,6 @@ msgctxt ""
msgid "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Icon</alt></image>"
msgstr "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Ikon</alt></image>"
-#. C_-R
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -545,7 +491,6 @@ msgctxt ""
msgid "Horizontal Grid On/Off"
msgstr "Vízszintes rácsozat be/ki"
-#. nfpe
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -554,7 +499,6 @@ msgctxt ""
msgid "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Icon</alt></image>"
msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Ikon</alt></image>"
-#. ~;ZI
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -564,7 +508,6 @@ msgctxt ""
msgid "Show/Hide Axis Descriptions"
msgstr "Tengelyek leírásának előhívása vagy elrejtése"
-#. C--Y
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -573,7 +516,6 @@ msgctxt ""
msgid "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Icon</alt></image>"
msgstr "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Ikon</alt></image>"
-#. DDuT
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -583,7 +525,6 @@ msgctxt ""
msgid "Vertical Grid On/Off"
msgstr "Függőleges rácsozat be/ki"
-#. djg?
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -592,7 +533,6 @@ msgctxt ""
msgid "Choose Insert - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Object -</caseinline></switchinline> Chart"
msgstr "Válassza a Beszúrás - <switchinline select=\"appl\"><caseinline select=\"WRITER\">Objektum -</caseinline></switchinline> Diagram menüparancsot."
-#. LP$9
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -601,7 +541,6 @@ msgctxt ""
msgid "Choose Insert - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Object -</caseinline></switchinline> Chart"
msgstr "Válassza a Beszúrás - <switchinline select=\"appl\"><caseinline select=\"WRITER\">Objektum -</caseinline></switchinline> Diagram menüparancsot."
-#. aCtY
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -610,7 +549,6 @@ msgctxt ""
msgid "Double-click a chart, then choose Format - Data Ranges"
msgstr "Kattintson duplán a diagramra, majd válassza a Formátum - Adattartományok menüparancsot."
-#. /hKU
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/schart/01.po b/source/hu/helpcontent2/source/text/schart/01.po
index 4a5da732898..0cc7ec3a78b 100644
--- a/source/hu/helpcontent2/source/text/schart/01.po
+++ b/source/hu/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-01-28 14:34+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. S%!G
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Chart Type Pie"
msgstr "Torta diagramtípus"
-#. #iQP
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
msgstr "<bookmark_value>fánkdiagramok</bookmark_value><bookmark_value>tortadiagramok;típusok</bookmark_value><bookmark_value>diagramtípusok;torta/fánk</bookmark_value>"
-#. fP$A
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Torta diagramtípus</link></variable>"
-#. a}Ma
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. Zdxo
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Pie"
msgstr "Torta"
-#. v!$*
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
msgstr "A tortadiagram az értékeket a teljes kör cikkeiként jeleníti meg. Az ív hossza, illetve a körcikk területe arányos az értékkel."
-#. `6A+
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
msgstr "Torta - ez az altípus egy adatoszlop értékeit tudja megjeleníteni a teljes torta színes cikkeiként. A létrehozott diagramban rákattinthat bármelyik cikkre, és elválaszthatja ezt a cikket a torta többi részétől, illetve visszaillesztheti azt."
-#. P?y-
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
msgstr "Robbantott torta - ez az altípus a cikkeket eleve különállóan rajzolja ki. A létrehozott diagramban rákattinthat bármelyik cikkre, és sugárirányban elmozdíthatja a torta középpontjához képest."
-#. eb^h
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
msgstr "Fánk - ez az altípus több adatoszlopot képes megjeleníteni. Minden adatoszlop egy fánk alakzattal van szemléltetve, amelynek a közepe lyukas; ide fér a következő adatsor képe. A létrehozott diagramban rákattinthat egy külső cikkre, és sugárirányban elmozdíthatja a fánk középpontjához képest."
-#. mhD0
#: type_pie.xhp
msgctxt ""
"type_pie.xhp\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
msgstr "Robbantott fánk – ez az altípus a külső szektorokat eleve különállóan rajzolja ki. A létrehozott diagramban rákattinthat egy külső szektorra, és sugárirányban elmozdíthatja a torta középpontjához képest."
-#. $[f5
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Chart Wizard - Chart Type"
msgstr "Diagramtündér - Diagramtípus"
-#. #O0I
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
msgstr "<bookmark_value>diagramok;diagramtípus választása</bookmark_value>"
-#. a2hg
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér - Diagramtípus</link></variable>"
-#. 0#h6
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
msgstr "A Diagramtündér első oldalán <link href=\"text/schart/01/choose_chart_type.xhp\">kiválaszthatja a diagramtípust</link>."
-#. L?xe
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "To choose a chart type"
msgstr "Diagramtípus kiválasztásához"
-#. `ZBf
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
msgstr "Válasszon az alapvető <link href=\"text/schart/01/choose_chart_type.xhp\">diagramtípusok</link> közül: kattintson bármelyikre, Oszlop, Sáv, Torta stb."
-#. -xY{
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "The contents on the right side will change to offer more options depending on the basic chart type."
msgstr "A jobb oldali tartalom további lehetőségeket kínál fel az alapvető diagramtípustól függően."
-#. BU/d
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
msgstr "Kattintson tetszés szerint bármelyik lehetőségre. A beállítások módosítása közben nézze az előnézetet a dokumentumban, hogy lássa, hogy fog kinézni a diagram."
-#. DtU]
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
msgstr "Nyomja meg a <item type=\"keycode\">Shift+F1</item> billentyűkombinációt, és vigye az egérmutatót egy vezérlőelemre a részletes tipp megjelenítéséhez."
-#. 2/Fl
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
msgstr "A tündér bármelyik oldalán kattintson a <emph>Befejezés</emph> gombra a tündér bezárásához, és az aktuális beállításokkal a diagram létrehozásához."
-#. R68~
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
msgstr "A tündér következő oldalához kattintson a <emph>Tovább</emph> gombra, vagy a tündér ablakának bal oldalán kattintson a bejegyzésekre az arra az oldalra ugráshoz."
-#. ^P5,
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Click <emph>Back</emph> to see the previous wizard page."
msgstr "Kattintson a <emph>Vissza</emph> gombra az előző oldalra visszatéréshez."
-#. A2*j
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
msgstr "A tündér bezárásához a diagram létrehozása nélkül kattintson a <emph>Mégse</emph> gombra."
-#. AcaU
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintson a tündér megfelelő oldalára lépéshez.</ahelp>"
-#. h)P\
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válasszon az alapvető diagramtípusok közül.</ahelp>"
-#. *syp
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válassza az alapvető diagramtípus egyik altípusát.</ahelp>"
-#. .=F(
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az adatértékek térbeli ábrázolását kapcsolja be.</ahelp>"
-#. qZ|6
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válassza ki a térbeli nézet típusát</ahelp>"
-#. !_hr
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válasszon egy alakzatot a listából.</ahelp>"
-#. .jm|
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Halmozott adatsorokat jelenít meg a vonaldiagramok esetén.</ahelp>"
-#. H1WR
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adatsorok halmozott megjelenítése, az értékek egymás tetejére téve jelennek meg..</ahelp>"
-#. f@PD
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -303,7 +271,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adatsorok halmozott megjelenítése, az értékek százalékos formában jelennek meg.</ahelp>"
-#. EAM;
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -312,7 +279,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">The lines are shown as curves.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A vonalak görbékként jelennek meg.</ahelp>"
-#. rTog
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -321,7 +287,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the curve properties.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot a görbe tulajdonságainak beállításához.</ahelp>"
-#. GFj!
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -330,7 +295,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egy pont (XY) diagramon összeköti a pontokat csökkenő x érték szerint, akkor is, ha az értékek sorrendje különböző.</ahelp>"
-#. M3X=
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -339,7 +303,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Állítsa be a vonalak számát az oszlop és vonal diagramtípushoz.</ahelp>"
-#. GI9n
#: wiz_chart_type.xhp
msgctxt ""
"wiz_chart_type.xhp\n"
@@ -348,7 +311,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyitja a Diagramtípus párbeszédablakot.</ahelp>"
-#. 6m#O
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -357,7 +319,6 @@ msgctxt ""
msgid "Chart Wizard - Data Range"
msgstr "Diagramtündér - Adattartomány"
-#. /f0u
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -366,7 +327,6 @@ msgctxt ""
msgid "<bookmark_value>data ranges in charts</bookmark_value>"
msgstr "<bookmark_value>adattartományok a diagramokban</bookmark_value>"
-#. ,:ek
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -375,7 +335,6 @@ msgctxt ""
msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Diagramtündér - Adattartomány</link></variable>"
-#. 6;);
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -384,7 +343,6 @@ msgctxt ""
msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> ezen oldalán az adattartomány egyetlen forrását jelölheti ki. Ez a tartomány egynél több téglalap alakú cellatartományból is állhat."
-#. _aD9
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -393,7 +351,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megnyitja az Adattartományok párbeszédablakot, ahol szerkesztheti az Adattartomány és Adatsorok mezőket.</ahelp>"
-#. 4sbc
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -402,7 +359,6 @@ msgctxt ""
msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
msgstr "Használja a Diagramtündér Adatsorok oldalát az adattartományok pontos kijelöléséhez."
-#. U/X6
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -411,7 +367,6 @@ msgctxt ""
msgid "This dialog is only available for charts based on a Calc or Writer table."
msgstr "Ez a párbeszédablak csak Calc- vagy Writer-táblázatokon alapuló diagramok esetén érhető el."
-#. rYf1
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -420,7 +375,6 @@ msgctxt ""
msgid "To specify a data range"
msgstr "Egy adattartomány megadásához"
-#. V/=2
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -429,7 +383,6 @@ msgctxt ""
msgid "Select the data range. Do one of the following:"
msgstr "Jelölje ki az adattartományt. Ehhez tegye a következők egyikét:"
-#. 0BP-
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -438,7 +391,6 @@ msgctxt ""
msgid "Enter the data range in the text box."
msgstr "Írja be az adattartományt a szövegmezőbe."
-#. lP9x
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -447,7 +399,6 @@ msgctxt ""
msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
msgstr "A Calcban egy példa-adattartomány lehet a „$Munkalap1.$B$3:$B$14”. Ne feledje, hogy a tartomány a munkafüzet több régiójára is kiterjedhet, például a „$Munkalap1.A1:A5;$Munkalap1.D1:D5” szintén érvényes adattartomány. A Writerben egy adattartomány lehet például a „Táblázat1.A1:E4”."
-#. X1ne
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -456,7 +407,6 @@ msgctxt ""
msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
msgstr "A Calc alkalmazásban kattintson az <emph>Adattartomány kijelölése</emph> gombra a párbeszédablak minimalizálásához, majd jelölje ki az egérrel a cellatartományt."
-#. LcI@
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -465,7 +415,6 @@ msgctxt ""
msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
msgstr "Ha több, nem összefüggő cellaterületre kiterjedő adattartományt szeretne használni, először adja meg az első tartományt, majd kézzel írjon utána egy pontosvesszőt a szövegmezőbe, majd adja meg a következő tartományt. A tartományok elválasztására használjon pontosvesszőt."
-#. kSzE
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -474,7 +423,6 @@ msgctxt ""
msgid "Click one of the options for data series in rows or in columns."
msgstr "Kattintson a lehetőségek egyikére az oszlopokban vagy sorokban levő adatsorokhoz."
-#. U360
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -483,7 +431,6 @@ msgctxt ""
msgid "Check whether the data range has labels in the first row or in the first column or both."
msgstr "Jelölje be, hogy az adattartományoknak vannak-e címkéi az első sorban, az első oszlopban vagy mindkettőben."
-#. 3.pu
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -492,7 +439,6 @@ msgctxt ""
msgid "In the preview you can see how the final chart will look."
msgstr "Az előnézetben megtekintheti, hogy hogyan fog kinézni a végleges diagram."
-#. #k[B
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -501,7 +447,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adja meg a diagramban feltüntetendő adatokat tartalmazó adattartományt. A Calcban a párbeszédablak minimalizálásához és az adattartomány kijelöléséhez kattintson az <emph>Adattartomány kijelölése</emph> gombra.</ahelp>"
-#. J?g-
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -510,7 +455,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az adatsorok az adataikat a kijelölt tartomány egymás alatti soraiból nyerik. A pontdiagramoknál az első adatsor az összes adatsor x értékét tartalmazza. Az összes többi adatsor y értékként lesz felhasználva, minden adatsorhoz egy.</ahelp>"
-#. c.8)
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -519,7 +463,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az adatsorok az adataikat a kijelölt tartomány egymás melletti oszlopaiból nyerik. A pontdiagramoknál az első adatoszlop az összes adatsor x értékét tartalmazza. Az összes többi adatoszlop y értékként lesz felhasználva, minden adatsorhoz egy.</ahelp>"
-#. !.om
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -528,7 +471,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ha az adatsorok oszlopokban vannak: a tartomány első sora az adatsorok neveit tartalmazza. Ha az adatsorok sorokban vannak: a tartomány első sora adja a kategóriákat. A többi sorból állnak az adatsorok. Ha ez a jelölőnégyzet nincs bejelölve, minden sor adatsor.</ahelp>"
-#. SK0g
#: wiz_data_range.xhp
msgctxt ""
"wiz_data_range.xhp\n"
@@ -537,7 +479,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ha az adatsorok oszlopokban vannak: a tartomány első oszlopa az adatsorok neveit tartalmazza. Ha az adatsorok sorokban vannak: a tartomány első oszlopa adja a kategóriákat. A többi oszlopból állnak az adatoszlopok. Ha ez a jelölőnégyzet nincs bejelölve, minden oszlop adatoszlop.</ahelp>"
-#. 08YK
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -546,7 +487,6 @@ msgctxt ""
msgid "Chart Type XY"
msgstr "XY diagramtípus"
-#. c;Xx
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -555,7 +495,6 @@ msgctxt ""
msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
msgstr "<bookmark_value>pontdiagramok</bookmark_value><bookmark_value>XY diagramok</bookmark_value><bookmark_value>diagramtípusok;Pont (XY)</bookmark_value><bookmark_value>hibajelzők a diagramokban</bookmark_value><bookmark_value>hibasávok a diagramokban</bookmark_value><bookmark_value>átlagok a diagramokban</bookmark_value><bookmark_value>statisztika a diagramokban</bookmark_value><bookmark_value>variancia a diagramokban</bookmark_value><bookmark_value>szórás a diagramokban</bookmark_value>"
-#. SxNl
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -564,7 +503,6 @@ msgctxt ""
msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Pont (XY) diagramtípus</link></variable>"
-#. b{r#
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -573,7 +511,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. [V^Q
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -582,7 +519,6 @@ msgctxt ""
msgid "XY (Scatter)"
msgstr "Pont (XY)"
-#. c]z\
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -591,7 +527,6 @@ msgctxt ""
msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
msgstr "Az XY diagram alapformájában egy adatsoron alapul, amely nevekből, az x értékek listájából, és az y értékek listájából áll. Minden értékpár (x|y) egy pontként jelenik meg egy koordinátarendszerben. Az adatsor neve az y értékek neve, ez jelenik meg a jelmagyarázatban."
-#. #p.Y
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -600,7 +535,6 @@ msgctxt ""
msgid "Choose an XY chart for the following example tasks:"
msgstr "A következő példákhoz válassza az XY diagramot:"
-#. f/1T
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -609,7 +543,6 @@ msgctxt ""
msgid "scale the x‑axis"
msgstr "x tengely skálázása"
-#. A%aT
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -618,7 +551,6 @@ msgctxt ""
msgid "generate a parameter curve, for example a spiral"
msgstr "paraméteres görbe, például spirál generálása"
-#. [Sio
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -627,7 +559,6 @@ msgctxt ""
msgid "draw the graph of a function"
msgstr "függvény grafikonjának kirajzolása"
-#. y7jo
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -636,7 +567,6 @@ msgctxt ""
msgid "explore the statistical association of quantitative variables"
msgstr "mennyiségi értékek statisztikai tulajdonságainak bemutatása"
-#. @Nd%
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -645,7 +575,6 @@ msgctxt ""
msgid "Your XY chart may have more than one data series."
msgstr "Az XY diagramban lehet egynél több adatsor is."
-#. dhO\
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -654,7 +583,6 @@ msgctxt ""
msgid "XY Chart Variants"
msgstr "XY diagram változatok"
-#. k/Ns
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -663,7 +591,6 @@ msgctxt ""
msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
msgstr "Az XY diagramváltozatot <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán vagy a <item type=\"menuitem\">Formátum - Diagramtípus</item> menüparanccsal választhatja ki."
-#. f]vS
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -672,7 +599,6 @@ msgctxt ""
msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
msgstr "A diagram az alapértelmezett beállításokkal jön létre. A diagram befejezése után szerkesztheti a tulajdonságait a kinézetének módosításához. A vonalstílusok és ikonok az adatsor tulajdonságai párbeszédablak <emph>Vonalak</emph> lapján módosíthatók."
-#. .4q0
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -681,7 +607,6 @@ msgctxt ""
msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
msgstr "Kattintson duplán bármely adatpontra az <item type=\"menuitem\">Adatsorok</item> párbeszédablak megnyitásához. Ebben a párbeszédablakban az adatsorok számos tulajdonsága módosítható."
-#. \f#;
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -690,7 +615,6 @@ msgctxt ""
msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
msgstr "Síkbeli diagramok esetén válassza a <item type=\"menuitem\">Beszúrás - Y hibasávok</item> menüparancsot a hibasávok megjelenítésének engedélyezéséhez."
-#. ==%2
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -699,7 +623,6 @@ msgctxt ""
msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
msgstr "A Beszúrás menü parancsainak használatával engedélyezheti a középértékvonalak és trendvonalak megjelenítését."
-#. cdm}
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -708,7 +631,6 @@ msgctxt ""
msgid "Points only"
msgstr "Csak pontok"
-#. oabj
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -717,7 +639,6 @@ msgctxt ""
msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
msgstr "Minden adatpontot egy ikon jelenít meg. A %PRODUCTNAME különböző színű és formájú alapértelmezett ikonokat használ minden adatsorhoz. Az alapértelmezett színkészlet az <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Diagramok - Alapértelmezett</item> színek helyen állítható be."
-#. OLDL
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -726,7 +647,6 @@ msgctxt ""
msgid "Lines Only"
msgstr "Csak vonalak"
-#. ciig
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -735,7 +655,6 @@ msgctxt ""
msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
msgstr "Ez a változat egyenes szakaszokkal köti össze a szomszédos adatpontokat. Az adatpontok nem jelennek meg ikonokként."
-#. !NNC
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -744,7 +663,6 @@ msgctxt ""
msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
msgstr "A kirajzolási sorrend megegyezik az adatsorok sorrendjével. Jelölje be a <emph>Rendezés az x értékek szerint</emph> négyzetet a vonalak x értékek sorrendje szerinti kirajzolásához. Ez a rendezés csak a diagramra vonatkozik, a táblázatban lévő adatokra nem."
-#. 1U.(
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -753,7 +671,6 @@ msgctxt ""
msgid "Points and Lines"
msgstr "Pontok és vonalak"
-#. __@+
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -762,7 +679,6 @@ msgctxt ""
msgid "This variant shows points and lines at the same time."
msgstr "Ez a változat egyszerre jelenít meg pontokat és vonalakat."
-#. GAzQ
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -771,7 +687,6 @@ msgctxt ""
msgid "3D Lines"
msgstr "Térbeli vonalak"
-#. %V4s
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -780,7 +695,6 @@ msgctxt ""
msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
msgstr "A vonalak szalagokként jelennek meg. Az adatpontokat ikonok jelzik. A befejezett diagramnál válassza a <link href=\"text/schart/01/three_d_view.xhp\">Térbeli nézet</link> lehetőséget a megvilágítás és a nézőpont megválasztásához."
-#. ;$(:
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -789,7 +703,6 @@ msgctxt ""
msgid "Smooth Lines"
msgstr "Sima vonalak"
-#. e#Nz
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -798,7 +711,6 @@ msgctxt ""
msgid "Mark <emph>Smooth Lines</emph> to draw curves instead of straight line segments."
msgstr "Jelölje be a <emph>Sima vonalak</emph> négyzetet, ha a pontokat nem egyenes vonalakkal, hanem görbékkel akarja összekötni."
-#. ]X=p
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -807,7 +719,6 @@ msgctxt ""
msgid "Click <emph>Properties</emph> to set details for the curves."
msgstr "Kattintson a <emph>Tulajdonságok</emph> gombra a görbe tulajdonságainak beállításához."
-#. s0*;
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -816,7 +727,6 @@ msgctxt ""
msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
msgstr "A <emph>Harmadfokú spline</emph> az adatpontokat egy harmadfokú polinommal interpolálja. A polinomdarabok között átmenet sima, a meredekség és a görbület megegyezik."
-#. HNSu
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -825,7 +735,6 @@ msgctxt ""
msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
msgstr "A <emph>Felbontás</emph> határozza meg, hogy hány vonalszakasz legyen kiszámítva a polinomdarabhoz két adatpont között. A közbülső pontok láthatók, ha rákattint bármelyik adatpontra."
-#. NL$S
#: type_xy.xhp
msgctxt ""
"type_xy.xhp\n"
@@ -834,7 +743,6 @@ msgctxt ""
msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
msgstr "A <emph>B-spline</emph> lehetőség egy paraméteres, interpolált B-spline görbét használ. Ezek a görbék polinomdarabokból állnak. A <emph>Fokszám</emph> állítja be ezeknek a polinomoknak a fokszámát."
-#. xDdP
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -843,7 +751,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr "Y hibasávok"
-#. J3;)
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -853,7 +760,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Y hibasávok\">Y hibasávok</link>"
-#. eF6~
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -863,7 +769,6 @@ msgctxt ""
msgid "<variable id=\"statistik\"><ahelp hid=\".\">Use the <emph>Y Error Bars</emph> dialog to display error bars for 2D charts.</ahelp></variable>"
msgstr "<variable id=\"statistik\"><ahelp hid=\".\">Síkbeli diagramok hibasávjainak megjelenítéséhez használja az <emph>Y hibasávok </emph> párbeszédablakot.</ahelp></variable>"
-#. *w6?
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -872,7 +777,6 @@ msgctxt ""
msgid "An error bar is an indicator line that spans over a range from y - NegativeErrorValue to y + PositiveErrorValue. In this term, y is the value of the data point. When \"standard deviation\" is selected, y is the mean value of the data series. NegativeErrorValue and PositiveErrorValue are the amounts calculated by the error bar function or given explicitly."
msgstr "A hibasáv egy jelzővonal, amely egy tartományt fog át y - negatív hibaértéktől az y + pozitív hibaértékig. Az y az adatpont értéke. Ha a „szórás” van kijelölve, akkor y az adatsorozat középértéke. A negatív hibaérték és a pozitív hibaérték az az érték, amelyet a hibasáv függvény számít ki vagy kifejezetten meg van adva."
-#. :T]f
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -882,7 +786,6 @@ msgctxt ""
msgid "The <emph>Insert - Y Error Bars</emph> menu command is only available for 2D charts."
msgstr "A <emph>Beszúrás - Y hibasávok</emph> menüparancs csak síkbeli diagramokhoz érhető el."
-#. N9X8
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -892,7 +795,6 @@ msgctxt ""
msgid "Error category"
msgstr "Hibakategória"
-#. 6w9U
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -902,7 +804,6 @@ msgctxt ""
msgid "In the <emph>Error category</emph> area, you can choose different ways to display the error category."
msgstr "A <emph>Hibakategória</emph> területen kiválaszthatja a hibakategóriához tartozó megjelenítési típust."
-#. xcdj
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -912,7 +813,6 @@ msgctxt ""
msgid "None"
msgstr "Nincs"
-#. x!ft
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -922,7 +822,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_STAT:RBT_NONE\">Does not show any error bars.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_STAT:RBT_NONE\">Nem jelennek meg a hibasávok.</ahelp>"
-#. 19LK
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -932,7 +831,6 @@ msgctxt ""
msgid "Constant value"
msgstr "Állandó érték"
-#. =\:b
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -942,7 +840,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_MINUS\">Displays constant values that you specify in the Parameters area.</ahelp>"
msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_MINUS\">Megjeleníti a Paraméterek területen megadott állandó értékeket.</ahelp>"
-#. M4iR
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -952,7 +849,6 @@ msgctxt ""
msgid "Percentage"
msgstr "Százalék"
-#. m.gl
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -962,7 +858,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_PERCENT\">Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area.</ahelp>"
msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_PERCENT\">Százalékos értéket jelenít meg. A megjelenítés a megfelelő adatpontra vonatkozik. Állítsa be a százalékos arányt a Paraméterek területen.</ahelp>"
-#. -_:o
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -971,7 +866,6 @@ msgctxt ""
msgid "Functions"
msgstr "Függvények"
-#. diw4
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -980,7 +874,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a function to calculate the error bars.</ahelp>"
msgstr "<ahelp hid=\".\">Válasszon ki egy függvényt a hibasávok kiszámításához.</ahelp>"
-#. (7%M
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -989,7 +882,6 @@ msgctxt ""
msgid "Standard Error: Displays the standard error."
msgstr "Standard hiba: A standard hiba megjelenítése."
-#. mZ5/
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -999,7 +891,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Variance: Displays the variance calculated from the number of data points and respective values.</ahelp>"
msgstr "<ahelp hid=\".\">Szórásnégyzet: Megjeleníti a szórásnégyzetet az adatpontok száma és a hozzájuk tartozó értékek alapján.</ahelp>"
-#. K$3t
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1009,7 +900,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Standard Deviation: Displays the standard deviation (square root of the variance).</ahelp>"
msgstr "<ahelp hid=\".\">Szórás: A szórást jeleníti meg (a szórásnégyzet négyzetgyöke).</ahelp>"
-#. o3T;
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1019,7 +909,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Error Margin: Displays the highest error margin in percent according to the highest value of the data group. Set the percentage in the Parameters area.</ahelp>"
msgstr "<ahelp hid=\".\">Hibahatár: Megjeleníti az adatcsoport legmagasabb értékéhez százalékosan viszonyított legnagyobb hibahatárt. Állítsa be a százalékos arányt a Paraméterek területen.</ahelp>"
-#. 6$Mp
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1028,7 +917,6 @@ msgctxt ""
msgid "Cell Range"
msgstr "Cellatartomány"
-#. 0#`g
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1037,7 +925,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click Cell Range and then specify a cell range from which to take the positive and negative error bar values.</ahelp>"
msgstr "<ahelp hid=\".\">Kattintson a Cellatartomány lehetőségre, és adja meg a cellatartományt, amelyből a pozitív és negatív hibasávértékeket szeretné venni.</ahelp>"
-#. +^1A
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1046,7 +933,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A gombra kattintva kicsinyítse le a párbeszédablakot, majd az egér használatával válassza ki a cellatartományt a munkalapon. Ha újból a gombra kattint, a párbeszédablak visszaáll teljes méretűvé.</ahelp>"
-#. O#QD
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1055,7 +941,6 @@ msgctxt ""
msgid "From Data Table"
msgstr "Adattáblázatból"
-#. p;4i
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1064,7 +949,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">For a chart with its own data, the error bar values can be entered in the chart data table. The Data Table dialog shows additional columns titled Positive Y-Error-Bars and Negative Y-Error-Bars.</ahelp>"
msgstr "<ahelp hid=\".\">A saját adatokkal rendelkező diagram esetében, a hibasávadatok beírhatók a diagram adattáblázatába. Az Adattáblázat párbeszédablak további oszlopokat jelenít Pozitív Y hibasávok és Negatív Y hibasávok címmel.</ahelp>"
-#. lS(U
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1073,7 +957,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to add to the displayed value as the positive error value.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be az értéket, amelyet a megjelenített értékhez pozitív hibaértékként kíván hozzáadni.</ahelp>"
-#. bC?*
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1082,7 +965,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to subtract from the displayed value as the negative error value.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be az értéket, amelyet a megjelenített értékből negatív hibaértékként kíván kivonni.</ahelp>"
-#. lfHa
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1091,7 +973,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a címtartományt, ahonnan a pozitív hibaértékeket kívánja venni. A Zsugorítás gomb használatával választhat ki tartományt a munkalapon</ahelp>"
-#. ^]c_
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1100,7 +981,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a címtartományt, ahonnan a negatív hibaértékeket kívánja venni. A Zsugorítás gomb használatával választhat ki tartományt a munkalapon</ahelp>"
-#. |U1F
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1109,7 +989,6 @@ msgctxt ""
msgid "Same value for both"
msgstr "Ugyanaz az érték mindkettőhöz"
-#. iPS;
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1118,7 +997,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enable to use the positive error values also as negative error values. You can only change the value of the \"Positve (+)\" box. That value gets copied to the \"Negative (-)\" box automatically.</ahelp>"
msgstr "<ahelp hid=\".\">Enneg a lehetőségnek az engedélyezésével a pozitív hibaértéket negatív hibaértékként is használhatja. Csak a \"Pozitív (+)\" mező értékét módosíthatja. Ezt az értéket a program automatikusan átmásolja a \"Negatív (-)\" mezőbe.</ahelp>"
-#. 40_Z
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1128,7 +1006,6 @@ msgctxt ""
msgid "Error indicator"
msgstr "Hibajelző"
-#. E(vq
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1138,7 +1015,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCH_CT_INDICATE2\">Specifies the error indicator.</ahelp>"
msgstr "<ahelp hid=\"HID_SCH_CT_INDICATE2\">Megadja a hibajelzőt.</ahelp>"
-#. dvi#
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1147,7 +1023,6 @@ msgctxt ""
msgid "Positive and Negative"
msgstr "Pozitív és negatív"
-#. Gbn;
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1156,7 +1031,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows positive and negative error bars.</ahelp>"
msgstr "<ahelp hid=\".\">A pozitív és a negatív hibasávok megjelenítése.</ahelp>"
-#. :)Hh
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1165,7 +1039,6 @@ msgctxt ""
msgid "Positive"
msgstr "Pozitív"
-#. _H8V
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1174,7 +1047,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows only positive error bars.</ahelp>"
msgstr "<ahelp hid=\".\">Csak a pozitív hibasávok megjelenítése.</ahelp>"
-#. ]Ra1
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1183,7 +1055,6 @@ msgctxt ""
msgid "Negative"
msgstr "Negatív"
-#. %Fg\
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -1192,7 +1063,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows only negative error bars.</ahelp>"
msgstr "<ahelp hid=\".\">Csak a negatív hibasávok megjelenítése.</ahelp>"
-#. f;ll
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1201,7 +1071,6 @@ msgctxt ""
msgid "Smooth Line Properties"
msgstr "Sima vonal tulajdonságai"
-#. MgGR
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1210,7 +1079,6 @@ msgctxt ""
msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
msgstr "<bookmark_value>görbék;tulajdonság vonaldiagramokban/XY diagramokban</bookmark_value><bookmark_value>tulajdonságok;sima vonalak vonaldiagramokban/XY diagramokban</bookmark_value>"
-#. U4gS
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1219,7 +1087,6 @@ msgctxt ""
msgid "Smooth Line Properties"
msgstr "Sima vonal tulajdonságai"
-#. brVk
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1228,7 +1095,6 @@ msgctxt ""
msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
msgstr "Vonalakat megjelenítő diagramoknál (Vonal vagy XY típusú) az egyenes vonalak helyett választhatja görbék megjelenítését is. A görbék tulajdonságait néhány beállítás szabályozza."
-#. Q`#Z
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1237,7 +1103,6 @@ msgctxt ""
msgid "To change line properties"
msgstr "Vonal tulajdonságainak módosítása"
-#. n=2-
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1246,7 +1111,6 @@ msgctxt ""
msgid "Select Cubic Spline or B-Spline."
msgstr "Válassza a harmadfokú spline-t vagy a B-spline-t."
-#. hx7?
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1255,7 +1119,6 @@ msgctxt ""
msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
msgstr "Ezek matematikai modellek, amelyek a görbék megjelenítésére vannak hatással. A görbék polinomdarabok egymáshoz illesztésével jönnek létre."
-#. dd7q
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1264,7 +1127,6 @@ msgctxt ""
msgid "Optionally set the resolution. A higher value leads to a smoother line."
msgstr "A felbontás beállítása opcionális. A magasabb érték simább vonalat eredményez."
-#. |H;0
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1273,7 +1135,6 @@ msgctxt ""
msgid "For B-spline lines optionally set the degree of the polynomials."
msgstr "B-spline esetén a görbe fokszáma opcionálisan beállítható."
-#. ;]JA
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1282,7 +1143,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a cubic spline model.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Harmadfokú spline modell alkalmazása.</ahelp>"
-#. sVkf
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1291,7 +1151,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a B-spline model.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">B-spline modell alkalmazása.</ahelp>"
-#. J69Y
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1300,7 +1159,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Állítsa be a felbontást.</ahelp>"
-#. -:CZ
#: smooth_line_properties.xhp
msgctxt ""
"smooth_line_properties.xhp\n"
@@ -1309,7 +1167,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adja meg a polinom fokszámát.</ahelp>"
-#. OBKD
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1318,7 +1175,6 @@ msgctxt ""
msgid "Chart Type Area"
msgstr "Terület típusú diagram"
-#. @c84
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1327,7 +1183,6 @@ msgctxt ""
msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
msgstr "<bookmark_value>területdiagramok</bookmark_value><bookmark_value>diagramtípusok;terület</bookmark_value>"
-#. ?Ypu
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1336,7 +1191,6 @@ msgctxt ""
msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Terület típusú diagram</link></variable>"
-#. R+KC
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1345,7 +1199,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. W:2k
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1354,7 +1207,6 @@ msgctxt ""
msgid "Area"
msgstr "Terület"
-#. RJ]7
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1363,7 +1215,6 @@ msgctxt ""
msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
msgstr "A területdiagram az értékeket pontokként jeleníti meg az y tengelyen. Az x tengelyen vannak a kategóriák. Az adatsorok y értékeit vonal köti össze. Minden vonalpár közötti terület színnel van kitöltve. A területdiagram két egymást követő kategória közötti változás kiemelésére alkalmas."
-#. eKmX
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1372,7 +1223,6 @@ msgctxt ""
msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
msgstr "Normál - ez az altípus minden értéket abszolút y értékként rajzol ki. Először az adattartomány utolsó oszlopának területét rajzolja ki, majd az utolsó előttiét stb., végül az első adatoszlopét. Emiatt, ha az első oszlop értékei magasabban a többi értéknél, az utoljára kirajzolt terület elrejti a többi területet."
-#. J=SN
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1381,7 +1231,6 @@ msgctxt ""
msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
msgstr "Halmozott – ez az altípus az értékeket egymásra halmozva rajzolja ki. Biztosítja, hogy minden érték látható, egyik adatot sem takarja el a másik. Mindazonáltal az y értékek nem jelentenek többé abszolút értékeket, kivéve az utolsó oszlopot, amely a halmozott terület alján helyezkedik el."
-#. Md(.
#: type_area.xhp
msgctxt ""
"type_area.xhp\n"
@@ -1390,7 +1239,6 @@ msgctxt ""
msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
msgstr "Százalék - ez az altípus az értékeket egymásra halmozva jeleníti meg, és úgy skálázza azokat, hogy a kategória egésze 100%-ot adjon ki."
-#. :]`+
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1399,7 +1247,6 @@ msgctxt ""
msgid "Data Table"
msgstr "Adattáblázat"
-#. 4qa]
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1409,7 +1256,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Adattáblázat\">Adattáblázat</link>"
-#. |d1L
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1419,7 +1265,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramData\">Megnyitja az <emph>Adattáblázat</emph> párbeszédablakot, amelyen szerkesztheti a diagram adatait.</ahelp>"
-#. j83@
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1429,7 +1274,6 @@ msgctxt ""
msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
msgstr "Ha a diagram Calc-munkalapon vagy Writer-táblázaton alapul, akkor az <emph>Adattáblázat</emph> párbeszédablak nem érhető el."
-#. g`yP
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1438,7 +1282,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
msgstr "<link href=\"text/swriter/01/06990000.xhp\">Diagram frissítése kézzel, amikor egy Writer-tábla módosul</link>"
-#. Yh*l
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1447,7 +1290,6 @@ msgctxt ""
msgid "Some changes will become visible only after you close and reopen the dialog."
msgstr "Néhány módosítás csak akkor lesz látható, ha bezárja, majd ismét megnyitja a párbeszédablakot."
-#. Jel9
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1456,7 +1298,6 @@ msgctxt ""
msgid "To change chart data"
msgstr "A diagramadatok módosításához"
-#. ]kI3
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1465,7 +1306,6 @@ msgctxt ""
msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
msgstr "Amikor az alapértelmezett adatokon alapuló diagramot hoz létre, vagy amikor egy diagramot másol a dokumentumba, megnyithatja az Adattáblázat párbeszédablakot az adatok beírásához. A diagram előnézete azonnal módosul a bevitt adatoknak megfelelően."
-#. 1DF+
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1474,7 +1314,6 @@ msgctxt ""
msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
msgstr "A változtatások alkalmazásához zárja be a Diagramadatok párbeszédablakot. Válassza a <emph>Szerkesztés - Visszavonás</emph> lehetőséget a módosítások visszavonásához."
-#. XB_s
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1483,7 +1322,6 @@ msgctxt ""
msgid "Insert or select a chart that is not based on existing cell data."
msgstr "Olyan diagram beszúrása vagy kijelölése, amely nem létező cellaadatokon alapul."
-#. M|j)
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1492,7 +1330,6 @@ msgctxt ""
msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
msgstr "Válassza a <emph>Nézet - Diagram adattáblázata</emph> lehetőséget az <emph>Adattáblázat</emph> párbeszédablak megnyitásához."
-#. vsS7
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1501,7 +1338,6 @@ msgctxt ""
msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
msgstr "Az adatsorok oszlopokba vannak szervezve. A bal szélső oszlop szerepe a kategóriák vagy adatfeliratok meghatározása. A bal szélső oszlop mindig szövegként van megformázva. Beszúrhat további szövegoszlopokat a hierarchikus címkék meghatározásához."
-#. @esN
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1510,7 +1346,6 @@ msgctxt ""
msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
msgstr "Kattintson a párbeszédablak egyik cellájába, és módosítsa a tartalmát. Kattintson egy másik cellára, hogy lássa a módosított tartalom előnézetét."
-#. qp7\
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1519,7 +1354,6 @@ msgctxt ""
msgid "Enter the name of the data series in the text box above the column."
msgstr "Írja be az adatsor nevét az oszlop feletti szövegmezőbe."
-#. GLPM
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1528,7 +1362,6 @@ msgctxt ""
msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
msgstr "Használja a tábla feletti ikonokat sorok és oszlopok beszúrásához és törléséhez. Több oszlopból álló adatsorok esetén csak az egész adatsort lehet beszúrni vagy törölni."
-#. x\I9
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1537,7 +1370,6 @@ msgctxt ""
msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
msgstr "Az adatsorok sorrendje a diagramon megegyezik az adattáblázatban levő sorrenddel. Használja az <emph>Adatsor mozgatása jobbra</emph> ikont az aktuális oszlop felcseréléséhez a jobb oldali szomszédjával."
-#. Ac:Z
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1546,7 +1378,6 @@ msgctxt ""
msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
msgstr "A kategóriák vagy adatpontok sorrendje a diagramon megegyezik az adattáblázatban levő sorrenddel. Használja a <emph>Sor mozgatása lefelé</emph> ikont az aktuális sor felcseréléséhez az alsó szomszédjával."
-#. {Eln
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1556,7 +1387,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Új sort szúr be az aktuális sor alá.</ahelp>"
-#. 9}vB
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1566,7 +1396,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egy új adatsort szúr be az aktuális oszlop után.</ahelp>"
-#. si+_
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1575,7 +1404,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egy új szövegoszlopot szúr be az aktuális oszlop után a hierarchikus tengelyek leírásainak.</ahelp>"
-#. SZdY
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1585,7 +1413,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli az aktuális sort. A címkesort nem lehet törölni.</ahelp>"
-#. `N}9
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1595,7 +1422,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Törli az aktuális adatsort vagy szövegoszlopot. Az első szövegoszlopot nem lehet törölni.</ahelp>"
-#. C0gm
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1604,7 +1430,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Felcseréli az aktuális oszlopot a tőle közvetlenül jobbra levővel.</ahelp>"
-#. {eON
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1613,7 +1438,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Felcseréli az aktuális sort a közvetlenül alatta levővel.</ahelp>"
-#. DSC(
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
@@ -1622,7 +1446,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be az adatsorozatok nevét.</ahelp>"
-#. iltb
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -1631,7 +1454,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. [S,q
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -1641,7 +1463,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. 1v*C
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -1651,7 +1472,6 @@ msgctxt ""
msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Jelmagyarázat szegély-, terület- és karakterjellemzőit határozza meg.</ahelp></variable>"
-#. u8An
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -1661,7 +1481,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Karakter\">Karakter</link>"
-#. /doQ
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -1671,7 +1490,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Megjelenítés\">Megjelenítés</link>"
-#. Dc^f
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1680,7 +1498,6 @@ msgctxt ""
msgid "Arrangement"
msgstr "Elrendezés"
-#. #6gO
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1690,7 +1507,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Elrendezés\">Elrendezés</link>"
-#. vlCc
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1700,7 +1516,6 @@ msgctxt ""
msgid "Allows you to modify the order of the data series already set in the chart."
msgstr "Lehetővé teszi a diagramban az adatsorok sorrendjének megváltoztatását."
-#. ,^1i
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1710,7 +1525,6 @@ msgctxt ""
msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
msgstr "Az adatok helyzete a táblán belül változatlan marad. Ezeket a parancsokat csak akkor használhatja, ha beszúrt egy diagramot a $[officename] Calc programban."
-#. 1zc~
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1720,7 +1534,6 @@ msgctxt ""
msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
msgstr "Ez a funkció csak akkor áll rendelkezésre, ha a megjelenített adatokat az oszlopok tartalmazzák. Nem válthat át sor szerinti megjelenítésére."
-#. %c,P
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1730,7 +1543,6 @@ msgctxt ""
msgid "Bring Forward"
msgstr "Előrébb hozás"
-#. hpH7
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1740,7 +1552,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
msgstr "<ahelp hid=\".uno:Forward\">A kijelölt adatsorokat előrehozza (a jobb oldalra).</ahelp>"
-#. ./l;
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1750,7 +1561,6 @@ msgctxt ""
msgid "Send Backward"
msgstr "Hátrébb küldés"
-#. NBb*
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -1760,7 +1570,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
msgstr "<ahelp hid=\".uno:Backward\">A kijelölt adatsorokat hátraküldi (a bal oldalra).</ahelp>"
-#. Q%c9
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1769,7 +1578,6 @@ msgctxt ""
msgid "Grids"
msgstr "Rács"
-#. l8hq
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1778,7 +1586,6 @@ msgctxt ""
msgid "<bookmark_value>axes; inserting grids</bookmark_value><bookmark_value>grids; inserting in charts</bookmark_value>"
msgstr "<bookmark_value>tengelyek; rács beszúrása</bookmark_value><bookmark_value>rács; beszúrás diagramba</bookmark_value>"
-#. kT(?
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1788,7 +1595,6 @@ msgctxt ""
msgid "Grids"
msgstr "Rács"
-#. T.HE
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1798,7 +1604,6 @@ msgctxt ""
msgid "<variable id=\"gitter\"><ahelp hid=\".\">You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts.</ahelp></variable> The Y axis major grid is activated by default."
msgstr "<variable id=\"gitter\"><ahelp hid=\".\">Rácsvonalak hozzárendelésével szakaszokra oszthatja a tengelyeket. Ennek segítségével jobban áttekinthetővé válik a diagram, különösen a nagy diagramok.</ahelp></variable> Alapértelmezettként az Y tengely főrácsa van aktiválva."
-#. N(Zy
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1808,7 +1613,6 @@ msgctxt ""
msgid "Major grids"
msgstr "Főrács"
-#. RwmS
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1818,7 +1622,6 @@ msgctxt ""
msgid "Defines the axis to be set as the major grid."
msgstr "Meghatározza a főrácsként beállítandó tengelyt."
-#. ^p^:
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1828,7 +1631,6 @@ msgctxt ""
msgid "X axis"
msgstr "X tengely"
-#. i]$y
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1838,7 +1640,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_MAIN\">Adds gridlines to the X axis of the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_MAIN\">Rácsvonalakat ad hozzá a diagram X tengelyéhez.</ahelp>"
-#. X/`Z
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1848,7 +1649,6 @@ msgctxt ""
msgid "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">The <emph>Horizontal Grid On/Off</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the X axis. Note: This only works if the <emph>Minor grid</emph> check boxes in <emph>Insert - Grids</emph> are cleared.</ahelp></variable> Otherwise, the minor grid remains visible when the major grid is turned off."
msgstr "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">A <emph>Formázás</emph> eszköztár <emph>Vízszintes rácsozat be/ki</emph> ikonja megjeleníti vagy elrejti az X tengelyhez tartozó rácsvonalakat. Megjegyzés: Ez csak akkor működik, ha a <emph>Beszúrás - Rács</emph> párbeszédablakon a <emph>Segédrács</emph> jelölőnégyzetek nincsenek bekapcsolva.</ahelp></variable> Ellenkező esetben a segédrács látható marad a főrács kikapcsolása után."
-#. fU5E
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1858,7 +1658,6 @@ msgctxt ""
msgid "Y axis"
msgstr "Y tengely"
-#. r9EW
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1868,7 +1667,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_MAIN\">Adds gridlines to the Y axis of the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_MAIN\">Rácsvonalakat ad hozzá a diagram Y tengelyéhez.</ahelp>"
-#. }LQ`
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1878,7 +1676,6 @@ msgctxt ""
msgid "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridVertical\">The <emph>Vertical Grid On/Off</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the Y axis. Note: This only works if the X-axis <emph>Minor grid</emph> is not selected in <emph>Insert - Grids</emph>.</ahelp></variable> Otherwise, the minor grid remains visible when the major grid is turned off."
msgstr "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridVertical\">A <emph>Formázás</emph> eszköztár <emph>Függőleges rácsozat be/ki</emph> ikonja megjeleníti vagy elrejti az Y tengelyhez tartozó rácsvonalakat. Megjegyzés: Ez csak akkor működik, ha a <emph>Diagram - Rács</emph> párbeszédablakon az X tengelyhez tartozó <emph>Segédrács</emph> nincs kijelölve.</ahelp></variable> Ellenkező esetben a segédrács látható marad a főrács kikapcsolása után."
-#. hv73
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1888,7 +1685,6 @@ msgctxt ""
msgid "Z axis"
msgstr "Z tengely"
-#. [Gh_
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1898,7 +1694,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_MAIN\">Adds gridlines to the Z axis of the chart.</ahelp> This option is only available if you're working with 3D charts."
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_MAIN\">Rácsvonalakat ad hozzá a diagram Z tengelyéhez.</ahelp> Ez a beállítás csak akkor érhető el, ha térbeli diagramokat használ."
-#. HC_q
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1908,7 +1703,6 @@ msgctxt ""
msgid "Minor grids"
msgstr "Segédrács"
-#. 5zEg
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1918,7 +1712,6 @@ msgctxt ""
msgid "Use this area to assign a minor grid for each axis. Assigning minor grids to the axis reduces the distance between the major grids."
msgstr "Ezen a területen segédrácsot rendelhet az egyes tengelyekhez. Ha segédrácsot rendel a tengelyekhez, azzal csökkenti a fő rácsvonalak közötti távolságot."
-#. G)r:
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1928,7 +1721,6 @@ msgctxt ""
msgid "X axis"
msgstr "X tengely"
-#. c~:\
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1938,7 +1730,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_HELP\">Adds gridlines that subdivide the X axis into smaller sections.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_HELP\">Az X tengelyt kisebb szakaszokra bontó rácsvonalakat ad hozzá.</ahelp>"
-#. I#:J
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1948,7 +1739,6 @@ msgctxt ""
msgid "Y axis"
msgstr "Y tengely"
-#. ZHU^
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1958,7 +1748,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_HELP\">Adds gridlines that subdivide the Y axis into smaller sections.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_HELP\">Az Y tengelyt kisebb szakaszokra bontó rácsvonalakat ad hozzá.</ahelp>"
-#. s3g2
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1968,7 +1757,6 @@ msgctxt ""
msgid "Z axis"
msgstr "Z tengely"
-#. ja1L
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -1978,7 +1766,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">A Z tengelyt kisebb szakaszokra bontó rácsvonalakat ad hozzá.</ahelp> Ez a beállítás csak akkor érhető el, ha térbeli diagramokat használ."
-#. 3C8T
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -1987,7 +1774,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. wxfU
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -1996,7 +1782,6 @@ msgctxt ""
msgid "<bookmark_value>axes;formatting</bookmark_value>"
msgstr "<bookmark_value>tengelyek;formázás</bookmark_value>"
-#. qSe`
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -2006,7 +1791,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. 2CI4
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -2016,7 +1800,6 @@ msgctxt ""
msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Megnyit egy párbeszédablakot, amelyen a kijelölt tengely tulajdonságait lehet szerkeszteni.</ahelp></variable> A párbeszédablak neve a kiválasztott tengelytől függ."
-#. #0Fe
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -2026,7 +1809,6 @@ msgctxt ""
msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
msgstr "Az <link href=\"text/schart/01/05040200.xhp\" name=\"X tengelyhez\">X tengelyhez</link> kibővített párbeszédablak tartozik. Az X-Y diagramok esetében az X tengelyhez tartozó párbeszédablak szintén kibővül a <link href=\"text/schart/01/05040201.xhp\" name=\"Méretezés\"><emph>Méretezés</emph></link> füllel."
-#. 4?0!
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -2036,7 +1818,6 @@ msgctxt ""
msgid "Scaling the X axis is only possible in the X-Y chart type."
msgstr "Az X tengely méretezésére csak az X-Y típusú diagramoknál van lehetőség."
-#. -Tv5
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
@@ -2046,7 +1827,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Karakter\">Karakter</link>"
-#. f18H
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2055,7 +1835,6 @@ msgctxt ""
msgid "3D View"
msgstr "Térbeli nézet"
-#. +zzB
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2064,7 +1843,6 @@ msgctxt ""
msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
msgstr "<bookmark_value>Térbeli diagramok</bookmark_value><bookmark_value>diagramok;térbeli nézet</bookmark_value><bookmark_value>megvilágítás;térbeli diagramok</bookmark_value>"
-#. VO(T
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2073,7 +1851,6 @@ msgctxt ""
msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
msgstr "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">Térbeli nézet</link></variable>"
-#. :oEc
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2082,7 +1859,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első lapján vagy a diagram helyi menüjében kiválaszthatja a diagram típusát. <ahelp hid=\".\" visibility=\"hidden\">Megnyit egy párbeszédablakot az Oszlop, Sáv, Torta és Terület típusú diagramok térbeli nézete tulajdonságainak szerkesztéséhez. A Vonal és a Pont (XY) diagramok esetén térbeli vonalak jelennek meg.</ahelp>"
-#. 0cD\
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2091,7 +1867,6 @@ msgctxt ""
msgid "The chart preview responds to the new settings that you enter in the dialog."
msgstr "Az előnézeten azonnal megjelenik a párbeszédablakon beállított módosítás."
-#. Q#c9
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2100,7 +1875,6 @@ msgctxt ""
msgid "When you leave the dialog with OK, the settings are applied permanently."
msgstr "Ha az OK gombbal zárja be a párbeszédablakot, a beállítások véglegesen alkalmazva lesznek."
-#. #vLh
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2109,7 +1883,6 @@ msgctxt ""
msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
msgstr "Ha a Mégse gombot vagy az Esc billentyűt megnyomva távozik a párbeszédablakból, a diagram visszatér a párbeszédablak megnyitása előtti állapotába."
-#. Cy7D
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2118,7 +1891,6 @@ msgctxt ""
msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
msgstr "Térbeli diagram esetén a <item type=\"menuitem\">Formátum - Térbeli nézet</item> menüparancs választásával beállítható a perspektíva, a megjelenés és a megvilágítás."
-#. rMuu
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2127,7 +1899,6 @@ msgctxt ""
msgid "Perspective"
msgstr "Perspektíva"
-#. BH~j
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2136,7 +1907,6 @@ msgctxt ""
msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
msgstr "Írja be a diagram elforgatásának mértékét a három tengely körül és a perspektíva értékét."
-#. |/_Z
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2145,7 +1915,6 @@ msgctxt ""
msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
msgstr "Állítson minden szöveg 0-ra a diagram elölnézetéhez. A tortadiagramok és fánkdiagramok körökként jelennek meg."
-#. 5kBT
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2154,7 +1923,6 @@ msgctxt ""
msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
msgstr "Ha engedélyezi a Derékszögű tengelyek lehetőséget, akkor a diagram tartalmát csak az X és Y irányban forgathatja, azaz párhuzamosan a diagram széleivel."
-#. 6}Q_
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2163,7 +1931,6 @@ msgctxt ""
msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
msgstr "Ha az x értéke 90, y és z pedig 0, akkor a diagram felülnézete jön létre. Az x -90-re állításával a diagram alulnézete látható."
-#. cZCz
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2172,7 +1939,6 @@ msgctxt ""
msgid "The rotations are applied in the order first x, then y, last z."
msgstr "Az elforgatások sorrendje: először az x, majd az y, végül a z."
-#. ?hvs
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2181,7 +1947,6 @@ msgctxt ""
msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
msgstr "Ha az árnyalás engedélyezve van, és elforgatja a diagramot, a fények úgy forognak, mintha a diagramhoz lennének rögzítve."
-#. O{~J
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2190,7 +1955,6 @@ msgctxt ""
msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
msgstr "A tengelyek forgásszöge mindig az oldalhoz viszonyított, nem a diagram tengelyeihez. Ez a viselkedés különbözik más diagramrajzoló programokétól."
-#. _I#E
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2199,7 +1963,6 @@ msgctxt ""
msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
msgstr "Jelölbe a Perspektíva jelölőnégyzetet a diagram centrális perspektivikus nézetéhez a párhuzamos projekció használata helyett."
-#. wM:(
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2208,7 +1971,6 @@ msgctxt ""
msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
msgstr "Állítsa be a fókusztávolságot a léptetőgombbal. A 100% olyan perspektívát ad, amelyen a diagram távoli élei körülbelül feleakkorának látszanak, mint a közeli élei."
-#. bsgM
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2217,7 +1979,6 @@ msgctxt ""
msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
msgstr "A %PRODUCTNAME régebbi verziói nem képesek úgy megjeleníteni a perspektíva százalékos értékét, mint a jelenlegi verzió."
-#. !U\#
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2226,7 +1987,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ha engedélyezi a Derékszögű tengelyek lehetőséget, akkor a diagram tartalmát csak az X és Y irányban forgathatja, azaz párhuzamosan a diagram széleivel. A Derékszögű tengelyek lehetőség alaphelyzetben engedélyezve van a térhatású diagramoknál. A Torta és a Fánk diagram nem támogatja a derékszögű tengelyek lehetőséget.</ahelp>"
-#. 0%eC
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2235,7 +1995,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Beállítja a diagram x tengely körüli elforgatását. Az előnézeten azonnal megjelenik a módosítás.</ahelp>"
-#. l;E*
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2244,7 +2003,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Beállítja a diagram y tengely körüli elforgatását. Az előnézeten azonnal megjelenik a módosítás.</ahelp>"
-#. gF!.
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2253,7 +2011,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Beállítja a diagram z tengely körüli elforgatását. Az előnézeten azonnal megjelenik a módosítás.</ahelp>"
-#. @ZKB
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2262,7 +2019,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Jelölje be a Perspektíva négyzetet a diagram perspektivikus nézetéhez. A léptetőgombbal állítsa be a százalékot. A magasabb százalék hatására a közelebbi objektumok nagyobbnak mutatkoznak, mint a távolabbiak.</ahelp>"
-#. KW=e
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2271,7 +2027,6 @@ msgctxt ""
msgid "Appearance"
msgstr "Megjelenés"
-#. S)OM
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2280,7 +2035,6 @@ msgctxt ""
msgid "Select a scheme from the list box."
msgstr "Válasszon egy sémát a listából."
-#. 2.Kr
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2289,7 +2043,6 @@ msgctxt ""
msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
msgstr "A séma kiválasztásával a jelölőnégyzetek és a fényforrások beállítása adott lesz."
-#. YeX*
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2298,7 +2051,6 @@ msgctxt ""
msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
msgstr "Ha a jelölőnégyzetek beállításának olyan kombinációját választja amely nem felel meg a Realisztikus vagy az Egyszerű sémának, akkor Egyéni sémát hoz létre."
-#. ZpI#
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2307,7 +2059,6 @@ msgctxt ""
msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
msgstr "Jelölje be az <emph>Árnyalás</emph> lehetőséget, ha a felszín megjelenítéséhez a Goraud-módszert akarja használni. Ellenkező esetben a lapos módszer lesz alkalmazva."
-#. ZnIH
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2316,7 +2067,6 @@ msgctxt ""
msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
msgstr "A lapos módszer minden egyes poligonhoz egyetlen színt és fényerősséget rendel hozzá. Az élek láthatók, folytonos színátmenetek és spot megvilágítás nem lehetséges."
-#. iWFe
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2325,7 +2075,6 @@ msgctxt ""
msgid "The Gouraud method applies gradients for a smoother, more realistic look."
msgstr "A Goraud-módszer színátmeneteket alkalmaz a simább, valósághűbb kinézet érdekében."
-#. u64!
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2334,7 +2083,6 @@ msgctxt ""
msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
msgstr "Jelölje be az <emph>Objektumszegélyek</emph> négyzetet az élek körüli vonalak megrajzolásához."
-#. iP0W
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2343,7 +2091,6 @@ msgctxt ""
msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
msgstr "Jelölje be a <emph>Lekerekített sarkok</emph> négyzetet a téglalapalakzatok éleinek simításához."
-#. HixF
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2352,7 +2099,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válasszon egy sémát a listából, vagy kattintson bármelyik alábbi jelölőnégyzetre.</ahelp>"
-#. Kdak
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2361,7 +2107,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ha be van jelölve, akkor a Goraud-árnyalás, ha nincs bejelölve, akkor a lapos árnyalás lesz alkalmazva.</ahelp>"
-#. 4DCC
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2370,7 +2115,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A területek körül szegélyek jelennek meg a vonalstílus folytonosra állításával.</ahelp>"
-#. 4kpl
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2379,7 +2123,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az élek 5%-kal lekerekítésre kerülnek.</ahelp>"
-#. I{$^
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2388,7 +2131,6 @@ msgctxt ""
msgid "Illumination"
msgstr "Megvilágítás"
-#. -f:`
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2397,7 +2139,6 @@ msgctxt ""
msgid "Set the light sources for the 3D view."
msgstr "Beállítja a térbeli nézet fényforrásait."
-#. hX`I
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2406,7 +2147,6 @@ msgctxt ""
msgid "Click any of the eight buttons to switch a directed light source on or off."
msgstr "Kattintson bármelyik gombra a nyolc közül egy irányított fény be vagy kikapcsolásához."
-#. 2i(m
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2415,7 +2155,6 @@ msgctxt ""
msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
msgstr "Alapértelmezett esetben a második fényforrás be van kapcsolva. Ez az első a hét \"normál\" egyenletes fényforrás közül. Az első számú fényforrás csúcsfényt vetít az objektumra."
-#. =x3G
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2424,7 +2163,6 @@ msgctxt ""
msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
msgstr "A kijelölt fényforráshoz kiválaszthatja a színt és az intenzitást a nyolc gomb alatt elhelyezkedő listából. A fények fényességértékei összeadódnak, ezért használjon sötét színeket, ha több fényt is bekapcsol."
-#. 9iaJ
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2433,7 +2171,6 @@ msgctxt ""
msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
msgstr "Az ezen a lapon elhelyezkedő kis előnézeten a két csúszkával állítható be a kijelölt fényforrás függőleges és vízszintes helyzete. A fényforrás mindig az objektum közepére irányul."
-#. I,VC
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2442,7 +2179,6 @@ msgctxt ""
msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
msgstr "A kis előnézet sarokban lévő gombja a belső megvilágítási modellt váltja át gömb és kocka között."
-#. *N)D
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2451,7 +2187,6 @@ msgctxt ""
msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
msgstr "A Szórt fény lista használatával adhatók meg a szórt fény tulajdonságai, amely egyenletes intenzitással világít minden irányból."
-#. 9~+2
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2460,7 +2195,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Húzza a jobb oldali csúszkát a függőleges magasság és a kijelölt fényforrás irányának beállításához.</ahelp>"
-#. b8;q
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2469,7 +2203,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Húzza az alsó csúszkát a vízszintes helyzet és a kijelölt fényforrás irányának beállításához.</ahelp>"
-#. RVuU
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2478,7 +2211,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintson ide a gömb és kocka megvilágítási modell közötti váltáshoz.</ahelp>"
-#. RQgC
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2487,7 +2219,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintson ide a csúcsfény engedélyezéséhez vagy tiltásához.</ahelp>"
-#. 7.[I
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2496,7 +2227,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kattintson ide az egyenletes fényforrás engedélyezéséhez vagy tiltásához.</ahelp>"
-#. [e=7
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2505,7 +2235,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válassza ki a kijelölt fényforrás színét.</ahelp>"
-#. 7cM\
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2514,7 +2243,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Szín választása a szín párbeszédablakkal.</ahelp>"
-#. [0_B
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2523,7 +2251,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válassza ki a háttérfény színét.</ahelp>"
-#. Kk(t
#: three_d_view.xhp
msgctxt ""
"three_d_view.xhp\n"
@@ -2532,7 +2259,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Szín választása a szín párbeszédablakkal.</ahelp>"
-#. G0Zb
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2541,7 +2267,6 @@ msgctxt ""
msgid "Positioning"
msgstr "Elhelyezés"
-#. =pS*
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2550,7 +2275,6 @@ msgctxt ""
msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
msgstr "<bookmark_value>elhelyezés; tengelyek</bookmark_value><bookmark_value>diagramok;tengelyek elhelyezése</bookmark_value><bookmark_value>X tengelyek;elhelyezés</bookmark_value><bookmark_value>Y tengelyek;elhelyezés</bookmark_value><bookmark_value>tengelyek;beosztásjelek</bookmark_value>"
-#. (1y~
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2560,7 +2284,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"elhelyezés\">Elhelyezés</link>"
-#. _rgi
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2570,7 +2293,6 @@ msgctxt ""
msgid "Controls the positioning of the axis."
msgstr "A tengelyek elhelyezkedését vezérli"
-#. [0WV
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2579,7 +2301,6 @@ msgctxt ""
msgid "Axis line"
msgstr "Tengelyvonal"
-#. d2Wg
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2588,7 +2309,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki, hol metssze a másik tengelyt: a kezdeténél, a végénél, adott értéknél vagy adott kategóriánál.</ahelp>"
-#. Nv9)
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2597,7 +2317,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Adja meg az értéket, ahol a tengelyvonal metssze a másik tengelyt.</ahelp>"
-#. NUv2
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2606,7 +2325,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válassza ki a kategóriát, ahol a tengelyvonal metssze a másik tengelyt.</ahelp>"
-#. TQJC
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2615,7 +2333,6 @@ msgctxt ""
msgid "Labels"
msgstr "Címkék"
-#. ^xd3
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2624,7 +2341,6 @@ msgctxt ""
msgid "Place labels"
msgstr "Címkék elhelyezése"
-#. -R`7
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2633,7 +2349,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki a címkék helyét: a tengely mellett, a tengely mellett a másik oldalon, kívülről kezdve vagy kívül végződve.</ahelp>"
-#. =B(Y
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2642,7 +2357,6 @@ msgctxt ""
msgid "Interval marks"
msgstr "Beosztásjelek"
-#. {Ylz
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2652,7 +2366,6 @@ msgctxt ""
msgid "Major:"
msgstr "Főbeosztás:"
-#. o718
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2662,7 +2375,6 @@ msgctxt ""
msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
msgstr "Meghatározza, hogy a jelölések a tengely külső vagy belső oldalán helyezkedjenek el. Kombinálhatja is a kettőt: ilyenkor a jelölések mindkét oldalon láthatók."
-#. =xof
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2672,7 +2384,6 @@ msgctxt ""
msgid "Inner"
msgstr "Belső"
-#. R.\w
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2682,7 +2393,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Megadja, hogy a beosztásjelek a tengely belső oldalára kerüljenek.</ahelp>"
-#. ;YJM
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2692,7 +2402,6 @@ msgctxt ""
msgid "Outer"
msgstr "Külső"
-#. ERj3
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2702,7 +2411,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Megadja, hogy a beosztásjelek a tengely külső oldalára kerüljenek.</ahelp>"
-#. dk/f
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2712,7 +2420,6 @@ msgctxt ""
msgid "Minor:"
msgstr "Albeosztás:"
-#. luYW
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2722,7 +2429,6 @@ msgctxt ""
msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
msgstr "Ezen a területen írhatja le a tengelyjelölések közötti vonásokat. Mindkét lehetőséget engedélyezheti. Ebben az esetben a jelölő vonás mindkét oldalon látszódni fog."
-#. 5|Ce
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2732,7 +2438,6 @@ msgctxt ""
msgid "Inner"
msgstr "Belső"
-#. {zF@
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2742,7 +2447,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Megadja, hogy az albeosztásjelek a tengely belső oldalára kerüljenek.</ahelp>"
-#. W.4b
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2752,7 +2456,6 @@ msgctxt ""
msgid "Outer"
msgstr "Külső"
-#. #VS0
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2762,7 +2465,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Megadja, hogy az albeosztásjelek a tengely külső oldalára kerüljenek.</ahelp>"
-#. $%cI
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2771,7 +2473,6 @@ msgctxt ""
msgid "Place marks"
msgstr "Jelek elhelyezése"
-#. Yejj
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
@@ -2780,7 +2481,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
msgstr "<ahelp hid=\".\">Válassza ki, hova kerüljenek a jelek: a címkékhez, a tengelyhez vagy a tengelyhez és címkékhez.</ahelp>"
-#. r},L
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
@@ -2789,7 +2489,6 @@ msgctxt ""
msgid "Chart Floor"
msgstr "Diagram alapsíkja"
-#. 17F]
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
@@ -2798,7 +2497,6 @@ msgctxt ""
msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
msgstr "<bookmark_value>diagramok; alapsíkok formázása</bookmark_value><bookmark_value>formázás; diagram alapsíkja</bookmark_value>"
-#. aGZh
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
@@ -2808,7 +2506,6 @@ msgctxt ""
msgid "Chart Floor"
msgstr "Diagram alapsíkja"
-#. l4SR
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
@@ -2818,7 +2515,6 @@ msgctxt ""
msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Megnyitja a diagram alapsíkja tulajdonságainak módosítására szolgáló <emph>Diagram alapsíkja</emph> párbeszédablakot. A diagram alapsíkja a térbeli diagramok alsó területe. Ez a funkció csak a térbeli diagramoknál áll rendelkezésre.</ahelp></variable>"
-#. @sfW
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
@@ -2827,7 +2523,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. Un_w
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
@@ -2836,7 +2531,6 @@ msgctxt ""
msgid "<bookmark_value>aligning;titles in charts</bookmark_value><bookmark_value>titles;alignment (charts)</bookmark_value>"
msgstr "<bookmark_value>igazítás;címek diagramokban</bookmark_value><bookmark_value>címek;igazítás (diagramok)</bookmark_value>"
-#. 1O@#
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
@@ -2846,7 +2540,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alignment</link>"
msgstr "<link href=\"text/schart/01/05020101.xhp\" name=\"Igazítás\">Igazítás</link>"
-#. *kqy
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
@@ -2856,7 +2549,6 @@ msgctxt ""
msgid "Modifies the alignment of the chart title."
msgstr "Módosítja a diagramcím igazítását."
-#. Si%j
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
@@ -2866,7 +2558,6 @@ msgctxt ""
msgid "Some of the options are not available for all types of labels. For example, there are different options for 2D and 3D object labels."
msgstr "Bizonyos lehetőségek nem érhetőek el az összes címketípus esetében. Például különböző lehetőségek érhetők el a síkbeli és térhatású objektumok címkéinél."
-#. P@]s
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
@@ -2876,7 +2567,6 @@ msgctxt ""
msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr "Fontos megjegyezni, hogy ha a diagram túl kicsi, probléma léphet fel a címek megjelenítésénél. Ezt elkerülheti, ha megnöveli a diagramot vagy csökkenti a betűméretet."
-#. _R$7
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
@@ -2885,7 +2575,6 @@ msgctxt ""
msgid "Chart Area"
msgstr "Diagramterület"
-#. dO|8
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
@@ -2894,7 +2583,6 @@ msgctxt ""
msgid "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
msgstr "<bookmark_value>diagramok; területek formázása</bookmark_value><bookmark_value>formázás; diagramterületek</bookmark_value>"
-#. ?HH\
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
@@ -2904,7 +2592,6 @@ msgctxt ""
msgid "Chart Area"
msgstr "Diagramterület"
-#. !3#+
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
@@ -2914,7 +2601,6 @@ msgctxt ""
msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Megnyitja a diagramterület tulajdonságainak módosítására szolgáló <emph>Diagramterület</emph> párbeszédablakot. A diagramterület a diagram összes eleme mögött látható háttér.</ahelp></variable>"
-#. .*FM
#: type_bubble.xhp
msgctxt ""
"type_bubble.xhp\n"
@@ -2923,7 +2609,6 @@ msgctxt ""
msgid "Chart Type Bubble"
msgstr "Buborékdiagram"
-#. p6}Y
#: type_bubble.xhp
msgctxt ""
"type_bubble.xhp\n"
@@ -2932,7 +2617,6 @@ msgctxt ""
msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
msgstr "<bookmark_value>buborékdiagramok</bookmark_value><bookmark_value>diagramtípusok;buborék</bookmark_value>"
-#. z\Z9
#: type_bubble.xhp
msgctxt ""
"type_bubble.xhp\n"
@@ -2941,7 +2625,6 @@ msgctxt ""
msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Buborékdiagram</link></variable>"
-#. L3N\
#: type_bubble.xhp
#, fuzzy
msgctxt ""
@@ -2951,7 +2634,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. e;dY
#: type_bubble.xhp
msgctxt ""
"type_bubble.xhp\n"
@@ -2960,7 +2642,6 @@ msgctxt ""
msgid "Bubble"
msgstr "Buborék"
-#. 9Mm/
#: type_bubble.xhp
msgctxt ""
"type_bubble.xhp\n"
@@ -2969,7 +2650,6 @@ msgctxt ""
msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
msgstr "A buborékdiagram három változó kapcsolatát jeleníti meg. Két változó határozza meg az x és y tengelyek menti elhelyezkedést, és a harmadik a buborékok viszonylagos méretét."
-#. A0Yj
#: type_bubble.xhp
msgctxt ""
"type_bubble.xhp\n"
@@ -2978,7 +2658,6 @@ msgctxt ""
msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
msgstr "A buborékdiagram adatsor-párbeszédablakában van egy beviteli mező a Buborékméret adattartományának meghatározásához."
-#. EanU
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -2987,7 +2666,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Igazítás"
-#. %q5)
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -2997,7 +2675,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alignment</link>"
msgstr "<link href=\"text/schart/01/05020201.xhp\" name=\"Igazítás\">Igazítás</link>"
-#. 3IJa
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3007,7 +2684,6 @@ msgctxt ""
msgid "Modifies the alignment of axes or title labels."
msgstr "Módosítja a tengelyek vagy a címfeliratok igazítását."
-#. |+ut
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3017,7 +2693,6 @@ msgctxt ""
msgid "Some of the options listed here are not available for all labels. For example, there are different options for 2D and 3D object labels."
msgstr "A felsoroltak közül néhány lehetőség nem áll rendelkezésre bizonyos címketípusok esetében. Például különböző lehetőségek érhetők el a síkbeli és térhatású objektumok címkéinél."
-#. pY0s
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3027,7 +2702,6 @@ msgctxt ""
msgid "Show labels"
msgstr "Címkék megjelenítése"
-#. 0rXd
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3037,7 +2711,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR\">Specifies whether to show or hide the axis labels.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR\">Megadja, hogy a tengelycímkék láthatók vagy rejtettek.</ahelp>"
-#. .W]G
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3047,7 +2720,6 @@ msgctxt ""
msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">A <emph>Formázás</emph> eszköztár <emph>Tengelyfelirat be/ki</emph> ikonja be-, illetve kikapcsolja a tengelyek címkéinek megjelenítését.</ahelp></variable>"
-#. [Ejz
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3057,7 +2729,6 @@ msgctxt ""
msgid "Rotate text"
msgstr "Szöveg elforgatása"
-#. (CQj
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3067,7 +2738,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ToggleAxisDescr\">Defines the text direction of cell contents.</ahelp> Click one of the ABCD buttons to assign the required direction."
msgstr "<ahelp hid=\".uno:ToggleAxisDescr\">Meghatározza a cellatartalmak szövegirányát.</ahelp> Kattintson az ABCD gombok egyikére a szükséges irány megadásához."
-#. ^c,)
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3077,7 +2747,6 @@ msgctxt ""
msgid "ABCD wheel"
msgstr "ABCD tárcsa"
-#. ;U_1
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3087,7 +2756,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_CTR_DIAL\">Clicking anywhere on the wheel defines the variable text orientation.</ahelp> The letters \"ABCD\" on the button correspond to the new setting."
msgstr "<ahelp hid=\"HID_SCH_ALIGNMENT_CTR_DIAL\">A szöveg dőlésszögének beállításához kattintson a tárcsán tetszőleges helyre.</ahelp> A gombon található \"ABCD\" betűk az új beállításnak felelnek meg."
-#. @JaE
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3097,7 +2765,6 @@ msgctxt ""
msgid "ABCD button"
msgstr "ABCD gomb"
-#. 5uC~
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3107,7 +2774,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_STACKED\">Assigns vertical text orientation for cell contents.</ahelp>"
msgstr "<ahelp hid=\"HID_SCH_ALIGNMENT_STACKED\">Függőleges szövegtájolást rendel a cella tartalmához.</ahelp>"
-#. KY2L
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3117,7 +2783,6 @@ msgctxt ""
msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis."
msgstr "Ha függőleges x tengelycímkét határozott meg, akkor a szöveg végét levághatja az x tengely vonala."
-#. 7j.y
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3127,7 +2792,6 @@ msgctxt ""
msgid "Degrees"
msgstr "fok"
-#. KXNj
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3137,7 +2801,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_DEGREES\">Allows you to manually enter the orientation angle.</ahelp>"
msgstr "<ahelp hid=\"HID_SCH_ALIGNMENT_DEGREES\">Lehetővé teszi a tájolási szög kézi megadását.</ahelp>"
-#. BDpW
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3147,7 +2810,6 @@ msgctxt ""
msgid "Text flow"
msgstr "Szövegbeosztás"
-#. |P$q
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3157,7 +2819,6 @@ msgctxt ""
msgid "Determines the text flow of the data label."
msgstr "Meghatározza az adatfelirat szövegbeosztását."
-#. @Rh\
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3167,7 +2828,6 @@ msgctxt ""
msgid "Overlap"
msgstr "Átfedés"
-#. WDtP
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3177,7 +2837,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP\">Specifies that the text in cells may overlap other cells.</ahelp> This can be especially useful if there is a lack of space. This option is not available with different title directions."
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP\">Itt adhatja meg, hogy a cella szövege átlóghat-e más cellákba.</ahelp> Ez különösen helyszűke esetén lehet hasznos. Ez a lehetőség nem áll rendelkezésre különböző irányú címkék esetében."
-#. aLao
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3187,7 +2846,6 @@ msgctxt ""
msgid "Break"
msgstr "Törés"
-#. -6={
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3197,7 +2855,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK\">Allows a text break.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK\">Bekapcsolja a szöveg tördelését.</ahelp>"
-#. %1XA
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3207,7 +2864,6 @@ msgctxt ""
msgid "The following options are not available for all chart types:"
msgstr "Az alábbi beállítások nem érhető el az összes diagramtípus számára:"
-#. 7IS2
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3217,7 +2873,6 @@ msgctxt ""
msgid "Order"
msgstr "Rendezés"
-#. {u~N
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3227,7 +2882,6 @@ msgctxt ""
msgid "The options on this tab are only available for a 2D chart, under <emph>Format - Axis - Y Axis</emph> or <emph>X Axis</emph>. In this area, you can define the alignment of the number labels on the X or Y axis."
msgstr "Ez a lehetőség csak a síkbeli diagramoknál érhető el, a <emph>Formátum - Tengely - Y tengely</emph> vagy <emph>X tengely</emph> paranccsal. Ezen a területen megadhatja az X vagy Y tengely számozott címkéinek igazítását."
-#. h*_.
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3237,7 +2891,6 @@ msgctxt ""
msgid "Tile"
msgstr "Mozaik"
-#. |%VN
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3247,7 +2900,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE\">Arranges numbers on the axis side by side.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE\">A tengelyen egymás mellett helyezi el a számokat.</ahelp>"
-#. 5.Z3
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3257,7 +2909,6 @@ msgctxt ""
msgid "Stagger odd"
msgstr "Páros címke eltolása"
-#. TLIF
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3267,7 +2918,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN\">Staggers numbers on the axis, even numbers lower than odd numbers.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN\">A páros és a páratlan számokat egymáshoz képest eltolva jeleníti meg a tengelyen. A páros számok lejjebb jelennek meg, mint a páratlan számok.</ahelp>"
-#. 9D|e
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3277,7 +2927,6 @@ msgctxt ""
msgid "Stagger even"
msgstr "Páratlan címke eltolása"
-#. M#Ol
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3287,7 +2936,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP\">Stagger numbers on the axes, odd numbers lower than even numbers.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP\">A páros és a páratlan számokat egymáshoz képest eltolva jeleníti meg a tengelyen. A páratlan számok lejjebb jelennek meg, mint a páros számok.</ahelp>"
-#. ?/LA
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3297,7 +2945,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. /.CG
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3307,7 +2954,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER\">Automatically arranges numbers on the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER\">A tengelyen automatikusan elrendezi a számokat.</ahelp>"
-#. Xlr-
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3317,7 +2963,6 @@ msgctxt ""
msgid "Problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr "Ha a diagram túl kicsi, akkor a címkék megjelenítése során problémák léphetnek fel. Ezt elkerülheti, ha megnöveli a diagramot vagy csökkenti a betűméretet."
-#. c#Gn
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3326,7 +2971,6 @@ msgctxt ""
msgid "Text Direction"
msgstr "Szövegirány"
-#. DSZZ
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
@@ -3335,7 +2979,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a szöveg irányát a komplex megjelenítésű (CTL) szövegbekezdésekhez. Ez a funkció csak akkor érhető el, ha a komplex szöveg megjelenítésének támogatása engedélyezve van.</ahelp>"
-#. \Uqv
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
@@ -3344,7 +2987,6 @@ msgctxt ""
msgid "Data Series"
msgstr "Adatsorok"
-#. PR42
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
@@ -3354,7 +2996,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Adatsorok\">Adatsorok</link>"
-#. i)WG
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
@@ -3364,7 +3005,6 @@ msgctxt ""
msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
msgstr "Megváltoztathatja a kijelölt adatsor tulajdonságait. Ez a párbeszédablak akkor jelenik meg, ha a <emph>Formátum - Kijelölés formázása</emph> menüparancs kiválasztásakor egyetlen adatsor van kijelölve. Egyes menüparancsok csak síkbeli vagy térbeli diagram esetében állnak rendelkezésre."
-#. +@xa
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
@@ -3374,7 +3014,6 @@ msgctxt ""
msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
msgstr "Az itt végrehajtott változások a teljes adatsorra érvényesek. Ha például módosítja a színt, akkor az adatsorba tartozó összes elem színe megváltozik."
-#. 1o53
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
@@ -3384,7 +3023,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Y hibasávok\">Y hibasávok</link>"
-#. B}IU
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
@@ -3393,7 +3031,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. [fQG
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
@@ -3402,7 +3039,6 @@ msgctxt ""
msgid "<bookmark_value>editing; titles</bookmark_value>"
msgstr "<bookmark_value>szerkesztés; címek</bookmark_value>"
-#. ?%Bg
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
@@ -3412,7 +3048,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. 9\VV
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
@@ -3422,7 +3057,6 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">A kijelölt cím tulajdonságait módosítja.</ahelp></variable>"
-#. `H_+
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
@@ -3432,7 +3066,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Karakter\">Karakter</link>"
-#. (.j=
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3441,7 +3074,6 @@ msgctxt ""
msgid "Choosing a Chart Type"
msgstr "Diagramtípus kiválasztása"
-#. @)Cr
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3450,7 +3082,6 @@ msgctxt ""
msgid "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Choosing a Chart Type</link></variable>"
msgstr "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Diagramtípus kiválasztása</link></variable>"
-#. 6?a6
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3459,7 +3090,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. [EX!
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3468,7 +3098,6 @@ msgctxt ""
msgid "The available chart types"
msgstr "Használható diagramtípusok"
-#. E0w?
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3477,7 +3106,6 @@ msgctxt ""
msgid "Choose from the following chart types, depending on data type and intended presentation effect."
msgstr "Válasszon a következő diagramtípusok közül az adattípustól és a kívánt bemutatási hatástól függően."
-#. eFVA
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3486,7 +3114,6 @@ msgctxt ""
msgid "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Icon</alt></image> and <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Ikon</alt></image> és <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. %p$4
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3495,7 +3122,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_column_bar.xhp\">Column or Bar</link>"
msgstr "<link href=\"text/schart/01/type_column_bar.xhp\">Oszlop vagy sáv</link>"
-#. FH)O
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3504,7 +3130,6 @@ msgctxt ""
msgid "<image id=\"Graphic2\" src=\"chart2/res/pie_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic2\" src=\"chart2/res/pie_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. `}J6
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3513,7 +3138,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_pie.xhp\">Pie</link>"
msgstr "<link href=\"text/schart/01/type_pie.xhp\">Torta</link>"
-#. Grkq
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3522,7 +3146,6 @@ msgctxt ""
msgid "<image id=\"Graphic21\" src=\"chart2/res/areas_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic21\" src=\"chart2/res/areas_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. ]EnA
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3531,7 +3154,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_area.xhp\">Area</link>"
msgstr "<link href=\"text/schart/01/type_area.xhp\">Terület</link>"
-#. nKwI
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3540,7 +3162,6 @@ msgctxt ""
msgid "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. eZ8L
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3549,7 +3170,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_line.xhp\">Line</link>"
msgstr "<link href=\"text/schart/01/type_line.xhp\">Vonal</link>"
-#. ltU)
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3558,7 +3178,6 @@ msgctxt ""
msgid "<image id=\"Graphic4\" src=\"chart2/res/valueaxisdirectpoints_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic4\" src=\"chart2/res/valueaxisdirectpoints_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. js@h
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3567,7 +3186,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_xy.xhp\">XY (scatter)</link>"
msgstr "<link href=\"text/schart/01/type_xy.xhp\">Pont (XY)</link>"
-#. giku
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3576,7 +3194,6 @@ msgctxt ""
msgid "<image id=\"graphics1\" src=\"chart2/res/bubble_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"graphics1\" src=\"chart2/res/bubble_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. Q[-0
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3585,7 +3202,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_bubble.xhp\">Bubble</link>"
msgstr "<link href=\"text/schart/01/type_bubble.xhp\">Buborék</link>"
-#. of.)
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3594,7 +3210,6 @@ msgctxt ""
msgid "<image id=\"Graphic5\" src=\"chart2/res/net_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic5\" src=\"chart2/res/net_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. H%Po
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3603,7 +3218,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_net.xhp\">Net</link>"
msgstr "<link href=\"text/schart/01/type_net.xhp\">Háló</link>"
-#. F1C7
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3612,7 +3226,6 @@ msgctxt ""
msgid "<image id=\"Graphic6\" src=\"chart2/res/stock_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic6\" src=\"chart2/res/stock_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. \;2m
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3621,7 +3234,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_stock.xhp\">Stock</link>"
msgstr "<link href=\"text/schart/01/type_stock.xhp\">Árfolyam</link>"
-#. L!F]
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3630,7 +3242,6 @@ msgctxt ""
msgid "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ikon</alt></image>"
-#. PSZ`
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3639,16 +3250,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_column_line.xhp\">Column and Line</link>"
msgstr "<link href=\"text/schart/01/type_column_line.xhp\">Oszlop és vonal</link>"
-#. 9|+B
-#: choose_chart_type.xhp
-msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id8174687\n"
-"help.text"
-msgid " "
-msgstr " "
-
-#. !rar
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3657,7 +3258,6 @@ msgctxt ""
msgid "Chart Type Line"
msgstr "Vonal diagramtípus"
-#. y)lX
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3666,7 +3266,6 @@ msgctxt ""
msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
msgstr "<bookmark_value>vonaldiagramok</bookmark_value><bookmark_value>diagramtípusok;vonal</bookmark_value>"
-#. .-)%
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3675,7 +3274,6 @@ msgctxt ""
msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Vonal diagramtípus</link></variable>"
-#. g/-W
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3684,7 +3282,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. ??Ao
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3693,7 +3290,6 @@ msgctxt ""
msgid "Line"
msgstr "Vonal"
-#. il98
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3702,7 +3298,6 @@ msgctxt ""
msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
msgstr "A vonaldiagram az értékeket pontokként jeleníti meg az y tengelyen. Az x tengelyen a kategóriák vannak. Az adatsor y értékeit vonal kötheti össze."
-#. h*Q\
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3711,7 +3306,6 @@ msgctxt ""
msgid "Points only - this subtype plots only points."
msgstr "Csak pontok - ez az altípus csak pontokat rajzol."
-#. cbrE
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3720,7 +3314,6 @@ msgctxt ""
msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
msgstr "Pontok és vonalak - ez az altípus pontokat rajzol ki, és az azonos adatsorhoz tartozó pontokat vonallal köti össze."
-#. yQB`
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3729,7 +3322,6 @@ msgctxt ""
msgid "Lines only - this subtype plots only lines."
msgstr "Csak vonalak - ez az altípus csak vonalakat rajzol."
-#. 7_Ec
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3738,7 +3330,6 @@ msgctxt ""
msgid "3D lines - this subtype connects points of the same data series by a 3D line."
msgstr "Térbeli vonalak - ez az altípus egy térbeli vonallal köti össze az azonos adatsorba tartozó pontokat."
-#. /3ae
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3747,7 +3338,6 @@ msgctxt ""
msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
msgstr "Jelölje be az <emph>Adatsorok halmozása</emph> négyzetet, ha a pontok y értékeit összesítve akarja egymás felett megjeleníteni. Az y értékek innentől kezdve nem abszolút értéket jelentenek, kivéve az első oszlopot, amely az egymásra halmozott pontok alján helyezkedik el. Ha a <emph>Százalék</emph> lehetőséget választja, az y értékek a kategória teljes összegéhez viszonyított százalékos arányuknak megfelelően jelennek meg."
-#. chYd
#: type_line.xhp
msgctxt ""
"type_line.xhp\n"
@@ -3756,7 +3346,6 @@ msgctxt ""
msgid "Mark <emph>Smooth lines</emph> to draw curves through the points instead of straight lines. Click <emph>Properties</emph> for a <link href=\"text/schart/01/smooth_line_properties.xhp\">dialog</link> to change the curves' properties."
msgstr "Jelölje be a <emph>Sima vonalak</emph> négyzetet, ha a pontokat nem egyenes vonalakkal, hanem görbékkel akarja összekötni. Kattintson a <emph>Tulajdonságok</emph> gombra a görbék tulajdonságainak módosításához használható <link href=\"text/schart/01/smooth_line_properties.xhp\">párbeszédablak</link> megjelenítéséhez."
-#. ~_yR
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3765,7 +3354,6 @@ msgctxt ""
msgid "Chart Wizard - Data Series"
msgstr "Diagramtündér - Adatsorok"
-#. [0I*
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3774,7 +3362,6 @@ msgctxt ""
msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
msgstr "<bookmark_value>diagramadatok sorrendje</bookmark_value><bookmark_value>diagramadatok</bookmark_value>"
-#. 8R0H
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3783,7 +3370,6 @@ msgctxt ""
msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Diagramtündér - Adatsorok</link></variable>"
-#. 51KU
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3792,7 +3378,6 @@ msgctxt ""
msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> ezen oldalán minden adatsor forrásának tartománya külön módosítható, beleértve a feliratokat is. A kategóriák tartománya és módosítható. Először jelölje ki az adattartományt az Adattartomány oldalon, majd távolítsa el a szükségtelen adatsorokat vagy adjon hozzá más cellákból származó adatsorokat itt."
-#. k7(V
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3801,7 +3386,6 @@ msgctxt ""
msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
msgstr "Ha úgy látja, hogy túl sok beállítási lehetőség van ezen az oldalon, akkor csak adja meg adattartományokat a Diagramtündér - Adattartomány oldalon, és ugorja át ezt az oldalt."
-#. r9*l
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3810,7 +3394,6 @@ msgctxt ""
msgid "This dialog is only available for charts based on a Calc or Writer table."
msgstr "Ez a párbeszédablak csak Calc- vagy Writer-táblázatokon alapuló diagramok esetén érhető el."
-#. c`\5
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3819,7 +3402,6 @@ msgctxt ""
msgid "Organizing data series"
msgstr "Adatsorok szervezése"
-#. @tns
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3828,7 +3410,6 @@ msgctxt ""
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr "Az Adatsorok listában látható az aktuális diagramhoz tartozó valamennyi adatsor."
-#. .g0P
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3837,7 +3418,6 @@ msgctxt ""
msgid "To organize the data series, select an entry in the list."
msgstr "Az adatsorok szervezéséhez jelölje ki a lista egy elemét."
-#. +:wr
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3846,7 +3426,6 @@ msgctxt ""
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr "Kattintson a Hozzáadás gombra egy másik adatsor hozzáadásához a kijelölt bejegyzés alá. Az új adatsor típusa a kijelöltével azonos lesz."
-#. of!J
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3855,7 +3434,6 @@ msgctxt ""
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr "Kattintson az Eltávolítás gombra a kijelölt adatsor eltávolításához az Adatsorok listáról."
-#. fH)B
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3864,7 +3442,6 @@ msgctxt ""
msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
msgstr "A Fel és Le nyílgombokkal a kijelölt elemet fel és le mozgathatja a listában. Ez nem változtatja meg az adatforrás-táblázatban a sorrendet, a változások csak a diagram elrendezését érintik."
-#. U{+-
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3873,7 +3450,6 @@ msgctxt ""
msgid "Editing data series"
msgstr "Adatsorok szerkesztése"
-#. pK_.
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3882,7 +3458,6 @@ msgctxt ""
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr "Kattintson a lista egyik bejegyzésére a bejegyzés tulajdonságainak szerkesztéséhez."
-#. b[}H
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3891,7 +3466,6 @@ msgctxt ""
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr "Az adattartományok listában látható az adatsorok komponenseihez tartozó szerepek neve és cellatartományok."
-#. $[kq
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3900,7 +3474,6 @@ msgctxt ""
msgid "Click an entry, then edit the contents in the text box below."
msgstr "Kattintson egy bejegyzésre, és szerkessze a tartalmaz az alatta levő szövegmezőben."
-#. [0xZ
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3909,7 +3482,6 @@ msgctxt ""
msgid "The label next to the text box states the currently selected role."
msgstr "A szövegmező melletti felirat az aktuálisan kijelölt szerepet mutatja."
-#. _bfr
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3918,7 +3490,6 @@ msgctxt ""
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "Adja meg a tartományt, vagy kattintson az <emph>Adattartomány kijelölése</emph> gombra a párbeszédablak minimalizálásához és a tartomány egérrel való kijelöléséhez."
-#. u8@s
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3927,7 +3498,6 @@ msgctxt ""
msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
msgstr "Ha több, nem összefüggő cellaterületre kiterjedő adattartományt szeretne használni, először adja meg az első tartományt, majd kézzel írjon utána egy pontosvesszőt a szövegmezőbe, majd adja meg a következő tartományt. A tartományok elválasztására használjon pontosvesszőt."
-#. r,#A
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3936,7 +3506,6 @@ msgctxt ""
msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr "Egy adatszerepű tartomány, például y értékek, nem tartalmazhat feliratcellát."
-#. $U*#
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3945,7 +3514,6 @@ msgctxt ""
msgid "Editing categories or data labels"
msgstr "Kategóriák és adatfeliratok szerkesztése"
-#. ?@RL
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3954,7 +3522,6 @@ msgctxt ""
msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr "Írja be vagy jelölje ki azt a cellatartományt, amely a kategóriák vagy adatfeliratok szövege lesz."
-#. iWq6
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3963,7 +3530,6 @@ msgctxt ""
msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
msgstr "A diagramtípustól függően a szövegek vagy az x tengelyen jelennek meg, vagy adatfeliratokként."
-#. Stz?
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3972,7 +3538,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A diagram valamennyi adatsorát felsorolja. Kattintson egy bejegyzésre az adott adatsor megtekintéséhez és szerkesztéséhez. Kattintson a <emph>Hozzáadás</emph> gombra új adatsor beszúrásához a listába a kijelölt bejegyzés után.</ahelp>"
-#. zmoy
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3981,7 +3546,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Minden adattartományt megjelenít, amelyeket az Adatsorok listában kijelölt adatsorok használnak. Minden adattartományhoz megjelenik a szerep neve és a forrástartomány címe.</ahelp>"
-#. r?!/
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3990,7 +3554,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megjeleníti a forrástartomány címét az Adattartományok lista második oszlopából. A tartományt módosíthatja a szövegmezőben, vagy kijelölheti a dokumentumban. A Calcban a párbeszédablak minimalizálásához és az adattartomány kijelöléséhez kattintson az <emph>Adattartomány kijelölése</emph> gombra.</ahelp>"
-#. (KMl
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -3999,7 +3562,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megjeleníti a kategóriák forrástartományának címét (egy kategóriadiagram x tengelyén megjelenő szövegeket). XY diagram esetén a szövegmező az adatpontokhoz megjelenő adatfeliratok forrásának tartományát jeleníti meg. A Calcban a párbeszédablak minimalizálásához és az adattartomány kijelöléséhez kattintson az <emph>Adattartomány kijelölése</emph> gombra.</ahelp>"
-#. vhc@
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -4008,7 +3570,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az aktuális bejegyzés alá új bejegyzést hoz létre az Adatsorok listában. Ha egy bejegyzés ki van jelölve, az új adatsor ugyanazt a diagramtípust kapja.</ahelp>"
-#. ~JHr
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -4017,7 +3578,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Eltávolítja a kijelölt bejegyzést az Adatsorok listából.</ahelp>"
-#. 7eB\
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -4026,7 +3586,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt bejegyzést egy hellyel feljebb mozgatja az Adatsorok listában.</ahelp>"
-#. n3E7
#: wiz_data_series.xhp
msgctxt ""
"wiz_data_series.xhp\n"
@@ -4035,7 +3594,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A kijelölt bejegyzést egy hellyel lejjebb mozgatja az Adatsorok listában.</ahelp>"
-#. DQ[J
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
@@ -4044,7 +3602,6 @@ msgctxt ""
msgid "Chart Wall"
msgstr "Diagramháttér"
-#. 33zM
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
@@ -4053,7 +3610,6 @@ msgctxt ""
msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
msgstr "<bookmark_value>diagramok; hátterek formázása</bookmark_value><bookmark_value>formázás;diagramhátterek</bookmark_value>"
-#. C25=
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
@@ -4063,7 +3619,6 @@ msgctxt ""
msgid "Chart Wall"
msgstr "Diagramháttér"
-#. *YGR
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
@@ -4073,7 +3628,6 @@ msgctxt ""
msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Megnyitja a diagramháttér tulajdonságainak módosítására szolgáló <emph>Diagramháttér</emph> párbeszédablakot. A diagramháttér a diagram adatterülete mögötti \"függőleges\" felület.</ahelp></variable>"
-#. ^%qw
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4082,7 +3636,6 @@ msgctxt ""
msgid "Axis"
msgstr "Tengely"
-#. cA84
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4092,7 +3645,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Tengely\">Tengely</link>"
-#. l2?U
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4102,7 +3654,6 @@ msgctxt ""
msgid "This opens a submenu to edit axial properties."
msgstr "Megnyitja a tengelytulajdonságok szerkesztésére szolgáló almenüt."
-#. jC5,
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4112,7 +3663,6 @@ msgctxt ""
msgid "The tabs in the dialogs depend on the chart type selected."
msgstr "A párbeszédablakok fülei a kiválasztott diagramtípustól függnek."
-#. )k]a
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4122,7 +3672,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X tengely\">X tengely</link>"
-#. KnAJ
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4132,7 +3681,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y tengely\">Y tengely</link>"
-#. \8/H
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4142,7 +3690,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Másodlagos X tengely\">Másodlagos X tengely</link>"
-#. M=S$
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4152,7 +3699,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramAxisA\">A megjelenő párbeszédablakon szerkesztheti a másodlagos X tengely tulajdonságait. Másodlagos X tengely beszúrásához válassza a <emph>Beszúrás - Tengelyek</emph>, majd az <emph>X tengely</emph> menüparancsot.</ahelp>"
-#. k^Y)
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4162,7 +3708,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Másodlagos Y tengely\">Másodlagos Y tengely</link>"
-#. kWpv
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4172,7 +3717,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramAxisB\">A megjelenő párbeszédablakon szerkesztheti a másodlagos Y tengely tulajdonságait. Másodlagos Y tengely beszúrásához válassza a <emph>Beszúrás - Tengelyek</emph>, majd az <emph>Y tengely</emph> menüparancsot.</ahelp>"
-#. :^qH
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4182,7 +3726,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Z tengely\">Z tengely</link>"
-#. 8z`=
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
@@ -4192,7 +3735,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Minden tengely\">Minden tengely</link>"
-#. D!g5
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4201,7 +3743,6 @@ msgctxt ""
msgid "Chart Type Stock"
msgstr "Árfolyam diagramtípus"
-#. B5EP
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4210,7 +3751,6 @@ msgctxt ""
msgid "<bookmark_value>stock charts</bookmark_value> <bookmark_value>chart types;stock</bookmark_value> <bookmark_value>data sources;setting for stock charts</bookmark_value>"
msgstr "<bookmark_value>árfolyamdiagramok</bookmark_value><bookmark_value>diagramtípusok;árfolyam</bookmark_value><bookmark_value>adatforrások;beállítása árfolyamdiagramhoz</bookmark_value>"
-#. fE;W
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4219,7 +3759,6 @@ msgctxt ""
msgid "<variable id=\"type_stock\"><link href=\"text/schart/01/type_stock.xhp\">Chart Type Stock</link></variable>"
msgstr "<variable id=\"type_stock\"><link href=\"text/schart/01/type_stock.xhp\">Árfolyam diagramtípus</link></variable>"
-#. 9x^\
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4228,7 +3767,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. y/7J
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4237,7 +3775,6 @@ msgctxt ""
msgid "Stock"
msgstr "Árfolyam"
-#. \p4-
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4246,7 +3783,6 @@ msgctxt ""
msgid "A Stock chart illustrates the market trend given by opening price, bottom price, top price and closing price. The transaction volume can also be shown."
msgstr "Az árfolyamdiagram egy piaci trendet jelenít meg, amelyet a nyitó ár, a legalacsonyabb ár, a legmagasabb ár és a záró ár határoz meg. A tranzakció volumene szintén megjeleníthető."
-#. (Q0q
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4255,7 +3791,6 @@ msgctxt ""
msgid "For a Stock chart the order of the data series is important. The data should be arranged as shown in the example table below."
msgstr "Az árfolyamdiagramoknál az adatsorok sorrendje lényeges. Az adatokat az alábbi példatáblázatnak megfelelően kell elrendezni."
-#. ]?Ak
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4264,7 +3799,6 @@ msgctxt ""
msgid "A"
msgstr "A"
-#. #$==
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4273,7 +3807,6 @@ msgctxt ""
msgid "B"
msgstr "B"
-#. A9IR
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4282,7 +3815,6 @@ msgctxt ""
msgid "C"
msgstr "C"
-#. KbHm
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4291,7 +3823,6 @@ msgctxt ""
msgid "D"
msgstr "D"
-#. q3:@
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4300,7 +3831,6 @@ msgctxt ""
msgid "E"
msgstr "E"
-#. H.;z
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4309,7 +3839,6 @@ msgctxt ""
msgid "F"
msgstr "F"
-#. g@L9
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4318,7 +3847,6 @@ msgctxt ""
msgid "1"
msgstr "1"
-#. T@hH
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4327,7 +3855,6 @@ msgctxt ""
msgid "Transaction volume"
msgstr "Tranzakció volumene"
-#. mgU6
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4336,7 +3863,6 @@ msgctxt ""
msgid "Opening price"
msgstr "Nyitó ár"
-#. ;UcB
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4345,7 +3871,6 @@ msgctxt ""
msgid "Low (bottom price)"
msgstr "Alacsony (legalacsonyabb ár)"
-#. ,fK%
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4354,7 +3879,6 @@ msgctxt ""
msgid "High (top price)"
msgstr "Magas (legmagasabb ár)"
-#. 1p{(
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4363,7 +3887,6 @@ msgctxt ""
msgid "Closing price"
msgstr "Záró ár"
-#. dO0A
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4372,7 +3895,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. 3sKl
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4381,7 +3903,6 @@ msgctxt ""
msgid "Monday"
msgstr "Hétfő"
-#. 20{9
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4390,7 +3911,6 @@ msgctxt ""
msgid "2500"
msgstr "2500"
-#. `,rZ
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4399,7 +3919,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. Vbrh
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4408,7 +3927,6 @@ msgctxt ""
msgid "15"
msgstr "15"
-#. ]kF]
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4417,7 +3935,6 @@ msgctxt ""
msgid "25"
msgstr "25"
-#. ekF?
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4426,7 +3943,6 @@ msgctxt ""
msgid "17"
msgstr "17"
-#. Uw!A
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4435,7 +3951,6 @@ msgctxt ""
msgid "3"
msgstr "3"
-#. ywe8
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4444,7 +3959,6 @@ msgctxt ""
msgid "Tuesday"
msgstr "Kedd"
-#. \+ME
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4453,7 +3967,6 @@ msgctxt ""
msgid "3500"
msgstr "3500"
-#. GsYP
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4462,7 +3975,6 @@ msgctxt ""
msgid "32"
msgstr "32"
-#. x7p(
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4471,7 +3983,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. !op0
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4480,7 +3991,6 @@ msgctxt ""
msgid "37"
msgstr "37"
-#. CJ~J
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4489,7 +3999,6 @@ msgctxt ""
msgid "30"
msgstr "30"
-#. b?Xf
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4498,7 +4007,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. M=.a
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4507,7 +4015,6 @@ msgctxt ""
msgid "Wednesday"
msgstr "Szerda"
-#. x\J0
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4516,7 +4023,6 @@ msgctxt ""
msgid "1000"
msgstr "1000"
-#. :~i*
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4525,7 +4031,6 @@ msgctxt ""
msgid "15"
msgstr "15"
-#. CHt1
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4534,7 +4039,6 @@ msgctxt ""
msgid "15"
msgstr "15"
-#. B9lo
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4543,7 +4047,6 @@ msgctxt ""
msgid "17"
msgstr "17"
-#. Ef$k
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4552,7 +4055,6 @@ msgctxt ""
msgid "17"
msgstr "17"
-#. g}M4
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4561,7 +4063,6 @@ msgctxt ""
msgid "5"
msgstr "5"
-#. 82L9
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4570,7 +4071,6 @@ msgctxt ""
msgid "Thursday"
msgstr "Csütörtök"
-#. =`vX
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4579,7 +4079,6 @@ msgctxt ""
msgid "2200"
msgstr "2200"
-#. J.Ck
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4588,7 +4087,6 @@ msgctxt ""
msgid "40"
msgstr "40"
-#. #H/F
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4597,7 +4095,6 @@ msgctxt ""
msgid "30"
msgstr "30"
-#. Q$E2
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4606,7 +4103,6 @@ msgctxt ""
msgid "47"
msgstr "47"
-#. ^+R[
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4615,7 +4111,6 @@ msgctxt ""
msgid "35"
msgstr "35"
-#. -tOA
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4624,7 +4119,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. =}z_
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4633,7 +4127,6 @@ msgctxt ""
msgid "Friday"
msgstr "Péntek"
-#. }-Bq
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4642,7 +4135,6 @@ msgctxt ""
msgid "4600"
msgstr "4600"
-#. S!5-
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4651,7 +4143,6 @@ msgctxt ""
msgid "27"
msgstr "27"
-#. H-)R
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4660,7 +4151,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. B]5*
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4669,7 +4159,6 @@ msgctxt ""
msgid "32"
msgstr "32"
-#. ]/zg
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4678,7 +4167,6 @@ msgctxt ""
msgid "31"
msgstr "31"
-#. Wz@=
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4687,7 +4175,6 @@ msgctxt ""
msgid "The open, low, high, and closing values of a row build together one data unit in the chart. A stock price data series consists of several rows containing such data units. The column containing the transaction volume builds an optional second data series."
msgstr "A nyitó, alacsony, magas és záró értékek egy sorban együtt egy adategységet alkotnak a diagramon. Az árfolyamadatok adatsora több ilyen adategységet tartalmazó sorból áll. A tranzakció volumenét tartalmazó oszlop egy opcionális második adatsort alkot."
-#. }7=v
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4696,7 +4183,6 @@ msgctxt ""
msgid "Depending on the chosen variant, you do not need all columns."
msgstr "A választott változattól függően nincs szükség az összes oszlopra."
-#. :X%U
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4705,7 +4191,6 @@ msgctxt ""
msgid "Stock Chart Variants"
msgstr "Árfolyamdiagram-változatok"
-#. FdM[
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4714,7 +4199,6 @@ msgctxt ""
msgid "Choose the <emph>Stock</emph> chart type on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart wizard</link>. Then select one of the four variants."
msgstr "Válassza az <emph>Árfolyam</emph> diagramtípust a <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán. Ezután válasszon a négy változat közül."
-#. z=ZH
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4723,7 +4207,6 @@ msgctxt ""
msgid "Type 1"
msgstr "Típus 1"
-#. |YUh
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4732,7 +4215,6 @@ msgctxt ""
msgid "Based on<emph> low</emph> <emph>and high </emph>column the Type 1 shows the distance between bottom price (low) and top price (high) by a vertical line."
msgstr "Az <emph>alacsony</emph> és <emph>magas</emph> oszlopon alapuló Típus 1 a legalacsonyabb (alacsony) és a legmagasabb (magas) ár közötti különbséget jeleníti meg egy függőleges vonal mentén."
-#. qk%)
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4741,7 +4223,6 @@ msgctxt ""
msgid "Based on<emph> low, high,</emph> and <emph>close</emph> column Type 1 shows an additional horizontal mark <emph>for</emph> the closing price."
msgstr "Az <emph>alacsony, magas</emph> és <emph>záró</emph> oszlopon alapuló Típus 1 egy további vízszintes jelet jelenít meg a <emph>záró árhoz</emph>."
-#. 8+`G
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4750,7 +4231,6 @@ msgctxt ""
msgid "Type 2"
msgstr "Típus 2"
-#. 69Hp
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4759,7 +4239,6 @@ msgctxt ""
msgid "Based on <emph>open, low, high</emph>, and <emph>close</emph> column Type 2 generates the traditional \"candle stick\" chart. Type 2 draws the vertical line between the bottom and top price and adds a rectangle in front, which visualizes the range between the opening and closing price. If you click on the rectangle you see more information in the status bar. %PRODUCTNAME uses different fill colors for rising values (the opening price is lower than the closing price) and falling values."
msgstr "A <emph>nyitó, alacsony, magas</emph> és <emph>záró</emph> oszlopokon alapulva a Típus 2 a hagyományos „gyertyatartó” diagramot rajzolja ki. A Típus 2 függőleges vonalat húz a legalacsonyabb és legmagasabb ár között, és egy téglalapot tesz elé, amely a nyitó és záró ár közötti tartományt jeleníti meg. Ha a téglalapra kattint, további információ jelenik meg az állapotsoron. A %PRODUCTNAME különböző színkitöltéseket használ az emelkedő értékekre (a nyitó ár alacsonyabb, mint a záró ár) és a csökkenő értékekre."
-#. Cs1[
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4768,7 +4247,6 @@ msgctxt ""
msgid "Type 3"
msgstr "Típus 3"
-#. ^E[n
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4777,7 +4255,6 @@ msgctxt ""
msgid "Based on <emph>volume, low, high</emph>, and <emph>close</emph> column chart Type 3 draws a chart like Type 1, with additional columns for the transaction volume."
msgstr "A <emph>volumen, alacsony, magas</emph> és <emph>záró</emph> oszlopon alapuló Típus 3 a Típus 1 diagramot kombinálja egy tranzakciós volumenhez tartozó oszlopdiagrammal."
-#. e~MX
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4786,7 +4263,6 @@ msgctxt ""
msgid "Type 4"
msgstr "Típus 4"
-#. nvgt
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4795,7 +4271,6 @@ msgctxt ""
msgid "Based on all five data columns <emph>volume, open, low, high</emph>, and <emph>close</emph>, Type 4 combines a chart of Type 2 with a column chart for the transaction volume."
msgstr "A mind az öt adatoszlopon, azaz <emph>volumen, nyitó, alacsony, magas</emph> és <emph>záró</emph> oszlopon alapuló Típus 4 a Típus 2 diagramot kombinálja egy tranzakciós volumenhez tartozó oszlopdiagrammal."
-#. w!cX
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4804,7 +4279,6 @@ msgctxt ""
msgid "Because measurement for transaction volume might be \"units\", a second y axis is introduced in chart Type 3 and Type 4. The price axis is shown on the right side and the volume axis on the left side."
msgstr "Mivel a tranzakció volumenének mértéke az \"egység\" lehet, egy második y tengely szerepel a Típus 3 és Típus 4 diagramoknál. Az ár tengely jelenik meg a jobb oldalon, és a volumen tengely a bal oldalon."
-#. !f(}
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4813,7 +4287,6 @@ msgctxt ""
msgid "Setting the Data Source"
msgstr "Az adatforrás beállítása"
-#. auXW
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4822,7 +4295,6 @@ msgctxt ""
msgid "Charts based on its own data"
msgstr "Saját adataikon alapuló diagramok"
-#. /fD?
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4831,7 +4303,6 @@ msgctxt ""
msgid "To change the data series of a chart having its own data, choose <link href=\"text/schart/01/03010000.xhp\">Chart Data Table</link> from the View menu or from the context menu of the chart in edit mode."
msgstr "A saját adatokkal rendelkező diagram adatsorainak módosításához válassza a <link href=\"text/schart/01/03010000.xhp\">Diagram adattáblázata</link> elemet a Nézet menüből vagy a diagram szerkesztési módjának helyi menüjéből."
-#. b=yl
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4840,7 +4311,6 @@ msgctxt ""
msgid "In an embedded chart data table, the data series are always organized in columns."
msgstr "Egy beágyazott diagramadat-táblázatban az adatsorok mindig oszlopokba vannak szervezve."
-#. !dE}
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4849,7 +4319,6 @@ msgctxt ""
msgid "For a new stock chart first use a column chart. Add the columns you need and enter your data in the order which is shown in the example, omitting any columns not required for the desired variant. Use Move Series Right to change the column order. Close the chart data table. Now use the Chart Type dialog to change to the stock chart variant."
msgstr "Új árfolyamdiagram létrehozásakor induljon ki egy oszlopdiagramból. Adja hozzá a szükséges oszlopokat, írja be az adatokat a példában mutatott módon, és hagyja azokat az oszlopokat, amelyek nem kellenek a kívánt változathoz. Használja az Adatsor mozgatása jobbra lehetőséget az oszlopok sorrendjének módosításához. Zárja be a diagram adattáblázatát. Most a Diagramtípus párbeszédablak segítségével változtassa meg a diagram típusát az árfolyamdiagram egyik változatára."
-#. _gJH
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4858,7 +4327,6 @@ msgctxt ""
msgid "If you have already got a stock chart and you want to change the variant, then first change the chart type to a column chart, add or remove columns so that it fits to the variant, and then change the chart type back to a stock chart."
msgstr "Ha már van egy árfolyamdiagramja, és egy másik változatot szeretne, először alakítsa a diagramot oszlopdiagrammá, és távolítsa el azokat az oszlopokat, amelyek nem kellenek a kívánt változathoz, majd változtassa vissza a diagram típusát árfolyamdiagramra."
-#. wB=@
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4867,7 +4335,6 @@ msgctxt ""
msgid "Do not write the name of a data series in a row. Write the name into the field above the role name."
msgstr "Ne írja sorba az adatsor nevét. Írja a nevet a szerepnév feletti mezőbe."
-#. y2/F
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4876,7 +4343,6 @@ msgctxt ""
msgid "The order of the rows determines how the categories are arranged in the chart. Use Move Row Down to change the order."
msgstr "A sorok sorrendje határozza meg, hogy hogyan rendeződnek a kategóriák a diagramon. Használja a Sor mozgatása lefelé lehetőséget a sorrend módosítására."
-#. RWg3
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4885,7 +4351,6 @@ msgctxt ""
msgid "Charts based on Calc or Writer tables"
msgstr "Calc- vagy Writer-táblázatokon alapuló diagramok"
-#. N;qB
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4894,7 +4359,6 @@ msgctxt ""
msgid "You can choose or alter a data range on the second page of the Chart wizard or in the <link href=\"text/schart/01/wiz_data_range.xhp\">Data Range</link> dialog. For fine tuning use the <link href=\"text/schart/01/wiz_data_series.xhp\">Data Series</link> dialog."
msgstr "Az adattartományokat a Diagramtündér 2. oldalán vagy az <link href=\"text/schart/01/wiz_data_range.xhp\">Adattartomány</link> párbeszédablakon választhatja ki vagy módosíthatja.. A finomhangoláshoz használja az <link href=\"text/schart/01/wiz_data_series.xhp\">Adatsorok</link> párbeszédablakot."
-#. ,/df
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4903,7 +4367,6 @@ msgctxt ""
msgid "To specify a data range do one of the following:"
msgstr "Adattartomány megadásához a tegye a következők egyikét:"
-#. 9Ljj
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4912,7 +4375,6 @@ msgctxt ""
msgid "Enter the data range in the text box."
msgstr "Írja be az adattartományt a szövegmezőbe."
-#. ~:Ca
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4921,7 +4383,6 @@ msgctxt ""
msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
msgstr "A Calcban egy példa-adattartomány lehet a „$Munkalap1.$B$3:$B$14”. Ne feledje, hogy a tartomány a munkafüzet több régiójára is kiterjedhet, például a „$Munkalap1.A1:A5;$Munkalap1.D1:D5” szintén érvényes adattartomány. A Writerben egy adattartomány lehet például a „Táblázat1.A1:E4”."
-#. .PL]
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4930,7 +4391,6 @@ msgctxt ""
msgid "As long as the syntax is not correct, %PRODUCTNAME shows the text in red."
msgstr "Ha a szintaxis nem helyes, a %PRODUCTNAME a szöveget pirossal jeleníti meg."
-#. [!j6
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4939,7 +4399,6 @@ msgctxt ""
msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag to select the data range. When you release the mouse, the data are entered. Click <emph>Select </emph> <emph>data range</emph> again to add a data range. In the input field of the minimized dialog, click after the entry and type a semicolon. Then drag to select the next range."
msgstr "A Calcban kattintson az <emph>Adattartomány kijelölése</emph> gombra a párbeszédablak minimalizálásához, majd az egérrel jelölje ki az adattartományt. Amikor felengedi az egérgombot, az adatok bevitelre kerülnek. Kattintson ismét az <emph>Adattartomány kijelölése</emph> gombra egy adattartomány hozzáadásához. A minimalizált párbeszédablak beviteli mezőjében kattintson a bejegyzés után, és írjon be egy pontosvesszőt. Ezután az egérrel jelölje ki a következő tartományt."
-#. [dlT
#: type_stock.xhp
#, fuzzy
msgctxt ""
@@ -4949,7 +4408,6 @@ msgctxt ""
msgid "Click one of the options for data series in rows or in columns."
msgstr "Kattintson a lehetőségek egyikére az oszlopokban vagy sorokban levő adatsorokhoz."
-#. qE}k
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4958,7 +4416,6 @@ msgctxt ""
msgid "Your stock chart data are \"in columns\", if the information in a row belongs to the same \"candle stick\"."
msgstr "Az árfolyamdiagram-adatok az \"oszlopokban\" vannak, ha a sorban levő információ ugyanahhoz a \"gyertyatartóhoz\" tartozik."
-#. A=QE
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4967,7 +4424,6 @@ msgctxt ""
msgid "Fine Tuning the Data Ranges of Table Based Stock Charts"
msgstr "Táblázaton alapuló árfolyamdiagramok adattartományainak finomhangolása"
-#. nSFo
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4976,7 +4432,6 @@ msgctxt ""
msgid "You can organize data series and edit the source for parts of single data series on the third page of the Chart wizard or on the page Data Series in the Data Range dialog."
msgstr "Az adatsorok szervezését és egy adott adatsorrész forrásának szerkesztését a Diagramtündér harmadik oldalán vagy az Adattartomány párbeszédablak Adatsorok lapján végezheti el."
-#. Ej25
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4985,7 +4440,6 @@ msgctxt ""
msgid "Organize Data Series"
msgstr "Adatsorok szervezése"
-#. Apm-
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -4994,7 +4448,6 @@ msgctxt ""
msgid "In the <emph>data series</emph> area on the left side of the dialog, you can organize the data series of the actual chart. A stock chart has at least one data series containing the prices. It might have a second data series for transaction volume."
msgstr "A párbeszédablak bal oldali részén, az <emph>adatsoroknál</emph>, az aktuális diagram adatsorait szervezheti. Az árfolyamdiagramnak legalább egy adatsora van, amely az árakat tartalmazza. Lehet egy második adatsora is a tranzakciók volumeneiről."
-#. ~P#1
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5003,7 +4456,6 @@ msgctxt ""
msgid "If you have got more than one price data series, use the Up and Down arrow buttons to order them. The order determines the arrangement in the chart. Do the same for volume data series. You cannot switch price and volume data series."
msgstr "Ha egynél több áradatsor van, használja a fel és le nyíl gombokat a rendezésükhöz. A sorrend határozza meg az elrendezést a diagramon. Tegye ugyanezt a volumenadatsorral. Az ár és a volumen adatsorai nem felcserélhetők."
-#. hNXI
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5012,7 +4464,6 @@ msgctxt ""
msgid "To remove a data series, select the data series in the list and click <emph>Remove</emph>."
msgstr "Egy adatsor eltávolításához jelölje ki azt a listán, majd kattintson az <emph>Eltávolítás</emph> gombra."
-#. p?GO
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5021,7 +4472,6 @@ msgctxt ""
msgid "To add a data series, select one of the existing data series and click <emph>Add</emph>. You get an empty entry below the selected one, which has the same type. If you have no price data series or no volume data series, you must first select a range for these series in the <emph>Data Range</emph> dialog."
msgstr "Új adatsor hozzáadásához jelölje ki az egyik adatsort, és kattintson a <emph>Hozzáadás</emph> gombra. Egy azonos típusú üres beviteli mezőt kap a kijelölt alatt. Ha nincsenek áradatsorok vagy nincsenek volumen-adatsorok, akkor először ezeknek a tartományait kell kijelölni az <emph>Adattartomány</emph> párbeszédablakban."
-#. ,FGZ
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5030,7 +4480,6 @@ msgctxt ""
msgid "Setting Data Ranges"
msgstr "Adattartományok beállítása"
-#. MJa1
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5039,7 +4488,6 @@ msgctxt ""
msgid "In the <emph>Data Ranges</emph> dialog you can set or change the data range of each component of the selected data series."
msgstr "Az <emph>Adattartományok</emph> párbeszédablakon beállíthatja vagy módosíthatja a kijelölt adatsor minden komponensét."
-#. k*Pc
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5048,7 +4496,6 @@ msgctxt ""
msgid "In the upper list you see the role name of the components and the current values. When you have selected a role, you can change the value in the text box below the list. The label shows the selected role."
msgstr "A felső listában a komponensek szerepneve és aktuális értékeik szerepelnek. Amikor kiválaszt egy szerepet, módosíthatja az értéket a lista alatti szövegmezőben. A felirat a kijelölt szerepet jeleníti meg."
-#. kL(k
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5057,7 +4504,6 @@ msgctxt ""
msgid "Enter the range into the text box or click on <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "Adja meg a tartományt a szövegmezőben, vagy kattintson az <emph>Adattartomány kijelölése</emph> gombra a párbeszédablak minimalizálásához és a tartomány egérrel való kijelöléséhez."
-#. A!sS
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5066,7 +4512,6 @@ msgctxt ""
msgid "Select Open Values, Close Values, High Values, and Low Values in any order. Specify only the ranges for those roles which you need for the chosen variant of the stock chart. The ranges need not be next to each other in the table."
msgstr "Válassza a Nyitó értékek, Záró értékek, Magas értékek és Alacsony értékek lehetőséget tetszőleges sorrendben. Csak azoknak a szerepeknek a tartományait adja meg, amelyekre szükség van a választott árfolyamdiagram-változathoz. A tartományoknak egymás mellett kell lenniük a táblázatban."
-#. J{nT
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5075,7 +4520,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. MMQX
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5084,7 +4528,6 @@ msgctxt ""
msgid "The legend displays the labels from the first row or column or from the special range that you have set in the <emph>Data Series</emph> dialog. If your chart does not contain labels, the legend displays text like \"Row 1, Row 2, ...\", or \"Column A, Column B, ...\" according to the row number or column letter of the chart data."
msgstr "A jelmagyarázat az első sorból vagy oszlopból, illetve az <emph>Adatsorok</emph> párbeszédablakon megadott különleges tartományból veszi a feliratokat. Ha a diagram nem tartalmaz feliratokat, akkor a jelmagyarázat „1. sor, 2. sor, ...” vagy „A oszlop, B oszlop, ...” lesz a diagramadatok sorszámának vagy oszlopbetűjének megfelelően."
-#. de@c
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5093,7 +4536,6 @@ msgctxt ""
msgid "The legend shows the value from the range, which you entered in the <emph>Range for Name</emph> field in the <emph>Data Range</emph> dialog. The default entry is the column header of the closing price column."
msgstr "A jelmagyarázatban megjelenik a tartományból származó érték, amelyet az <emph>Adattartomány</emph> párbeszédablak <emph>Név az adattartományhoz</emph> mezőjében adott meg. Az alapértelmezett érték a záró ároszlop oszlopfejléce."
-#. `K58
#: type_stock.xhp
msgctxt ""
"type_stock.xhp\n"
@@ -5102,7 +4544,6 @@ msgctxt ""
msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
msgstr "Válassza az egyik elhelyezési lehetőséget. A diagram elkészítése után megadhat más elhelyezéseket is a Formátum menü segítségével."
-#. #/?n
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5111,7 +4552,6 @@ msgctxt ""
msgid "Scale"
msgstr "Skála"
-#. #nhk
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5120,7 +4560,6 @@ msgctxt ""
msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
msgstr "<bookmark_value>méretezés; tengelyek</bookmark_value><bookmark_value>logaritmikus méretezés tengelyek mentén</bookmark_value><bookmark_value>diagramok;tengelyek méretezése</bookmark_value><bookmark_value>X tengelyek;méretezés</bookmark_value><bookmark_value>Y tengelyek; méretezés</bookmark_value>"
-#. xJSY
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5130,7 +4569,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Skála\">Skála</link>"
-#. \3.t
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5140,7 +4578,6 @@ msgctxt ""
msgid "Controls the scaling of the X or Y axis."
msgstr "Az x vagy az y tengelyek méretezését vezérli"
-#. q_SF
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5150,7 +4587,6 @@ msgctxt ""
msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
msgstr "A $[officename] automatikusan átméretezi a tengelyeket úgy, hogy az értékek optimálisan jelenjenek meg."
-#. !IU$
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5160,7 +4596,6 @@ msgctxt ""
msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
msgstr "Különleges igények esetén kézzel is módosíthatja a tengely méretezését. Ha például csak a felső területeket kívánja megjeleníteni, akkor feljebb tolhatja a nullvonalat."
-#. PY|#
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5170,7 +4605,6 @@ msgctxt ""
msgid "Scale"
msgstr "Skála"
-#. \l.o
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5180,7 +4614,6 @@ msgctxt ""
msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
msgstr "Ezen a területen adhatja meg az értékeket a tengelyek továbbosztásához. Öt tulajdonságot állíthat automatikusan: <emph>Minimum, Maximum, Főbeosztás, Albeosztások száma</emph> és <emph>Referenciaérték</emph>."
-#. VS44
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5190,7 +4623,6 @@ msgctxt ""
msgid "Minimum"
msgstr "Minimum"
-#. }(`D
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5200,7 +4632,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Meghatározza a tengely kezdetének legkisebb értékét.</ahelp>"
-#. zdq(
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5210,7 +4641,6 @@ msgctxt ""
msgid "Maximum"
msgstr "Maximum"
-#. 95/;
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5220,7 +4650,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Megadja a tengely végének legnagyobb értékét.</ahelp>"
-#. :6O/
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5230,7 +4659,6 @@ msgctxt ""
msgid "Major interval"
msgstr "Főbeosztás"
-#. ?i?\
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5240,7 +4668,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Megadja a tengelyek fő beosztási tartományát.</ahelp> A főtartomány nem lehet nagyobb, mint az értéktartomány."
-#. ?[RC
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5250,7 +4677,6 @@ msgctxt ""
msgid "Minor interval count"
msgstr "Albeosztások száma"
-#. #=Yb
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5260,7 +4686,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Megadja a tengelyek albeosztásainak tartományát.</ahelp>"
-#. AnJ+
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5270,7 +4695,6 @@ msgctxt ""
msgid "Reference value"
msgstr "Referenciaérték"
-#. -Zx|
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5280,7 +4704,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Megadja, hogy a tengely mentén mely pozícióban jelenjenek meg az értékek.</ahelp>"
-#. ,RK4
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5290,7 +4713,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automatikus"
-#. G?m8
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5300,7 +4722,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">Az értékek módosításához először ki kell kapcsolni az <emph>Automatikus</emph> beállítást.</ahelp>"
-#. !4;-
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5310,7 +4731,6 @@ msgctxt ""
msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
msgstr "Ha \"rögzített\" értékekkel dolgozik, akkor tiltsa le ezt a lehetőséget, mert ebben az esetben az automatikus méretezés nem engedélyezett."
-#. c9_-
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5320,7 +4740,6 @@ msgctxt ""
msgid "Logarithmic scale"
msgstr "Logaritmikus skála"
-#. C4%X
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5330,7 +4749,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Logaritmikus osztást helyezhet el a tengelyen.</ahelp>"
-#. !fx9
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5340,7 +4758,6 @@ msgctxt ""
msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
msgstr "Abban az esetben célszerű ezt a lehetőséget választani, ha egymástól lényegesen eltérő értékekkel dolgozik. A logaritmikus méretezéssel a tengely rácsvonalai egyenlő távolságban maradnak, de a hozzájuk tartozó értékek csökkenhetnek vagy nőhetnek."
-#. ,;UO
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5349,7 +4766,6 @@ msgctxt ""
msgid "Reverse direction"
msgstr "Fordított irány"
-#. uNjd
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5358,7 +4774,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
msgstr "<ahelp hid=\".\">Megadja, hol jelenjenek meg az alacsony és magas értékek a tengelyen. Ha nem jelöli be, akkor a program a matematikai irányt használja.</ahelp> Ez azt jelenti Descartes-koordinátarendszerben, hogy az X tengely az alacsonyabb értékeket a bal oldalon, az Y tengely pedig az alacsony értékeket alul jeleníti meg. Poláris koordinátarendszerben a matematikai tengelyirány az óra járásával ellentétes, a radiális tengely pedig belülről kifelé halad."
-#. MUfN
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5367,7 +4782,6 @@ msgctxt ""
msgid "Type"
msgstr "Típus"
-#. 19e]
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5376,7 +4790,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
msgstr "<ahelp hid=\".\">Egyes tengelytípusoknál a tengely formázása lehet szöveg vagy dátum, vagy a típus automatikusan detektálható.</ahelp> A „Dátum” típusú tengelyeknél a következő lehetőségek vannak."
-#. y*mm
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5385,7 +4798,6 @@ msgctxt ""
msgid "Minimum and maximum value to be shown on the ends of the scale."
msgstr "A skála végein megjelenő minimum- és maximumérték."
-#. WiNn
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5394,7 +4806,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
msgstr "<ahelp hid=\".\">A felbontás lehet napos, hónapos vagy éves intervallumok szerint.</ahelp>"
-#. Fkun
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5403,7 +4814,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
msgstr "<ahelp hid=\".\">A főbeosztás beállítható adott számú napra, hónapra vagy évre.</ahelp>"
-#. #8pT
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
@@ -5412,7 +4822,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
msgstr "<ahelp hid=\".\">Az albeosztás beállítható adott számú napra, hónapra vagy évre.</ahelp>"
-#. uU^@
#: 05020200.xhp
msgctxt ""
"05020200.xhp\n"
@@ -5421,7 +4830,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. (6CK
#: 05020200.xhp
msgctxt ""
"05020200.xhp\n"
@@ -5431,7 +4839,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. \2He
#: 05020200.xhp
msgctxt ""
"05020200.xhp\n"
@@ -5441,7 +4848,6 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">A kijelölt- vagy az összes cím tulajdonságait módosítja.</ahelp></variable>"
-#. A^lm
#: 05020200.xhp
msgctxt ""
"05020200.xhp\n"
@@ -5451,7 +4857,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Karakter\">Karakter</link>"
-#. V~?G
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5460,7 +4865,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. AnQK
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5469,7 +4873,6 @@ msgctxt ""
msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
msgstr "<bookmark_value>diagramok jelmagyarázata; elrejtés</bookmark_value><bookmark_value>elrejtés;diagram-jelmagyarázatok</bookmark_value>"
-#. 0bdU
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5479,7 +4882,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. r#$$
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5489,7 +4891,6 @@ msgctxt ""
msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
msgstr "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Megnyitja a <emph>Jelmagyarázat</emph> párbeszédablakot, ahol bekapcsolhatja a jelmagyarázatot, és beállíthatja annak helyzetét.</ahelp></variable>"
-#. nrw1
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5499,7 +4900,6 @@ msgctxt ""
msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">A jelmagyarázat megjelenítéséhez, illetve elrejtéséhez kattintson a <emph>Jelmagyarázat be/ki </emph> gombra a <emph>Formátum</emph> eszköztáron.</ahelp></variable>"
-#. D]Ge
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5508,7 +4908,6 @@ msgctxt ""
msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Ikon</alt></image>"
-#. {IR-
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5518,7 +4917,6 @@ msgctxt ""
msgid "Legend On/Off"
msgstr "Jelmagyarázat be/ki"
-#. R\;A
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5528,7 +4926,6 @@ msgctxt ""
msgid "Display"
msgstr "Megjelenítés"
-#. :/%D
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5538,7 +4935,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Megadja, hogy megjelenjen-e a diagram jelmagyarázata.</ahelp> Ez a lehetőség csak akkor látható, ha a párbeszédablakot a <emph>Beszúrás - Jelmagyarázat</emph> paranccsal nyitja meg."
-#. 5[FX
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5548,7 +4944,6 @@ msgctxt ""
msgid "Position"
msgstr "Pozíció"
-#. 7aJM
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5558,7 +4953,6 @@ msgctxt ""
msgid "Select the position for the legend:"
msgstr "Válassza ki a jelmagyarázat helyzetét:"
-#. h-I8
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5568,7 +4962,6 @@ msgctxt ""
msgid "Left"
msgstr "Bal oldalon"
-#. 3Ro2
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5578,7 +4971,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">A jelmagyarázat a diagram bal oldalára kerül.</ahelp>"
-#. q17r
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5588,7 +4980,6 @@ msgctxt ""
msgid "Top"
msgstr "Fent"
-#. _w+;
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5598,7 +4989,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">A jelmagyarázat a diagram tetejére kerül.</ahelp>"
-#. 3UO]
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5608,7 +4998,6 @@ msgctxt ""
msgid "Right"
msgstr "Jobb oldalon"
-#. q[FC
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5618,7 +5007,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">A jelmagyarázat a diagram jobb oldalára kerül.</ahelp>"
-#. X/\R
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5628,7 +5016,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Alul"
-#. *bH\
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5638,7 +5025,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">A jelmagyarázat a diagram aljára kerül.</ahelp>"
-#. hHlz
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5647,7 +5033,6 @@ msgctxt ""
msgid "Text Orientation"
msgstr "Szöveg iránya"
-#. =FOk
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5656,7 +5041,6 @@ msgctxt ""
msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
msgstr "Ez a lehetőség csak akkor érhető el, ha a komplex szövegelrendezés támogatása engedélyezett az <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek</item> alatt."
-#. V@4A
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5665,7 +5049,6 @@ msgctxt ""
msgid "Text Direction"
msgstr "Szövegirány"
-#. HM$m
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
@@ -5674,7 +5057,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a szöveg irányát a komplex megjelenítésű (CTL) szövegbekezdésekhez. Ez a funkció csak akkor érhető el, ha a komplex szöveg megjelenítésének támogatása engedélyezve van.</ahelp>"
-#. d2^2
#: 05050100.xhp
msgctxt ""
"05050100.xhp\n"
@@ -5683,7 +5065,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. A.L1
#: 05050100.xhp
msgctxt ""
"05050100.xhp\n"
@@ -5692,7 +5073,6 @@ msgctxt ""
msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
msgstr "<bookmark_value>X tengelyek;rács formázása</bookmark_value><bookmark_value>Y tengelyek;rács formázása</bookmark_value><bookmark_value>Z tengelyek; rács formázása</bookmark_value>"
-#. @|W=
#: 05050100.xhp
msgctxt ""
"05050100.xhp\n"
@@ -5702,7 +5082,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. %kow
#: 05050100.xhp
msgctxt ""
"05050100.xhp\n"
@@ -5712,7 +5091,6 @@ msgctxt ""
msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Megnyitja a <emph>Rács</emph> párbeszédablakot a rács tulajdonságainak beállításához.</ahelp></variable>"
-#. 69kW
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5721,7 +5099,6 @@ msgctxt ""
msgid "Title"
msgstr "Cím"
-#. !qK~
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5730,7 +5107,6 @@ msgctxt ""
msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
msgstr "<bookmark_value>címek; diagramok formázása</bookmark_value><bookmark_value>formázás; diagramcímek</bookmark_value>"
-#. (BfJ
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5740,7 +5116,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Cím\">Cím</link>"
-#. ]ZW:
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5750,7 +5125,6 @@ msgctxt ""
msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
msgstr "A <emph>Cím</emph> menüparancs egy almenüt nyit meg, amelynek segítségével szerkesztheti a diagramban található címek tulajdonságait."
-#. pY%n
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5760,7 +5134,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Főcím\">Főcím</link>"
-#. R8OY
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5770,7 +5143,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Alcím\">Alcím</link>"
-#. u$pT
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5780,7 +5152,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X tengely címe\">X tengely címe</link>"
-#. gKa-
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5790,7 +5161,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Y tengely címe\">Y tengely címe</link>"
-#. 4:CT
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5800,7 +5170,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z tengely címe\">Z tengely címe</link>"
-#. iMJ5
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
@@ -5810,7 +5179,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Minden cím\">Minden cím</link>"
-#. |2+.
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5819,7 +5187,6 @@ msgctxt ""
msgid "Chart Wizard - Chart Elements"
msgstr "Diagramtündér - Diagramelemek"
-#. pVo)
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5828,7 +5195,6 @@ msgctxt ""
msgid "<variable id=\"wiz_chart_elements\"><link href=\"text/schart/01/wiz_chart_elements.xhp\">Chart Wizard - Chart Elements</link></variable>"
msgstr "<variable id=\"wiz_chart_elements\"><link href=\"text/schart/01/wiz_chart_elements.xhp\">Diagramtündér - Diagramelemek</link></variable>"
-#. V!?/
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5837,7 +5203,6 @@ msgctxt ""
msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose the chart elements to be shown."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> ezen a lapján a diagramon megjeleníteni kívánt elemeket állíthatja be."
-#. 1Zfy
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5846,7 +5211,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a title for your chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a diagram címét.</ahelp>"
-#. vUAe
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5855,7 +5219,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a subtitle for your chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a diagram alcímét.</ahelp>"
-#. -dE#
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5864,7 +5227,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the x-axis (horizontal).</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be az x tengely címkéjét (a vízszintes tengely).</ahelp>"
-#. MN[x
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5873,7 +5235,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the y-axis (vertical).</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be az y tengely címkéjét (a függőleges tengely).</ahelp>"
-#. eMR;
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5882,7 +5243,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the z-axis. This option is only available for three-dimensional charts.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a z tengely címkéjét. Ez a lehetőség csak térbeli diagramok esetén használható.</ahelp>"
-#. *(/m
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5891,7 +5251,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays a legend in your chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Jelmagyarázatot jelenít meg a diagramban.</ahelp>"
-#. (Q_V
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5900,7 +5259,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the left of the chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A jelmagyarázat a diagram bal oldalára kerül.</ahelp>"
-#. f/_0
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5909,7 +5267,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the top of the chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A jelmagyarázat a diagram tetejére kerül.</ahelp>"
-#. AE#\
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5918,7 +5275,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the right of the chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A jelmagyarázat a diagram jobb oldalára kerül.</ahelp>"
-#. OwO8
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5927,7 +5283,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the bottom of the chart.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A jelmagyarázat a diagram aljára kerül.</ahelp>"
-#. -9gl
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5936,7 +5291,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the x-axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az x tengelyre merőleges rácsvonalakat jeleníti meg.</ahelp>"
-#. gVlN
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5945,7 +5299,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the y-axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az y tengelyre merőleges rácsvonalakat jeleníti meg.</ahelp>"
-#. I0Og
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5954,7 +5307,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A z tengelyre merőleges rácsvonalakat jeleníti meg. Ez a beállítás csak térbeli diagramoknál lehetséges.</ahelp>"
-#. gB{W
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5963,7 +5315,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a másodlagos x tengely címkéjét. Ez a lehetőség csak a másodlagos x tengelyt támogató diagramok esetén használható.</ahelp>"
-#. XV7/
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5972,7 +5323,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the secondary y-axis. This option is only available for charts that support a secondary y-axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Írja be a másodlagos y tengely címkéjét. Ez a lehetőség csak a másodlagos y tengelyt támogató diagramok esetén használható.</ahelp>"
-#. qqkx
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5981,7 +5331,6 @@ msgctxt ""
msgid "To enter chart elements"
msgstr "Diagramelemek bevitele"
-#. \8O6
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5990,7 +5339,6 @@ msgctxt ""
msgid "Enter titles or click the elements that you want to be shown on the current chart."
msgstr "Írja be a címeket, vagy kattintson az aktuális diagramon megjeleníteni kívánt elemekre."
-#. #t%C
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -5999,7 +5347,6 @@ msgctxt ""
msgid "Titles"
msgstr "Címek"
-#. Ok9:
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6008,7 +5355,6 @@ msgctxt ""
msgid "If you enter text for a title, subtitle, or any axis, the necessary space will be reserved to display the text next to the chart. If you do not enter a text, no space will be reserved, leaving more space to display the chart."
msgstr "Ha beír szöveget a címhez, alcímhez vagy bármelyik tengelyhez, a szükséges hely fenn lesz tartva a szövegnek a diagram mellett. Ha nem ír be szöveget, akkor nem lesz hely fenntartva, így több hely marad magának a diagramnak."
-#. WF*C
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6017,7 +5363,6 @@ msgctxt ""
msgid "It is not possible to link the title text to a cell. You must enter the text directly."
msgstr "Egy cellához nem lehet a címszöveget csatolni. Közvetlenül kell beírni a szöveget."
-#. j1cI
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6026,7 +5371,6 @@ msgctxt ""
msgid "When the chart is finished, you can change the position and other properties by the <emph>Format</emph> menu."
msgstr "A diagram elkészítése után módosíthatja az elhelyezkedést és más tulajdonságokat a <emph>Formátum</emph> menü segítségével."
-#. h{,+
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6035,7 +5379,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. Zq0M
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6044,7 +5387,6 @@ msgctxt ""
msgid "The legend displays the labels from the first row or column, or from the range that you have set in the Data Series dialog. If your chart does not contain labels, the legend displays text like \"Row 1, Row 2, ...\", or \"Column A, Column B, ...\" according to the row number or column letter of the chart data."
msgstr "A jelmagyarázat az első sorból vagy oszlopból, illetve az Adatsorok párbeszédpanelen megadott különleges tartományból veszi a feliratokat. Ha a diagram nem tartalmaz feliratokat, akkor a jelmagyarázat \"1. sor, 2. sor, ...\" vagy \"A oszlop, B oszlop, ...\" lesz a diagramadatok sorszámának vagy oszlopbetűjének megfelelően."
-#. v{Ue
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6053,7 +5395,6 @@ msgctxt ""
msgid "You cannot enter the text directly, it is automatically generated from the Name cell range."
msgstr "Nem írhatja be közvetlenül a szöveget, az automatikusan generálódik a Név cellatartományból."
-#. XPA#
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6062,7 +5403,6 @@ msgctxt ""
msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
msgstr "Válassza az egyik elhelyezési lehetőséget. A diagram elkészítése után megadhat más elhelyezéseket is a Formátum menü segítségével."
-#. 1$~X
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6071,7 +5411,6 @@ msgctxt ""
msgid "Grids"
msgstr "Rácsok"
-#. \2#M
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6080,7 +5419,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the x-axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az x tengelyre merőleges rácsvonalakat jeleníti meg.</ahelp>"
-#. k)2^
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6089,7 +5427,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the y-axis.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az y tengelyre merőleges rácsvonalakat jeleníti meg.</ahelp>"
-#. s7E}
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6098,7 +5435,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A z tengelyre merőleges rácsvonalakat jeleníti meg. Ez a beállítás csak térbeli diagramoknál lehetséges.</ahelp>"
-#. |8f\
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6107,7 +5443,6 @@ msgctxt ""
msgid "The visible grid lines can help to estimate the data values in the chart."
msgstr "A látható rácsvonalak segítenek megbecsülni a diagram adatértékeit."
-#. K6}N
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6116,7 +5451,6 @@ msgctxt ""
msgid "The distance of the grid lines corresponds to the interval settings in the Scale tab of the axis properties."
msgstr "A rácsvonalak távolsága megfelel a tengely tulajdonságai párbeszédablak Skála lapján beállított intervallumnak."
-#. $kOR
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6125,7 +5459,6 @@ msgctxt ""
msgid "Grid lines are not available for pie charts."
msgstr "Tortadiagramoknál nincs rács."
-#. eJ`W
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6134,7 +5467,6 @@ msgctxt ""
msgid "Additional elements"
msgstr "További elemek"
-#. rMt~
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6143,7 +5475,6 @@ msgctxt ""
msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
msgstr "A további elemekhez használja a diagram Beszúrás menüjét a szerkesztési módban. Itt a következő elemeket adhatja meg:"
-#. H9IX
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6152,7 +5483,6 @@ msgctxt ""
msgid "Secondary axes"
msgstr "Másodlagos tengelyek"
-#. U=;t
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6161,7 +5491,6 @@ msgctxt ""
msgid "Minor grids"
msgstr "Segédrács"
-#. aC8f
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6170,7 +5499,6 @@ msgctxt ""
msgid "Data labels"
msgstr "Adatfeliratok"
-#. z/rz
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
@@ -6179,7 +5507,6 @@ msgctxt ""
msgid "Statistics, for example mean values, y error bars and trend lines"
msgstr "Statisztika, például átlagértékek, y hibasávok és trendvonalak"
-#. FVT`
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6188,7 +5515,6 @@ msgctxt ""
msgid "Format Selection"
msgstr "Kijelölés formázása"
-#. $:;?
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6197,7 +5523,6 @@ msgctxt ""
msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
msgstr "<bookmark_value>objektumok;diagramok tulajdonságai</bookmark_value><bookmark_value>diagramok;tulajdonságok</bookmark_value><bookmark_value>tulajdonságok; diagramok</bookmark_value>"
-#. wRZC
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6207,7 +5532,6 @@ msgctxt ""
msgid "Format Selection"
msgstr "Kijelölés formázása"
-#. GL?_
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6217,7 +5541,6 @@ msgctxt ""
msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formázza a kijelölt objektumot.</ahelp></variable> A parancs a kijelölt objektumtól függően megnyit bizonyos párbeszédablakokat, amelyeket elérhet a <emph>Formátum</emph> menü alábbi parancsaival is:"
-#. amfi
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6227,7 +5550,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Diagramháttér\">Diagramháttér</link>"
-#. S!YO
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6237,7 +5559,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Diagramterület\">Diagramterület</link>"
-#. n^O8
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6247,7 +5568,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Diagram alapsíkja\">Diagram alapsíkja</link>"
-#. 6E?Y
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6257,7 +5577,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Cím\">Cím</link>"
-#. )6Wt
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6267,7 +5586,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Jelmagyarázat\">Jelmagyarázat</link>"
-#. J\.C
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6277,7 +5595,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X tengely\">X tengely</link>"
-#. iV?4
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6287,7 +5604,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y tengely\">Y tengely</link>"
-#. .IN*
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
@@ -6297,7 +5613,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Rács\">Rács</link>"
-#. ~]?n
#: 05010100.xhp
msgctxt ""
"05010100.xhp\n"
@@ -6306,7 +5621,6 @@ msgctxt ""
msgid "Data Point"
msgstr "Adatpont"
-#. U-+C
#: 05010100.xhp
msgctxt ""
"05010100.xhp\n"
@@ -6316,7 +5630,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Adatpont\">Adatpont</link>"
-#. y!4)
#: 05010100.xhp
msgctxt ""
"05010100.xhp\n"
@@ -6326,7 +5639,6 @@ msgctxt ""
msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
msgstr "Ezen a párbeszédablakon módosíthatja a kijelölt adatpont tulajdonságait. A párbeszédablak csak akkor jelenik meg, ha a <emph>Formátum - Kijelölés formázása</emph> menüparancs kiválasztásakor csak egyetlen adatpont van kijelölve. Egyes menüparancsok csak síkbeli vagy térbeli diagram esetében állnak rendelkezésre."
-#. e`U:
#: 05010100.xhp
msgctxt ""
"05010100.xhp\n"
@@ -6336,7 +5648,6 @@ msgctxt ""
msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
msgstr "Minden változtatás csak egyetlen adatpontra vonatkozik. Ha például módosítja egy sáv színét, akkor csak a kijelölt sáv színe fog változni."
-#. }rCZ
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6345,7 +5656,6 @@ msgctxt ""
msgid "Grid"
msgstr "Rács"
-#. Hqk/
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6354,7 +5664,6 @@ msgctxt ""
msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
msgstr "<bookmark_value>rácsok; tengelyek formázása</bookmark_value><bookmark_value>tengelyek; rácsok formázása</bookmark_value>"
-#. 2QEM
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6364,7 +5673,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Rács\">Rács</link>"
-#. ?L}|
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6374,7 +5682,6 @@ msgctxt ""
msgid "Opens a submenu, where you select the grid you want to format."
msgstr "Megnyit egy almenüt, amelyben a formázandó rácsot választhatja ki."
-#. ,p-Y
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6384,7 +5691,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X tengely főrács\">X tengely főrács</link>"
-#. =2{n
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6394,7 +5700,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y tengely főrács\">Y tengely főrács</link>"
-#. r,,R
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6404,7 +5709,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z tengely főrács\">Z tengely főrács</link>"
-#. KJP5
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6414,7 +5718,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X tengely segédrács\">X tengely segédrács</link>"
-#. (rh,
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6424,7 +5727,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y tengely segédrács\">Y tengely segédrács</link>"
-#. .Ae.
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6434,7 +5736,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z tengely segédrács\">Z tengely segédrács</link>"
-#. #.{%
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
@@ -6444,7 +5745,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Minden tengelyrács\">Minden tengelyrács</link>"
-#. ju9e
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6453,7 +5753,6 @@ msgctxt ""
msgid "Chart Type Column and Bar"
msgstr "Oszlop és sáv diagramtípus"
-#. l\/V
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6462,7 +5761,6 @@ msgctxt ""
msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
msgstr "<bookmark_value>oszlopdiagramok</bookmark_value><bookmark_value>diagramtípusok;oszlop és sáv</bookmark_value>"
-#. hUlL
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6471,7 +5769,6 @@ msgctxt ""
msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Oszlop és sáv diagramtípus</link></variable>"
-#. nCq0
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6480,7 +5777,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. =.(h
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6489,7 +5785,6 @@ msgctxt ""
msgid "Column"
msgstr "Oszlopdiagram"
-#. %=C9
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6498,7 +5793,6 @@ msgctxt ""
msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
msgstr "Ez a típus függőleges oszlopokból álló oszlopdiagramot jelenít meg. Az oszlopok magassága arányos az értékével. Az x tengelyen szerepelnek a kategóriák. Az y tengelyen jelennek meg a kategóriák értékei."
-#. sI/!
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6507,7 +5801,6 @@ msgctxt ""
msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
msgstr "Normál - ez az altípus minden kategóriához tartozó adatértéket egymás mellett jelenít meg. A kiemelendő sajátosság az abszolút érték a többi értékhez viszonyítva."
-#. hrZB
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6516,7 +5809,6 @@ msgctxt ""
msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
msgstr "Halmozott - ez az altípus minden kategóriához tartozó adatértéket egymásra helyezve. A kiemelendő sajátosság a kategória teljes értéke, és az egyes értékek hozzájárulása az egészhez."
-#. /y4g
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6525,7 +5817,6 @@ msgctxt ""
msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
msgstr "Százalék - ez az altípus minden adatérték százalékos részarányát mutatja a kategória egészéhez képest. A kiemelendő sajátosság az értékek relatív aránya a kategória összértékéhez képest."
-#. S2E*
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6534,7 +5825,6 @@ msgctxt ""
msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
msgstr "Engedélyezheti az adatértékek <link href=\"text/schart/01/three_d_view.xhp\">Térbeli nézetét</link>. A \"realisztikus\" séma megpróbálja a legjobb térbeli kinézetet elérni. Az \"egyszerű\" séma a többi irodai alkalmazás diagramjainak kinézetét próbálja leutánozni."
-#. p,uz
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6543,7 +5833,6 @@ msgctxt ""
msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
msgstr "Térbeli diagramok esetén minden adatérték alakja kiválasztható, lehet téglatest, henger, kúp vagy gúla."
-#. ;L56
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6552,7 +5841,6 @@ msgctxt ""
msgid "Bar"
msgstr "Sávdiagram"
-#. RKx^
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6561,7 +5849,6 @@ msgctxt ""
msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
msgstr "Ez a típus vízszintes sávokból álló sávdiagramot jelenít meg. A sávok hosszúsága arányos az értékével. Az y tengelyen szerepelnek a kategóriák. Az x tengelyen jelennek meg a kategóriák értékei."
-#. %jjU
#: type_column_bar.xhp
msgctxt ""
"type_column_bar.xhp\n"
@@ -6570,7 +5857,6 @@ msgctxt ""
msgid "The subtypes are the same as for the Column type."
msgstr "Az altípusok ugyanazok, mint az oszlopdiagramnál."
-#. obq+
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6579,7 +5865,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. h8[q
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6588,7 +5873,6 @@ msgctxt ""
msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
msgstr "<bookmark_value>tengelyek; tengelyek megjelenítése a diagramokban</bookmark_value><bookmark_value>diagramok; tengelyek megjelenítése</bookmark_value><bookmark_value>X tengelyek; megjelenítés</bookmark_value><bookmark_value>Y tengelyek; megjelenítés</bookmark_value><bookmark_value>Z tengelyek; megjelenítés</bookmark_value><bookmark_value>tengelyek; jobb méretezés</bookmark_value><bookmark_value>másodlagos tengelyek diagramokban</bookmark_value>"
-#. hnl8
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6598,7 +5882,6 @@ msgctxt ""
msgid "Axes"
msgstr "Tengelyek"
-#. pF9K
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6608,7 +5891,6 @@ msgctxt ""
msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Megadja a diagramon megjelenítendő tengelyeket.</ahelp></variable>"
-#. ZV]Y
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6618,7 +5900,6 @@ msgctxt ""
msgid "Major axis"
msgstr "Főtengely"
-#. [l@U
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6628,7 +5909,6 @@ msgctxt ""
msgid "X axis"
msgstr "X tengely"
-#. DtGR
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6638,7 +5918,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Megjeleníti az X tengelyt, albeosztásokkal együtt.</ahelp>"
-#. m*wv
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6648,7 +5927,6 @@ msgctxt ""
msgid "Y axis"
msgstr "Y tengely"
-#. s~Ee
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6658,7 +5936,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Megjeleníti az Y tengelyt, albeosztásokkal együtt.</ahelp>"
-#. m.s$
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6668,7 +5945,6 @@ msgctxt ""
msgid "Z axis"
msgstr "Z tengely"
-#. 43E)
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6678,7 +5954,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Megjeleníti a Z tengelyt, albeosztásokkal együtt.</ahelp> Ez a tengely csak térbeli diagramok esetén jeleníthető meg."
-#. .\$H
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6688,7 +5963,6 @@ msgctxt ""
msgid "Secondary axis"
msgstr "Másodlagos tengely"
-#. 3A3a
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6698,7 +5972,6 @@ msgctxt ""
msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
msgstr "Ezen a területen egy másodlagos tengelyt rendelhet a diagramhoz. Ha egy adatsor már hozzá van rendelve egy tengelyhez, akkor a $[officename] automatikusan megjeleníti a tengelyt és a címkét. Később kikapcsolhatja ezt a beállítást. Ha aktiválja ezt a területet, de nem rendel adatokat a tengelyhez, akkor az elsődleges Y tengely értékei kerülnek alkalmazásra."
-#. UnYC
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6708,7 +5981,6 @@ msgctxt ""
msgid "X axis"
msgstr "X tengely"
-#. ryWJ
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6718,7 +5990,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Megjelenít egy másodlagos X tengelyt a diagramban.</ahelp>"
-#. S{`~
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6728,7 +5999,6 @@ msgctxt ""
msgid "Y axis"
msgstr "Y tengely"
-#. UL_$
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6738,7 +6008,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Megjelenít egy másodlagos Y tengelyt a diagramban.</ahelp>"
-#. i|]c
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
@@ -6748,7 +6017,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">A fő- és a másodlagos tengelyen lehet más a méretezés. Például az egyik tengelyen lehet 2 cm, a másikon pedig 1,5 cm.</ahelp>"
-#. @V#X
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6757,7 +6025,6 @@ msgctxt ""
msgid "Chart Type Column and Line"
msgstr "Oszlop és vonal diagramtípus"
-#. $NW8
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6766,7 +6033,6 @@ msgctxt ""
msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
msgstr "<bookmark_value>oszlop és vonal diagramok</bookmark_value><bookmark_value>diagramtípusok;oszlop és vonal</bookmark_value><bookmark_value>kombinált diagramok</bookmark_value>"
-#. A2k5
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6775,7 +6041,6 @@ msgctxt ""
msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Oszlop és vonal diagramtípus</link></variable>"
-#. 7$DH
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6784,7 +6049,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. E:$=
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6793,7 +6057,6 @@ msgctxt ""
msgid "Column and Line"
msgstr "Oszlop és vonal"
-#. _:vj
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6802,7 +6065,6 @@ msgctxt ""
msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
msgstr "Az oszlop és vonal diagram az <link href=\"text/schart/01/type_column_bar.xhp\">oszlopdiagram</link> és a <link href=\"text/schart/01/type_line.xhp\">vonaldiagram</link> kombinációja."
-#. 3#7N
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6811,7 +6073,6 @@ msgctxt ""
msgid "Select one of the variants"
msgstr "Válasszon egyet a lehetőségek közül"
-#. hkg8
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6820,7 +6081,6 @@ msgctxt ""
msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
msgstr "Oszlopok és vonalak. Az oszlopok téglalapjai egymás mellé vannak rajzolva, az értékük így könnyen összehasonlítható."
-#. rqM#
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6829,7 +6089,6 @@ msgctxt ""
msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
msgstr "Halmozott oszlopok és vonalak. Az oszlopok téglalapjai egymás fölé vannak rajzolva, így az oszlop magassága az adatértékek összegével egyezik meg."
-#. d4Av
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6838,7 +6097,6 @@ msgctxt ""
msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
msgstr "Egy másodlagos y tengelyt a <link href=\"text/schart/01/04040000.xhp\">Beszúrás - Tengelyek</link> menüparancs segítségével szúrhat be, miután végzett a tündérrel."
-#. tHhn
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6847,7 +6105,6 @@ msgctxt ""
msgid "To specify a data range"
msgstr "Egy adattartomány megadásához"
-#. p,#6
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6856,7 +6113,6 @@ msgctxt ""
msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
msgstr "A kijelölt adattartomány bal szélső oszlopai (vagy a felső sorai) adják azokat az adatokat, amelyek oszlopobjektumokként jelennek meg. Az adattartomány többi oszlopa vagy sora a vonalobjektumok adatait szolgáltatják. Ezt a hozzárendelést az <emph>Adatsorok</emph> párbeszédablakban módosíthatja."
-#. ilcN
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6865,7 +6121,6 @@ msgctxt ""
msgid "Select the data range."
msgstr "Jelölje ki az adattartományt."
-#. PDGu
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6874,7 +6129,6 @@ msgctxt ""
msgid "Click one of the options for data series in rows or in columns."
msgstr "Kattintson a lehetőségek egyikére az oszlopokban vagy sorokban levő adatsorokhoz."
-#. 8UnR
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6883,7 +6137,6 @@ msgctxt ""
msgid "Check whether the data range has labels in the first row or in the first column or both."
msgstr "Jelölje be, hogy az adattartományoknak vannak-e címkét az első sorban, az első oszlopban vagy mindkettőben."
-#. SH\\
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6892,7 +6145,6 @@ msgctxt ""
msgid "Organizing data series"
msgstr "Adatsorok szervezése"
-#. #[X)
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6901,7 +6153,6 @@ msgctxt ""
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr "Az Adatsorok listában látható az aktuális diagramhoz tartozó valamennyi adatsor."
-#. ZjK;
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6910,7 +6161,6 @@ msgctxt ""
msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
msgstr "Az oszlopok adatsorai a lista tetején, a vonalak adatsorai a lista alján helyezkednek el."
-#. 8)sf
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6919,7 +6169,6 @@ msgctxt ""
msgid "To organize the data series, select an entry in the list."
msgstr "Az adatsorok szervezéséhez jelölje ki a lista egy elemét."
-#. ~{ti
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6928,7 +6177,6 @@ msgctxt ""
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr "Kattintson a Hozzáadás gombra egy másik adatsor hozzáadásához a kijelölt bejegyzés alá. Az új adatsor típusa a kijelöltével azonos lesz."
-#. \oVj
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6937,7 +6185,6 @@ msgctxt ""
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr "Kattintson az Eltávolítás gombra a kijelölt adatsor eltávolításához az Adatsorok listáról."
-#. c`2h
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6946,7 +6193,6 @@ msgctxt ""
msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
msgstr "A Fel és Le nyílgombokkal a kijelölt elemet fel és le mozgathatja a listában. Így egy Oszlop adatsort Lista adatsorrá alakíthat, és vissza. Ez nem változtatja meg az adatforrás-táblázatban a sorrendet, a változások csak a diagram elrendezését érintik."
-#. PB/g
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6955,7 +6201,6 @@ msgctxt ""
msgid "Editing data series"
msgstr "Adatsorok szerkesztése"
-#. ;]*Q
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6964,7 +6209,6 @@ msgctxt ""
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr "Kattintson a lista egyik bejegyzésére a bejegyzés tulajdonságainak szerkesztéséhez."
-#. L?(!
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6973,7 +6217,6 @@ msgctxt ""
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr "Az Adattartományok listában látható az adatsorok komponenseihez tartozó szerepek neve és cellatartományok."
-#. D/?s
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6982,7 +6225,6 @@ msgctxt ""
msgid "Click an entry, then edit the contents in the text box below."
msgstr "Kattintson egy bejegyzésre, és szerkessze a tartalmaz az alatta levő szövegmezőben."
-#. DT^+
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -6991,7 +6233,6 @@ msgctxt ""
msgid "The label next to the text box states the currently selected role."
msgstr "A szövegmező melletti felirat az aktuálisan kijelölt szerepet mutatja."
-#. j5rG
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7000,7 +6241,6 @@ msgctxt ""
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "Adja meg a tartományt, vagy kattintson az <emph>Adattartomány kijelölése</emph> gombra a párbeszédablak minimalizálásához és a tartomány egérrel való kijelöléséhez."
-#. Q-qg
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7009,7 +6249,6 @@ msgctxt ""
msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr "Egy adatszerepű tartomány, például y értékek, nem tartalmazhat feliratcellát."
-#. t/i.
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7018,7 +6257,6 @@ msgctxt ""
msgid "Editing categories or data labels"
msgstr "Kategóriák és adatfeliratok szerkesztése"
-#. 62-V
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7027,7 +6265,6 @@ msgctxt ""
msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr "Írja be vagy jelölje ki azt a cellatartományt, amely a kategóriák vagy adatfeliratok szövege lesz."
-#. /$`d
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7036,7 +6273,6 @@ msgctxt ""
msgid "The values in the Categories range will be shown as labels on the x axis."
msgstr "A Kategóriák tartományban levő értékek feliratként fognak megjelenni az x tengelyen."
-#. s48U
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7045,7 +6281,6 @@ msgctxt ""
msgid "Inserting chart elements"
msgstr "Diagramelemek beszúrása"
-#. 4RrX
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7054,7 +6289,6 @@ msgctxt ""
msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
msgstr "A Diagramtündér Diagramelemek lapján beillesztheti a következő elemek bármelyikét:"
-#. jeBY
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7063,7 +6297,6 @@ msgctxt ""
msgid "Chart titles"
msgstr "Diagramcímek"
-#. pc;f
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7072,7 +6305,6 @@ msgctxt ""
msgid "Legend"
msgstr "Jelmagyarázat"
-#. %3r}
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7081,7 +6313,6 @@ msgctxt ""
msgid "Visible grid lines"
msgstr "Látható rácsozat"
-#. 3G#Q
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7090,7 +6321,6 @@ msgctxt ""
msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
msgstr "A további elemekhez használja a diagram Beszúrás menüjét a szerkesztési módban. Itt a következő elemeket adhatja meg:"
-#. t89D
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7099,7 +6329,6 @@ msgctxt ""
msgid "Secondary axes"
msgstr "Másodlagos tengelyek"
-#. l|.s
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7108,7 +6337,6 @@ msgctxt ""
msgid "Minor grids"
msgstr "Segédrács"
-#. [`0f
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7117,7 +6345,6 @@ msgctxt ""
msgid "Data labels"
msgstr "Adatfeliratok"
-#. Bt%V
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7126,7 +6353,6 @@ msgctxt ""
msgid "Statistics, for example mean values, y error bars and trend lines"
msgstr "Statisztika, például átlagértékek, y hibasávok és trendvonalak"
-#. 7,A9
#: type_column_line.xhp
msgctxt ""
"type_column_line.xhp\n"
@@ -7135,7 +6361,6 @@ msgctxt ""
msgid "To set different data labels for each data series, use the properties dialog of the data series."
msgstr "Ha minden egyes adatsorra különböző adatfeliratokat szeretne, használja az adatsor tulajdonságok párbeszédablakát."
-#. _aHd
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7144,7 +6369,6 @@ msgctxt ""
msgid "Chart Type Net"
msgstr "Háló diagramtípus"
-#. lkCf
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7153,7 +6377,6 @@ msgctxt ""
msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
msgstr "<bookmark_value>hálódiagramok</bookmark_value><bookmark_value>diagramtípusok;háló</bookmark_value><bookmark_value>radardiagram, lásd: hálódiagram</bookmark_value>"
-#. Q*Mf
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7162,7 +6385,6 @@ msgctxt ""
msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Háló diagramtípus</link></variable>"
-#. 0o#D
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7171,7 +6393,6 @@ msgctxt ""
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "A <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagramtündér</link> első oldalán kiválaszthatja a diagramtípust."
-#. eW.f
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7180,7 +6401,6 @@ msgctxt ""
msgid "Net"
msgstr "Háló"
-#. f,1f
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7189,7 +6409,6 @@ msgctxt ""
msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
msgstr "A hálódiagram az adatokat pontokként jeleníti meg, amelyeket vonalak kötnek össze egy rácshálóban, amely pókhálóra vagy radarképernyőre emlékeztet."
-#. jhGf
#: type_net.xhp
msgctxt ""
"type_net.xhp\n"
@@ -7198,7 +6417,6 @@ msgctxt ""
msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
msgstr "A diagram adatainak minden sorához egy zárt alakzat tartozik, amelyre az adatpontok kirajzolódnak. Minden adatérték azonos skálán jelenik meg, így minden adatértéknek egy nagyságrendbe kell esnie."
-#. e7df
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7207,7 +6425,6 @@ msgctxt ""
msgid "Data Labels"
msgstr "Adatfeliratok"
-#. hL-*
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7216,7 +6433,6 @@ msgctxt ""
msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
msgstr "<bookmark_value>adatfeliratok diagramokban</bookmark_value><bookmark_value>címke; diagramoknál</bookmark_value><bookmark_value>diagramok; adatfeliratok</bookmark_value><bookmark_value>adatértékek diagramokban</bookmark_value><bookmark_value>diagram-jelmagyarázatok; ikonok megjelenítése címkékkel</bookmark_value>"
-#. -q2^
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7226,7 +6442,6 @@ msgctxt ""
msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Adatfeliratok\">Adatfeliratok</link></variable>"
-#. hS?#
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7236,7 +6451,6 @@ msgctxt ""
msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Megnyitja az <emph>Adatfeliratok</emph> párbeszédablakot, amely lehetőséget nyújt adatfeliratok beállítására.</ahelp></variable>"
-#. d4qu
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7245,7 +6459,6 @@ msgctxt ""
msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
msgstr "Ha egy adatsor eleme ki van jelölve, akkor ez a parancs csak arra az adatsorra lesz végrehajtva. Ha nincs elem kijelölve, akkor a parancs minden adatsorra végre lesz hajtva."
-#. ;wSW
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7255,7 +6468,6 @@ msgctxt ""
msgid "Show value as number"
msgstr "Érték megjelenítése számként"
-#. {?mi
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7265,7 +6477,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Megjeleníti az adatpontok abszolút értékét.</ahelp>"
-#. o^9N
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7274,7 +6485,6 @@ msgctxt ""
msgid "Number format"
msgstr "Számformátum"
-#. c}8(
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7283,7 +6493,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a számformátum kiválasztására szolgáló párbeszédablakot.</ahelp>"
-#. XcV?
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7293,7 +6502,6 @@ msgctxt ""
msgid "Show value as percentage"
msgstr "Érték megjelenítése százalékértékként"
-#. fwx$
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7303,7 +6511,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Minden oszlophoz megjeleníti az adatpontokhoz tartozó százalékos értéket.</ahelp>"
-#. iz93
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7312,7 +6519,6 @@ msgctxt ""
msgid "Percentage format"
msgstr "Százalékformátum"
-#. s@#[
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7321,7 +6527,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a százalékformátum kiválasztására szolgáló párbeszédablakot.</ahelp>"
-#. G/{e
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7331,7 +6536,6 @@ msgctxt ""
msgid "Show category"
msgstr "Kategória megjelenítése"
-#. E3c$
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7341,7 +6545,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Megjeleníti az adatpontok szövegcímkéit.</ahelp>"
-#. [K3M
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7351,7 +6554,6 @@ msgctxt ""
msgid "Show legend key"
msgstr "Jelmagyarázatjel megjelenítése"
-#. Gmi.
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7361,7 +6563,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Megjeleníti a jelmagyarázat-ikont mindegyik adatpont felirata mellett.</ahelp>"
-#. h-Tk
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7370,7 +6571,6 @@ msgctxt ""
msgid "Separator"
msgstr "Elválasztó"
-#. bD6?
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7379,7 +6579,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja az egy objektumhoz tartozó több szöveges karakterlánc közötti elválasztót.</ahelp>"
-#. xd_4
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7388,7 +6587,6 @@ msgctxt ""
msgid "Placement"
msgstr "Elhelyezés"
-#. iZ@%
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7397,7 +6595,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
msgstr "<ahelp hid=\".\">Meghatározza az adatfelirat az objektumhoz viszonyított elhelyezkedését.</ahelp>"
-#. ,*%O
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7406,7 +6603,6 @@ msgctxt ""
msgid "Text Direction"
msgstr "Szövegirány"
-#. K`JO
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7415,7 +6611,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a szöveg irányát a komplex megjelenítésű (CTL) szövegbekezdésekhez. Ez a funkció csak akkor érhető el, ha a komplex szöveg megjelenítésének támogatása engedélyezve van.</ahelp>"
-#. Tl]5
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7424,7 +6619,6 @@ msgctxt ""
msgid "Rotate Text"
msgstr "Szöveg elforgatása"
-#. h0hB
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7433,7 +6627,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
msgstr "<ahelp hid=\".\">Kattintson a körlapra az adatcímkék szövegirányának beállításához.</ahelp>"
-#. IU/{
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
@@ -7442,7 +6635,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
msgstr "<ahelp hid=\".\">Írja be az adatcímkék balra elforgatásának szögét.</ahelp>"
-#. Sn)Q
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7451,7 +6643,6 @@ msgctxt ""
msgid "Trend Lines"
msgstr "Trendvonalak"
-#. 3VD)
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7460,7 +6651,6 @@ msgctxt ""
msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
msgstr "<bookmark_value>kiszámítás;regressziós görbék</bookmark_value><bookmark_value>regressziós görbék diagramokban</bookmark_value><bookmark_value>trendvonalak diagramokban</bookmark_value><bookmark_value>középérték vonalak diagramokban</bookmark_value>"
-#. iB[+
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7469,7 +6659,6 @@ msgctxt ""
msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
msgstr "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trendvonalak</link></variable>"
-#. =1x2
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7478,7 +6667,6 @@ msgctxt ""
msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Minden két dimenziós diagramtípushoz hozzáadhatók trendvonalak, kivéve a torta- és az árfolyamdiagramokat.</ahelp></variable>"
-#. @XPs
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7487,7 +6675,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nem jelenik meg trendvonal.</ahelp>"
-#. C]Sh
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7496,7 +6683,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lineáris trendvonal jelenik meg.</ahelp>"
-#. f]Y:
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7505,7 +6691,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Logaritmikus trendvonal jelenik meg.</ahelp>"
-#. .M-L
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7514,7 +6699,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Exponenciális trendvonal jelenik meg.</ahelp>"
-#. a?4s
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7523,7 +6707,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hatványfüggvény trendvonal jelenik meg.</ahelp>"
-#. RCX$
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7532,7 +6715,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A trendvonal mellett megjelenik a trendvonal egyenlete.</ahelp>"
-#. 2@q8
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7541,7 +6723,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A trendvonal mellett megjelenik a determinációs együttható.</ahelp>"
-#. UOr:
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7550,7 +6731,6 @@ msgctxt ""
msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
msgstr "Ha egy kategóriákat használó diagramtípusba szúr be trendvonalat, például <emph>Vonal</emph> vagy <emph>Oszlop</emph> típusú diagramba, akkor az 1, 2, 3, <emph>...</emph> számok lesznek x értékekként használva a trendvonal kiszámításához."
-#. PNoa
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7559,7 +6739,6 @@ msgctxt ""
msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
msgstr "Ha az összes adatsorhoz akar trendvonalat beilleszteni, kattintson duplán a diagramra a szerkesztési módba lépéshez. Válassza a <item type=\"menuitem\">Beszúrás - Trendvonalak</item> menüparancsot, majd válassza ki a trendvonal típusát a Nincs, Lineáris, Logaritmikus, Exponenciális vagy Hatványfüggvény szerinti lehetőségek közül."
-#. kw}t
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7568,7 +6747,6 @@ msgctxt ""
msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
msgstr "Ha egyetlen adatsorozathoz kíván trendvonalat beilleszteni, a diagramon válassza ki az adatsorozatot, a helyi menü megjelenítéséhez kattintson az egér jobb oldali gombjával, és válassza <item type=\"menuitem\">Beszúrás - Trendvonal</item> menüparancsot."
-#. 0T5~
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7577,7 +6755,6 @@ msgctxt ""
msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
msgstr "Egy trendvonal vagy középértékvonal törléséhez kattintson a vonalra, majd nyomja meg a Del billentyűt."
-#. *Y+B
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7586,7 +6763,6 @@ msgctxt ""
msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
msgstr "Az összes trendvonal törléséhez válassza a <item type=\"menuitem\">Beszúrás- Trendvonalak</item> menüparancsot, majd a <emph>Nincs</emph> lehetőséget."
-#. R-jd
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7595,7 +6771,6 @@ msgctxt ""
msgid "A trend line is shown in the legend automatically."
msgstr "A trendvonal automatikusan megjelenik a jelmagyarázatban."
-#. SJCb
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7604,7 +6779,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
msgstr "<ahelp hid=\".\">A középértékvonalak speciális trendvonalak, amelyek a középértéket mutatják. A <item type=\"menuitem\">Beszúrás - Középértékvonalak</item> menüparancs használatával illeszthet be az adatsorokhoz középértékvonalat.</ahelp>"
-#. GEkg
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7613,7 +6787,6 @@ msgctxt ""
msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
msgstr "A trendvonal ugyanolyan színű, mint a hozzá tartozó adatsor. A vonal tulajdonságainak módosításához jelölje ki a trendvonalat, és válassza a <item type=\"menuitem\">Formátum - Kijelölés formázása - Vonal</item> menüparancsot."
-#. 0#qK
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7622,7 +6795,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
msgstr "<ahelp hid=\".\">Ha meg kívánja jeleníteni a trendvonal egyenletét, a diagramon válassza ki a trendvonalat, a helyi menü megjelenítéséhez kattintson az egér jobb oldali gombjával, és válassza a <emph>Trendvonal egyenletének beszúrása</emph> parancsot. </ahelp>"
-#. yvJ.
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7631,7 +6803,6 @@ msgctxt ""
msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
msgstr "Ha a diagram szerkesztési módban van, a %PRODUCTNAME megadja a trendvonal egyenletét, és az R² determinációs együtthatót. Kattintson a trendvonalra, hogy megjelenjen ez az információ az állapotsoron."
-#. [CeX
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7640,7 +6811,6 @@ msgctxt ""
msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
msgstr "Egy kategóriadiagram (például vonaldiagram) esetén a trendvonaladatokat az 1, 2, 3, ... számok, mint x értékek használatával számítja ki a program. Ez akkor is így van, ha az adatsorok más számokat használnak az x értékek jelölésére. Az ilyen diagramoknál az XY típus használata célravezetőbb lehet."
-#. 07G#
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7649,7 +6819,6 @@ msgctxt ""
msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
msgstr "Az egyenlet és a determinációs együttható megjelenítéséhez jelölje ki a trendvonalat, és válassza a <item type=\"menuitem\">Formátum - Kijelölés formázása - Egyenlet</item> menüparancsot."
-#. DWVI
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7658,7 +6827,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A trendvonal egyenletének megjelenítéséhez engedélyezze az Egyenlet megjelenítése funkciót.</ahelp>"
-#. ;}_2
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7667,7 +6835,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A trendvonal determinációs együtthatójának megjelenítéséhez engedélyezze a Determinációs együttható megjelenítése funkciót.</ahelp>"
-#. rwWQ
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7676,7 +6843,6 @@ msgctxt ""
msgid "You can also calculate the parameters using Calc functions as follows."
msgstr "Calc-függvények használatával a paramétereket is kiszámíthatja a következőképpen."
-#. 4=KA
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7685,7 +6851,6 @@ msgctxt ""
msgid "The linear regression equation"
msgstr "A lineáris regresszió egyenlete"
-#. 4aL+
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7694,7 +6859,6 @@ msgctxt ""
msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
msgstr "A <emph>lineáris regresszió</emph> egyenlete <item type=\"literal\">y=m*x+b</item>."
-#. wH6^
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7703,7 +6867,6 @@ msgctxt ""
msgid "m = SLOPE(Data_Y;Data_X)"
msgstr "m = MEREDEKSÉG(Y_adatok;X_adatok)"
-#. !oHM
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7712,7 +6875,6 @@ msgctxt ""
msgid "b = INTERCEPT(Data_Y ;Data_X)"
msgstr "b = METSZ(Y_adatok;X_adatok)"
-#. jK;u
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7721,7 +6883,6 @@ msgctxt ""
msgid "Calculate the coefficient of determination by"
msgstr "A meghatározási együttható kiszámítása"
-#. KwC4
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7730,7 +6891,6 @@ msgctxt ""
msgid "r² = RSQ(Data_Y;Data_X)"
msgstr "r² = RNÉGYZET(Y_adatok;X_adatok)"
-#. 2?tS
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7739,7 +6899,6 @@ msgctxt ""
msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
msgstr "Az m, b és r² mellett a <emph>LIN.ILL</emph> tömbfüggvény további statisztikai adatokat is biztosít a regressziós analízishez."
-#. yZSg
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7748,7 +6907,6 @@ msgctxt ""
msgid "The logarithm regression equation"
msgstr "A logaritmikus regresszió egyenlete"
-#. o\AJ
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7757,7 +6915,6 @@ msgctxt ""
msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
msgstr "A <emph>logaritmikus regresszió</emph> egyenlete <item type=\"literal\">y=a*ln(x)+b</item>."
-#. i]hC
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7766,7 +6923,6 @@ msgctxt ""
msgid "a = SLOPE(Data_Y;LN(Data_X))"
msgstr "a = MEREDEKSÉG(Y_adatok;LN(X_adatok))"
-#. z@9e
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7775,7 +6931,6 @@ msgctxt ""
msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
msgstr "b = METSZ(Y_adatok;LN(X_adatok))"
-#. :([3
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7784,7 +6939,6 @@ msgctxt ""
msgid "r² = RSQ(Data_Y;LN(Data_X))"
msgstr "r² = RNÉGYZET(Y_adatok;LN(X_adatok))"
-#. a)EZ
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7793,7 +6947,6 @@ msgctxt ""
msgid "The exponential regression equation"
msgstr "Az exponenciális regresszió egyenlete"
-#. PMcD
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7802,7 +6955,6 @@ msgctxt ""
msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
msgstr "Az exponenciális trendvonalak esetén transzformáció történik a lineáris modellre. Az optimális görbeillesztés a lineáris modellel van kapcsolatban, és az eredmények ennek megfelelően értelmezhetők."
-#. :GJE
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7811,7 +6963,6 @@ msgctxt ""
msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
msgstr "Az exponenciális regresszió egyenlete <item type=\"literal\">y=b*exp(a*x)</item> vagy <item type=\"literal\">y=b*m^x</item>, amely rendre az <item type=\"literal\">ln(y)=ln(b)+a*x</item> vagy <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> alakra hozható."
-#. 9W.r
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7820,7 +6971,6 @@ msgctxt ""
msgid "a = SLOPE(LN(Data_Y);Data_X)"
msgstr "a = MEREDEKSÉG(LN(Y_adatok);X_adatok)"
-#. m{VK
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7829,7 +6979,6 @@ msgctxt ""
msgid "The variables for the second variation are calculated as follows:"
msgstr "A második változat változói a következők szerint lesznek kiszámítva:"
-#. hIOl
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7838,7 +6987,6 @@ msgctxt ""
msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
msgstr "m = KITEVŐ(MEREDEKSÉG(LN(Y_adatok);X_adatok))"
-#. $lEu
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7847,7 +6995,6 @@ msgctxt ""
msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
msgstr "b = KITEVŐ(METSZ(LN(Y_adatok);X_adatok))"
-#. }6^G
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7856,7 +7003,6 @@ msgctxt ""
msgid "Calculate the coefficient of determination by"
msgstr "A meghatározási együttható kiszámítása"
-#. =72\
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7865,7 +7011,6 @@ msgctxt ""
msgid "r² = RSQ(LN(Data_Y);Data_X)"
msgstr "r² = RNÉGYZET(LN(Y_adatok);X_adatok)"
-#. ^Amy
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7874,7 +7019,6 @@ msgctxt ""
msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
msgstr "Az m, b és r² mellett a LOG.ILL tömbfüggvény további statisztikai adatokat is biztosít a regressziós analízishez."
-#. .\YB
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7883,7 +7027,6 @@ msgctxt ""
msgid "The power regression equation"
msgstr "A hatványfüggvény szerinti regresszió egyenlete"
-#. vY1a
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7892,7 +7035,6 @@ msgctxt ""
msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
msgstr "A <emph>hatványfüggvény szerint regresszió</emph> görbéi a lineáris modell transzformációjával állnak elő. A hatványfüggvény szerinti regresszió az <item type=\"literal\">y=b*x^a</item> egyenletet követi, amely <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item> formára hozható."
-#. yN#s
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7901,7 +7043,6 @@ msgctxt ""
msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
msgstr "a = MEREDEKSÉG(LN(Y_adatok);LN(X_adatok))"
-#. [_mo
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7910,7 +7051,6 @@ msgctxt ""
msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
msgstr "b = KITEVŐ(METSZ(LN(Y_adatok);LN(X_adatok)))"
-#. ^oji
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7919,7 +7059,6 @@ msgctxt ""
msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
msgstr "r² = RNÉGYZET(LN(Y_adatok);LN(X_adatok))"
-#. G!oH
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7928,7 +7067,6 @@ msgctxt ""
msgid "Constraints"
msgstr "Kényszerfeltételek"
-#. N-nK
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7937,7 +7075,6 @@ msgctxt ""
msgid "The calculation of the trend line considers only data pairs with the following values:"
msgstr "A trendvonal számítása során csak a következő értékű adatpárok lesznek figyelembe véve:"
-#. ^X(z
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7946,7 +7083,6 @@ msgctxt ""
msgid "logarithm regression: only positive x-values are considered,"
msgstr "logaritmikus regresszió: csak a pozitív x értékek lesznek figyelembe véve,"
-#. d?Sk
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7955,7 +7091,6 @@ msgctxt ""
msgid "exponential regression: only positive y-values are considered,"
msgstr "exponenciális regresszió: csak a pozitív y értékek lesznek figyelembe véve,"
-#. @1,3
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7964,7 +7099,6 @@ msgctxt ""
msgid "power regression: only positive x-values and positive y-values are considered."
msgstr "hatványfüggvény szerinti regresszió: csak a pozitív x értékek és a pozitív y értékek lesznek figyelembe véve."
-#. ]$c.
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7973,7 +7107,6 @@ msgctxt ""
msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
msgstr "Ennek megfelelően transzformálnia kell az adatait. A legjobb az eredeti adatokat lemásolni, és a másolatot transzformálni."
-#. kbQ2
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7982,7 +7115,6 @@ msgctxt ""
msgid "The polynomial regression equation"
msgstr "A polinomiális regresszió egyenlete"
-#. T;QL
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -7991,7 +7123,6 @@ msgctxt ""
msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
msgstr "A <emph>polinomiális regresszió</emph> görbéjét nem tudja automatikusan hozzáadni. Ezt a görbét kézzel kell kiszámítania."
-#. RSj@
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -8000,7 +7131,6 @@ msgctxt ""
msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
msgstr "Hozzon létre egy táblázatot az x, x², x³, … , xⁿ oszlopokkal a kívánt n fokszámig."
-#. Wd\@
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -8009,7 +7139,6 @@ msgctxt ""
msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
msgstr "Használja a <item type=\"literal\">=LIN.ILL(Y_adatok,X_adatok)</item> képletet a teljes x-től xⁿ-ig terjedő tartománnyal (fejléc nélkül) X_adatokként."
-#. riX:
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -8018,7 +7147,6 @@ msgctxt ""
msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
msgstr "A LIN.ILL kimenetének első sora tartalmazza a regressziós polinom együtthatóit, és az xⁿ együtthatója van a legbaloldalibb pozícióban."
-#. CIOG
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -8027,7 +7155,6 @@ msgctxt ""
msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
msgstr "A LIN.ILL kimenete harmadik sorának első eleme az r² értéke. Lásd a <link href=\"text/scalc/01/04060107.xhp#Section8\">LIN.ILL</link> függvény leírását a részletes használati utasításért és a többi kimeneti paraméter magyarázatáért."
-#. \WXY
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
@@ -8036,7 +7163,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
msgstr "<link href=\"text/schart/01/04050000.xhp\">Y hibasávok lap</link>"
-#. X/lR
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8045,7 +7171,6 @@ msgctxt ""
msgid "Options"
msgstr "Beállítások"
-#. _tv|
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8054,7 +7179,6 @@ msgctxt ""
msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
msgstr "<bookmark_value>igazítás; síkbeli diagramok</bookmark_value><bookmark_value>diagramok; igazítás</bookmark_value><bookmark_value>tortadiagramok;beállítások</bookmark_value>"
-#. E3SS
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8064,7 +7188,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Beállítások\">Beállítások</link>"
-#. ?FFT
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8074,7 +7197,6 @@ msgctxt ""
msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
msgstr "Az adott diagramtípusokhoz rendelkezésre álló beállítások meghatározásához használja ezt a párbeszédablakot. A Beállítások párbeszédablak tartalma a diagram típusától függően változik."
-#. XRkv
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8084,7 +7206,6 @@ msgctxt ""
msgid "Align data series to:"
msgstr "Adatsor igazítása:"
-#. maoZ
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8094,7 +7215,6 @@ msgctxt ""
msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
msgstr "Ezen a területen az Y tengely két méretezési módja közül választhat. Az egyes tengelyekhez csak külön lehet a beállításokat és a méretezést megadni."
-#. VeV5
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8104,7 +7224,6 @@ msgctxt ""
msgid "Primary Y axis"
msgstr "Elsődleges Y tengely"
-#. `n4Z
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8114,7 +7233,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">Ez a beállítás az aktív alapértelmezésben. Minden adatsor az elsődleges Y tengelyhez van igazítva.</ahelp>"
-#. Ic=k
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8124,7 +7242,6 @@ msgctxt ""
msgid "Secondary Y axis"
msgstr "Másodlagos Y tengely"
-#. a$A^
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8134,7 +7251,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Módosítja az Y tengely méretezését. Ez a tengely csak akkor látható, ha legalább egy adatsorozat hozzá van rendelve, és a tengelynézet aktív.</ahelp>"
-#. M%CT
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8144,7 +7260,6 @@ msgctxt ""
msgid "Settings"
msgstr "Beállítások"
-#. ]-RT
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8154,7 +7269,6 @@ msgctxt ""
msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
msgstr "Ezen a területen az oszlopdiagramok beállításait adhatja meg. A változtatások az összes adatsorra érvényesek lesznek, nem csak a kijelölt adatokra."
-#. #uLV
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8164,7 +7278,6 @@ msgctxt ""
msgid "Spacing"
msgstr "Térköz"
-#. LU^@
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8174,7 +7287,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Az oszlopok közötti térközt határozza meg százalékosan.</ahelp> A maximális térköz 600%."
-#. K4@/
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8184,7 +7296,6 @@ msgctxt ""
msgid "Overlap"
msgstr "Átfedés"
-#. ?alI
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8194,7 +7305,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Átfedő adatsorokhoz szükséges beállításokat adja meg.</ahelp> A -100 és +100 közötti tartományból választhat."
-#. e*WY
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8204,7 +7314,6 @@ msgctxt ""
msgid "Connection Lines"
msgstr "Összekötő vonalak"
-#. jy\?
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8214,7 +7323,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">\"Halmozott\" és \"százalékos\" típusú oszlopdiagramoknál e jelölőnégyzet bekapcsolása az összetartozó oszloprétegeket vonalakkal köti össze.</ahelp>"
-#. [)r/
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8223,7 +7331,6 @@ msgctxt ""
msgid "Show bars side by side"
msgstr "Sávok megjelenítése egymás mellett"
-#. bTBa
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8232,7 +7339,6 @@ msgctxt ""
msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
msgstr "Ha az oszlopdiagramon két tengely látható, és bizonyos adatsorozatok az első tengelyhez, míg más adatsorozatok a második tengelyhez kapcsolódnak, akkor a két adatsorozat-csoport függetlenül, egymást átfedve jelenik meg."
-#. m\_y
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8241,7 +7347,6 @@ msgctxt ""
msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
msgstr "Ennek eredményképpen az első y tengelyhez kapcsolódó sávokat részben vagy teljesen elfedik a második y tengelyhez kapcsoló sávok. Ennek elkerülése érdekében, engedélyezze a beállítást, amely lehetővé teszi a sávok egymás mellett történő megjelenítését. <ahelp hid=\".\">A különböző adatsorozatokhoz tartozó sávok úgy jelennek meg, mintha egy tengelyhez kapcsolódnának.</ahelp>"
-#. ,D|V
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8250,7 +7355,6 @@ msgctxt ""
msgid "Clockwise direction"
msgstr "Az óramutató járásával megegyező irány"
-#. 816l
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8259,7 +7363,6 @@ msgctxt ""
msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
msgstr "Torta- és fánkdiagramok esetén áll rendelkezésre. <ahelp hid=\".\">Az alapértelmezett irány az óramutató járásával ellentétes irány. Ha a diagramdarabokat az ellentétes irányba kívánja felrajzolni, engedélyezze <emph>Az óramutató járásával megegyező irány</emph> lehetőséget.</ahelp>"
-#. S,J[
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8268,7 +7371,6 @@ msgctxt ""
msgid "Starting angle"
msgstr "Kezdő szög"
-#. QH(!
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8277,7 +7379,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
msgstr "<ahelp hid=\".\">A torta- vagy fánkdiagram kezdő szögének beállításához kattintson a körön lévő pontra és húzza el, vagy a körön kattintson bármely pontra. A kezdő szög a matematikai szögállás, ahonnan kezdve a diagramdarabok felrajzolódnak. A 90 fokos szögértékkel az első darab a 12 óra pozíciónál kezdődik. A 0 fokos érték a 3 óra pozíciót jelenti.</ahelp>"
-#. Uh,g
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8286,7 +7387,6 @@ msgctxt ""
msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
msgstr "Azon térbeli torta- és fánkdiagramok esetén, amelyek a szoftver korábbi verziójával készültek, a kezdő szög 90 fok helyett 0 fok. A régi és az új síkbeli diagramok esetén az alapértelmezett kezdő szög 90 fok."
-#. 8h?B
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8295,7 +7395,6 @@ msgctxt ""
msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
msgstr "Amikor megváltoztatja a kezdő szöget vagy az irányt, a szoftvernek csak az aktuális verziója mutatja a módosított értékeket. A szoftver régebbi verziója a dokumentumot az alapértelmezett értékekkel jeleníti meg: Mindig az óra mutató járásával ellentétes irányban és 90 fokos (sík tortadiagramok) vagy 0 fokos (térbeli tortadiagramok) kezdő szöggel."
-#. Mf+y
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8304,7 +7403,6 @@ msgctxt ""
msgid "Degrees"
msgstr "Fok"
-#. em@7
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8313,7 +7411,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a kezdő szöget 0 és 359 fok között. A megjelenített értéket úgy is módosíthatja, hogy a nyilakra kattint.</ahelp>"
-#. |*q^
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8322,7 +7419,6 @@ msgctxt ""
msgid "Plot missing values"
msgstr "Hiányzó értékek kirajzolása"
-#. :Aq@
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8331,7 +7427,6 @@ msgctxt ""
msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
msgstr "Időnként előfordul, hogy egy diagramban ábrázolt adatsorból hiányoznak értékek. Többféle lehetőség közül választhat a hiányzó adat kirajzolását illetően. Ezek a lehetőségek nem minden diagramtípusnál vannak meg."
-#. iP$!
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8340,7 +7435,6 @@ msgctxt ""
msgid "Leave gap"
msgstr "Hézag hagyása"
-#. I!NL
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8349,7 +7443,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
msgstr "<ahelp hid=\".\">A hiányzó értéknél nem jelenik meg adat. Ez az alapértelmezett az oszlop-, sáv-, vonal- és hálódiagramoknál.</ahelp>"
-#. cNMj
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8358,7 +7451,6 @@ msgctxt ""
msgid "Assume zero"
msgstr "Legyen nulla"
-#. X-V;
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8367,7 +7459,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
msgstr "<ahelp hid=\".\">A hiányzó értéknél az y érték nulla lesz. Ez az alapértelmezett a területdiagramoknál.</ahelp>"
-#. lBdc
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8376,7 +7467,6 @@ msgctxt ""
msgid "Continue line"
msgstr "Folytonos vonal"
-#. ).KO
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8385,7 +7475,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
msgstr "<ahelp hid=\".\">A hiányzó értéknél a szomszédos értékekből interpolált érték jelenik meg. Ez az alapértelmezett az XY-diagramoknál.</ahelp>"
-#. XME*
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8394,7 +7483,6 @@ msgctxt ""
msgid "Include values from hidden cells"
msgstr "Rejtett cellák értékeinek kirajzolása"
-#. %/gV
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
@@ -8403,7 +7491,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
msgstr "<ahelp hid=\".\">Jelölje be a forrás-cellatartomány jelenleg rejtett celláiból származó értékek megjelenítéséhez.</ahelp>"
-#. ;4M,
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
@@ -8412,7 +7499,6 @@ msgctxt ""
msgid "Y Axis"
msgstr "Y tengely"
-#. \rzg
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
@@ -8421,7 +7507,6 @@ msgctxt ""
msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
msgstr "<bookmark_value>Y tengelyek; formázás</bookmark_value>"
-#. 2GRy
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
@@ -8431,7 +7516,6 @@ msgctxt ""
msgid "Y Axis"
msgstr "Y tengely"
-#. B{%0
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
@@ -8441,7 +7525,6 @@ msgctxt ""
msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Az Y tengely tulajdonságainak módosításához megnyitja az <emph>Y tengely</emph> párbeszédablakot.</ahelp></variable>"
-#. \=nC
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
@@ -8451,7 +7534,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Karakter\">Karakter</link>"
-#. o?v)
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
@@ -8461,7 +7543,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Számok\">Számok</link>"
-#. xzPJ
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8470,7 +7551,6 @@ msgctxt ""
msgid "Titles"
msgstr "Címek"
-#. [K]_
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8480,7 +7560,6 @@ msgctxt ""
msgid "Titles"
msgstr "Címek"
-#. WB-P
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8490,7 +7569,6 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Megnyit egy párbeszédablakot, amelyen megadható vagy módosítható a diagram címe.</ahelp></variable> Megadhatja a főcím, az alcímek és a tengelyek címkéinek szövegét, és engedélyezheti vagy letilthatja a megjelenítésüket."
-#. EJGb
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8500,7 +7578,6 @@ msgctxt ""
msgid "Main Title"
msgstr "Főcím"
-#. IK_h
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8510,7 +7587,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">A <emph>Főcím</emph> lehetőség engedélyezése aktiválja a diagram főcímét. Írja be a kívánt címet a megfelelő szövegmezőbe.</ahelp>"
-#. s0wO
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8520,7 +7596,6 @@ msgctxt ""
msgid "Subtitle"
msgstr "Alcím"
-#. \tJ0
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8530,7 +7605,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Az <emph>Alcím</emph> lehetőség bejelölése aktiválja az alcímet. Írja be a kívánt címet a megfelelő szövegmezőbe.</ahelp>"
-#. :59D
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8540,7 +7614,6 @@ msgctxt ""
msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">A cím és alcím megjelenítéséhez vagy elrejtéséhez kattintson a Formázás eszköztár <emph>Cím be/ki</emph> ikonjára.</ahelp></variable>"
-#. =*0g
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8550,7 +7623,6 @@ msgctxt ""
msgid "X axis"
msgstr "X tengely"
-#. k5le
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8560,7 +7632,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Az <emph>X tengely</emph> lehetőség aktiválja az X tengely címét. Írja be a kívánt címet a megfelelő szövegmezőbe.</ahelp>"
-#. 10tH
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8570,7 +7641,6 @@ msgctxt ""
msgid "Y axis"
msgstr "Y tengely"
-#. R.gs
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8580,7 +7650,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Az <emph>Y tengely</emph> lehetőség aktiválja az Y tengely címét. Írja be a kívánt címet a megfelelő szövegmezőbe.</ahelp>"
-#. DA4?
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8590,7 +7659,6 @@ msgctxt ""
msgid "Z axis"
msgstr "Z tengely"
-#. lfO}
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -8600,7 +7668,6 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">A <emph>Z tengely</emph> lehetőség bejelölése aktiválja a Z tengely címét. Írja be a kívánt címet a megfelelő szövegmezőbe.</ahelp> Ez a beállítás csak térbeli diagramok esetén érhető el."
-#. 24ud
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/schart/02.po b/source/hu/helpcontent2/source/text/schart/02.po
index 807314f8687..9d2901445f8 100644
--- a/source/hu/helpcontent2/source/text/schart/02.po
+++ b/source/hu/helpcontent2/source/text/schart/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-03-25 12:11+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. A-Rc
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Data in Rows"
msgstr "Adat a sorokban"
-#. 6U=y
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">Data in Rows</link>"
msgstr "<link href=\"text/schart/02/01190000.xhp\" name=\"Adat a sorokban\">Adat a sorokban</link>"
-#. )+yd
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataInRows\">Changes the arrangement of the chart data.</ahelp>"
msgstr "<ahelp hid=\".uno:DataInRows\">A diagramadatok elrendezését módosítja.</ahelp>"
-#. +BeD
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "<image id=\"img_id3145643\" src=\"cmd/sc_datainrows.png\"><alt id=\"alt_id3145643\">Icon</alt></image>"
msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_datainrows.png\"><alt id=\"alt_id3145643\">Ikon</alt></image>"
-#. h^wq
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Data in Rows"
msgstr "Adat a sorokban"
-#. 8Z^j
#: 01200000.xhp
msgctxt ""
"01200000.xhp\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "Data in Columns"
msgstr "Adat az oszlopokban"
-#. M_$t
#: 01200000.xhp
msgctxt ""
"01200000.xhp\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">Data in Columns</link>"
msgstr "<link href=\"text/schart/02/01200000.xhp\" name=\"Adat az oszlopokban\">Adat az oszlopokban</link>"
-#. /PrZ
#: 01200000.xhp
msgctxt ""
"01200000.xhp\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataInColumns\">Changes the arrangement of the chart data.</ahelp>"
msgstr "<ahelp hid=\".uno:DataInColumns\">A diagramadatok elrendezését módosítja.</ahelp>"
-#. Ss%r
#: 01200000.xhp
msgctxt ""
"01200000.xhp\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "<image id=\"img_id3149379\" src=\"cmd/sc_dataincolumns.png\"><alt id=\"alt_id3149379\">Icon</alt></image>"
msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_dataincolumns.png\"><alt id=\"alt_id3149379\">Ikon</alt></image>"
-#. FDnV
#: 01200000.xhp
msgctxt ""
"01200000.xhp\n"
@@ -111,7 +101,6 @@ msgctxt ""
msgid "Data in Columns"
msgstr "Adat az oszlopokban"
-#. ,/U:
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr "Automatikus elrendezés"
-#. M`PB
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "<bookmark_value>reorganizing charts</bookmark_value><bookmark_value>charts; reorganizing</bookmark_value>"
msgstr "<bookmark_value>diagram visszarendezése</bookmark_value><bookmark_value>diagramok; visszarendezés</bookmark_value>"
-#. XicR
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -139,7 +126,6 @@ msgctxt ""
msgid "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatic Layout\">Automatic Layout</link>"
msgstr "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatikus elrendezés\">Automatikus elrendezés</link>"
-#. ~^\[
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NewArrangement\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
msgstr "<ahelp hid=\".uno:NewArrangement\">Visszahelyezi az összes diagramelemet az alapértelmezett helyzetébe az aktuális diagramon belül. Ez a funkció nem módosítja a diagram típusát vagy bármilyen tulajdonságát az elemek helyzetén kívül.</ahelp>"
-#. CeBN
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -158,7 +143,6 @@ msgctxt ""
msgid "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152577\">Icon</alt></image>"
msgstr "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152577\">Ikon</alt></image>"
-#. z0S9
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr "Automatikus elrendezés"
-#. ^;_/
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "Current Chart Type"
msgstr "Aktuális diagramtípus"
-#. 8e5y
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">Current Chart Type</link>"
msgstr "<link href=\"text/schart/02/02020000.xhp\" name=\"Aktuális diagramtípus\">Aktuális diagramtípus</link>"
-#. E76H
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
@@ -197,7 +178,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
msgstr "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Megjeleníti az aktuális diagramtípus nevét.</ahelp>"
-#. IhE6
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
@@ -206,7 +186,6 @@ msgctxt ""
msgid "Scale Text"
msgstr "Szöveg átméretezése"
-#. %xtT
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
@@ -215,7 +194,6 @@ msgctxt ""
msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
msgstr "<bookmark_value>szöveg átméretezése diagramokban</bookmark_value><bookmark_value>átméretezés; szöveg diagramokban</bookmark_value><bookmark_value>diagramok; szöveg átméretezése</bookmark_value>"
-#. jnT0
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
@@ -225,7 +203,6 @@ msgctxt ""
msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Szöveg átméretezése\">Szöveg átméretezése</link>"
-#. 2N=v
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
msgstr "<ahelp hid=\".uno:ScaleText\">Átméretezi a szöveget a diagramon a diagram méretének megváltozásakor.</ahelp>"
-#. 150G
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
@@ -244,7 +220,6 @@ msgctxt ""
msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
msgstr "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Ikon</alt></image>"
-#. oavq
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/schart/04.po b/source/hu/helpcontent2/source/text/schart/04.po
index 353579435d1..8bba330eb6e 100644
--- a/source/hu/helpcontent2/source/text/schart/04.po
+++ b/source/hu/helpcontent2/source/text/schart/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-03-25 12:11+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. W=J|
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Shortcuts for Charts"
msgstr "Diagramok gyorsbillentyűi"
-#. YH_)
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys; charts</bookmark_value><bookmark_value>charts; shortcuts</bookmark_value>"
msgstr "<bookmark_value>gyorsbillentyűk; diagramok</bookmark_value><bookmark_value>diagramok; gyorsbillentyűk</bookmark_value>"
-#. N[^X
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Shortcuts for Charts</link></variable>"
msgstr "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Diagramok gyorsbillentyűi\">Diagramok gyorsbillentyűi</link></variable>"
-#. @nGn
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "You can use the following shortcut keys in charts."
msgstr "A következő gyorsbillentyűk használhatók a diagramokban."
-#. P*Pm
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
msgstr "A $[officename] általános <link href=\"text/shared/04/01010000.xhp\" name=\"gyorsbillentyűi\">gyorsbillentyűi</link> itt is alkalmazhatók."
-#. 3D$g
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Shortcuts in Charts"
msgstr "Diagramok gyorsbillentyűi"
-#. `)1T
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. 9RHG
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Results"
msgstr "Eredmények"
-#. W)/@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tab"
-#. Yf)1
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Select next object."
msgstr "Következő objektum kiválasztása."
-#. Hfmb
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Shift+Tab"
msgstr "Shift+Tab"
-#. x+j?
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Select previous object."
msgstr "Előző objektum kiválasztása."
-#. mv3-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Home"
msgstr "Home"
-#. 4KCK
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Select first object."
msgstr "Első objektum kiválasztása"
-#. 8)@V
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "End"
msgstr "End"
-#. p*gs
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Select last object."
msgstr "Utolsó objektum kiválasztása"
-#. u%V@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Esc"
msgstr "Esc"
-#. *W8M
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Cancel selection"
msgstr "Kiválasztás törlése"
-#. ^5Tv
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "up/down/left/right arrow"
msgstr "föl/le/jobbra/balra nyíl"
-#. ;YrT
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Move the object in the direction of the arrow."
msgstr "Az objektumot a nyíl irányába viszi."
-#. {Dj(
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "up/down/left/right arrow in pie charts"
msgstr "föl/le/jobbra/balra nyíl a tortadiagramoknál"
-#. ASoV
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "Moves the selected pie segment in the direction of the arrow."
msgstr "A kiválasztott tortaszeletet a nyíl irányába viszi."
-#. ~D%.
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "F2 in titles"
msgstr "F2 a címekben"
-#. TU%r
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Enter text input mode."
msgstr "Szövegbeviteli mód indítása."
-#. huV%
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "F3"
msgstr "F3"
-#. HuT_
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Open group so that you can edit the individual components (in legend and data series)."
msgstr "Csoport felbontása, így az egyes összetevők külön-külön szerkeszthetők (jelmagyarázatokban és adatsorozatokban)."
-#. iZO2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-#. HF)x
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -293,7 +265,6 @@ msgctxt ""
msgid "Exit group (in legend and data series)."
msgstr "Kilép a csoportból (jelmagyarázatoknál és adatsorozatoknál)."
-#. i^=x
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -303,7 +274,6 @@ msgctxt ""
msgid "+/-"
msgstr "+/-"
-#. cj^2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -313,7 +283,6 @@ msgctxt ""
msgid "Reduce or enlarge the chart"
msgstr "A diagram méretének csökkentése és növelése"
-#. mEG6
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -323,7 +292,6 @@ msgctxt ""
msgid "+/- in pie charts"
msgstr "+/- a tortadiagramoknál"
-#. 0WAL
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sdraw.po b/source/hu/helpcontent2/source/text/sdraw.po
index a811a639a2e..1eb619a1b6d 100644
--- a/source/hu/helpcontent2/source/text/sdraw.po
+++ b/source/hu/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-01-08 16:56+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. OTFn
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Tools"
msgstr "Eszközök"
-#. ;LY!
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Eszközök\">Eszközök</link>"
-#. ]R-G
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
msgstr "A menü a $[officename] Draw eszközeit, valamint a nyelvi eszközöket és a rendszerbeállítások parancsait tartalmazza."
-#. i$B-
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Automatikus javítás\">Automatikus javítás beállításai</link>"
-#. gP/F
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Testreszabás\">Testreszabás</link>"
-#. F#e,
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "$[officename] Draw Features"
msgstr "A $[officename] Draw funkciói"
-#. r^Cf
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw funkciói\">$[officename] Draw funkciói</link></variable>"
-#. caz-
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
msgstr "A $[officename] Draw segítségével egyszerű és összetett rajzokat hozhat létre, amelyeket számos elterjedt képformátumba exportálhat. A rajzokba táblázatokat, diagramokat, képleteket és egyéb $[officename]-elemeket szúrhat be."
-#. r^ir
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Vector Graphics"
msgstr "Vektorképek"
-#. !\l|
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
msgstr "A $[officename] Draw a vektorgrafikákat matematikai vektorok által leírt vonalak és görbék segítségével hozza létre. A vektorok vonalakat, ellipsziseket és sokszögeket írnak le."
-#. ,dn_
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Creating 3D Objects"
msgstr "Térbeli objektumok készítése"
-#. dbp=
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
msgstr "A $[officename] Draw programban létrehozhat egyszerű térbeli testeket, például kockákat, gömböket és hengereket, valamint még a fényforrást is megadhatja ezekhez az objektumokhoz."
-#. sh{;
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Grids and Snap Lines"
msgstr "Rácsok és illesztővonalak"
-#. klRl
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
msgstr "A rácsok és illesztővonalak nélkülözhetetlen vizuális segítséget nyújtanak a rajzbeli objektumok illesztése során. Ezenkívül az objektumokat a rácsvonalakhoz, az illesztővonalakhoz vagy egy másik objektumhoz is illesztheti."
-#. vVnH
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Connecting Objects to Show Relationships"
msgstr "Objektumok összekapcsolása viszonyok megjelenítéséhez"
-#. WO/q
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
msgstr "A $[officename] Draw programban az objektumokat az \"összekötőknek\" nevezett különleges vonalakkal kapcsolhatja össze. Ezzel a hasznos szolgáltatással megjelenítheti az objektumok közötti viszonyt. Az összekötők a rajzobjektumok csatolópontjaihoz csatlakoznak, és az objektum mozgatása esetén követik annak elmozdulását. Az összekötő vonalak különösen hasznosak szervezeti diagramok és technikai leírások készítése során."
-#. dM4+
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Displaying Dimensions"
msgstr "Méretek megjelenítése"
-#. :i{+
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
msgstr "A mérnöki rajzok gyakran tartalmazzák az ábrán feltüntetett objektumok méretét is. A $[officename] Draw programban a dimenzióvonalakat használja a lineáris méretek kiszámítására és megjelenítésére."
-#. 3ql:
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Képtár"
-#. Q,-f
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
msgstr "A Képtár képeket, animációkat, hangokat és más, a rajzokba, valamint más $[officename]-programokba beszúrható elemeket tartalmaz."
-#. =~zN
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "Graphic File Formats"
msgstr "Képfájl-formátumok"
-#. eaS~
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
msgstr "A $[officename] Draw program a legtöbb manapság használt képfájl-formátumba képes exportálni, ilyenek például a BMP, a GIF, a JPG, valamint a PNG formátum."
-#. V[6E
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -242,7 +219,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. bTn\
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -252,7 +228,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/sdraw/main0104.xhp\" name=\"Beszúrás\">Beszúrás</link>"
-#. (arW
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -262,7 +237,6 @@ msgctxt ""
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
msgstr "Ez a menü lehetővé teszi az elemek, mint a képek és illesztővonalak Draw-dokumentumokba történő beszúrását."
-#. DVh@
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -272,7 +246,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Slide</link>"
msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Dia\">Dia</link>"
-#. SO\2
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -282,7 +255,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Réteg\">Réteg</link>"
-#. cDtp
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -292,7 +264,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Illesztőpont vagy vonal beszúrása\">Illesztőpont vagy vonal beszúrása</link>"
-#. x9rV
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -301,7 +272,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Megjegyzés\">Megjegyzés</link>"
-#. BE57
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -311,7 +281,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=\"Különleges karakter\">Különleges karakter</link>"
-#. FFmY
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -321,7 +290,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hiperhivatkozás\">Hiperhivatkozás</link>"
-#. l9hz
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -331,7 +299,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Táblázat\">Táblázat</link>"
-#. GWKf
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -341,7 +308,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagram\">Diagram</link>"
-#. m?h8
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -350,7 +316,6 @@ msgctxt ""
msgid "Inserts a chart."
msgstr "Beszúr egy diagramot."
-#. !rQT
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -360,7 +325,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=\"Úszó keret\">Úszó keret</link>"
-#. E3bY
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -370,7 +334,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Fájl\">Fájl</link>"
-#. c+^q
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "Format"
msgstr "Formátum"
-#. yG#+
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/sdraw/main0105.xhp\" name=\"Formátum\">Formátum</link>"
-#. _i?%
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "Contains commands for formatting the layout and the contents of your document."
msgstr "A dokumentum elrendezésének és tartalmának formázására szolgáló parancsokat tartalmaz."
-#. })10
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -409,7 +369,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Karakter\">Karakter</link>"
-#. ;r[n
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -419,7 +378,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Bekezdés\">Bekezdés</link>"
-#. rRWc
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -429,7 +387,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Számozás/felsorolás\">Felsorolás és számozás</link>"
-#. DK%q
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -439,7 +396,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Oldal\">Oldal</link>"
-#. Ho+Z
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -449,7 +405,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Pozíció és méret\">Pozíció és méret</link>"
-#. z)c0
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -459,7 +414,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Vonal\">Vonal</link>"
-#. H*G)
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -469,7 +423,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Terület\">Terület</link>"
-#. T!@9
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -479,7 +432,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Szöveg\">Szöveg</link>"
-#. mPf!
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -489,7 +441,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Réteg\">Réteg</link>"
-#. a3_F
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -498,7 +449,6 @@ msgctxt ""
msgid "Drawing Bar"
msgstr "Rajz eszköztár"
-#. oK~4
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -508,7 +458,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Rajz eszköztár\">Rajz eszköztár</link>"
-#. NHH4
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -518,7 +467,6 @@ msgctxt ""
msgid "The <emph>Drawing</emph> bar holds the main drawing tools."
msgstr "A <emph>Rajz</emph> eszköztár tartalmazza a fő rajzeszközöket."
-#. {y8]
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -527,7 +475,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10060000.xhp\">Rectangle</link>"
msgstr "<link href=\"text/simpress/02/10060000.xhp\">Téglalap</link>"
-#. #:iX
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -536,7 +483,6 @@ msgctxt ""
msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag."
msgstr "Az egérmutató húzásával egy kitöltött téglalapot rajzol az aktuális dokumentumban. Kattintson a téglalap bal felső sarkának helyére, és húzza ki az alakzatot a kívánt méretűre. Négyzet rajzolásához tartsa lenyomva a Shift billentyűt."
-#. ScY)
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -545,7 +491,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10070000.xhp\">Ellipse</link>"
msgstr "<link href=\"text/simpress/02/10070000.xhp\">Ellipszis</link>"
-#. *XuU
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -554,7 +499,6 @@ msgctxt ""
msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag."
msgstr "Az egérmutató húzásával egy kitöltött oválist rajzol az aktuális dokumentumban. Kattintson oda, ahová az oválist rajzolni szeretné, és húzza ki az alakzatot a kívánt méretűre. Kör rajzolásához tartsa lenyomva a Shift billentyűt."
-#. 3,)c
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -563,7 +507,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10050000.xhp\">Text</link>"
msgstr "<link href=\"text/simpress/02/10050000.xhp\">Szöveg</link>"
-#. ^^P]
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -572,7 +515,6 @@ msgctxt ""
msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text."
msgstr "A kattintás helyén létrehoz egy szövegdobozt az aktuális dokumentumban. Kattintson a dokumentum tetszőleges helyére, majd írja be vagy a vágólapról illessze be a szöveget."
-#. gEUn
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -581,7 +523,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
msgstr "<link href=\"text/simpress/02/10120000.xhp\" name=\"Vonalak és nyilak\">Vonalak és nyilak</link>"
-#. uS)D
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -590,7 +531,6 @@ msgctxt ""
msgid "Opens the Arrows toolbar to insert lines and arrows."
msgstr "Megnyitja a Nyilak eszköztárat vonalak és nyilak beszúrásához."
-#. o/fm
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -599,7 +539,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Pontok\">Pontok</link>"
-#. AG@/
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -608,7 +547,6 @@ msgctxt ""
msgid "Enables you to edit points on your drawing."
msgstr "Lehetővé teszi a rajzpontok szerkesztését."
-#. ?,Rf
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -617,7 +555,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue Points</link>"
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Csatolópontok\">Csatolópontok</link>"
-#. Y-X$
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -626,7 +563,6 @@ msgctxt ""
msgid "Enables you to edit glue points on your drawing."
msgstr "Lehetővé teszi a rajz csatolópontjainak szerkesztését."
-#. (9T!
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -635,7 +571,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Fájlból\">Fájlból</link>"
-#. D7-h
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -644,7 +579,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Űrlap-vezérlőelemek\">Űrlap-vezérlőelemek</link>"
-#. D2hp
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -653,7 +587,6 @@ msgctxt ""
msgid "<link href=\"text/shared/3dsettings_toolbar.xhp\">Extrusion On/Off</link>"
msgstr "<link href=\"text/shared/3dsettings_toolbar.xhp\">Kihúzás alkalmazása be/ki</link>"
-#. j/Kr
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -662,7 +595,6 @@ msgctxt ""
msgid "Switches the 3D effects on and off for the selected objects."
msgstr "Bekapcsolja vagy kikapcsolja a kijelölt objektumok térhatását."
-#. 6bm6
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -671,7 +603,6 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. /:\E
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -681,7 +612,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"Nézet\">Nézet</link>"
-#. )V[h
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -691,7 +621,6 @@ msgctxt ""
msgid "Sets the display properties of Draw documents."
msgstr "Beállítja a Draw-dokumentumok megjelenítési beállításait."
-#. 0_gW
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -700,7 +629,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normál"
-#. 6Z]n
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -709,7 +637,6 @@ msgctxt ""
msgid "Switch to normal view of the page."
msgstr "Átvált a normál oldalnézetre."
-#. jUs,
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -718,7 +645,6 @@ msgctxt ""
msgid "Master"
msgstr "Minta"
-#. 5HC;
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -727,7 +653,6 @@ msgctxt ""
msgid "Switch to the master page view."
msgstr "Átvált a mintaoldal-nézetre."
-#. M[5=
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -737,7 +662,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Nagyítás\">Nagyítás</link>"
-#. es?%
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -746,7 +670,6 @@ msgctxt ""
msgid "Edit"
msgstr "Szerkesztés"
-#. p@!a
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -756,7 +679,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Szerkesztés\">Szerkesztés</link>"
-#. ~7-s
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -766,7 +688,6 @@ msgctxt ""
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
msgstr "Ezen menü parancsai a Draw-dokumentumok szerkesztésére használhatók (például másolás és beillesztés)."
-#. 6sOC
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -776,7 +697,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=\"Irányított beillesztés\">Irányított beillesztés</link>"
-#. DNKM
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -786,7 +706,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=\"Keresés és csere\">Keresés és csere</link>"
-#. Hq;[
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -796,7 +715,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Pontok\">Pontok</link>"
-#. EE\B
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -806,7 +724,6 @@ msgctxt ""
msgid "Enables you to edit points on your drawing."
msgstr "Lehetővé teszi a rajzpontok szerkesztését."
-#. BE.D
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -816,7 +733,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Csatolópontok\">Csatolópontok</link>"
-#. R=V^
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -826,7 +742,6 @@ msgctxt ""
msgid "Enables you to edit glue points on your drawing."
msgstr "Lehetővé teszi a rajz csatolópontjainak szerkesztését."
-#. jS`U
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -836,7 +751,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Megkettőzés\">Megkettőzés</link>"
-#. Up:K
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -846,7 +760,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Átúsztatás\">Átúsztatás</link>"
-#. dS5B
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -856,7 +769,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Mezők\">Mezők</link>"
-#. ,^Hf
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -866,7 +778,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Hivatkozások\">Hivatkozások</link>"
-#. xh`c
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -876,7 +787,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Interaktív kép\">Interaktív kép</link>"
-#. 4(gW
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -886,7 +796,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hiperhivatkozás\">Hiperhivatkozás</link>"
-#. 2rDQ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -895,7 +804,6 @@ msgctxt ""
msgid "Line and Filling Bar"
msgstr "Vonal és kitöltés eszköztár"
-#. i|-j
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -905,7 +813,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
msgstr "A <link href=\"text/sdraw/main0202.xhp\" name=\"Vonal és kitöltés\">Vonal és kitöltés</link> eszköztáron kattintson a következőre:"
-#. Dt#@
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -915,7 +822,6 @@ msgctxt ""
msgid "The Line and Filling bar contains commands for the current editing mode."
msgstr "A Vonal és kitöltés eszköztár az aktuális szerkesztési mód parancsait tartalmazza."
-#. k+}Q
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -925,7 +831,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=\"Vonalstílus\">Vonalstílus</link>"
-#. a?mn
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -935,7 +840,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Vonalvastagság\">Vonalvastagság</link>"
-#. LU%O
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -945,7 +849,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=\"Vonal színe\">Vonal színe</link>"
-#. .5$d
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -955,7 +858,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Területstílus / Kitöltés\">Területstílus / Kitöltés</link>"
-#. ~o,8
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -964,7 +866,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Árnyékolás\">Árnyékolás</link>"
-#. RAUO
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -973,7 +874,6 @@ msgctxt ""
msgid "Options Bar"
msgstr "Beállítások eszköztár"
-#. 7_?\
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -983,7 +883,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Beállítások eszköztár\">Beállítások eszköztár</link>"
-#. pvB`
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -993,7 +892,6 @@ msgctxt ""
msgid "The <emph>Options</emph> bar can be displayed by choosing <emph>View - Toolbars - Options</emph>."
msgstr "A <emph>Beállítások</emph> eszköztár megjelenítéséhez válassza a <emph>Nézet - Eszköztárak - Beállítások</emph> menüparancsot."
-#. g!Vo
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1003,7 +901,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Rács megjelenése\">Rács megjelenése</link>"
-#. asJk
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1013,7 +910,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Segédvonalak látszanak áthelyezéskor\">Segédvonalak látszanak áthelyezéskor</link>"
-#. )I2p
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1023,7 +919,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Rácshoz illesztés\">Rácshoz illesztés</link>"
-#. 5r@z
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1033,7 +928,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Illesztővonalhoz illesztés\">Illesztővonalhoz illesztés</link>"
-#. C%3p
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1043,7 +937,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Oldalmargóhoz illesztés\">Oldalmargóhoz illesztés</link>"
-#. a6:_
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1053,7 +946,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Objektumszegélyhez illesztés\">Objektumszegélyhez illesztés</link>"
-#. LUyB
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1063,7 +955,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Objektumpontokhoz illesztés\">Objektumpontokhoz illesztés</link>"
-#. !y4@
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1073,7 +964,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Gyorsszerkesztés engedélyezése\">Gyorsszerkesztés engedélyezése</link>"
-#. T{]s
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -1083,7 +973,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr "<link href=\"text/simpress/02/13190000.xhp\" name=\"Csak szövegterület kijelölése\">Csak szövegterület kijelölése</link>"
-#. YR3W
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1092,7 +981,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Draw Help"
msgstr "Üdvözöljük a $[officename] Draw Súgójában"
-#. -56r
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1102,7 +990,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
msgstr "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Üdvözöljük a $[officename] Draw Súgójában"
-#. Y%1,
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1112,7 +999,6 @@ msgctxt ""
msgid "How to Work With $[officename] Draw"
msgstr "Munka a $[officename] Draw programmal"
-#. :pjQ
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1122,7 +1008,6 @@ msgctxt ""
msgid "$[officename] Draw Menus, Toolbars, and Keys"
msgstr "$[officename] Draw-menük, -eszköztárak és -billentyűk"
-#. }jqA
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1132,7 +1017,6 @@ msgctxt ""
msgid "Help about the Help"
msgstr "A Súgó használata"
-#. fI0H
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1141,7 +1025,6 @@ msgctxt ""
msgid "Menus"
msgstr "Menük"
-#. R)hN
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1151,7 +1034,6 @@ msgctxt ""
msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menük\">Menük</link></variable>"
-#. BWYe
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1161,7 +1043,6 @@ msgctxt ""
msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
msgstr "Ebben a fejezetben megtalálja az összes $[officename] Draw-menü, -almenü, és a hozzájuk tartozó párbeszédablakok leírását."
-#. ]n]@
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1170,7 +1051,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "Eszköztárak"
-#. y0(Q
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1180,7 +1060,6 @@ msgctxt ""
msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Eszköztárak\">Eszköztárak</link></variable>"
-#. `VlK
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1190,7 +1069,6 @@ msgctxt ""
msgid "This section provides an overview of the toolbars available in $[officename] Draw."
msgstr "Ez a szakasz áttekintést nyújt a $[officename] Draw programban elérhető eszköztárakról."
-#. B,?]
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1199,7 +1077,6 @@ msgctxt ""
msgid "File"
msgstr "Fájl"
-#. {^Dn
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1209,7 +1086,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"Fájl\">Fájl</link>"
-#. 1;J{
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1219,7 +1095,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "Ez a menü a Draw-dokumentumok kezelésével kapcsolatos általános parancsokat tartalmazza, például megnyitás, bezárás vagy nyomtatás. A $[officename] Draw bezárásához kattintson a <emph>Kilépés</emph> lehetőségre."
-#. Mt6N
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1229,7 +1104,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Megnyitás\">Megnyitás</link>"
-#. edk{
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1239,7 +1113,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=\"Mentés másként\">Mentés másként</link>"
-#. L)N\
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1249,7 +1122,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Exportálás\">Exportálás</link>"
-#. iXV;
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1259,7 +1131,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Verziók\">Verziók</link>"
-#. g^PF
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1269,7 +1140,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Tulajdonságok\">Tulajdonságok</link>"
-#. S=Wv
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1279,7 +1149,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Nyomtatás\">Nyomtatás</link>"
-#. d;bl
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sdraw/00.po b/source/hu/helpcontent2/source/text/sdraw/00.po
index f58cfeb8b4c..1dd2d4b8cbe 100644
--- a/source/hu/helpcontent2/source/text/sdraw/00.po
+++ b/source/hu/helpcontent2/source/text/sdraw/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-03-25 12:11+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 7Vcg
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "To access this command..."
msgstr "Ennek a parancsnak az eléréséhez..."
-#. %DY[
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sdraw/01.po b/source/hu/helpcontent2/source/text/sdraw/01.po
index 243a6b65d01..0f3d866bc73 100644
--- a/source/hu/helpcontent2/source/text/sdraw/01.po
+++ b/source/hu/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-03-25 12:11+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. i(w*
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Insert Page"
msgstr "Oldal beszúrása"
-#. U7{g
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insert Page\">Insert Page</link>"
msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Oldal beszúrása\">Oldal beszúrása</link>"
-#. ebf.
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sdraw/04.po b/source/hu/helpcontent2/source/text/sdraw/04.po
index 4651565171b..24c9e495372 100644
--- a/source/hu/helpcontent2/source/text/sdraw/04.po
+++ b/source/hu/helpcontent2/source/text/sdraw/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-01-21 23:33+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. -b}r
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Shortcut Keys for Drawings"
msgstr "Rajzok gyorsbillentyűi"
-#. (VX7
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys;in drawings</bookmark_value> <bookmark_value>drawings; shortcut keys</bookmark_value>"
msgstr "<bookmark_value>gyorsbillentyűk;rajzokban</bookmark_value><bookmark_value>rajzok; gyorsbillentyűk</bookmark_value>"
-#. RY}o
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Shortcut Keys for Drawings\">Shortcut Keys for Drawings</link></variable>"
msgstr "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Rajzok gyorsbillentyűi\">Rajzok gyorsbillentyűi</link></variable>"
-#. ?Qss
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "The following is a list of shortcut keys specific to Drawing documents."
msgstr "A következő lista a rajzobjektumok gyorsbillentyűit sorolja fel."
-#. ___5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">general shortcut keys for $[officename]</link>."
msgstr "Az <link href=\"text/shared/04/01010000.xhp\" name=\"$[officename] általános gyorsbillentyűi\">$[officename] általános gyorsbillentyűi</link> itt is alkalmazhatók."
-#. I;=-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Function Keys for Drawings"
msgstr "Rajzok funkciógombjai"
-#. V5-X
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. t(_2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "<emph>Effect</emph>"
msgstr "<emph>Hatás</emph>"
-#. 42XD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "F2"
msgstr "F2"
-#. Y{3-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Add or edit text."
msgstr "Szöveg hozzáadása és szerkesztése"
-#. 82II
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "F3"
msgstr "F3"
-#. `}Z+
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Opens group to edit individual objects."
msgstr "Felnyitja a csoportot, így az objektumokat külön-külön szerkesztheti."
-#. sfAD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-#. *[H_
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Close group editor."
msgstr "Csoportszerkesztő bezárása"
-#. Al}r
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Shift+F3"
msgstr "Shift+F3"
-#. *sjC
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Opens the <emph>Duplicate</emph> dialog."
msgstr "Megnyitja a <emph>Többszörözés</emph> párbeszédablakot."
-#. ,]xb
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "F4"
msgstr "F4"
-#. xFr!
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Opens the <emph>Position and Size</emph> dialog."
msgstr "Megnyitja a <emph>Pozíció és méret</emph> párbeszédablakot."
-#. /3!-
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "F5"
msgstr "F5"
-#. qP(2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Opens the <emph>Navigator</emph>."
msgstr "Megnyitja a <emph>Navigátort</emph>."
-#. 99Z|
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "F7"
msgstr "F7"
-#. b8r9
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "Checks spelling."
msgstr "Leellenőrzi a helyesírást."
-#. CSQ7
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
-#. @]HT
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Opens the <emph>Thesaurus</emph>."
msgstr "Megnyitja a <emph>Szinonimaszótárt</emph>."
-#. YVO|
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "F8"
msgstr "F8"
-#. M231
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Edit points on/off."
msgstr "Pontok szerkesztése"
-#. M!cr
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
-#. zzX4
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -293,7 +265,6 @@ msgctxt ""
msgid "Fits to frame."
msgstr "A kerethez igazítja."
-#. %^qI
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -303,7 +274,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
-#. XB]2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -313,7 +283,6 @@ msgctxt ""
msgid "Opens Styles and Formatting window."
msgstr "Megnyitja a Stílusok és formázás ablakot."
-#. tJA7
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -322,7 +291,6 @@ msgctxt ""
msgid "<bookmark_value>zooming;shortcut keys</bookmark_value> <bookmark_value>drawings; zoom function in</bookmark_value>"
msgstr "<bookmark_value>nagyítás;gyorsbillentyűk</bookmark_value><bookmark_value>rajzok; nagyítási funkció bennük</bookmark_value>"
-#. oifV
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -332,7 +300,6 @@ msgctxt ""
msgid "Shortcut Keys for Drawings"
msgstr "Rajzok gyorsbillentyűi"
-#. @vks
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -342,7 +309,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. %Jui
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -352,7 +318,6 @@ msgctxt ""
msgid "<emph>Effect</emph>"
msgstr "<emph>Hatás</emph>"
-#. Fa{Y
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -362,7 +327,6 @@ msgctxt ""
msgid "Plus(+) Key"
msgstr "Plusz (+)"
-#. o(~`
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -372,7 +336,6 @@ msgctxt ""
msgid "Zooms in."
msgstr "Nagyít."
-#. ;v@P
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -382,7 +345,6 @@ msgctxt ""
msgid "Minus(-) Key"
msgstr "Mínusz (-)"
-#. =@kT
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -392,7 +354,6 @@ msgctxt ""
msgid "Zooms out."
msgstr "Csökkenti a nagyítást."
-#. Jq1W
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -402,7 +363,6 @@ msgctxt ""
msgid "Multiple(×) Key (number pad)"
msgstr "Szorzás (*) (numerikus billentyűzet)"
-#. PE-J
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -412,7 +372,6 @@ msgctxt ""
msgid "Zooms to fit entire page in screen."
msgstr "A képernyő méretére nagyítja/kicsinyíti a teljes oldalt."
-#. Sp!z
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -422,7 +381,6 @@ msgctxt ""
msgid "Divide (÷) Key (number pad)"
msgstr "Osztás (/) (numerikus billentyűzet)"
-#. Bg3i
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -432,7 +390,6 @@ msgctxt ""
msgid "Zooms in on the current selection."
msgstr "Ránagyít az aktuális kiválasztásra."
-#. 5=XB
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -442,7 +399,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+G"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+G"
-#. `sZg
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -452,7 +408,6 @@ msgctxt ""
msgid "Groups selected objects."
msgstr "Csoportosítja a kiválasztott objektumokat"
-#. gJjv
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -462,7 +417,6 @@ msgctxt ""
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
-#. IrYJ
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -472,7 +426,6 @@ msgctxt ""
msgid "Ungroups selected group."
msgstr "Szétbontja a kiválasztott csoportot"
-#. :o@V
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -482,7 +435,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
-#. ,sbb
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -492,7 +444,6 @@ msgctxt ""
msgid "Combines selected objects."
msgstr "Összevonja a kiválasztott objektumokat."
-#. #KS9
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -502,7 +453,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
-#. xj7i
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -512,7 +462,6 @@ msgctxt ""
msgid "Uncombines selected objects."
msgstr "Felbontja a kijelölt objektumokat."
-#. G:-a
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -522,7 +471,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ +"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift++"
-#. k$Q+
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -532,7 +480,6 @@ msgctxt ""
msgid "Bring to front."
msgstr "Előrehozás"
-#. @0w7
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -542,7 +489,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ +"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>++"
-#. %]uQ
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -552,7 +498,6 @@ msgctxt ""
msgid "Bring forward."
msgstr "Előrébb hozás"
-#. o_h@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -562,7 +507,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ -"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+-"
-#. E6Nd
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -572,7 +516,6 @@ msgctxt ""
msgid "Send backward."
msgstr "Hátrébb küldés"
-#. kJRe
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -582,7 +525,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ -"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+-"
-#. ,Pyp
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -592,7 +534,6 @@ msgctxt ""
msgid "Send to back."
msgstr "Háttérbe küldés"
-#. I+YF
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -602,7 +543,6 @@ msgctxt ""
msgid "Shortcut Keys Specific to Drawings"
msgstr "Rajzokkal kapcsolatos gyorsbillentyűk"
-#. D[0!
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -612,7 +552,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Gyorsbillentyűk"
-#. s(\_
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -622,7 +561,6 @@ msgctxt ""
msgid "<emph>Effect</emph>"
msgstr "<emph>Hatás</emph>"
-#. zeC(
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -631,7 +569,6 @@ msgctxt ""
msgid "Page Up"
msgstr "Page Up"
-#. QHPC
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -640,7 +577,6 @@ msgctxt ""
msgid "Switch to previous page"
msgstr "Ugrás az előző oldalra"
-#. l6W5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -649,7 +585,6 @@ msgctxt ""
msgid "Page Down"
msgstr "Page Down"
-#. Wq,V
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -658,7 +593,6 @@ msgctxt ""
msgid "Switch to next page"
msgstr "Ugrás a következő oldalra"
-#. k$5)
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -667,7 +601,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Up"
-#. jxO9
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -676,7 +609,6 @@ msgctxt ""
msgid "Switch to previous layer"
msgstr "Ugrás az előző rétegre"
-#. TSQd
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -685,7 +617,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Down"
-#. eO^?
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -694,7 +625,6 @@ msgctxt ""
msgid "Switch to next layer"
msgstr "Ugrás a következő rétegre"
-#. 12Y;
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -704,7 +634,6 @@ msgctxt ""
msgid "Arrow Key"
msgstr "Nyílbillentyű"
-#. AzD$
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -714,7 +643,6 @@ msgctxt ""
msgid "Moves the selected object in the direction of the arrow key."
msgstr "A kiválasztott objektumot a nyílbillentyű irányába mozgatja."
-#. bwnY
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -724,7 +652,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+nyílbillentyű"
-#. oH#N
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -734,7 +661,6 @@ msgctxt ""
msgid "Moves the page view in the direction of the arrow key."
msgstr "Az oldalnézetet a nyílbillentyű irányába mozgatja."
-#. 6ZC/
#: 01020000.xhp
#, fuzzy
msgctxt ""
@@ -745,7 +671,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: this shortcut key works only when the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General is enabled (it is enabled by default)."
msgstr "Objektum húzása közben <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-kattintás. Megjegyzés: a gyorsbillentyű használatához engedélyeznie kell az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME Draw - Általános lehetőségnél a <link href=\"text/shared/optionen/01070500.xhp\" name=\"Másolatkészítés áthelyezéskor\">Másolatkészítés áthelyezéskor</link> lehetőséget."
-#. 1z;2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -755,7 +680,6 @@ msgctxt ""
msgid "Creates a copy of the dragged object when mouse button is released."
msgstr "Másolatot készít az egérrel húzott objektumról az egérgomb elengedés után."
-#. 8BjD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -765,7 +689,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter with keyboard focus (F6) on a drawing object icon on Tools bar"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl </defaultinline></switchinline>+Enter billentyűzet-fókusszal (F6) az Eszközök eszköztár egy rajzobjektum-ikonján"
-#. |(gW
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -775,7 +698,6 @@ msgctxt ""
msgid "Inserts a drawing object of default size into the center of the current view."
msgstr "Az aktuális nézet közepére beilleszt egy alapértelmezett méretű rajzobjektumot."
-#. .rhe
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -785,7 +707,6 @@ msgctxt ""
msgid "Shift+F10"
msgstr "Shift+F10"
-#. -FAh
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -795,7 +716,6 @@ msgctxt ""
msgid "Opens the context menu for the selected object."
msgstr "Megnyitja a kiválasztott objektum helyi menüjét."
-#. W1Fe
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -805,7 +725,6 @@ msgctxt ""
msgid "F2"
msgstr "F2"
-#. ZsER
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -815,7 +734,6 @@ msgctxt ""
msgid "Enters text mode."
msgstr "Szöveges módba lép."
-#. T3j:
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -825,7 +743,6 @@ msgctxt ""
msgid "Enter"
msgstr "Enter"
-#. MjY@
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -835,7 +752,6 @@ msgctxt ""
msgid "Enters text mode if a text object is selected."
msgstr "Szöveges módba lép, ha egy objektum ki van választva."
-#. Mjt8
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -845,7 +761,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
-#. =285
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -855,7 +770,6 @@ msgctxt ""
msgid "Enters text mode if a text object is selected. If there are no text objects or if you have cycled through all of the text objects on the page, a new page is inserted."
msgstr "Szöveges módba lép, ha egy objektum ki van választva. Ha nincsenek szövegobjektumok az oldalon, vagy már végiglépdelt az összes szövegobjektumon, akkor új oldalt szúr be."
-#. sbY0
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -865,7 +779,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
-#. 5\L/
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -875,7 +788,6 @@ msgctxt ""
msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key and drag with the mouse to draw or resize an object from the center of the object outward."
msgstr "Az objektum középről kifelé haladó megrajzolásához illetve átméretezéséhez húzás közben tartsa lenyomva az <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> billentyűt."
-#. B+Nn
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -885,7 +797,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+ click on an object"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+ kattintás egy objektumon"
-#. op+/
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -895,7 +806,6 @@ msgctxt ""
msgid "Selects the object behind the currently selected object."
msgstr "Kiválasztja az aktuális objektum mögött levő objektumot."
-#. =4!A
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -905,7 +815,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+click an object"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift + kattintás egy objektumon"
-#. $%K#
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -915,7 +824,6 @@ msgctxt ""
msgid "Selects the object in front of the currently selected object."
msgstr "Kiválasztja az aktuális objektum előtti objektumot."
-#. PLLV
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -925,7 +833,6 @@ msgctxt ""
msgid "Shift key while selecting an object"
msgstr "Shift billentyű egy objektum kiválasztása közben"
-#. yKVx
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -935,7 +842,6 @@ msgctxt ""
msgid "Adds or removes object to or from the selection."
msgstr "Hozzáadja vagy elveszi az objektumot az aktuális kiválasztásból."
-#. K^\3
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -945,7 +851,6 @@ msgctxt ""
msgid "Shift+ drag while moving an object"
msgstr "Shift + húzás egy objektum mozgatása közben"
-#. )[G6
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -955,7 +860,6 @@ msgctxt ""
msgid "The movement of the selected object is constrained by multiples of 45 degrees."
msgstr "A kiválasztott objektumot csak 45 fok, vagy annak többszörösei irányába lehet mozgatni."
-#. r~ju
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -965,7 +869,6 @@ msgctxt ""
msgid "Shift+drag while creating or resizing an object"
msgstr "Shift+ húzás egy objektum rajzolásánál vagy méretezésénél"
-#. w4KY
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -975,7 +878,6 @@ msgctxt ""
msgid "Constrains the size to keep the object's aspect ratio."
msgstr "Korlátozza a méretet az objektum oldalarányának megtartásához."
-#. f[jQ
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -985,7 +887,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tab"
-#. dH8.
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -995,7 +896,6 @@ msgctxt ""
msgid "Cycles through the objects on the page in the order in which they were created."
msgstr "Végigmegy az objektumok között a létrehozásuk sorrendjében."
-#. QC#F
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1005,7 +905,6 @@ msgctxt ""
msgid "Shift+Tab"
msgstr "Shift+Tab"
-#. m5;n
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1015,7 +914,6 @@ msgctxt ""
msgid "Cycles through the objects on the page in the reverse-order in which they were created."
msgstr "Végigmegy az objektumok között a létrehozásuk sorrendjével ellenkező irányban."
-#. oNT)
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
@@ -1025,7 +923,6 @@ msgctxt ""
msgid "Esc"
msgstr "Esc"
-#. fHg0
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/sdraw/guide.po b/source/hu/helpcontent2/source/text/sdraw/guide.po
index bac23796c00..a7c51b76bd1 100644
--- a/source/hu/helpcontent2/source/text/sdraw/guide.po
+++ b/source/hu/helpcontent2/source/text/sdraw/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-05-11 21:53+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. l@XV
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Combining Objects and Constructing Shapes"
msgstr "Objektumok összevonása és alakzatok létrehozása"
-#. mHLi
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>combining; draw objects</bookmark_value><bookmark_value>merging; draw objects</bookmark_value><bookmark_value>connecting; draw objects</bookmark_value><bookmark_value>draw objects; combining</bookmark_value><bookmark_value>intersecting draw objects</bookmark_value><bookmark_value>polygons; intersecting/subtracting/merging</bookmark_value><bookmark_value>subtracting polygons</bookmark_value><bookmark_value>constructing shapes</bookmark_value>"
msgstr "<bookmark_value>összevonás; rajzobjektumok</bookmark_value><bookmark_value>egyesítés; rajzobjektumok</bookmark_value><bookmark_value>összekapcsolás; rajzobjektumok</bookmark_value><bookmark_value>rajzobjektumok; összevonás</bookmark_value><bookmark_value>rajzobjektumok metszete</bookmark_value><bookmark_value>sokszögek; metszetkészítés/kivonás/egyesítés</bookmark_value><bookmark_value>sokszögek kivonása</bookmark_value><bookmark_value>alakzat létrehozása</bookmark_value>"
-#. avL)
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combining Objects and Constructing Shapes\">Combining Objects and Constructing Shapes</link> </variable>"
msgstr "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Objektumok összevonása és alakzatok létrehozása\">Objektumok összevonása és alakzatok létrehozása</link> </variable>"
-#. nUhK
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Combined drawing objects act as grouped objects, except that you cannot enter the group to edit the individual objects."
msgstr "Az összevont rajzobjektumok csoportosított objektumokként viselkednek, de nem lehet belépni a csoportba az egyes elemek szerkesztéséhez."
-#. N]wl
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "You can only combine 2D objects."
msgstr "Csak síkbeli objektumokat lehet összevonni."
-#. 5RHZ
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "To combine 2D objects:"
msgstr "Síkbeli objektumok összevonása:"
-#. fQ8F
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Select two or more 2D objects."
msgstr "Válasszon ki kettő vagy több síkbeli objektumot."
-#. ^)lW
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Choose <emph>Modify - Combine</emph>."
msgstr "Válassza a <emph>Módosítás - Összevonás</emph> menüparancsot."
-#. ;BF~
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Unlike groups, a combined object takes on the properties of the lowermost object in the stacking order. You can split apart combined objects, but the original object properties are lost."
msgstr "A csoportokkal ellentétben az összevont objektum az egymásra helyezési sorrendben legalul lévő objektum tulajdonságait kapja meg. Különválaszthatja az egyesített objektumokat, de az eredeti objektumtulajdonságok elvesznek."
-#. =u9.
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "When you combine objects, holes appear where the objects overlap."
msgstr "Objektumok összevonásánál egy lyuk keletkezik ott, ahol az objektumok fedik egymást."
-#. _@Ub
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "<image id=\"img_id3157978\" src=\"res/helpimg/kombi1.png\" width=\"8.3646inch\" height=\"2.5inch\"><alt id=\"alt_id3157978\">Illustration for combining objects</alt></image>"
msgstr "<image id=\"img_id3157978\" src=\"res/helpimg/kombi1.png\" width=\"8.3646inch\" height=\"2.5inch\"><alt id=\"alt_id3157978\">Példa objektumok összevonására</alt></image>"
-#. 2n_Q
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "In the illustration, the uncombined objects are on the left and the combined objects on the right."
msgstr "A példában az össze nem vont objektumok a bal, az összevont objektumok a jobb oldalon vannak."
-#. DT,r
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Constructing Shapes"
msgstr "Alakzatok létrehozása"
-#. S3~b
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -152,7 +138,6 @@ msgctxt ""
msgid "You can construct shapes by applying the <link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\"><emph>Shapes</emph></link> <emph>- Merge, Subtract and Intersect</emph> commands to two or more drawing objects."
msgstr "Alakzatokat két vagy több rajzobjektumból hozhat létre az <link href=\"text/simpress/01/13180000.xhp\" name=\"Alakzat\"><emph>Alakzat</emph></link> <emph>- Egyesítés, Kivonás vagy Metszés</emph> parancs segítségével."
-#. EmUJ
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Shape commands only work on 2D objects."
msgstr "Az alakzatparancsok csak síkbeli objektumok esetén működnek."
-#. ^;sE
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "Constructed shapes take on the properties of the lowermost object in the stacking order."
msgstr "A létrehozott alakzatok az egymásra helyezési sorrend legalján levő objektum tulajdonságait veszik fel."
-#. B)?t
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -182,7 +165,6 @@ msgctxt ""
msgid "To construct a shape:"
msgstr "Egy alakzat létrehozása:"
-#. gf*Q
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -192,7 +174,6 @@ msgctxt ""
msgid "Select two or more 2D objects."
msgstr "Válasszon ki kettő vagy több síkbeli objektumot."
-#. 9$Xj
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "Choose <emph>Modify - Shapes</emph> and one of the following:"
msgstr "Válassza az <emph>Módosítás - Alakzat</emph> menüparancsot, majd az alábbiak egyikét:"
-#. A!QZ
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -212,7 +192,6 @@ msgctxt ""
msgid "<emph>Merge</emph>"
msgstr "<emph>Egyesítés</emph>"
-#. JR%Z
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -222,7 +201,6 @@ msgctxt ""
msgid "<emph>Subtract</emph>"
msgstr "<emph>Kivonás</emph>"
-#. *g]P
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -232,7 +210,6 @@ msgctxt ""
msgid "<emph>Intersect</emph>."
msgstr "<emph>Metszés</emph>."
-#. hgx2
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -242,7 +219,6 @@ msgctxt ""
msgid "Shape Commands"
msgstr "Alakzatparancsok"
-#. mM/r
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -252,7 +228,6 @@ msgctxt ""
msgid "In the following illustrations, the original objects are on the left and the modified shapes on the right."
msgstr "Az alábbi ábrákban az eredeti objektumok a bal, a módosított alakzatok a jobb oldalon vannak."
-#. =@kc
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -262,7 +237,6 @@ msgctxt ""
msgid "Shapes - Merge"
msgstr "Alakzatok - Egyesítés"
-#. ;[#]
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -271,7 +245,6 @@ msgctxt ""
msgid "<image id=\"img_id3145593\" src=\"res/helpimg/formvers.png\" width=\"3.4791inch\" height=\"1.3126inch\"><alt id=\"alt_id3145593\">Illustration for merging shapes</alt></image>"
msgstr "<image id=\"img_id3145593\" src=\"res/helpimg/formvers.png\" width=\"3.4791inch\" height=\"1.3126inch\"><alt id=\"alt_id3145593\">Példa alakzatok egyesítésére</alt></image>"
-#. Wt9d
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -281,7 +254,6 @@ msgctxt ""
msgid "Adds the area of the selected objects to the area of the lowermost object in the stacking order."
msgstr "Hozzáadja a kiválasztott objektum területét az egymásra helyezési sorrend legalján levő objektum területéhez."
-#. 899N
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -291,7 +263,6 @@ msgctxt ""
msgid "Shapes - Subtract"
msgstr "Alakzatok - Kivonás"
-#. mWJo
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -300,7 +271,6 @@ msgctxt ""
msgid "<image id=\"img_id3154505\" src=\"res/helpimg/formsubt.png\" width=\"3.4689inch\" height=\"1.3126inch\"><alt id=\"alt_id3154505\">Illustration for subtracting shapes</alt></image>"
msgstr "<image id=\"img_id3154505\" src=\"res/helpimg/formsubt.png\" width=\"3.4689inch\" height=\"1.3126inch\"><alt id=\"alt_id3154505\">Példa alakzatok kivonására</alt></image>"
-#. 6QMv
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -310,7 +280,6 @@ msgctxt ""
msgid "Subtracts the area of the selected objects from the area of the lowermost object in the stacking order."
msgstr "Kivonja a kiválasztott objektum területét az egymásra helyezési sorrend legalján levő objektum területéből."
-#. fsXu
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -320,7 +289,6 @@ msgctxt ""
msgid "Shapes - Intersect"
msgstr "Alakzatok - Metszet"
-#. REY[
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "<image id=\"img_id3150658\" src=\"res/helpimg/formschn.png\" width=\"3.4272inch\" height=\"1.302inch\"><alt id=\"alt_id3150658\">Illustration for intersecting shapes</alt></image>"
msgstr "<image id=\"img_id3150658\" src=\"res/helpimg/formschn.png\" width=\"3.4272inch\" height=\"1.302inch\"><alt id=\"alt_id3150658\">Példa alakzatok metszésére</alt></image>"
-#. y^d!
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "The overlapping area of the selected objects creates the new shape."
msgstr "A kiválasztott objektumok átfedési területe létrehoz egy új alakzatot."
-#. m}V+
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "The area outside the overlap is removed."
msgstr "Az átfedésen kívüli terület el lesz távolítva."
-#. RegD
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -358,7 +323,6 @@ msgctxt ""
msgid "Drawing Sectors and Segments"
msgstr "Körcikkek és -szeletek rajzolása"
-#. C8j=
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -367,7 +331,6 @@ msgctxt ""
msgid "<bookmark_value>sectors of circles/ellipses</bookmark_value><bookmark_value>segments of circles/ellipses</bookmark_value><bookmark_value>circle segments</bookmark_value><bookmark_value>ellipses; segments</bookmark_value><bookmark_value>drawing; sectors and segments</bookmark_value>"
msgstr "<bookmark_value>kör- és ellipsziscikkek</bookmark_value><bookmark_value>kör- és ellipszisszeletek</bookmark_value><bookmark_value>körszeletek</bookmark_value><bookmark_value>ellipszisszeletek</bookmark_value><bookmark_value>rajzolás; cikkek és szeletek</bookmark_value>"
-#. Z,3P
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -377,7 +340,6 @@ msgctxt ""
msgid "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Drawing Sectors and Segments\">Drawing Sectors and Segments</link></variable>"
msgstr "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Cikkek és szeletek rajzolása\">Cikkek és szeletek rajzolása</link></variable>"
-#. 88(S
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -387,7 +349,6 @@ msgctxt ""
msgid "The <emph>Ellipse</emph> toolbar contains tools for drawing ellipses and circles. You can also draw segments and sectors of circles and ellipses."
msgstr "Az <emph>Ellipszis</emph> eszköztár ikonjaival ellipsziseket és köröket rajzolhat. Körszeleteket, körcikkeket, ellipszisszeleteket és ellipsziscikkeket is rajzolhat."
-#. +V_a
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -397,7 +358,6 @@ msgctxt ""
msgid "To draw a sector of a circle or an ellipse:"
msgstr "Körcikk vagy ellipsziscikk rajzolása:"
-#. )NIG
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -407,7 +367,6 @@ msgctxt ""
msgid "Open the <emph>Ellipses</emph> toolbar and click one of the <emph>Circle Pie</emph> or <emph>Ellipse Pie</emph> icons <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">Icon</alt></image>. The mouse pointer changes to a cross hair with a small icon of a sector."
msgstr "Nyissa meg az <emph>Ellipszisek</emph> eszköztárat, majd kattintson a <emph>Körcikk</emph> vagy <emph>Ellipsziscikk</emph> <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">Ikon</alt></image> ikonjára. Az egérmutató átváltozik egy célkeresztté, amely mellett egy kis körcikk látható."
-#. h1M^
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -417,7 +376,6 @@ msgctxt ""
msgid "Position the pointer at the edge of the circle you want to draw and drag to create the circle."
msgstr "Helyezze a kurzort a rajzolni kívánt kör szélére, majd húzza az egeret a kör megrajzolásához."
-#. OYoP
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -427,7 +385,6 @@ msgctxt ""
msgid "To create a circle by dragging from the center, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> while dragging."
msgstr "Ha a kört a középpontja felől kifelé haladva szeretné megrajzolni, akkor húzás közben tartsa lenyomva az <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> billentyűt."
-#. +SF.
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -437,7 +394,6 @@ msgctxt ""
msgid "Release the mouse button when the circle has reached the size you want. A line corresponding to the circle radius appears in the circle."
msgstr "Ha a kör elérte a kívánt méretet, akkor engedje fel az egérgombot. A körben megjelenik egy vonal, amely megfelel a kör sugarának."
-#. SU!o
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "Position the pointer where you want to place the first boundary of the sector and click."
msgstr "Helyezze a kurzort oda, ahol a cikk első határvonalát szeretné, majd kattintson."
-#. UI!N
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -457,7 +412,6 @@ msgctxt ""
msgid "As the radius line that follows the pointer is constrained to the circle boundaries, you can click anywhere in the document."
msgstr "Mivel az egérkurzort követő sugárvonal korlátozva van a kör határai által, a dokumentumban akárhova kattinthat."
-#. ceQX
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -467,7 +421,6 @@ msgctxt ""
msgid "Position the pointer where you want to place the second boundary of the sector and click. The completed sector is displayed."
msgstr "Állítsa az egérmutatót a körcikk végpontjára, majd kattintson. Ekkor megjelenik a kész körcikk."
-#. 5U-B
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -477,7 +430,6 @@ msgctxt ""
msgid "To draw a segment of a circle or ellipse, follow the steps for creating a sector based on a circle."
msgstr "Egy kör- vagy ellipszisszelet rajzolásához kövesse a körön alapuló cikklétrehozás lépéseit."
-#. n*:j
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -487,7 +439,6 @@ msgctxt ""
msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle."
msgstr "Egy ellipszisen alapuló ív létrehozásához válassza ki az ívikonok egyikét, majd kövesse a körön alapuló cikklétrehozás lépéseit."
-#. [@hc
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -496,7 +447,6 @@ msgctxt ""
msgid "Creating Gradient Fills"
msgstr "Színátmenetek készítése"
-#. jK%m
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -505,7 +455,6 @@ msgctxt ""
msgid "<bookmark_value>gradients; applying and defining</bookmark_value><bookmark_value>editing;gradients</bookmark_value><bookmark_value>defining;gradients</bookmark_value><bookmark_value>custom gradients</bookmark_value><bookmark_value>transparency;adjusting</bookmark_value>"
msgstr "<bookmark_value>színátmenetek; alkalmazás és meghatározás</bookmark_value><bookmark_value>szerkesztés;színátmenetek</bookmark_value><bookmark_value>meghatározás;színátmenetek</bookmark_value><bookmark_value>egyedi színátmenetek</bookmark_value><bookmark_value>átlátszóság;beállítás</bookmark_value>"
-#. q`*d
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -515,7 +464,6 @@ msgctxt ""
msgid "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Creating Gradient Fills\">Creating Gradient Fills</link> </variable>"
msgstr "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Színátmenetek készítése\">Színátmenetek készítése</link> </variable>"
-#. _:6k
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -525,7 +473,6 @@ msgctxt ""
msgid "A gradient fill is an incremental blend of two different colors, or shades of the same color, that you can apply to a drawing object."
msgstr "A színátmenet két szín vagy két ugyanolyan színű árnyalat növekményes átmenete, amelyet rajzobjektumoknál alkalmazhat."
-#. c_#S
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -535,7 +482,6 @@ msgctxt ""
msgid "To apply a gradient:"
msgstr "Színátmenet alkalmazása:"
-#. SG*a
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -545,7 +491,6 @@ msgctxt ""
msgid "Select a drawing object."
msgstr "Válasszon ki egy rajzobjektumot."
-#. E1O:
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -555,7 +500,6 @@ msgctxt ""
msgid "Choose <emph>Format - Area</emph> and select <emph>Gradient</emph> as the <emph>Fill</emph> type."
msgstr "Válassza a <emph>Formátum - Terület</emph> menüparancsot, majd jelölje be a <emph>Színátmenet</emph> lehetőséget a <emph>Kitöltés</emph> típusaként."
-#. )eyE
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -565,7 +509,6 @@ msgctxt ""
msgid "Select a gradient style from the list and click <emph>OK</emph>."
msgstr "Válasszon ki egy átmenet stílust, kattintson az <emph>OK</emph> gombra."
-#. eVQI
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -575,7 +518,6 @@ msgctxt ""
msgid "Creating Custom Gradients"
msgstr "Egyéni színátmenetek létrehozása"
-#. 9cA^
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -585,7 +527,6 @@ msgctxt ""
msgid "You can define your own gradients and modify existing gradients, as well as save and load a list of gradient files."
msgstr "Megadhatja saját egyéni színátmeneteit vagy módosíthat meglévőket, továbbá betölthet vagy menthet átmenetfájlokat tartalmazó listákat."
-#. Ri5t
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -595,7 +536,6 @@ msgctxt ""
msgid "To create a custom gradient:"
msgstr "Egy egyéni színátmenet létrehozása:"
-#. AYSd
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -605,7 +545,6 @@ msgctxt ""
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
msgstr "Válassza a <emph>Formátum - Terület</emph> menüparancsot, majd kattintson a <emph>Színátmenet</emph> fülre."
-#. 2vji
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -615,7 +554,6 @@ msgctxt ""
msgid "Select a gradient from the list to use as the basis for your new gradient and click <emph>Add</emph>."
msgstr "Válassza ki a listából az új színátmenet alapjául szolgáló létező színátmenetet, majd kattintson a <emph>Hozzáadás</emph> gombra."
-#. AGoU
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -625,7 +563,6 @@ msgctxt ""
msgid "Type a name for the gradient in the text box and click <emph>OK</emph>."
msgstr "A szövegmezőben adja meg a színátmenet nevét, majd kattintson az <emph>OK</emph> gombra."
-#. IL(+
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -634,7 +571,6 @@ msgctxt ""
msgid "The name appears at the end of the gradient list and is selected for editing."
msgstr "Az új átmenet szerkesztésre készen megjelenik az átmenetlista végén."
-#. #/99
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -644,7 +580,6 @@ msgctxt ""
msgid "Set the gradient properties and click <emph>Modify</emph> to save the gradient."
msgstr "Állítsa be a színátmenet tulajdonságait, majd a <emph>Módosítás</emph> gombbal mentse a változásokat."
-#. p)T\
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -654,7 +589,6 @@ msgctxt ""
msgid "Click <emph>OK.</emph>"
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. BG5H
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -664,7 +598,6 @@ msgctxt ""
msgid "Using Gradients and Transparency"
msgstr "Színátmenet és átlátszóság használata"
-#. G]P,
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -674,7 +607,6 @@ msgctxt ""
msgid "You can adjust the properties of a gradient as well as the transparency of a drawing object with your mouse."
msgstr "Egy színátmenet tulajdonságait, csakúgy mint a rajzobjektumok átlátszóságát az egér segítségével állíthatja be."
-#. 6[R,
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -684,7 +616,6 @@ msgctxt ""
msgid "To adjust the gradient of a drawing object:"
msgstr "Egy rajzobjektum színátmenetének beállítása:"
-#. 7;eE
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -694,7 +625,6 @@ msgctxt ""
msgid "Select a drawing object with the gradient that you want to modify."
msgstr "Válassza ki a módosítani kívánt színátmenetet tartalmazó rajzobjektumot."
-#. )P54
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -704,7 +634,6 @@ msgctxt ""
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
msgstr "Válassza a <emph>Formátum - Terület</emph> menüparancsot, majd kattintson a <emph>Színátmenet</emph> fülre."
-#. vT(K
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -713,7 +642,6 @@ msgctxt ""
msgid "Adjust the values for the gradient to suit your needs and click <emph>OK</emph>."
msgstr "Állítsa be a színátmenet értékeit, majd kattintson az <emph>OK</emph> gombra."
-#. j+O+
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -723,7 +651,6 @@ msgctxt ""
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
msgstr "Egy objektum átlátszóságának módosításához jelölje ki az objektumot, válassza a <emph>Formátum - Terület</emph> menüparancsot, majd kattintson az <emph>Átlátszóság</emph> fülre."
-#. 0vd{
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -732,7 +659,6 @@ msgctxt ""
msgid "Assembling 3D Objects"
msgstr "Térbeli objektum összeállítása"
-#. ,g;s
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -741,7 +667,6 @@ msgctxt ""
msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
msgstr "<bookmark_value>térbeli objektumok; összeállítás</bookmark_value><bookmark_value>összeállított objektumok térben</bookmark_value><bookmark_value>összevonás;térbeli objektumok</bookmark_value>"
-#. []lM
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -751,7 +676,6 @@ msgctxt ""
msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Térbeli objektumok összeállítása\">Térbeli objektumok összeállítása</link></variable>"
-#. Qaw^
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -761,7 +685,6 @@ msgctxt ""
msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
msgstr "A külön-külön térbeli szcénákat alkotó térbeli objektumok egyetlen térbeli szcénába egyesíthetők."
-#. B\YY
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -771,7 +694,6 @@ msgctxt ""
msgid "To combine 3D objects:"
msgstr "Térbeli objektumok összevonásához:"
-#. Z(yW
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -781,7 +703,6 @@ msgctxt ""
msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
msgstr "Szúrjon be egy térbeli objektumot a <emph>Térbeli objektumok</emph> eszköztár segítségével (például egy kockát)."
-#. i)o]
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -791,7 +712,6 @@ msgctxt ""
msgid "Insert a second slightly larger 3D object (for example, a sphere)."
msgstr "Szúrjon be egy második, kicsit nagyobb térbeli objektumot (például egy gömböt)."
-#. 66f7
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -801,7 +721,6 @@ msgctxt ""
msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
msgstr "Jelölje ki a második térbeli objektumot (a gömböt), majd válassza a <emph>Szerkesztés - Kivágás</emph> menüparancsot."
-#. K2f8
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -811,7 +730,6 @@ msgctxt ""
msgid "Double-click the first object (cube) to enter its group."
msgstr "Kattintson duplán az első objektumra (kocka) a csoportjába való belépéshez."
-#. GlL[
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -821,7 +739,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
msgstr "Válassza a <emph>Szerkesztés - Beillesztés</emph> lehetőséget. Mindkét objektum most már ugyanannak a csoportnak a része. Ha akar, szerkesztheti az egyes objektumokat is, vagy módosíthatja a helyzetüket a csoporton belül."
-#. +j^{
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -831,7 +748,6 @@ msgctxt ""
msgid "Double-click outside the group to exit the group."
msgstr "Kattintson duplán a csoporton kívülre, ha ki akar lépni a csoportból."
-#. rE_S
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -841,7 +757,6 @@ msgctxt ""
msgid "You cannot intersect or subtract 3D objects."
msgstr "Térbeli objektumokat nem lehet metszeni és kivonni egymásból."
-#. 6UX\
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
@@ -851,7 +766,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objektumok a térben\">Objektumok a térben</link>"
-#. azm+
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -860,7 +774,6 @@ msgctxt ""
msgid "Inserting Graphics"
msgstr "Képek beszúrása"
-#. _^V1
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -869,7 +782,6 @@ msgctxt ""
msgid "<bookmark_value>pictures; inserting</bookmark_value><bookmark_value>images; inserting</bookmark_value><bookmark_value>files; inserting pictures</bookmark_value><bookmark_value>inserting;pictures</bookmark_value>"
msgstr "<bookmark_value>képek; beszúrás</bookmark_value><bookmark_value>képek; beszúrás</bookmark_value><bookmark_value>fájlok; képek beszúrása</bookmark_value><bookmark_value>beszúrás;képek</bookmark_value>"
-#. oo%[
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -879,7 +791,6 @@ msgctxt ""
msgid "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">Inserting Pictures</link></variable>"
msgstr "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Képek ábrák\">Képek beszúrása</link></variable>"
-#. EvZj
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -889,7 +800,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Picture - From File</emph>."
msgstr "Válassza a <emph>Beszúrás - Kép - Fájlból</emph> menüparancsot."
-#. 7BR)
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -899,7 +809,6 @@ msgctxt ""
msgid "Locate the picture you want to insert. Select the <emph>Link</emph> check box to insert only a link to the picture. If you want to see the picture before you insert it, select <emph>Preview</emph>."
msgstr "Keresse meg a beszúrandó képet. Jelölje be a <emph>Hivatkozás</emph> négyzetet, ha csak egy képre való hivatkozást akar beszúrni. Ha beszúrás előtt meg szeretné tekinteni a képet, akkor kapcsolja be az <emph>Előnézet</emph> jelölőnégyzetet."
-#. J.#d
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -909,7 +818,6 @@ msgctxt ""
msgid "After you insert a linked picture, do not change the name of the source picture or move the source picture to another directory."
msgstr "Miután beszúrt egy csatolt képet, ne változtassa meg a forráskép nevét, és ne helyezze át a forrásképet egy másik könyvtárba."
-#. 8C^*
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -919,7 +827,6 @@ msgctxt ""
msgid "Click <emph>Open</emph> to insert the picture."
msgstr "A kép beszúrásához kattintson a <emph>Megnyitás</emph> gombra."
-#. %U(_
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -928,7 +835,6 @@ msgctxt ""
msgid "Rotating Objects"
msgstr "Objektumok forgatása"
-#. IfKr
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -937,7 +843,6 @@ msgctxt ""
msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
msgstr "<bookmark_value>forgatás; rajzobjektumok</bookmark_value><bookmark_value>rajzobjektumok; forgatás</bookmark_value><bookmark_value>rajzobjektumok forgatási pontjai</bookmark_value>"
-#. zefQ
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -947,7 +852,6 @@ msgctxt ""
msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Objektumok forgatása\">Objektumok forgatása</link></variable>"
-#. cP$H
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -957,7 +861,6 @@ msgctxt ""
msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
msgstr "Egy objektumot az alapértelmezett forgatási pontja (középpont), vagy egy meghatározott forgatási pont körül lehet forgatni."
-#. Ph`}
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -966,7 +869,6 @@ msgctxt ""
msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Ikon</alt></image>"
-#. +]|m
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -976,7 +878,6 @@ msgctxt ""
msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
msgstr "Jelölje ki a módosítandó objektumot. A $[officename] Draw <emph>Mód</emph> eszköztárán vagy a $[officename] Impress <emph>Rajz</emph> eszköztárán kattintson a <emph>Forgatás</emph> ikonra."
-#. CVK.
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -986,7 +887,6 @@ msgctxt ""
msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
msgstr "Mozgassa a kurzort egy sarokfogantyúra, így a kurzor átalakul egy forgó szimbólummá. A fogantyú elhúzásával forgassa el az objektumot."
-#. lk}*
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -995,7 +895,6 @@ msgctxt ""
msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
msgstr "Tartsa lenyomva a Shift billentyűt a forgatás 15 fok többszöröseire korlátozásához."
-#. \i!i
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -1004,7 +903,6 @@ msgctxt ""
msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
msgstr "Kattintson a jobb egérgombbal az objektumra a helyi menü megnyitásához. Válassza a Pozíció és méret - Forgatás lehetőséget a pontos forgatási érték megadásához."
-#. .C|m
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -1013,7 +911,6 @@ msgctxt ""
msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Ikon</alt></image>"
-#. .L|(
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -1023,7 +920,6 @@ msgctxt ""
msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
msgstr "A forgatási pont megváltoztatásához húzza át az objektum közepében levő kis kört egy új helyre."
-#. ],[+
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
@@ -1033,7 +929,6 @@ msgctxt ""
msgid "To skew the object vertically or horizontally, drag one of the side handles."
msgstr "Ha egy objektumot függőlegesen vagy vízszintesen el akar dönteni, akkor húzza el az oldalfogantyúk közül az egyiket."
-#. q}:L
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1042,7 +937,6 @@ msgctxt ""
msgid "Replacing Colors"
msgstr "Színek cseréje"
-#. ?2,J
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1051,7 +945,6 @@ msgctxt ""
msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
msgstr "<bookmark_value>szemcseppentő</bookmark_value><bookmark_value>színek; csere</bookmark_value><bookmark_value>csere;színek a bitképekben</bookmark_value>"
-#. _v?$
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1061,7 +954,6 @@ msgctxt ""
msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Színek cseréje\">Színek cseréje</link></variable>"
-#. dLrC
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1071,7 +963,6 @@ msgctxt ""
msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
msgstr "A <emph>Színcserélő</emph> eszközzel bitképekben cserélhet színeket."
-#. /?xb
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1081,7 +972,6 @@ msgctxt ""
msgid "Up to four colors can be replaced at once."
msgstr "Egyszerre négy színt lehet kicserélni."
-#. EcNF
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1091,7 +981,6 @@ msgctxt ""
msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
msgstr "Az <emph>Átlátszóság</emph> jelölőnégyzet bekapcsolásával a kép átlátszó területeit cserélheti le egy színre."
-#. 7o~]
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1101,7 +990,6 @@ msgctxt ""
msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
msgstr "Ehhez hasonlóan a <emph>Színcserélő</emph> segítségével átlátszóvá változtathatja az adott színű területeket a képen."
-#. ]vrM
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1111,7 +999,6 @@ msgctxt ""
msgid "To replace colors with the Color Replacer tool"
msgstr "Színek cseréje a Színcserélő eszköz segítségével"
-#. r5X{
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1121,7 +1008,6 @@ msgctxt ""
msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
msgstr "Győződjön meg arról, hogy a használt kép bitkép (például BMP, GIF, JPG vagy PNG), vagy metafájl (például WMF)."
-#. $yO[
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1131,7 +1017,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Color Replacer</emph>."
msgstr "Válassza az <emph>Eszközök - Színcserélő</emph> menüparancsot."
-#. /ruR
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1141,7 +1026,6 @@ msgctxt ""
msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
msgstr "Kattintson a Színcserélő ikonra, majd vigye az egérmutatót a képen a kicserélni kívánt szín fölé. A szín megjelenik az ikon melletti mezőben."
-#. J;bd
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1151,7 +1035,6 @@ msgctxt ""
msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
msgstr "Kattintson rá a színre a képen. A szín megjelenik az első <emph>Forrásszín</emph> mezőben, és a mező melletti jelölőnégyzet kijelölésre kerül."
-#. 45hV
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1161,7 +1044,6 @@ msgctxt ""
msgid "In the <emph>Replace with</emph> box, select the new color."
msgstr "A <emph>Csere erre</emph> mezőben válassza ki az új színt."
-#. IrmF
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1171,7 +1053,6 @@ msgctxt ""
msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
msgstr "Ez a művelet az adott <emph>Forrásszín</emph> összes előfordulását kicserélni a képen."
-#. ?69I
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1181,7 +1062,6 @@ msgctxt ""
msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
msgstr "További színek cseréjéhez jelölje ki a következő <emph>Forrásszín</emph> mező melletti jelölőnégyzetet, majd ismételje meg a 3.-5. lépéseket."
-#. MUTu
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1191,7 +1071,6 @@ msgctxt ""
msgid "Click <emph>Replace</emph>."
msgstr "Kattintson a <emph>Csere</emph> gombra."
-#. GJ*p
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1201,7 +1080,6 @@ msgctxt ""
msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
msgstr "Ha csökkenteni vagy növelni kívánja a lecserélendő területet, akkor állítsa kisebbre vagy nagyobbra <emph>Színcserélő</emph> eszköz toleranciáját, majd ismételje meg a színkiválasztást."
-#. 8Q*v
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
@@ -1211,7 +1089,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Színcserélő\">Színcserélő</link>"
-#. meBb
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1220,7 +1097,6 @@ msgctxt ""
msgid "Shortcut Keys for Drawing Objects"
msgstr "Rajzobjektumok gyorsbillentyűi"
-#. Lp[Y
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1229,7 +1105,6 @@ msgctxt ""
msgid "<bookmark_value>accessibility; %PRODUCTNAME Draw</bookmark_value><bookmark_value>draw objects; text entry mode</bookmark_value><bookmark_value>text entry mode for draw objects</bookmark_value>"
msgstr "<bookmark_value>kisegítő lehetőségek; %PRODUCTNAME Draw</bookmark_value><bookmark_value>rajzobjektumok; szöveges beviteli mód</bookmark_value><bookmark_value>szöveges beviteli mód rajzobjektumoknál</bookmark_value>"
-#. cfms
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1239,7 +1114,6 @@ msgctxt ""
msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Shortcut Keys for Drawing Objects</link></variable>"
msgstr "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Rajzobjektumok gyorsbillentyűi\">Rajzobjektumok gyorsbillentyűi</link></variable>"
-#. tT=U
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1249,7 +1123,6 @@ msgctxt ""
msgid "You can create and edit drawing objects using the keyboard."
msgstr "Rajzobjektumokat a billentyűzet segítségével is létrehozhat és szerkeszthet."
-#. QsM8
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1259,7 +1132,6 @@ msgctxt ""
msgid "To Create and Edit a Drawing Object"
msgstr "Rajzobjektum létrehozása és szerkesztése"
-#. }W7/
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1269,7 +1141,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">F6</item> to navigate to the <emph>Drawing</emph> bar."
msgstr "Nyomja le az <item type=\"keycode\">F6</item> billentyűt a <emph>Rajz</emph> eszköztár eléréséhez."
-#. qaSa
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1279,7 +1150,6 @@ msgctxt ""
msgid "Press the <item type=\"keycode\">Right</item> arrow key until you reach the toolbar icon of a drawing tool."
msgstr "Nyomja le többször a <item type=\"keycode\">Jobbra</item> nyilat, amíg el nem éri egy rajzolóeszköz ikonját."
-#. \1Oq
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1288,7 +1158,6 @@ msgctxt ""
msgid "If there is an arrow next to the icon, the drawing tool opens a sub toolbar. Press the <item type=\"keycode\">Up</item> or <item type=\"keycode\">Down</item> arrow key to open the sub toolbar, then press the <item type=\"keycode\">Right</item> or <item type=\"keycode\">Left</item> key to select an icon."
msgstr "Ha egy nyíl látható az ikon mellett, a rajzeszköz megnyit egy aleszköztárat. Nyomja meg a <item type=\"keycode\">Fel</item> vagy <item type=\"keycode\">Le</item> nyilat az aleszköztár megnyitásához, majd nyomja meg a <item type=\"keycode\">Jobbra</item> vagy <item type=\"keycode\">Balra</item> nyilat egy ikon kiválasztásához."
-#. .r-a
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1298,7 +1167,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</item>."
msgstr "Nyomja meg a <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</item> billentyűkombinációt."
-#. YK6[
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1308,7 +1176,6 @@ msgctxt ""
msgid "The object is created at the center of the current document."
msgstr "Ez az objektum az aktuális dokumentum közepén jön létre."
-#. KJnf
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1318,7 +1185,6 @@ msgctxt ""
msgid "To return to the document, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item>."
msgstr "Ha vissza akar térni a dokumentumhoz, akkor nyomja le a <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item> billentyűkombinációt."
-#. W~1P
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1328,7 +1194,6 @@ msgctxt ""
msgid "You can use the arrow keys to position the object where you want. To choose a command from the context menu for the object, press <item type=\"keycode\">Shift+F10</item>."
msgstr "A nyílbillentyűkkel mozgassa az objektumot a kívánt helyre. Az objektum helyi menüjének előhívásához nyomja meg a <item type=\"keycode\">Shift+F10</item> billentyűkombinációt."
-#. 9tKM
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1338,7 +1203,6 @@ msgctxt ""
msgid "To Select an Object"
msgstr "Objektum kiválasztása"
-#. F1b[
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1348,7 +1212,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item> to enter the document."
msgstr "Nyomja meg a <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item> billentyűkombinációt a dokumentumba való belépéshez."
-#. P/nY
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -1358,7 +1221,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
msgstr "Nyomogassa addig a <item type=\"keycode\">Tab</item> billentyűt, amíg el nem éri a kiválasztandó objektumot."
-#. \_cV
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1367,7 +1229,6 @@ msgctxt ""
msgid "Connecting Lines"
msgstr "Vonalak összekötése"
-#. B3)R
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1376,7 +1237,6 @@ msgctxt ""
msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
msgstr "<bookmark_value>rajzobjektumok; vonalak összekötése velük</bookmark_value><bookmark_value>összekötés; vonalak</bookmark_value><bookmark_value>vonalak; objektumok összekötése</bookmark_value><bookmark_value>területek; összekötött vonalakból</bookmark_value>"
-#. Bb3F
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1386,7 +1246,6 @@ msgctxt ""
msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Vonalak összekötése\">Vonalak összekötése</link></variable>"
-#. HUXL
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1396,7 +1255,6 @@ msgctxt ""
msgid "When you connect lines, lines are drawn between neighboring endpoints."
msgstr "Vonalak összekötésénél a vonalak a szomszédos végpontok közé lesznek rajzolva."
-#. bis?
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1406,7 +1264,6 @@ msgctxt ""
msgid "To connect lines:"
msgstr "Vonalak összekötése:"
-#. IDs*
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1416,7 +1273,6 @@ msgctxt ""
msgid "Select two or more lines."
msgstr "Jelöljön ki kettő vagy több vonalat."
-#. Gb?7
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1426,7 +1282,6 @@ msgctxt ""
msgid "Right-click and choose <emph>Modify - Connect</emph>."
msgstr "Kattintson a jobb egérgombbal a kijelölésre, majd válassza a <emph>Módosítás - Összekötés</emph> menüparancsot."
-#. :zpe
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1436,7 +1291,6 @@ msgctxt ""
msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
msgstr "Zárt objektum létrehozásához kattintson a jobb egérgombbal a vonalra, majd válassza az <emph>Objektum bezárása</emph> menüparancsot."
-#. A3Bj
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
@@ -1446,7 +1300,6 @@ msgctxt ""
msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
msgstr "Az <emph>Objektum bezárása</emph> parancs csak összekötött vonalakon, <emph>szabadkézi vonalakon</emph> és kitöltetlen <emph>görbéken</emph> használható."
-#. Igex
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1455,7 +1308,6 @@ msgctxt ""
msgid "Cross-Fading Two Objects"
msgstr "Két objektum átúsztatása"
-#. ;[h)
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1464,7 +1316,6 @@ msgctxt ""
msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
msgstr "<bookmark_value>rajzobjektumok; két objektum átúsztatása</bookmark_value><bookmark_value>átúsztatás; két rajzobjektum</bookmark_value>"
-#. KhU.
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1474,7 +1325,6 @@ msgctxt ""
msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Két objektum átúsztatása\">Két objektum átúsztatása</link></variable>"
-#. h%2!
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1484,7 +1334,6 @@ msgctxt ""
msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
msgstr "Az átúsztatás alakzatokat hoz létre, és elosztja őket két rajzobjektum között"
-#. eW==
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1494,7 +1343,6 @@ msgctxt ""
msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
msgstr "Az átúsztatási parancs csak a $[officename] Draw programban érhető el. Ennek ellenére átúsztatott objektumokat bemásolhat a $[officename] Impress programba is."
-#. |qMV
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1504,7 +1352,6 @@ msgctxt ""
msgid "To cross-fade two objects:"
msgstr "Két objektum átúsztatása:"
-#. Vj$H
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1514,7 +1361,6 @@ msgctxt ""
msgid "Hold down Shift and click each object."
msgstr "Tartsa lenyomva a Shift billentyűt, majd kattintson mindkét objektumra."
-#. F:OT
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1524,7 +1370,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Cross-fading</emph>."
msgstr "Válassza a <emph>Szerkesztés - Átúsztatás</emph> menüparancsot."
-#. r0DV
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1534,7 +1379,6 @@ msgctxt ""
msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
msgstr "Az <emph>Alakzatok száma</emph> mezőben adja meg a kiinduló és befejező rajzobjektumok közötti köztes objektumok számát."
-#. TkEH
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1544,7 +1388,6 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kattintson az <emph>OK</emph> gombra."
-#. N~!H
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1554,7 +1397,6 @@ msgctxt ""
msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
msgstr "A két eredeti objektumot tartalmazó csoport, valamint az átúsztatott objektumok megadott száma (növekmény) jelenik meg."
-#. B-9a
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1563,7 +1405,6 @@ msgctxt ""
msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Példa átúsztatásra</alt></image>"
-#. cP)t
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1573,7 +1414,6 @@ msgctxt ""
msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
msgstr "A csoport egyedi elemeinek szerkesztéséhez jelölje ki a csoportot, és nyomja meg az F3 billentyűt. A csoport szerkesztési módból a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 billentyűkombinációval léphet ki."
-#. g,5g
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
@@ -1583,7 +1423,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Szerkesztés - Átúsztatás\">Szerkesztés - Átúsztatás</link>"
-#. ,:;]
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1592,7 +1431,6 @@ msgctxt ""
msgid "Arranging, Aligning and Distributing Objects"
msgstr "Elrendezés, objektumok igazítása és elosztása"
-#. 3q~R
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1602,7 +1440,6 @@ msgctxt ""
msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Objektumok elrendezése és igazítása\">Objektumok elrendezése és igazítása</link></variable>"
-#. zW2w
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1611,7 +1448,6 @@ msgctxt ""
msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
msgstr "<bookmark_value>elrendezés; objektumok (segéd)</bookmark_value><bookmark_value>objektumok;igazítás</bookmark_value><bookmark_value>elosztás;rajzobjektumok</bookmark_value><bookmark_value>igazítás;rajzobjektumok</bookmark_value>"
-#. !PJi
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1621,7 +1457,6 @@ msgctxt ""
msgid "Arranging Objects"
msgstr "Objektumok elrendezése"
-#. x|T[
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1631,7 +1466,6 @@ msgctxt ""
msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
msgstr "A dokumentumban létrehozott objektumok a már meglévők fölé kerülnek az egymásra helyezési sorrendben. Ha módosítani akarja egy kijelölt objektum egymásra helyezési sorrendjét, tegye a következőket:"
-#. M(UU
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1640,7 +1474,6 @@ msgctxt ""
msgid "Click the object whose position you want to change."
msgstr "Kattintson arra az objektumra, amelynek a helyzetét meg akarja változtatni."
-#. wc?i
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1650,7 +1483,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
msgstr "Válassza a <item type=\"menuitem\">Módosítás - Elrendezés</item> menüparancsot a helyi menü megjelenítéséhez, és válasszon egy elrendezési lehetőséget:"
-#. s|LZ
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1659,7 +1491,6 @@ msgctxt ""
msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
msgstr "Az <emph>Előrehozás</emph> az objektumot a többi objektum fölé helyezi."
-#. xoGD
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1668,7 +1499,6 @@ msgctxt ""
msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
msgstr "Az <emph>Előrébb hozás</emph> eggyel előrébb helyezi az objektumot a többi objektum között."
-#. HNT/
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1677,7 +1507,6 @@ msgctxt ""
msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
msgstr "A <emph>Hátrébb küldés</emph> eggyel hátrébb helyezi az objektumot a többi objektum között."
-#. N.aO
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1686,7 +1515,6 @@ msgctxt ""
msgid "<emph>Send to Back</emph> places the object behind all other objects"
msgstr "A <emph>Hátraküldés</emph> lehetőség a többi objektum mögé helyezi az objektumot."
-#. FbQ\
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1695,7 +1523,6 @@ msgctxt ""
msgid "<emph>Behind Object</emph> places the object behind another object that you select"
msgstr "Az <emph>Objektum mögé</emph> lehetőség a másik kijelölt objektum mögé helyezi az objektumot."
-#. ;e^l
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1705,7 +1532,6 @@ msgctxt ""
msgid "Arranging an Object Behind Another Object"
msgstr "Objektum elrendezése másik objektum mögé"
-#. 0B+N
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1714,7 +1540,6 @@ msgctxt ""
msgid "Click the object whose position you want to change."
msgstr "Kattintson arra az objektumra, amelynek a helyzetét meg akarja változtatni."
-#. xCBp
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1724,7 +1549,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
msgstr "Válassza a <item type=\"menuitem\">Módosítás - Elrendezés</item> menüparancsot a helyi menü megnyitásához, és válassza az <emph>Objektum mögé</emph> lehetőséget. Az egérmutató kéz alakúvá változik."
-#. QE(6
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1734,7 +1558,6 @@ msgctxt ""
msgid "Click the object behind which you want to place the selected object."
msgstr "Kattintson arra az objektumra, amelyet a kiválasztott objektum elé szeretne helyezni."
-#. Ru50
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1744,7 +1567,6 @@ msgctxt ""
msgid "Reversing The Stacking Order of Two Objects"
msgstr "Két objektum egymásra helyezésének megfordítása"
-#. 8V})
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1754,7 +1576,6 @@ msgctxt ""
msgid "Shift-click both objects to select them."
msgstr "A Shift billentyű lenyomása mellett kattintson mindkét objektumra, hogy kijelölje őket."
-#. s!jH
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1764,7 +1585,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
msgstr "Válassza a <item type=\"menuitem\">Módosítás - Elrendezés</item> menüparancsot a helyi menü megnyitásához, és válassza a <emph>Fordított</emph> lehetőséget."
-#. h1d$
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1774,7 +1594,6 @@ msgctxt ""
msgid "Aligning Objects"
msgstr "Objektumok igazítása"
-#. 5qBS
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1784,7 +1603,6 @@ msgctxt ""
msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
msgstr "Az <emph>Igazítás</emph> funkcióval az objektumokat egymáshoz vagy az oldalhoz igazíthatja."
-#. kcXG
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1793,7 +1611,6 @@ msgctxt ""
msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
msgstr "Jelöljön ki egy objektumot, ha az oldalhoz akarja igazítani, vagy jelöljön ki több objektumot, ha egymáshoz akarja igazítani őket."
-#. C?\T
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1802,7 +1619,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
msgstr "Válassza a <item type=\"menuitem\">Módosítás - Igazítás</item> menüparancsot, és válasszon egy igazítási lehetőséget."
-#. Bdpa
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1811,7 +1627,6 @@ msgctxt ""
msgid "Distributing Objects"
msgstr "Objektumok elosztása"
-#. dAUw
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1821,7 +1636,6 @@ msgctxt ""
msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
msgstr "Ha három vagy több objektum van kijelölve, akkor az <link href=\"text/shared/01/05360000.xhp\" name=\"Elosztás\"><emph>Elosztás</emph></link> paranccsal egyenlő függőleges, illetve vízszintes térköz állítható be az objektumok közé."
-#. ibe~
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1830,7 +1644,6 @@ msgctxt ""
msgid "Select three or more objects to be distributed."
msgstr "Jelöljön ki három vagy több elosztani kívánt objektumot."
-#. 1fD(
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1839,7 +1652,6 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
msgstr "Válassza a <item type=\"menuitem\">Módosítás - Elosztás</item> menüparancsot."
-#. S=C7
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1848,7 +1660,6 @@ msgctxt ""
msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
msgstr "Válassza a vízszintes vagy a függőleges elosztási lehetőséget, majd kattintson az <emph>OK</emph> gombra."
-#. A!}@
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
@@ -1858,7 +1669,6 @@ msgctxt ""
msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
msgstr "A kijelölt objektumok egyenletesen helyezkednek el a vízszintes vagy függőleges tengely mentén. A két szélső objektum szolgál viszonyítási alapként, így ezeket nem mozgatja el az <emph>Elosztás</emph> parancs."
-#. {O8)
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1867,7 +1677,6 @@ msgctxt ""
msgid "Instructions for Using $[officename] Draw"
msgstr "Útmutatás a $[officename] Draw használatához"
-#. op(1
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1876,7 +1685,6 @@ msgctxt ""
msgid "<bookmark_value>Draw instructions</bookmark_value><bookmark_value>instructions; $[officename] Draw</bookmark_value><bookmark_value>Howtos for Draw</bookmark_value>"
msgstr "<bookmark_value>Útmutatás a Draw programhoz</bookmark_value><bookmark_value>útmutatás;$[officename] Draw</bookmark_value><bookmark_value>Hogyanok a Draw programhoz</bookmark_value>"
-#. ]Q=W
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1886,7 +1694,6 @@ msgctxt ""
msgid "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instructions for Using $[officename] Draw\">Instructions for Using $[officename] Draw</link></variable>"
msgstr "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Útmutatás a $[officename] Draw használatához\">Útmutatás a $[officename] Draw használatához</link></variable>"
-#. ?$UU
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1896,7 +1703,6 @@ msgctxt ""
msgid "Editing and Grouping Objects"
msgstr "Objektumok szerkesztése és csoportosítása"
-#. fyo8
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1906,7 +1712,6 @@ msgctxt ""
msgid "Editing Colors and Textures"
msgstr "Színek és mintázatok szerkesztése"
-#. .{e.
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1916,7 +1721,6 @@ msgctxt ""
msgid "Editing Text"
msgstr "Szöveg szerkesztése"
-#. :j8o
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1926,7 +1730,6 @@ msgctxt ""
msgid "Working with Layers"
msgstr "Rétegek használata"
-#. mBf3
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1936,7 +1739,6 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Egyebek"
-#. qVa5
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -1945,7 +1747,6 @@ msgctxt ""
msgid "Defining Custom Colors"
msgstr "Egyéni színek meghatározása"
-#. l2e-
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -1954,7 +1755,6 @@ msgctxt ""
msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
msgstr "<bookmark_value>színek; megadás és mentés</bookmark_value><bookmark_value>felhasználó által megadott színek</bookmark_value><bookmark_value>egyéni színek</bookmark_value>"
-#. =VlU
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -1964,7 +1764,6 @@ msgctxt ""
msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Egyéni színek megadása\">Egyéni színek megadása</link></variable>"
-#. l0#J
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -1974,7 +1773,6 @@ msgctxt ""
msgid "If you want, you can mix a custom color and add it to a color table."
msgstr "Ha akar, akkor egyedi színeket keverhet, és hozzáadhatja azokat a színtáblázathoz."
-#. ,AA@
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -1984,7 +1782,6 @@ msgctxt ""
msgid "To define a custom color"
msgstr "Egyéni szín meghatározása"
-#. $L2G
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -1994,7 +1791,6 @@ msgctxt ""
msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
msgstr "Válassza a <emph>Formátum - Terület</emph> menüparancsot, majd kattintson a <emph>Színek</emph> fülre. Megjelenik az előre meghatározott színeket tartalmazó táblázat."
-#. TP3S
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2004,7 +1800,6 @@ msgctxt ""
msgid "Changes made to the standard color table are permanent and are saved automatically."
msgstr "A szabványos színtáblázat változtatásai véglegesek, és a program automatikusan menti őket."
-#. 5r{C
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2014,7 +1809,6 @@ msgctxt ""
msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
msgstr "Válasszon ki a táblázatban egy olyan színt, amely hasonlít a kikeverni kívánt színre. A kijelölt szín megjelenik a táblázattól jobbra eső előnézeti mezőben."
-#. qx5T
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2024,7 +1818,6 @@ msgctxt ""
msgid "Select the RGB or CMYK color model in the box below the preview boxes."
msgstr "Válassza ki az RGB vagy a CMYK színmodellt az előnézeti mezők alatt levő mezőben."
-#. vE{`
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2033,7 +1826,6 @@ msgctxt ""
msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
msgstr "A %PRODUCTNAME csak az RGB-színmodellt használja a színes nyomtatáshoz. A CMYK értékek bevitelének lehetősége csak a CMYK jelölésben megadott színek bevitelét megkönnyítendő van jelen."
-#. 3ePZ
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2043,7 +1835,6 @@ msgctxt ""
msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
msgstr "Az RGB színmodell piros, zöld és kék fényt kever össze a színek megjelenítésére a számítógép képernyőjén. Az RGB modellben additív színkeverés történik, és az egyes összetevők értéke a 0 (fekete) és 255 (fehér) között lehet. A nyomtatáshoz használt CMYK színmodell a türkiz (C), a bíbor (M), a sárga (Y) és a fekete (K, avagy \"kulcs\") összetevőt használja. A CMYK modell kivonó színkeveréssel dolgozik, és az egyes összetevők értéke százalékban van megadva. A fekete 100%, míg a fehér a 0%."
-#. gGCX
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2053,7 +1844,6 @@ msgctxt ""
msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
msgstr "Írja be a megfelelő számértékeket a színösszetevők melletti mezőkbe. Az új szín a színmodell mező fölötti előnézeti dobozban jelenik meg."
-#. yb3U
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2063,7 +1853,6 @@ msgctxt ""
msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
msgstr "A színtérkép segítségével is létrehozhat új színt. Kattintson a <emph>Szerkesztés</emph> gombra a <link href=\"text/shared/optionen/01010501.xhp\" name=\"Szín\"><emph>Szín</emph></link> párbeszédablak megnyitásához. Válasszon ki egy színt. A kívánt színárnyalatnak megfelelően töltse ki az Árnyalat, a Telítettség és a Fényerő mezőt."
-#. 9C6C
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2073,7 +1862,6 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Tegye az alábbiak közül az egyiket:"
-#. W|Zm
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2083,7 +1871,6 @@ msgctxt ""
msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
msgstr "Az egyéni szín alapjául szolgáló szabvány színtáblázatbeli szín lecseréléséhez kattintson a <emph>Módosítás</emph> gombra."
-#. 0m|H
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2093,7 +1880,6 @@ msgctxt ""
msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
msgstr "Az egyéni szín szabvány színtáblázatba történő felvételéhez írjon be egy nevet a <emph>Név</emph> mezőbe, majd kattintson a <emph>Hozzáadás</emph> gombra."
-#. %Z=8
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
@@ -2103,7 +1889,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Szín eszköztár\">Szín eszköztár</link>"
-#. 3#BQ
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2112,7 +1897,6 @@ msgctxt ""
msgid "Grouping Objects"
msgstr "Objektumok csoportosítása"
-#. (/CE
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2121,7 +1905,6 @@ msgctxt ""
msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
msgstr "<bookmark_value>csoportosítás; rajzobjektumok</bookmark_value><bookmark_value>rajzobjektumok; csoportosítás</bookmark_value>"
-#. VtOd
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2131,7 +1914,6 @@ msgctxt ""
msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Objektumok csoportosítása\">Objektumok csoportosítása</link></variable>"
-#. /fs9
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2141,7 +1923,6 @@ msgctxt ""
msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
msgstr "Összevonhat több objektumot egy csoportba, így azok egyetlen objektumként viselkednek. A csoport tagjai egyetlen egységként mozgathatja és alakíthatja át. Bizonyos tulajdonságokat (például vonalvastagságot vagy kitöltési színt) külön-külön vagy az egész csoportra vonatkozóan egyszerre is módosíthat. A csoportok lehetnek ideiglenesek vagy rögzítettek."
-#. X3@s
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2151,7 +1932,6 @@ msgctxt ""
msgid "Temporary - group only lasts as long as all of the combined objects are selected."
msgstr "Átmeneti - a csoport csak addig létezik, amíg az összes összevont objektum ki van jelölve."
-#. 9hN8
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2161,7 +1941,6 @@ msgctxt ""
msgid "Assigned - group lasts until it is ungrouped through a menu command."
msgstr "Hozzárendelt - a csoport addig létezik, amíg fel nem bontja egy menüparancs segítségével."
-#. NL,F
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2171,7 +1950,6 @@ msgctxt ""
msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
msgstr "A csoportok összevonhatók más csoportokkal. A csoporton végrehajtott műveletek nem befolyásolják az egyes csoporttagok egymáshoz viszonyított helyzetét."
-#. 5F!2
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2181,7 +1959,6 @@ msgctxt ""
msgid "To group objects:"
msgstr "Objektumok csoportosításához:"
-#. Q7A:
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2190,7 +1967,6 @@ msgctxt ""
msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Ikon</alt></image>"
-#. ,VxG
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2200,7 +1976,6 @@ msgctxt ""
msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
msgstr "Jelölje ki a csoportosítandó objektumokat, majd válassza a <emph>Módosítás - Csoport</emph> menüparancsot."
-#. 0q4a
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2210,7 +1985,6 @@ msgctxt ""
msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
msgstr "Például csoportosíthatja egy céglogó összes objektumát, így azokat egy objektumként mozgathatja és méretezheti."
-#. ]cT.
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2220,7 +1994,6 @@ msgctxt ""
msgid "After you have grouped objects, selecting any part of the group selects the entire group."
msgstr "Miután csoportosította az objektumokat, a csoport egy részének kiválasztása kijelöli az egész csoportot."
-#. OMF?
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2230,7 +2003,6 @@ msgctxt ""
msgid "Selecting Objects in a Group"
msgstr "Csoportban levő objektumok kiválasztása"
-#. O=+?
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2239,7 +2011,6 @@ msgctxt ""
msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Ikon</alt></image>"
-#. |`4N
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2249,7 +2020,6 @@ msgctxt ""
msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
msgstr "A csoport egyes elemeinek külön kijelöléséhez lépjen be a csoportba. Kattintson duplán a csoportra, majd kattintson a kijelölendő objektumra. Ebben a módban felvehet és törölhet is elemeket a csoportban. A csoportba nem tartozó elemek kiszürkítetten jelennek meg."
-#. X+U2
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2258,7 +2028,6 @@ msgctxt ""
msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Ikon</alt></image>"
-#. U[e*
#: groups.xhp
msgctxt ""
"groups.xhp\n"
@@ -2268,7 +2037,6 @@ msgctxt ""
msgid "To exit a group, double-click anywhere outside it."
msgstr "Ha ki akar lépni a csoportból, akkor kattintson duplán a csoporton kívülre."
-#. aroN
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2277,7 +2045,6 @@ msgctxt ""
msgid "Duplicating Objects"
msgstr "Objektumok megkettőzése"
-#. kyRm
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2286,7 +2053,6 @@ msgctxt ""
msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
msgstr "<bookmark_value>rajzobjektumok megkettőzése</bookmark_value><bookmark_value>rajzobjektumok; megkettőzés</bookmark_value><bookmark_value>rajzobjektumok megkettőzése</bookmark_value><bookmark_value>rajzobjektumok többszörözése</bookmark_value>"
-#. ,%si
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2296,7 +2062,6 @@ msgctxt ""
msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Objektumok megkettőzése\">Objektumok megkettőzése</link></variable>"
-#. 5%V$
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2306,7 +2071,6 @@ msgctxt ""
msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
msgstr "Létrehozhatja egy objektum egy vagy több másolatát. A másolatok lehetnek teljesen megegyezők, vagy különbözhetnek méretben, színben, tájolásban vagy elhelyezkedésben."
-#. sK%L
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2316,7 +2080,6 @@ msgctxt ""
msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
msgstr "A következő példa egy érmehalmot hoz létre egy ellipszis sokszorozásával."
-#. tDFn
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2326,7 +2089,6 @@ msgctxt ""
msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
msgstr "Az <emph>Ellipszis</emph> eszközzel rajzoljon egy sárga ellipszist."
-#. 5*1a
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2336,7 +2098,6 @@ msgctxt ""
msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
msgstr "Jelölje ki az ellipszist, majd válassza a <emph>Szerkesztés - Megkettőzés</emph> menüparancsot."
-#. HrFm
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2346,7 +2107,6 @@ msgctxt ""
msgid "Enter 12 as <emph>Number of copies.</emph>"
msgstr "Adja meg a 12-t a <emph>Másolatok számaként</emph>."
-#. 0dg|
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2356,7 +2116,6 @@ msgctxt ""
msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
msgstr "Negatív <emph>Szélesség</emph> és <emph>Magasság</emph> értékek hatására az érmék a halom teteje felé haladva egyre kisebbek lesznek."
-#. XW;h
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2366,7 +2125,6 @@ msgctxt ""
msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
msgstr "Az érmék színátmenetének megadásához állítson be különböző színeket a <emph>Kezdőérték</emph> és <emph>Záróérték</emph> mezőkben. A <emph>Kezdőérték</emph> színt a többszörözött objektum fogja felvenni."
-#. nHRa
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2376,7 +2134,6 @@ msgctxt ""
msgid "Click <emph>OK</emph> to create the duplicates."
msgstr "A másolatok létrehozásához kattintson az <emph>OK</emph> gombra."
-#. 6_(5
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
@@ -2386,7 +2143,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Szerkesztés - Megkettőzés\">Szerkesztés - Megkettőzés</link>"
-#. nfiY
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2395,7 +2151,6 @@ msgctxt ""
msgid "Adding Text"
msgstr "Szöveg hozzáadása"
-#. -$*_
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2404,7 +2159,6 @@ msgctxt ""
msgid "<bookmark_value>text frames</bookmark_value> <bookmark_value>inserting;text frames</bookmark_value> <bookmark_value>copying;text from other documents</bookmark_value> <bookmark_value>pasting;text from other documents</bookmark_value> <bookmark_value>legends; drawings</bookmark_value>"
msgstr "<bookmark_value>szövegkeretek</bookmark_value><bookmark_value>metszés;szövegkeretek</bookmark_value><bookmark_value>másolás;szöveg más dokumentumokból</bookmark_value><bookmark_value>beillesztés;szöveg más dokumentumokból</bookmark_value><bookmark_value>jelmagyarázatok; rajzok</bookmark_value>"
-#. |Z:y
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2414,7 +2168,6 @@ msgctxt ""
msgid "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Adding Text\">Adding Text</link></variable>"
msgstr "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Szöveg hozzáadása\">Szöveg hozzáadása</link></variable>"
-#. sE#c
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2424,7 +2177,6 @@ msgctxt ""
msgid "There are several types of text you can add to a drawing or presentation:"
msgstr "Többféle típusú szöveget is hozzáadhat egy rajzhoz vagy bemutatóhoz:"
-#. `A_Z
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2433,7 +2185,6 @@ msgctxt ""
msgid "Text in a text box"
msgstr "Szöveg egy szövegdobozban"
-#. 0uR-
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2442,7 +2193,6 @@ msgctxt ""
msgid "Text that changes character size to fill the frame size"
msgstr "Olyan szöveg, amelynek változik a karaktermérete, hogy a szöveg kitöltse a keretet."
-#. 59fQ
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2451,7 +2201,6 @@ msgctxt ""
msgid "Text that is added to any drawing object by double-clicking the object"
msgstr "Olyan szöveg, amelyet egy objektumon való dupla kattintás hozzáad az objektumhoz."
-#. 8E+1
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2460,7 +2209,6 @@ msgctxt ""
msgid "Text that is copied from a Writer document"
msgstr "Olyan szöveg, amelyet egy Writer-dokumentumból másoltak át."
-#. 0YYQ
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2469,7 +2217,6 @@ msgctxt ""
msgid "Text that is inserted from a text document or HTML document"
msgstr "Olyan szöveg, amely egy szöveges dokumentumból vagy HTML-dokumentumból van beszúrva"
-#. @@8!
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2479,7 +2226,6 @@ msgctxt ""
msgid "Adding a Text Box"
msgstr "Szövegdoboz hozzáadása"
-#. c$Ly
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2489,7 +2235,6 @@ msgctxt ""
msgid "Click the <emph>Text</emph> icon <image id=\"img_id3156450\" src=\"cmd/sc_text.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3156450\">Icon</alt></image> and move the mouse pointer to where you want to enter the text box."
msgstr "Kattintson a <emph>Szöveg</emph> <image id=\"img_id3156450\" src=\"cmd/sc_text.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3156450\">Ikon</alt></image> ikonra, majd vigye oda az egeret, ahol új szövegdobozt szeretne létrehozni."
-#. ZloC
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2499,7 +2244,6 @@ msgctxt ""
msgid "Drag a text box to the size you want in your document."
msgstr "Húzza ki a szövegdobozt a kívánt méretre a dokumentumban."
-#. b46K
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2509,7 +2253,6 @@ msgctxt ""
msgid "Type or paste your text into the text box."
msgstr "Írja be vagy illessze be a szöveget a szövegdobozba."
-#. Xk![
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2519,7 +2262,6 @@ msgctxt ""
msgid "Double-click the text to edit it or to format text properties, such as font size or font color. Click the border of the text box to edit the object properties, such as border color or arranging in front or behind other objects."
msgstr "Kattintson duplán a szövegre a szöveg vagy annak formátuma (például a betűméret vagy a betűszín) szerkesztéshez. Kattintson a szövegdoboz keretére az objektum tulajdonságainak (például keretszín) szerkesztéséhez, vagy az objektum más objektumok elé vagy mögé történő helyezéséhez."
-#. $R%q
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2529,7 +2271,6 @@ msgctxt ""
msgid "Fitting Text to Frames"
msgstr "Szöveg kerethez igazítása"
-#. Pa#X
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2539,7 +2280,6 @@ msgctxt ""
msgid "Create a text box as described in the steps above."
msgstr "Hozzon létre egy szövegdobozt a fenti lépések segítségével."
-#. 2_Es
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2548,7 +2288,6 @@ msgctxt ""
msgid "With the text object selected, choose <emph>Format - Text</emph>. The <emph>Text</emph> dialog opens."
msgstr "Amikor ki van jelölve a szövegobjektum, válassza a <emph>Formátum - Szöveg</emph> menüparancsot. Megnyílik a <emph>Szöveg</emph> párbeszédablak."
-#. .~M3
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2557,7 +2296,6 @@ msgctxt ""
msgid "On the <emph>Text</emph> tab page, clear the <emph>Fit height to text</emph> checkbox, then select the <emph>Fit to frame</emph> checkbox. Click <emph>OK</emph>."
msgstr "A <emph>Szöveg</emph> lapon törölje a <emph>Magasság igazítása a szöveghez</emph> jelölőnégyzetet, majd jelölje be az <emph>Igazítás a kerethez</emph> négyzetet. Kattintson az <emph>OK</emph> gombra."
-#. WdU7
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2566,7 +2304,6 @@ msgctxt ""
msgid "Now you can resize the text box to change the size and shape of the text characters."
msgstr "Most átméretezheti a szövegdobozt a szöveg karakterei méretének és alakjának módosításához."
-#. :A#*
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2576,7 +2313,6 @@ msgctxt ""
msgid "Text Tied to a Graphic"
msgstr "Ábrához kötött szöveg"
-#. d6iA
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2585,7 +2321,6 @@ msgctxt ""
msgid "You can add text to any graphic after double-clicking the graphic."
msgstr "Bármilyen ábrához hozzáadhat szöveget, ha duplán kattint az ábrára."
-#. OAVI
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2594,7 +2329,6 @@ msgctxt ""
msgid "To determine the position of the text, use the settings in <emph>Format - Text</emph>."
msgstr "A szöveg pozíciójának megállapításához használja a <emph>Formátum - Szöveg</emph> beállításait."
-#. o}w|
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2604,7 +2338,6 @@ msgctxt ""
msgid "For example, click the arrow next to the <emph>Callouts</emph> icon <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Icon</alt></image> to open the Callouts toolbar."
msgstr "Például kattintson az <emph>Ábrafelirat</emph> <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Ikon</alt></image> ikon melletti nyílra az Ábrafelirat eszköztár megnyitásához."
-#. ,|{1
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2613,7 +2346,6 @@ msgctxt ""
msgid "Select a callout and move the mouse pointer to where you want the callout to start."
msgstr "Jelöljön ki egy ábrafeliratot, majd vigye oda az egeret, ahol az új feliratot szeretné kezdeni."
-#. p,g4
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2623,7 +2355,6 @@ msgctxt ""
msgid "Drag to draw the callout."
msgstr "Húzza az egeret a felirat megrajzolásához."
-#. BdhG
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2632,7 +2363,6 @@ msgctxt ""
msgid "Enter the text."
msgstr "Írja be a szöveget."
-#. jx,q
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2641,7 +2371,6 @@ msgctxt ""
msgid "Copying Text"
msgstr "Szöveg másolása"
-#. oVt7
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2650,7 +2379,6 @@ msgctxt ""
msgid "Select the text in your Writer document."
msgstr "Jelölje ki a képet a Writer-dokumentumban."
-#. +9?k
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2659,7 +2387,6 @@ msgctxt ""
msgid "Copy the text to the clipboard (<emph>Edit - Copy</emph>)."
msgstr "Másolja a szöveget a vágólapra (<emph>Szerkesztés - Másolás</emph>)."
-#. QAA8
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2668,7 +2395,6 @@ msgctxt ""
msgid "Click the page or slide where you want to paste the text."
msgstr "Kattintson az oldalra vagy diára, ahová be akarja illeszteni a szöveget."
-#. iLMN
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2677,7 +2403,6 @@ msgctxt ""
msgid "Paste the text using <emph>Edit - Paste</emph> or <emph>Edit - Paste special</emph>."
msgstr "Illessze be a szöveget a <emph>Szerkesztés - Beillesztés</emph> vagy <emph>Szerkesztés - Irányított beillesztés</emph> menüparanccsal."
-#. ^Y)e
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2686,7 +2411,6 @@ msgctxt ""
msgid "Using <emph>Paste special</emph>, you can choose the text format to be pasted. Depending on formats, you can copy different text attributes."
msgstr "Az <emph>Irányított beillesztés</emph> használatával megadhatja a beillesztendő szöveg formátumát. A formátumtól függően különböző szövegtulajdonságokat másolhat."
-#. DsjA
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2695,7 +2419,6 @@ msgctxt ""
msgid "Importing Text"
msgstr "Szöveg importálása"
-#. -(Qj
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2704,7 +2427,6 @@ msgctxt ""
msgid "Click the page or slide where you want to import the text."
msgstr "Kattintson az oldalra vagy diára, ahová importálni akarja a szöveget."
-#. r5mr
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
@@ -2713,7 +2435,6 @@ msgctxt ""
msgid "Choose <emph>Insert - File</emph>."
msgstr "Válassza a <emph>Beszúrás - Fájl</emph> lehetőséget."
-#. zVeP
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/shared.po b/source/hu/helpcontent2/source/text/shared.po
index 9252021fd56..55ede49436d 100644
--- a/source/hu/helpcontent2/source/text/shared.po
+++ b/source/hu/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-01-08 17:03+0100\n"
"Last-Translator: Andras Timar <timar@fsf.hu>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (TcZ
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Table Data Bar"
msgstr "Táblaadatok eszköztár"
-#. gMqr
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Táblaadatok eszköztár\">Táblaadatok eszköztár</link>"
-#. E623
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
msgstr "<ahelp hid=\".\">A Táblaadatok eszköztár segítségével vezérelje az adatnézetet. </ahelp>"
-#. _f6P
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
msgstr "A szűrt adatnézet addig aktív, amíg nem módosítja vagy törli a rendezési vagy szűrési feltételeket. Ha egy szűrő aktív, akkor a <emph>Táblaadatok</emph> eszköztáron lévő <emph>Szűrő alkalmazása</emph> ikon aktiválásra kerül."
-#. TCb2
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
msgstr "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Ikon</alt></image>"
-#. E[S0
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Save Record"
msgstr "Rekord mentése"
-#. Cnf6
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
msgstr "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Ikon</alt></image>"
-#. V:.W
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Undo: Data Input"
msgstr "Visszavonás: Adatbevitel"
-#. :Jqr
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
msgstr "<link href=\"text/shared/02/12070000.xhp\">Adatokat szöveggé</link>"
-#. 3,DB
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
msgstr "<ahelp hid=\".\">A megjelölt rekord összes mezőjét beszúrja az aktuális dokumentumba a kurzor pozíciójához.</ahelp>"
-#. ~l?h
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\">Körlevél</link>"
-#. j_E!
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
msgstr "<ahelp hid=\".\">Elindítja a Körlevéltündért körlevél létrehozásához.</ahelp>"
-#. g%!D
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "Status Bar in $[officename] Basic Documents"
msgstr "Állapotsor a $[officename] Basic-dokumentumokban"
-#. wSFF
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -147,7 +133,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Állapotsor a $[officename] Basic-dokumentumokban\">Állapotsor a $[officename] Basic-dokumentumokban</link>"
-#. =0xe
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -157,7 +142,6 @@ msgctxt ""
msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
msgstr "Az <emph>Állapotsor</emph> az aktuális $[officename] Basic-dokumentummal kapcsolatos információkat jelenít meg."
-#. UMp;
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -166,7 +150,6 @@ msgctxt ""
msgid "Programming $[officename]"
msgstr "A $[officename] programozása"
-#. 2o2G
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -175,7 +158,6 @@ msgctxt ""
msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
msgstr "<bookmark_value>programozás;$[officename]</bookmark_value><bookmark_value>Basic;programozás</bookmark_value>"
-#. J61S
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -185,7 +167,6 @@ msgctxt ""
msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"A $[officename] programozása\">A $[officename] programozása</link></variable>"
-#. #0aj
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
msgstr "<variable id=\"basic\">A $[officename] a $[officename] API használatával vezérelhető. </variable>"
-#. mD11
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -205,7 +185,6 @@ msgctxt ""
msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
msgstr "A $[officename] egy alkalmazásprogramozási felületet (API-t) biztosít, amely lehetővé teszi a $[officename] összetevőinek vezérlését különféle programozási nyelvekből. A programozási felülethez elérhető a $[officename] Software Development Kit."
-#. Zmp~
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -215,7 +194,6 @@ msgctxt ""
msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
msgstr "A $[officename] API referenciával kapcsolatos további információkért látogasson el a http://api.libreoffice.org/ címre."
-#. R6C4
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -225,7 +203,6 @@ msgctxt ""
msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
msgstr "A $[officename] Basic segítségével létrehozott, a régi programozási felületre épülő makrókat az aktuális verzió a továbbiakban nem támogatja."
-#. \/=r
#: main0600.xhp
msgctxt ""
"main0600.xhp\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
msgstr "A $[officename] Basic-kel kapcsolatos további információkért válassza a listában a \"$[officename] Basic Súgó\" elemet."
-#. :]#1
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -244,7 +220,6 @@ msgctxt ""
msgid "3D-Settings"
msgstr "Térbeli beállítások"
-#. ]]2j
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">3D-Settings</link></variable>"
msgstr "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">Térbeli beállítások</link></variable>"
-#. 7dwF
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -262,7 +236,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The 3D-Settings toolbar controls properties of selected 3D objects.</ahelp>"
msgstr "<ahelp hid=\".\">A Térbeli beállítások eszköztár elemei a kijelölt térbeli objektumok tulajdonságait képesek módosítani.</ahelp>"
-#. f6R!
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -271,7 +244,6 @@ msgctxt ""
msgid "Extrusion on/off"
msgstr "Kihúzás alkalmazása be/ki"
-#. E*g2
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -280,7 +252,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Switches the 3D effects on and off for the selected objects.</ahelp>"
msgstr "<ahelp hid=\".\">Bekapcsolja vagy kikapcsolja a kijelölt objektumok térhatását.</ahelp>"
-#. ()w7
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -289,7 +260,6 @@ msgctxt ""
msgid "Tilt Down"
msgstr "Lefele dőlés"
-#. sR#+
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -298,7 +268,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tilts the selected object downwards by five degrees.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt objektumot öt fokkal lejjebb dönti.</ahelp>"
-#. fZSQ
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -307,7 +276,6 @@ msgctxt ""
msgid "Tilt Up"
msgstr "Felfelé dőlés"
-#. 50$q
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -316,7 +284,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tilts the selected object upwards by five degrees.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt objektumot öt fokkal feljebb dönti.</ahelp>"
-#. rU5B
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -325,7 +292,6 @@ msgctxt ""
msgid "Tilt Left"
msgstr "Balra dőlés"
-#. qZ\@
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -334,7 +300,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tilts the selected object left by five degrees.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt objektumot öt fokkal balra dönti.</ahelp>"
-#. B]((
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -343,7 +308,6 @@ msgctxt ""
msgid "Tilt Right"
msgstr "Jobbra dőlés"
-#. SN2s
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -352,7 +316,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tilts the selected object right by five degrees.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt objektumot öt fokkal jobbra dönti.</ahelp>"
-#. !QB+
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -361,7 +324,6 @@ msgctxt ""
msgid "Depth"
msgstr "Mélység"
-#. XFA1
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -370,7 +332,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Depth window.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Kihúzás mélysége ablakot.</ahelp>"
-#. .4)o
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -379,7 +340,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an extrusion depth.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja a kihúzás mélységét.</ahelp>"
-#. OB.#
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -388,7 +348,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter an extrusion depth.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a kihúzás mélységét.</ahelp>"
-#. ~:J2
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -397,7 +356,6 @@ msgctxt ""
msgid "Direction"
msgstr "Irány"
-#. j0.\
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -406,7 +364,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Direction window.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Kihúzás iránya ablakot.</ahelp>"
-#. 1v!,
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -415,7 +372,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a direction.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja az irányt.</ahelp>"
-#. GL[q
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -424,7 +380,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a perspective or parallel extrusion method.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja a perspektivikus vagy a párhuzamos kihúzási módszert.</ahelp>"
-#. m;3E
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -433,7 +388,6 @@ msgctxt ""
msgid "Lighting"
msgstr "Megvilágítás"
-#. 2aMN
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -442,7 +396,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Lighting window.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Kihúzás megvilágítása ablakot.</ahelp>"
-#. c,^H
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -451,7 +404,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a lighting direction.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja a megvilágítás irányát.</ahelp>"
-#. @:.`
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -460,7 +412,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a lighting intensity.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja a megvilágítás intenzitását.</ahelp>"
-#. Dtd\
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -469,7 +420,6 @@ msgctxt ""
msgid "Surface"
msgstr "Felület"
-#. 0@RT
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -478,7 +428,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Surface window.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Kihúzás felülete ablakot.</ahelp>"
-#. Ie5n
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -487,7 +436,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a surface material or a wireframe display.</ahelp>"
msgstr "<ahelp hid=\".\">Kiválasztja a felület anyagát vagy a drótvázas megjelenítést.</ahelp>"
-#. NQE+
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -496,7 +444,6 @@ msgctxt ""
msgid "3D Color"
msgstr "Térbeli anyag színe"
-#. v8U(
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -505,1177 +452,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Color toolbar.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Kihúzás színe eszköztárat.</ahelp>"
-#. 7nbg
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3147571\n"
-"3\n"
-"help.text"
-msgid "<help_section application=\"swriter\" id=\"02\" title=\"Text Documents\">"
-msgstr "<help_section application=\"swriter\" id=\"02\" title=\"Szövegdokumentumok\">"
-
-#. !i`M
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3157959\n"
-"4\n"
-"help.text"
-msgid "<node id=\"0201\" title=\"General Information and User Interface Usage\">"
-msgstr "<node id=\"0201\" title=\"Általános információk és a felhasználói felület használata\">"
-
-#. @zAL
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153527\n"
-"5\n"
-"help.text"
-msgid "<node id=\"0202\" title=\"Command and Menu Reference\">"
-msgstr "<node id=\"0202\" title=\"Parancs- és menüreferencia\">"
-
-#. 3B~g
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153311\n"
-"6\n"
-"help.text"
-msgid "<node id=\"020201\" title=\"Menus\">"
-msgstr "<node id=\"020201\" title=\"Menük\">"
-
-#. ,KtN
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149182\n"
-"7\n"
-"help.text"
-msgid "<node id=\"020202\" title=\"Toolbars\">"
-msgstr "<node id=\"020202\" title=\"Eszköztárak\">"
-
-#. `*nX
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145383\n"
-"8\n"
-"help.text"
-msgid "<node id=\"0203\" title=\"Creating Text Documents\">"
-msgstr "<node id=\"0203\" title=\"Szöveges dokumentumok készítése\">"
-
-#. ;+Yv
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149812\n"
-"9\n"
-"help.text"
-msgid "<node id=\"0204\" title=\"Graphics in Text Documents\">"
-msgstr "<node id=\"0204\" title=\"Grafikus elemek szöveges dokumentumokban\">"
-
-#. 3`W_
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3166461\n"
-"10\n"
-"help.text"
-msgid "<node id=\"0205\" title=\"Tables in Text Documents\">"
-msgstr "<node id=\"0205\" title=\"Táblázatok szöveges dokumentumokban\">"
-
-#. 3Y?I
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155136\n"
-"11\n"
-"help.text"
-msgid "<node id=\"0206\" title=\"Objects in Text Documents\">"
-msgstr "<node id=\"0206\" title=\"Objektumok szöveges dokumentumokban\">"
-
-#. 9O8X
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155629\n"
-"12\n"
-"help.text"
-msgid "<node id=\"0207\" title=\"Sections and Frames in Text Documents\">"
-msgstr "<node id=\"0207\" title=\"Szakaszok és keretek szöveges dokumentumokban\">"
-
-#. x%8=
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150670\n"
-"13\n"
-"help.text"
-msgid "<node id=\"0208\" title=\"Tables of Contents and Indexes\">"
-msgstr "<node id=\"0208\" title=\"Tartalomjegyzék és egyéb jegyzékek\">"
-
-#. H2D6
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153349\n"
-"14\n"
-"help.text"
-msgid "<node id=\"0209\" title=\"Fields in Text Documents\">"
-msgstr "<node id=\"0209\" title=\"Mezők a szöveges dokumentumokban\">"
-
-#. -mwA
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145120\n"
-"15\n"
-"help.text"
-msgid "<node id=\"0210\" title=\"Navigating Text Documents\">"
-msgstr "<node id=\"0210\" title=\"Navigáció a szöveges dokumentumokban\">"
-
-#. n,*-
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3159400\n"
-"16\n"
-"help.text"
-msgid "<node id=\"0211\" title=\"Calculating in Text Documents\">"
-msgstr "<node id=\"0211\" title=\"Számítások szöveges dokumentumokban\">"
-
-#. zH#c
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145674\n"
-"17\n"
-"help.text"
-msgid "<node id=\"0212\" title=\"Formatting Text Documents\">"
-msgstr "<node id=\"0212\" title=\"Szöveges dokumentumok formázása\">"
-
-#. NLNj
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3143229\n"
-"18\n"
-"help.text"
-msgid "<node id=\"021201\" title=\"Templates and Styles\">"
-msgstr "<node id=\"021201\" title=\"Sablonok és stílusok\">"
-
-#. (aaq
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3157910\n"
-"19\n"
-"help.text"
-msgid "<node id=\"0213\" title=\"Special Text Elements\">"
-msgstr "<node id=\"0213\" title=\"Speciális szövegelemek\">"
-
-#. fk`O
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148564\n"
-"20\n"
-"help.text"
-msgid "<node id=\"0214\" title=\"Automatic Functions\">"
-msgstr "<node id=\"0214\" title=\"Automatikus funkciók\">"
-
-#. 3s,m
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145609\n"
-"21\n"
-"help.text"
-msgid "<node id=\"0215\" title=\"Numbering and Lists\">"
-msgstr "<node id=\"0215\" title=\"Számozások és listák\">"
-
-#. C?bO
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146794\n"
-"22\n"
-"help.text"
-msgid "<node id=\"0216\" title=\"Spellchecking, Thesaurus, and Languages\">"
-msgstr "<node id=\"0216\" title=\"Helyesírás-ellenőrzés, Szókincstár és nyelvek\">"
-
-#. /v[6
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3159413\n"
-"23\n"
-"help.text"
-msgid "<node id=\"0217\" title=\"Forms in Text Documents\">"
-msgstr "<node id=\"0217\" title=\"Űrlapok szöveges dokumentumokban\">"
-
-#. LDF-
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149656\n"
-"24\n"
-"help.text"
-msgid "<node id=\"0218\" title=\"Troubleshooting Tips\">"
-msgstr "<node id=\"0218\" title=\"Hibaelhárítási javaslatok\">"
-
-#. o,ek
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150398\n"
-"25\n"
-"help.text"
-msgid "<node id=\"0219\" title=\"Loading, Saving, Importing, and Exporting\">"
-msgstr "<node id=\"0219\" title=\"Betöltés, mentés, importálás és exportálás\">"
-
-#. Zj)M
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153524\n"
-"26\n"
-"help.text"
-msgid "<node id=\"0220\" title=\"Master Documents\">"
-msgstr "<node id=\"0220\" title=\"Fődokumentumok\">"
-
-#. Uq\R
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154367\n"
-"27\n"
-"help.text"
-msgid "<node id=\"0221\" title=\"Links and References\">"
-msgstr "<node id=\"0221\" title=\"Hivatkozások\">"
-
-#. $2Du
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3159152\n"
-"28\n"
-"help.text"
-msgid "<node id=\"0222\" title=\"Printing\">"
-msgstr "<node id=\"0222\" title=\"Nyomtatás\">"
-
-#. %!f2
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145421\n"
-"29\n"
-"help.text"
-msgid "<node id=\"0223\" title=\"Searching and Replacing\">"
-msgstr "<node id=\"0223\" title=\"Keresés és csere\">"
-
-#. O2T5
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150871\n"
-"30\n"
-"help.text"
-msgid "<help_section application=\"swriter\" id=\"06\" title=\"HTML Documents\">"
-msgstr "<help_section application=\"swriter\" id=\"06\" title=\"HTML-dokumentumok\">"
-
-#. FcMp
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150768\n"
-"32\n"
-"help.text"
-msgid "<help_section application=\"swriter\" id=\"01\" title=\"Installation\">"
-msgstr "<help_section application=\"swriter\" id=\"01\" title=\"Telepítés\">"
-
-#. \ftE
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3147229\n"
-"33\n"
-"help.text"
-msgid "<help_section application=\"swriter\" id=\"10\" title=\"Common Help Topics\">"
-msgstr "<help_section application=\"swriter\" id=\"10\" title=\"Általános súgótémakörök\">"
-
-#. TbIN
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3152934\n"
-"34\n"
-"help.text"
-msgid "<node id=\"1001\" title=\"General Information\">"
-msgstr "<node id=\"1001\" title=\"Általános információk\">"
-
-#. iGH$
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155429\n"
-"107\n"
-"help.text"
-msgid "<node id=\"1002\" title=\"%PRODUCTNAME and Microsoft Office\">"
-msgstr "<node id=\"1002\" title=\"%PRODUCTNAME és Microsoft Office\">"
-
-#. !2.n
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153368\n"
-"35\n"
-"help.text"
-msgid "<node id=\"1003\" title=\"Command and Menu Reference\">"
-msgstr "<node id=\"1003\" title=\"Parancs- és menüreferencia\">"
-
-#. XBPD
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146147\n"
-"36\n"
-"help.text"
-msgid "<node id=\"1004\" title=\"%PRODUCTNAME Options\">"
-msgstr "<node id=\"1004\" title=\"%PRODUCTNAME beállításai\">"
-
-#. ,}hD
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145365\n"
-"37\n"
-"help.text"
-msgid "<node id=\"1005\" title=\"Wizards\">"
-msgstr "<node id=\"1005\" title=\"Tündérek\">"
-
-#. N#8T
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150487\n"
-"38\n"
-"help.text"
-msgid "<node id=\"100501\" title=\"Letter Wizard\">"
-msgstr "<node id=\"100501\" title=\"Levéltündér\">"
-
-#. 1tPO
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3151113\n"
-"39\n"
-"help.text"
-msgid "<node id=\"100502\" title=\"Fax Wizard\">"
-msgstr "<node id=\"100502\" title=\"Faxtündér\">"
-
-#. p?q7
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156442\n"
-"41\n"
-"help.text"
-msgid "<node id=\"100504\" title=\"Agenda Wizard\">"
-msgstr "<node id=\"100504\" title=\"Napirend tündér\">"
-
-#. 6C!o
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146975\n"
-"42\n"
-"help.text"
-msgid "<node id=\"100505\" title=\"Presentation Wizard\">"
-msgstr "<node id=\"100505\" title=\"Bemutatótündér\">"
-
-#. bPla
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148617\n"
-"43\n"
-"help.text"
-msgid "<node id=\"100506\" title=\"HTML Export Wizard\">"
-msgstr "<node id=\"100506\" title=\"HTML-exportálás tündér\">"
-
-#. C~.C
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153143\n"
-"44\n"
-"help.text"
-msgid "<node id=\"100507\" title=\"Group Element Wizard\">"
-msgstr "<node id=\"100507\" title=\"Csoportelem tündér\">"
-
-#. fHpb
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153574\n"
-"46\n"
-"help.text"
-msgid "<node id=\"100509\" title=\"Forms Wizard\">"
-msgstr "<node id=\"100509\" title=\"Űrlaptündér\">"
-
-#. rD\U
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146921\n"
-"47\n"
-"help.text"
-msgid "<node id=\"100510\" title=\"Document Converter Wizard\">"
-msgstr "<node id=\"100510\" title=\"Dokumentumátalakító tündér\">"
-
-#. 3VW5
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154096\n"
-"48\n"
-"help.text"
-msgid "<node id=\"100511\" title=\"Table Element Wizard\">"
-msgstr "<node id=\"100511\" title=\"Táblaelem tündér\">"
-
-#. 3K!C
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3144766\n"
-"49\n"
-"help.text"
-msgid "<node id=\"100512\" title=\"Combo Box/List Box Wizard\">"
-msgstr "<node id=\"100512\" title=\"Lista / Kombinált lista tündér\">"
-
-#. Qip~
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154729\n"
-"108\n"
-"help.text"
-msgid "<node id=\"1006\" title=\"Configuring %PRODUCTNAME\">"
-msgstr "<node id=\"1006\" title=\"A %PRODUCTNAME beállítása\">"
-
-#. T:!o
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3151076\n"
-"109\n"
-"help.text"
-msgid "<node id=\"1007\" title=\"Working with the User Interface\">"
-msgstr "<node id=\"1007\" title=\"Felhasználói felület kezelése\">"
-
-#. ]QeO
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3147125\n"
-"110\n"
-"help.text"
-msgid "<node id=\"1008\" title=\"Printing, Faxing, Sending\">"
-msgstr "<node id=\"1008\" title=\"Nyomtatás, faxolás, küldés\">"
-
-#. 4dF[
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149418\n"
-"111\n"
-"help.text"
-msgid "<node id=\"1009\" title=\"Drag & Drop\">"
-msgstr "<node id=\"1009\" title=\"Fogd és vidd\">"
-
-#. A*c9
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154016\n"
-"112\n"
-"help.text"
-msgid "<node id=\"1010\" title=\"Copy and Paste\">"
-msgstr "<node id=\"1010\" title=\"Másolás és beillesztés\">"
-
-#. !_MJ
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156180\n"
-"113\n"
-"help.text"
-msgid "<node id=\"1011\" title=\"Databases\">"
-msgstr "<node id=\"1011\" title=\"Adatbázisok\">"
-
-#. 1jc]
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150715\n"
-"114\n"
-"help.text"
-msgid "<node id=\"1012\" title=\"Charts and Diagrams\">"
-msgstr "<node id=\"1012\" title=\"Diagramok\">"
-
-#. !5?R
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154164\n"
-"115\n"
-"help.text"
-msgid "<node id=\"1013\" title=\"Load, Save, Import, Export\">"
-msgstr "<node id=\"1013\" title=\"Betöltés, mentés, importálás, exportálás\">"
-
-#. (=3T
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145650\n"
-"116\n"
-"help.text"
-msgid "<node id=\"1014\" title=\"Links and References\">"
-msgstr "<node id=\"1014\" title=\"Hivatkozások\">"
-
-#. /h:^
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153838\n"
-"117\n"
-"help.text"
-msgid "<node id=\"1015\" title=\"Document Version Tracking\">"
-msgstr "<node id=\"1015\" title=\"Dokumentumverziók nyomon követése\">"
-
-#. xsH$
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150327\n"
-"118\n"
-"help.text"
-msgid "<node id=\"1016\" title=\"Labels and Business Cards\">"
-msgstr "<node id=\"1016\" title=\"Címkék és névjegyek\">"
-
-#. x-oj
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153708\n"
-"119\n"
-"help.text"
-msgid "<node id=\"1018\" title=\"Inserting External Data\">"
-msgstr "<node id=\"1018\" title=\"Külső adatok beszúrása\">"
-
-#. B[f$
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148916\n"
-"120\n"
-"help.text"
-msgid "<node id=\"1019\" title=\"Automatic Functions\">"
-msgstr "<node id=\"1019\" title=\"Automatikus funkciók\">"
-
-#. RwAo
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3152964\n"
-"121\n"
-"help.text"
-msgid "<node id=\"1020\" title=\"Searching and Replacing\">"
-msgstr "<node id=\"1020\" title=\"Keresés és csere\">"
-
-#. b`vI
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153765\n"
-"50\n"
-"help.text"
-msgid "<node id=\"1021\" title=\"Guides\">"
-msgstr "<node id=\"1021\" title=\"Útmutatók\">"
-
-#. tCe@
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154361\n"
-"51\n"
-"help.text"
-msgid "<help_section application=\"swriter\" id=\"09\" title=\"Database Functionality\">"
-msgstr "<help_section application=\"swriter\" id=\"09\" title=\"Adatbázis-funkciók\">"
-
-#. ROAh
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150043\n"
-"122\n"
-"help.text"
-msgid "<node id=\"0901\" title=\"General Information\">"
-msgstr "<node id=\"0901\" title=\"Általános információk\">"
-
-#. 75d6
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154254\n"
-"123\n"
-"help.text"
-msgid "<node id=\"0902\" title=\"Data Sources\">"
-msgstr "<node id=\"0902\" title=\"Adatforrások\">"
-
-#. ;,HO
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149565\n"
-"124\n"
-"help.text"
-msgid "<node id=\"0903\" title=\"Forms\">"
-msgstr "<node id=\"0903\" title=\"Űrlapok\">"
-
-#. rA*F
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155334\n"
-"125\n"
-"help.text"
-msgid "<node id=\"0904\" title=\"Tables, Queries and Indexes\">"
-msgstr "<node id=\"0904\" title=\"Táblák, lekérdezések és indexek\">"
-
-#. wb72
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149107\n"
-"126\n"
-"help.text"
-msgid "<node id=\"0905\" title=\"Relations\">"
-msgstr "<node id=\"0905\" title=\"Relációk\">"
-
-#. mSP$
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155937\n"
-"127\n"
-"help.text"
-msgid "<node id=\"0906\" title=\"Reports\">"
-msgstr "<node id=\"0906\" title=\"Jelentések\">"
-
-#. ?!Zs
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153963\n"
-"53\n"
-"help.text"
-msgid "<help_section application=\"sbasic\" id=\"07\" title=\"Macros and Programming\">"
-msgstr "<help_section application=\"sbasic\" id=\"07\" title=\"Makrók és programozás\">"
-
-#. 7K*-
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3151248\n"
-"54\n"
-"help.text"
-msgid "<node id=\"0701\" title=\"General Information and User Interface Usage\">"
-msgstr "<node id=\"0701\" title=\"Általános információk és a felhasználói felület használata\">"
-
-#. VZA\
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154023\n"
-"55\n"
-"help.text"
-msgid "<node id=\"0702\" title=\"Command Reference\">"
-msgstr "<node id=\"0702\" title=\"Parancsreferencia\">"
-
-#. 7IJd
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149924\n"
-"56\n"
-"help.text"
-msgid "<node id=\"070201\" title=\"Alphabetic List of Functions, Statements, and Operators\">"
-msgstr "<node id=\"070201\" title=\"Függvények, utasítások és operátorok betűrendbe szedett felsorolása\">"
-
-#. 6D2:
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145769\n"
-"128\n"
-"help.text"
-msgid "<node id=\"070202\" title=\"Run-Time Functions, Statements, and Operators\">"
-msgstr "<node id=\"070202\" title=\"Futási függvények, utasítások és operátorok\">"
-
-#. W-?q
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155606\n"
-"57\n"
-"help.text"
-msgid "<node id=\"0703\" title=\"Guides\">"
-msgstr "<node id=\"0703\" title=\"Útmutatók\">"
-
-#. bd#,
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149210\n"
-"59\n"
-"help.text"
-msgid "<help_section application=\"scalc\" id=\"08\" title=\"Spreadsheets\">"
-msgstr "<help_section application=\"scalc\" id=\"08\" title=\"Munkafüzetek\">"
-
-#. 3|QS
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155582\n"
-"60\n"
-"help.text"
-msgid "<node id=\"0801\" title=\"General Information and User Interface Usage\">"
-msgstr "<node id=\"0801\" title=\"Általános információk és a felhasználói felület használata\">"
-
-#. B4,H
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149033\n"
-"61\n"
-"help.text"
-msgid "<node id=\"0802\" title=\"Command and Menu Reference\">"
-msgstr "<node id=\"0802\" title=\"Parancs- és menüreferencia\">"
-
-#. id8G
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148630\n"
-"62\n"
-"help.text"
-msgid "<node id=\"080201\" title=\"Menus\">"
-msgstr "<node id=\"080201\" title=\"Menük\">"
-
-#. YI{G
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156138\n"
-"63\n"
-"help.text"
-msgid "<node id=\"080202\" title=\"Toolbars\">"
-msgstr "<node id=\"080202\" title=\"Eszköztárak\">"
-
-#. ;Z![
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3159236\n"
-"64\n"
-"help.text"
-msgid "<node id=\"0803\" title=\"Functions Types and Operators\">"
-msgstr "<node id=\"0803\" title=\"Függvénytípusok és operátorok\">"
-
-#. YkRE
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153197\n"
-"65\n"
-"help.text"
-msgid "<node id=\"0804\" title=\"Loading, Saving, Importing, and Exporting\">"
-msgstr "<node id=\"0804\" title=\"Betöltés, mentés, importálás és exportálás\">"
-
-#. P/%E
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153705\n"
-"66\n"
-"help.text"
-msgid "<node id=\"0805\" title=\"Formatting\">"
-msgstr "<node id=\"0805\" title=\"Formázás\">"
-
-#. 0]K]
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3166425\n"
-"67\n"
-"help.text"
-msgid "<node id=\"0806\" title=\"Filtering and Sorting\">"
-msgstr "<node id=\"0806\" title=\"Szűrés és rendezés\">"
-
-#. siF1
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154716\n"
-"68\n"
-"help.text"
-msgid "<node id=\"0807\" title=\"Printing\">"
-msgstr "<node id=\"0807\" title=\"Nyomtatás\">"
-
-#. VyZ+
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150344\n"
-"69\n"
-"help.text"
-msgid "<node id=\"0808\" title=\"Data Ranges\">"
-msgstr "<node id=\"0808\" title=\"Adattartományok\">"
-
-#. 1R]O
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150364\n"
-"70\n"
-"help.text"
-msgid "<node id=\"0809\" title=\"Pivot Table\">"
-msgstr "<node id=\"0809\" title=\"Kimutatástábla\">"
-
-#. y.z5
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149966\n"
-"71\n"
-"help.text"
-msgid "<node id=\"0810\" title=\"Scenarios\">"
-msgstr "<node id=\"0810\" title=\"Esetek\">"
-
-#. ll+R
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146811\n"
-"72\n"
-"help.text"
-msgid "<node id=\"0811\" title=\"References\">"
-msgstr "<node id=\"0811\" title=\"Hivatkozások\">"
-
-#. Mu5k
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148421\n"
-"73\n"
-"help.text"
-msgid "<node id=\"0812\" title=\"Viewing, Selecting, Copying\">"
-msgstr "<node id=\"0812\" title=\"Megjelenítés, kijelölés, másolás\">"
-
-#. 3M_M
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145258\n"
-"74\n"
-"help.text"
-msgid "<node id=\"0813\" title=\"Formulas and Calculations\">"
-msgstr "<node id=\"0813\" title=\"Képletek és számítások\">"
-
-#. Uv4j
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3145586\n"
-"75\n"
-"help.text"
-msgid "<node id=\"0814\" title=\"Protection\">"
-msgstr "<node id=\"0814\" title=\"Védelem\">"
-
-#. n|%Z
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150885\n"
-"76\n"
-"help.text"
-msgid "<node id=\"0815\" title=\"Miscellaneous\">"
-msgstr "<node id=\"0815\" title=\"Egyebek\">"
-
-#. jN5B
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150519\n"
-"78\n"
-"help.text"
-msgid "<help_section application=\"smath\" id=\"03\" title=\"Formulas\">"
-msgstr "<help_section application=\"smath\" id=\"03\" title=\"Képletek\">"
-
-#. \b6h
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155529\n"
-"79\n"
-"help.text"
-msgid "<node id=\"0301\" title=\"General Information and User Interface Usage\">"
-msgstr "<node id=\"0301\" title=\"Általános információk és a felhasználói felület használata\">"
-
-#. L[%E
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150522\n"
-"80\n"
-"help.text"
-msgid "<node id=\"0302\" title=\"Command and Menu Reference\">"
-msgstr "<node id=\"0302\" title=\"Parancs- és menüreferencia\">"
-
-#. hwM!
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146978\n"
-"81\n"
-"help.text"
-msgid "<node id=\"0303\" title=\"Working with Formulas\">"
-msgstr "<node id=\"0303\" title=\"Munka képletekkel\">"
-
-#. tF^L
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156168\n"
-"83\n"
-"help.text"
-msgid "<help_section application=\"simpress\" id=\"04\" title=\"Presentations and Drawings\">"
-msgstr "<help_section application=\"simpress\" id=\"04\" title=\"Bemutatók és rajzok\">"
-
-#. ,+79
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155129\n"
-"84\n"
-"help.text"
-msgid "<node id=\"0401\" title=\"General Information and User Interface Usage\">"
-msgstr "<node id=\"0401\" title=\"Általános információk és a felhasználói felület használata\">"
-
-#. [Wfq
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3152890\n"
-"85\n"
-"help.text"
-msgid "<node id=\"0402\" title=\"Command and Menu Reference\">"
-msgstr "<node id=\"0402\" title=\"Parancs- és menüreferencia\">"
-
-#. x4)j
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155089\n"
-"86\n"
-"help.text"
-msgid "<node id=\"040201\" title=\"Presentations (%PRODUCTNAME Impress)\">"
-msgstr "<node id=\"040201\" title=\"Bemutatók (%PRODUCTNAME Impress)\">"
-
-#. (gsJ
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153305\n"
-"87\n"
-"help.text"
-msgid "<node id=\"04020101\" title=\"Menus\">"
-msgstr "<node id=\"04020101\" title=\"Menük\">"
-
-#. 2/0.
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148841\n"
-"88\n"
-"help.text"
-msgid "<node id=\"04020102\" title=\"Toolbars\">"
-msgstr "<node id=\"04020102\" title=\"Eszköztárak\">"
-
-#. T5ZI
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156200\n"
-"89\n"
-"help.text"
-msgid "<node id=\"040202\" title=\"Drawings (%PRODUCTNAME Draw)\">"
-msgstr "<node id=\"040202\" title=\"Rajzok (%PRODUCTNAME Draw)\">"
-
-#. 30H!
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153816\n"
-"90\n"
-"help.text"
-msgid "<node id=\"04020201\" title=\"Menus\">"
-msgstr "<node id=\"04020201\" title=\"Menük\">"
-
-#. JlT.
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3146154\n"
-"91\n"
-"help.text"
-msgid "<node id=\"04020202\" title=\"Toolbars\">"
-msgstr "<node id=\"04020202\" title=\"Eszköztárak\">"
-
-#. =wzs
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148866\n"
-"92\n"
-"help.text"
-msgid "<node id=\"0403\" title=\"Loading, Saving, Importing, and Exporting\">"
-msgstr "<node id=\"0403\" title=\"Betöltés, mentés, importálás és exportálás\">"
-
-#. :-a4
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3151244\n"
-"93\n"
-"help.text"
-msgid "<node id=\"0404\" title=\"Formatting\">"
-msgstr "<node id=\"0404\" title=\"Formázás\">"
-
-#. -lfM
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3149329\n"
-"94\n"
-"help.text"
-msgid "<node id=\"0405\" title=\"Printing\">"
-msgstr "<node id=\"0405\" title=\"Nyomtatás\">"
-
-#. 40|,
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150318\n"
-"95\n"
-"help.text"
-msgid "<node id=\"0406\" title=\"Effects\">"
-msgstr "<node id=\"0406\" title=\"Hatások\">"
-
-#. XP4{
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3150107\n"
-"96\n"
-"help.text"
-msgid "<node id=\"0407\" title=\"Objects, Graphics, and Bitmaps\">"
-msgstr "<node id=\"0407\" title=\"Objektumok, grafikák és bitképek\">"
-
-#. 8_]k
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154343\n"
-"97\n"
-"help.text"
-msgid "<node id=\"0408\" title=\"Groups and Layers\">"
-msgstr "<node id=\"0408\" title=\"Csoportok és rétegek\">"
-
-#. aoVQ
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3148604\n"
-"98\n"
-"help.text"
-msgid "<node id=\"0409\" title=\"Text in Presentations and Drawings\">"
-msgstr "<node id=\"0409\" title=\"Szöveg bemutatókban és rajzokban\">"
-
-#. 6m!2
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3155269\n"
-"99\n"
-"help.text"
-msgid "<node id=\"0410\" title=\"Viewing\">"
-msgstr "<node id=\"0410\" title=\"Megtekintés\">"
-
-#. Y]z`
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156351\n"
-"101\n"
-"help.text"
-msgid "<help_section application=\"scalc\" id=\"05\" title=\"Charts and Diagrams\">"
-msgstr "<help_section application=\"scalc\" id=\"05\" title=\"Diagramok\">"
-
-#. z,hq
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156177\n"
-"102\n"
-"help.text"
-msgid "<node id=\"0501\" title=\"General Information\">"
-msgstr "<node id=\"0501\" title=\"Általános információk\">"
-
-#. -c?I
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3156036\n"
-"103\n"
-"help.text"
-msgid "<node id=\"0502\" title=\"Command and Menu Reference\">"
-msgstr "<node id=\"0502\" title=\"Parancs- és menüreferencia\">"
-
-#. FiAm
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3153285\n"
-"104\n"
-"help.text"
-msgid "<node id=\"050201\" title=\"Menus\">"
-msgstr "<node id=\"050201\" title=\"Menük\">"
-
-#. A/4S
-#: tree_strings.xhp
-msgctxt ""
-"tree_strings.xhp\n"
-"par_id3154959\n"
-"105\n"
-"help.text"
-msgid "<node id=\"050202\" title=\"Toolbars\">"
-msgstr "<node id=\"050202\" title=\"Eszköztárak\">"
-
-#. NzpO
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1684,7 +460,6 @@ msgctxt ""
msgid "Standard Bar"
msgstr "Standard eszköztár"
-#. rhf2
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1694,7 +469,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">Standard Bar</link>"
msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standard eszköztár\">Standard eszköztár</link>"
-#. 7A76
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1704,7 +478,6 @@ msgctxt ""
msgid "<ahelp hid=\"RID_ENVTOOLBOX\">The <emph>Standard</emph> bar is available in every $[officename] application.</ahelp>"
msgstr "<ahelp hid=\"RID_ENVTOOLBOX\">A <emph>Standard</emph> eszköztár mindegyik $[officename]-alkalmazásnak része.</ahelp>"
-#. N%E(
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1714,7 +487,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">Open File</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Megnyitás\">Megnyitás</link>"
-#. oMNu
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1723,7 +495,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01070000.xhp\">Save As</link>"
msgstr "<link href=\"text/shared/01/01070000.xhp\">Mentés másként</link>"
-#. 9HnH
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1732,7 +503,6 @@ msgctxt ""
msgid "<embedvar href=\"text/shared/01/01070000.xhp#speichernuntertext\"/>"
msgstr "<embedvar href=\"text/shared/01/01070000.xhp#speichernuntertext\"/>"
-#. 9|4[
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1741,7 +511,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06010000.xhp\">Spellcheck</link>"
msgstr "<link href=\"text/shared/01/06010000.xhp\">Helyesírás és nyelvhelyesség</link>"
-#. (mNB
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1750,7 +519,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Checks the document or the current selection for spelling errors.</ahelp>"
msgstr "<ahelp hid=\".\">Ellenőrzi a helyesírást a dokumentumban vagy az aktuális kijelölésben.</ahelp>"
-#. vvCN
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1759,7 +527,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Insert Chart</link>"
msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagram beszúrása</link>"
-#. BITr
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1768,7 +535,6 @@ msgctxt ""
msgid "Creates a chart in the current document."
msgstr "Diagramot készít az aktuális dokumentumban."
-#. $_$r
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1777,7 +543,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12030100.xhp\">Sort Descending / Sort Ascending</link>"
msgstr "<link href=\"text/scalc/01/12030100.xhp\">Rendezés csökkenő sorrendben / Rendezés növekvő sorrendben</link>"
-#. X#@(
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1786,7 +551,6 @@ msgctxt ""
msgid "Sorts the selection from the highest to the lowest value, or from the lowest to the highest value using the column that contains the cursor."
msgstr "A kijelölt részt csökkenő vagy növekvő sorrendbe rendezi, a kurzort tartalmazó oszlop alapján."
-#. `*Yb
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1795,7 +559,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Chart</link>"
msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagram</link>"
-#. #-et
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1804,7 +567,6 @@ msgctxt ""
msgid "Creates a chart in the current document."
msgstr "Diagramot készít az aktuális dokumentumban."
-#. l@cA
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1813,7 +575,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "Munkafüzet"
-#. jsfC
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1822,7 +583,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts a spreadsheet as an OLE object. Enter or paste data into the cells, then click outside the object to return to Impress.</ahelp>"
msgstr "<ahelp hid=\".\">Beilleszt egy munkalapot OLE-objektumként. Írja be vagy illessze be az adatokat a cellákba, majd kattintson az objektumon kívül az Impressbe való visszatéréshez.</ahelp>"
-#. /LcG
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1831,7 +591,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Rács megjelenése\">Rács megjelenése</link>"
-#. !n,A
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1840,7 +599,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Chart</link>"
msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagram</link>"
-#. LW#|
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1849,7 +607,6 @@ msgctxt ""
msgid "Creates a chart in the current document."
msgstr "Diagramot készít az aktuális dokumentumban."
-#. n\MF
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1858,7 +615,6 @@ msgctxt ""
msgid "<image id=\"img_id3153070\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153070\">Icon</alt></image>"
msgstr "<image id=\"img_id3153070\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153070\">Ikon</alt></image>"
-#. #sa#
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1867,7 +623,6 @@ msgctxt ""
msgid "Zoom"
msgstr "Nagyítás"
-#. 8^)u
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1876,7 +631,6 @@ msgctxt ""
msgid "What's this"
msgstr "Mi ez?"
-#. tm._
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1885,7 +639,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enables extended help tips under the mouse pointer till the next click.</ahelp>"
msgstr "<ahelp hid=\".\">A részletes tippek a következő egérkattintásig láthatók maradnak.</ahelp>"
-#. :a5a
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1894,7 +647,6 @@ msgctxt ""
msgid "<image id=\"img_id3174230\" src=\"cmd/sc_extendedhelp.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3174230\">icon</alt></image>"
msgstr "<image id=\"img_id3174230\" src=\"cmd/sc_extendedhelp.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3174230\">ikon</alt></image>"
-#. }7lH
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -1903,7 +655,6 @@ msgctxt ""
msgid "What's this"
msgstr "Mi ez?"
-#. 1-eZ
#: main0800.xhp
msgctxt ""
"main0800.xhp\n"
@@ -1912,7 +663,6 @@ msgctxt ""
msgid "$[officename] and the Internet"
msgstr "A $[officename] és az internet"
-#. XVmp
#: main0800.xhp
msgctxt ""
"main0800.xhp\n"
@@ -1922,7 +672,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
msgstr "<link href=\"text/shared/main0800.xhp\" name=\"A $[officename] és az internet\">A $[officename] és az internet</link>"
-#. PiL7
#: main0800.xhp
msgctxt ""
"main0800.xhp\n"
@@ -1932,7 +681,6 @@ msgctxt ""
msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
msgstr "Ez a szakasz az internettel kapcsolatos információkkal szolgál. Egy <link href=\"text/shared/00/00000002.xhp\" name=\"internetes szószedet\">internetes szószedet</link> elmagyarázza a legfontosabb kifejezéseket."
-#. zv,`
#: main0500.xhp
msgctxt ""
"main0500.xhp\n"
@@ -1941,7 +689,6 @@ msgctxt ""
msgid "Glossaries"
msgstr "Szószedetek"
-#. n]66
#: main0500.xhp
msgctxt ""
"main0500.xhp\n"
@@ -1951,7 +698,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Szószedetek\">Szószedetek</link>"
-#. -S53
#: main0500.xhp
msgctxt ""
"main0500.xhp\n"
@@ -1961,7 +707,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "Ez a szakasz a $[officename]-ban használt technikai kifejezések és internetes kifejezések általános szószedetét tartalmazza."
-#. 1cke
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -1970,7 +715,6 @@ msgctxt ""
msgid "Form Design Toolbar"
msgstr "Űrlaptervező eszköztár"
-#. ~9Tl
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -1980,7 +724,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Űrlaptervező eszköztár\">Űrlaptervező eszköztár</link>"
-#. (TK8
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -1990,7 +733,6 @@ msgctxt ""
msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
msgstr "Az Űrlaptervező eszköztár akkor lesz látható, amikor a tervező módban kiválaszt egy űrlapobjektumot."
-#. 4u3m
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2000,7 +742,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Mező hozzáadása\">Mező hozzáadása</link>"
-#. Ec^8
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2010,7 +751,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Csoportosítás\">Csoportosítás</link>"
-#. #T)B
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2020,7 +760,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Csoportbontás\">Csoportbontás</link>"
-#. UjOt
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2030,7 +769,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Belépés a csoportba\">Belépés a csoportba</link>"
-#. BQ2c
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2040,7 +778,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Kilépés a csoportból\">Kilépés a csoportból</link>"
-#. mtjb
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2050,7 +787,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Rács megjelenése\">Rács megjelenése</link>"
-#. [9jU
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2060,7 +796,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Rácshoz illesztés\">Rácshoz illesztés</link>"
-#. g#H+
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2070,7 +805,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
msgstr "<ahelp hid=\".uno:GridUse\">Megadja, hogy az objektumokat csak a rácspontra lehessen áthelyezni.</ahelp>"
-#. w?L0
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
@@ -2080,7 +814,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Segédvonalak látszanak áthelyezéskor\">Segédvonalak látszanak áthelyezéskor</link>"
-#. :B4A
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2089,7 +822,6 @@ msgctxt ""
msgid "Java Platform Support"
msgstr "A Java platform támogatása"
-#. /TBI
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2099,7 +831,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
msgstr "<link href=\"text/shared/main0650.xhp\" name=\"A Java platform támogatása\">A Java platform támogatása</link>"
-#. ZmR?
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2109,7 +840,6 @@ msgctxt ""
msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
msgstr "A $[officename] támogatja a Java platformot alkalmazások és JavaBeans architektúrára épülő komponensek futtatására."
-#. ,6wJ
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2119,7 +849,6 @@ msgctxt ""
msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
msgstr "Ahhoz, hogy a $[officename] támogassa a Java platformot, telepíteni kell a Java 2 Runtime Environment szoftvert. A $[officename] telepítésekor a rendszer automatikusan felajánlja ezeknek a fájloknak a telepítését, ha még nincsenek telepítve. Ha szükséges, ezeket a fájlokat most is telepítheti."
-#. an[M
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2129,7 +858,6 @@ msgctxt ""
msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
msgstr "A Java platform támogatását be kell kapcsolni a $[officename] alatt a Java-alkalmazások futtatásához."
-#. GBG6
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2139,7 +867,6 @@ msgctxt ""
msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Java\">$[officename] - Java</link></emph>."
msgstr "Kapcsolja be a Java platform támogatását az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename]- Java\">$[officename] - Java</link></emph> választásával."
-#. =Po+
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2148,7 +875,6 @@ msgctxt ""
msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME- Java, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
msgstr "A JDBC-illesztőprogram használata előtt hozzá kell adni azt ezt megvalósító osztály elérési útját. Az <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - %PRODUCTNAME - Java panelen kattintson az Osztály útvonala gombra. Az útvonalinformációk hozzáadása után indítsa újra a %PRODUCTNAME programot."
-#. mwDg
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
@@ -2158,7 +884,6 @@ msgctxt ""
msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Java</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
msgstr "Az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - $[officename] - Java</emph> lapon megadott módosításokat akkor is használja a rendszer, ha a Java Virtual Machine (JVM, a virtuális gép Java platformhoz) már el lett indítva. A ClassPath módosítása után újra kell indítania a $[officename] programot. Ugyanez igaz az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Internet - Proxy</emph> alatti módosításokra is. Csak a „HTTP-proxy” és „FTP-proxy” mezők és ezek portjai igényelnek újraindítást. Ezek az <emph>OK</emph> gombra kattintáskor kiértékelődnek."
-#. J;Eo
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2167,7 +892,6 @@ msgctxt ""
msgid "Form Navigation Bar"
msgstr "Űrlapnavigáció eszköztár"
-#. \?-r
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2176,7 +900,6 @@ msgctxt ""
msgid "<bookmark_value>toolbars; Form Navigation bar</bookmark_value><bookmark_value>Navigation bar;forms</bookmark_value><bookmark_value>sorting; data in forms</bookmark_value><bookmark_value>data; sorting in forms</bookmark_value><bookmark_value>forms;sorting data</bookmark_value>"
msgstr "<bookmark_value>eszköztárak; Űrlapnavigáció eszköztár</bookmark_value><bookmark_value>Navigációs eszköztár;űrlapok</bookmark_value><bookmark_value>rendezés; űrlapok adatai</bookmark_value><bookmark_value>adatok; rendezés űrlapokon</bookmark_value><bookmark_value>űrlapok;adatok rendezése</bookmark_value>"
-#. aF[x
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2186,7 +909,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\">Form Navigation Bar</link>"
msgstr "<link href=\"text/shared/main0213.xhp\" name=\"Űrlapnavigáció eszköztár\">Űrlapnavigáció eszköztár</link>"
-#. igMu
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2196,7 +918,6 @@ msgctxt ""
msgid "The <emph>Form Navigation</emph> bar contains icons to edit a database table or to control the data view. The bar is displayed at the bottom of a document that contains fields that are linked to a database."
msgstr "Az <emph>Űrlapnavigáció</emph> eszköztár adatbázistáblák szerkesztésére vagy adatnézetek vezérlésére szolgáló ikonokat tartalmaz. Ez az eszköztár annak a dokumentumnak az alján jelenik meg, amely adatbázishoz csatolt mezőket tartalmaz."
-#. f{`Q
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2206,7 +927,6 @@ msgctxt ""
msgid "You can use the <emph>Form Navigation</emph> bar to move within records as well as to insert and to delete records. If data is saved in a form, the changes are transferred to the database. The <emph>Form Navigation</emph> bar also contains sort, filter, and search functions for data records."
msgstr "Az <emph>Űrlapnavigáció</emph> eszköztár segítségével mozoghat a rekordok között, illetve rekordokat szúrhat be és törölhet. Ha az adat egy űrlapban van mentve, akkor a módosítások átkerülnek az adatbázisra. Az <emph>Űrlapnavigáció</emph> eszköztár ezen felül adatrekord-rendező, -szűrő és -kereső funkciókat is tartalmaz."
-#. #6f8
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2215,7 +935,6 @@ msgctxt ""
msgid "You can use the Navigation bar icon on the <link href=\"text/shared/02/01170000.xhp\">More Controls </link> bar to add a Navigation bar to a form."
msgstr "A <link href=\"text/shared/02/01170000.xhp\">További vezérlőelemek</link> eszköztáron lévő Navigáció ikonnal hozzáadhatja a Navigáció eszköztárat az űrlaphoz."
-#. zU%]
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2225,7 +944,6 @@ msgctxt ""
msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design view\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
msgstr "A Navigáció eszköztár csak adatbázishoz csatolt űrlapok esetén látható. Az űrlap <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Tervezési nézetében\">Tervezési nézetében</link> a Navigáció eszköztár nem áll rendelkezésre. Lásd még: <link href=\"text/shared/main0212.xhp\" name=\"Adatbázis eszköztár\">Táblaadatok eszköztár</link>."
-#. 4{%B
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2235,7 +953,6 @@ msgctxt ""
msgid "You can control the view of data with the sorting and filtering functions. Original tables are not changed."
msgstr "A szűrő és rendező funkciókkal vezérelheti az adatok megjelenését. Az eredeti táblák nem változnak."
-#. %3V$
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2245,7 +962,6 @@ msgctxt ""
msgid "The current sort order or filter is saved with the current document. If a filter is set, the <emph>Apply Filter</emph> icon on the <emph>Navigation</emph> bar is activated. Sorting and filtering features in the document can also be configured in the <emph>Form Properties</emph> dialog. (Choose <emph>Form Properties - Data</emph> - properties <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>Sort</emph></link> and <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>Filter</emph></link>)."
msgstr "Az aktuális rendezési sorrend vagy szűrő az aktuális dokumentummal együtt lesz mentve. Ha a szűrő be van állítva, akkor az <emph>Navigáció</emph> eszköztár <emph>Szűrő alkalmazása</emph> ikonja aktiválva van. A dokumentum rendezési és szűrési funkciói az <emph>Űrlaptulajdonságok</emph> párbeszédablakban is beállíthatók. (Válassza az <emph>Űrlap tulajdonságai - Adatok</emph> - tulajdonságok <link href=\"text/shared/02/01170203.xhp\" name=\"Rendezés\"><emph>Rendezés</emph></link> és a <link href=\"text/shared/02/01170203.xhp\" name=\"Szűrő\"><emph>Szűrő</emph></link> elemet)."
-#. lgDq
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2255,7 +971,6 @@ msgctxt ""
msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
msgstr "Ha egy SQL-utasítás az űrlap alapja (lásd <emph>Űrlaptulajdonságok</emph> - lap <emph>Adatok</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Adatforrás\"><emph>Adatforrás</emph></link>), akkor a szűrési és rendezési funkciók csak akkor állnak rendelkezésre, ha az SQL-utasítás csak egy táblára hivatkozik, és nem natív SQL-módban íródott."
-#. ;0g9
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2265,7 +980,6 @@ msgctxt ""
msgid "Absolute Record"
msgstr "Abszolút rekord"
-#. U?}9
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2275,7 +989,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AbsoluteRecord\">Shows the number of the current record. Enter a number to go to the corresponding record.</ahelp>"
msgstr "<ahelp hid=\".uno:AbsoluteRecord\">Az aktuális rekord számát jeleníti meg. Egy számot beírva a megfelelő rekordra ugrik.</ahelp>"
-#. n,-:
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2285,7 +998,6 @@ msgctxt ""
msgid "First Record"
msgstr "Első rekord"
-#. \y)Y
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2294,7 +1006,6 @@ msgctxt ""
msgid "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">Icon</alt></image>"
msgstr "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">Ikon</alt></image>"
-#. Ld5-
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2304,7 +1015,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FirstRecord\">Takes you to the first record.</ahelp>"
msgstr "<ahelp hid=\".uno:FirstRecord\">Odaugrik az első rekordra.</ahelp>"
-#. *_Rh
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2314,7 +1024,6 @@ msgctxt ""
msgid "Previous Record"
msgstr "Előző rekord"
-#. fp?e
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2323,7 +1032,6 @@ msgctxt ""
msgid "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">Icon</alt></image>"
msgstr "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">Ikon</alt></image>"
-#. 6NXw
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2333,7 +1041,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PrevRecord\">Takes you to the previous record.</ahelp>"
msgstr "<ahelp hid=\".uno:PrevRecord\">Odaugrik az előző rekordra.</ahelp>"
-#. E)n9
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2343,7 +1050,6 @@ msgctxt ""
msgid "Next Record"
msgstr "Következő rekord"
-#. G98P
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2352,7 +1058,6 @@ msgctxt ""
msgid "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">Icon</alt></image>"
msgstr "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">Ikon</alt></image>"
-#. azps
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2362,7 +1067,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NextRecord\">Takes you to the next record.</ahelp>"
msgstr "<ahelp hid=\".uno:NextRecord\">Odaugrik a következő rekordra.</ahelp>"
-#. _d~[
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2372,7 +1076,6 @@ msgctxt ""
msgid "Last Record"
msgstr "Utolsó rekord"
-#. 6gaB
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2381,7 +1084,6 @@ msgctxt ""
msgid "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">Ikon</alt></image>"
-#. iS;]
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2391,7 +1093,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LastRecord\">Takes you to the last record.</ahelp>"
msgstr "<ahelp hid=\".uno:LastRecord\">Odaugrik az utolsó rekordra.</ahelp>"
-#. Gfh$
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2401,7 +1102,6 @@ msgctxt ""
msgid "Save Record"
msgstr "Rekord mentése"
-#. RbZ$
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2410,7 +1110,6 @@ msgctxt ""
msgid "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">Icon</alt></image>"
msgstr "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">Ikon</alt></image>"
-#. r~ks
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2420,7 +1119,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RecSave\">Saves a new data entry. The change is registered in the database.</ahelp>"
msgstr "<ahelp hid=\".uno:RecSave\">Új adatbejegyzés mentése. Ez a módosítás az adatbázisba kerül.</ahelp>"
-#. v138
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2430,7 +1128,6 @@ msgctxt ""
msgid "Undo: Data entry"
msgstr "Visszavonás: Adatbevitel"
-#. )*`:
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2439,7 +1136,6 @@ msgctxt ""
msgid "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">Icon</alt></image>"
msgstr "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">Ikon</alt></image>"
-#. VDRJ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2449,7 +1145,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RecUndo\">Allows you to undo a data entry.</ahelp>"
msgstr "<ahelp hid=\".uno:RecUndo\">Lehetővé teszi a beírt adatok visszavonását.</ahelp>"
-#. S9NN
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2459,7 +1154,6 @@ msgctxt ""
msgid "New Record"
msgstr "Új rekord"
-#. aXN1
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2468,7 +1162,6 @@ msgctxt ""
msgid "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">Icon</alt></image>"
msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">Ikon</alt></image>"
-#. g5@3
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2478,7 +1171,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
msgstr "<ahelp hid=\".uno:NewRecord\">Új rekordot készít.</ahelp>"
-#. #qb-
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2488,7 +1180,6 @@ msgctxt ""
msgid "Delete Record"
msgstr "Rekord törlése"
-#. ]2{{
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2497,7 +1188,6 @@ msgctxt ""
msgid "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">Icon</alt></image>"
msgstr "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">Ikon</alt></image>"
-#. `_NZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2507,7 +1197,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteRecord\">Rekord töröl. A törlés előtt jóváhagyás szükséges.</ahelp>"
-#. +ve[
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2517,7 +1206,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Rekord keresése\">Rekord keresése</link>"
-#. O~lV
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -2527,7 +1215,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/shared/02/12100100.xhp\" name=\"Rendezés\">Rendezés</link>"
-#. h!2r
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2536,7 +1223,6 @@ msgctxt ""
msgid "Help"
msgstr "Súgó"
-#. ;?iB
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2546,7 +1232,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Súgó\">Súgó</link>"
-#. pN4X
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2556,7 +1241,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
msgstr "<ahelp hid=\".uno:HelpMenu\">A Súgó menü segítségével indítható a $[officename] súgója.</ahelp>"
-#. F0F@
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2566,7 +1250,6 @@ msgctxt ""
msgid "$[officename] Help"
msgstr "$[officename] Súgó"
-#. $J:)
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2576,7 +1259,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
msgstr "<ahelp hid=\".uno:HelpIndex\">Megnyitja az aktuális alkalmazáshoz tartozó $[officename] Súgó főoldalát.</ahelp> Átlapozhatja a Súgó oldalait, kereshet a tárgymutatóban vagy a teljes szövegben."
-#. \%#_
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2585,7 +1267,6 @@ msgctxt ""
msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">ikon</alt></image>"
-#. T*=/
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2594,7 +1275,22 @@ msgctxt ""
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME Súgó"
-#. {Q:Q
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2752763\n"
+"help.text"
+msgid "Send Feedback"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id443534340\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
+msgstr ""
+
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2604,7 +1300,6 @@ msgctxt ""
msgid "License Information"
msgstr "Licencinformáció"
-#. v;]H
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2614,7 +1309,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowLicense\">Megjeleníti a Licencelési és jogi információ párbeszédablakot.</ahelp>"
-#. PCM-
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2624,7 +1318,6 @@ msgctxt ""
msgid "%PRODUCTNAME Credits"
msgstr "A %PRODUCTNAME készítői"
-#. _Oy*
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2634,7 +1327,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowLicense\">Megjeleníti a CREDITS.odt dokumentumot, amelyben azok vannak felsorolva, akik 2010. szeptember 28. óta hozzájárultak az OpenOffice.org forráskódjához (és így áttételesen a LibreOffice forráskódjához) vagy a LibreOffice forráskódjához.</ahelp>"
-#. Apn}
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2644,7 +1336,6 @@ msgctxt ""
msgid "About $[officename]"
msgstr "A $[officename] névjegye"
-#. t/lg
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
@@ -2654,7 +1345,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
msgstr "<ahelp hid=\".uno:About\">Megjeleníti az általános programinformációkat, például a verziószámot és a szerzői jogi megjegyzéseket.</ahelp>"
-#. ?t9b
#: main0400.xhp
msgctxt ""
"main0400.xhp\n"
@@ -2663,7 +1353,6 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Billentyűparancsok"
-#. 2HTv
#: main0400.xhp
msgctxt ""
"main0400.xhp\n"
@@ -2673,7 +1362,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Billentyűparancsok\">Billentyűparancsok</link>"
-#. q=`H
#: main0400.xhp
msgctxt ""
"main0400.xhp\n"
@@ -2683,7 +1371,6 @@ msgctxt ""
msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
msgstr "Ez a szakasz a $[officename] gyakran használt billentyűparancsait mutatja be."
-#. $R5z
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2692,7 +1379,6 @@ msgctxt ""
msgid "Table Bar"
msgstr "Táblázat eszköztár"
-#. 8;B{
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2701,7 +1387,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
msgstr "<link href=\"text/shared/main0204.xhp\" name=\"Táblázat eszköztár\">Táblázat eszköztár</link>"
-#. dLwY
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2710,7 +1395,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
msgstr "<ahelp hid=\".\">A <emph>Táblázat </emph> eszköztár a táblázatok kezelésekor használt parancsokat tartalmazza. Akkor jelenik meg, amikor a kurzort egy táblázatba helyezi.</ahelp>"
-#. TW{!
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2719,7 +1403,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Területstílus / Kitöltés\">Területstílus / Kitöltés</link>"
-#. 8(.6
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2729,7 +1412,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Cellák egyesítése\">Cellák egyesítése</link>"
-#. -Jc9
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2739,7 +1421,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Sor törlése\">Sor törlése</link>"
-#. qpTH
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2749,7 +1430,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Oszlop törlése\">Oszlop törlése</link>"
-#. )\QU
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2758,7 +1438,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
msgstr "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Táblázattervezés\">Táblázattervezés</link>"
-#. /Ls8
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2767,7 +1446,6 @@ msgctxt ""
msgid "Opens the Table Design. Double-click a preview to insert a new table."
msgstr "Megnyitja a Táblázattervezést. Kattintson duplán egy előnézetre új táblázat beszúrásához."
-#. Mg=?
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
@@ -2776,7 +1454,6 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
msgstr "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Táblázattulajdonságok\">Táblázattulajdonságok</link>"
-#. Bo!-
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2785,7 +1462,6 @@ msgctxt ""
msgid "Fontwork"
msgstr "Betűbűvész"
-#. hD;[
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2794,7 +1470,6 @@ msgctxt ""
msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
msgstr "<link href=\"text/shared/fontwork_toolbar.xhp\">Betűbűvész</link>"
-#. }+Sr
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2803,7 +1478,6 @@ msgctxt ""
msgid "The Fontwork toolbar opens when you select a Fontwork object."
msgstr "Egy Betűbűvész-objektum kijelölésekor megnyílik a Betűbűvész eszköztár."
-#. QVSQ
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2812,7 +1486,6 @@ msgctxt ""
msgid "Fontwork Gallery"
msgstr "Betűbűvész-képtár"
-#. WsDm
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2821,7 +1494,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
msgstr "<ahelp hid=\".\">Megjeleníti a Betűbűvész-képtárat, ahonnan egy másik előnézet választható ki. Kattintson az OK gombra az új tulajdonságkészlet alkalmazásához a Betűbűvész-objektumra.</ahelp>"
-#. F;fb
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2830,7 +1502,6 @@ msgctxt ""
msgid "Fontwork Shape"
msgstr "Betűbűvész - Alak"
-#. ^wl(
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2839,7 +1510,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Betűbűvész - Alak eszköztárat. Kattintson ide, ha alkalmazni kívánja az alakot minden kijelölt Betűbűvész-objektumra.</ahelp>"
-#. )xt4
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2848,7 +1518,6 @@ msgctxt ""
msgid "Fontwork Same Letter Heights"
msgstr "Betűbűvész - Azonos karaktermagasság"
-#. i$Sa
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2857,7 +1526,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
msgstr "<ahelp hid=\".\">A kijelölt Betűbűvész-objektumok betűmagasságát normálról minden objektumhoz azonos magasságúra változtatja.</ahelp>"
-#. Wwjw
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2866,7 +1534,6 @@ msgctxt ""
msgid "Fontwork Alignment"
msgstr "Betűbűvész - Igazítás"
-#. ynbC
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2875,7 +1542,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Betűbűvész - Igazítás ablakot.</ahelp>"
-#. .w-v
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2884,7 +1550,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
msgstr "<ahelp hid=\".\">Kattintson ide, ha alkalmazni kívánja az igazítást a kijelölt Betűbűvész-objektumokra.</ahelp>"
-#. .TkH
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2893,7 +1558,6 @@ msgctxt ""
msgid "Fontwork Character Spacing"
msgstr "Betűbűvész - Karakterek távolsága"
-#. 4ZF.
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2902,7 +1566,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
msgstr "<ahelp hid=\".\">Megnyitja a Betűbűvész - Karakterek távolsága ablakot.</ahelp>"
-#. lk:H
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2911,7 +1574,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
msgstr "<ahelp hid=\".\">Kattintson ide, ha alkalmazni kívánja a betűközt a kijelölt Betűbűvész-objektumokra.</ahelp>"
-#. If/-
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2920,7 +1582,6 @@ msgctxt ""
msgid "Custom"
msgstr "Egyéni"
-#. Rp.1
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2929,7 +1590,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
msgstr "<ahelp hid=\".\">A Betűbűvész - Karakterek távolsága párbeszédablakban adhat meg új betűközértéket.</ahelp>"
-#. O9M`
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2938,7 +1598,6 @@ msgctxt ""
msgid "Value"
msgstr "Érték"
-#. tYA9
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2947,7 +1606,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a betűközt a Betűbűvészben.</ahelp>"
-#. K^ji
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2956,7 +1614,6 @@ msgctxt ""
msgid "Kern Character Pairs"
msgstr "Karakterpárok alávágása"
-#. P=,?
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
@@ -2965,7 +1622,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
msgstr "<ahelp hid=\".\">Bekapcsolja vagy kikapcsolja a karakterpárok <link href=\"text/shared/00/00000005.xhp#kerning\">alávágását</link>.</ahelp>"
-#. N^fy
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -2974,7 +1630,6 @@ msgctxt ""
msgid "Query Design Bar"
msgstr "Lekérdezéstervező eszköztár"
-#. /bO7
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -2984,7 +1639,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Lekérdezéstervező eszköztár\">Lekérdezéstervező eszköztár</link>"
-#. :M*]
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -2994,7 +1648,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
msgstr "<ahelp hid=\".\">SQL-lekérdezés létrehozásakor vagy szerkesztésekor az adatok megjelenítésének vezérléséhez használja a <emph>Lekérdezéstervező</emph> eszköztár ikonjait.</ahelp>"
-#. %Nz(
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -3004,7 +1657,6 @@ msgctxt ""
msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
msgstr "Attól függően, hogy a lekérdezést vagy nézetet a <emph>Tervezés</emph> vagy <emph>SQL</emph> lapon hozta létre, az alábbi ikonok jelennek meg:"
-#. yH.G
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -3014,7 +1666,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Táblák hozzáadása\">Táblák hozzáadása</link>"
-#. 6EK@
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -3024,7 +1675,6 @@ msgctxt ""
msgid "The following icon is on the <emph>SQL</emph> tab page:"
msgstr "Az alábbi ikon található az <emph>SQL</emph> lapon:"
-#. WIGL
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3033,7 +1683,6 @@ msgctxt ""
msgid "Edit Points Bar"
msgstr "Pontok szerkesztése eszköztár"
-#. g@_k
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3042,7 +1691,6 @@ msgctxt ""
msgid "<bookmark_value>lines; editing points</bookmark_value><bookmark_value>curves; editing points</bookmark_value><bookmark_value>Edit Points bar</bookmark_value>"
msgstr "<bookmark_value>vonalak; pontok szerkesztése</bookmark_value><bookmark_value>görbék; pontok szerkesztése</bookmark_value><bookmark_value>Pontok szerkesztése eszköztár</bookmark_value>"
-#. YvJ;
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3052,7 +1700,6 @@ msgctxt ""
msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Pontok szerkesztése eszköztár\">Pontok szerkesztése eszköztár</link>"
-#. :!S^
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3062,7 +1709,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BEZIER_TOOLBOX\">The <emph>Edit Points </emph>Bar appears when you select a polygon object and click <emph>Edit Points</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_BEZIER_TOOLBOX\">Ha kijelöl egy sokszögobjektumot, és a <emph>Pontok szerkesztése</emph> ikonra kattint, megjelenik a <emph>Pontok szerkesztése</emph> eszköztár.</ahelp>"
-#. fuXS
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3072,7 +1718,6 @@ msgctxt ""
msgid "The functions provided allow you to edit the points of a curve or an object converted to a curve. The following icons are available:"
msgstr "A biztosított funkciók lehetővé teszik egy görbe vagy egy görbévé alakított objektum pontjainak szerkesztését. Az alábbi ikonok állnak rendelkezésre:"
-#. ~Ex8
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3082,7 +1727,6 @@ msgctxt ""
msgid "Edit Points"
msgstr "Pontok szerkesztése"
-#. D;ZV
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3092,7 +1736,6 @@ msgctxt ""
msgid "The <link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> icon allows you to activate or deactivate the edit mode for Bézier objects. In the edit mode, individual points of the drawing object can be selected."
msgstr "A <link href=\"text/shared/01/05270000.xhp\" name=\"Pontok szerkesztése\"><emph>Pontok szerkesztése</emph></link> ikon segítségével aktiválhatja vagy letilthatja a Bézier-objektumok szerkesztési módját. Szerkesztési módban kiválaszthatók a rajzobjektumok egyedi pontjai."
-#. Y.%k
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3101,7 +1744,6 @@ msgctxt ""
msgid "<image id=\"img_id3153951\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153951\">Icon</alt></image>"
msgstr "<image id=\"img_id3153951\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153951\">Ikon</alt></image>"
-#. 2e#6
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3111,7 +1753,6 @@ msgctxt ""
msgid "Edit Points"
msgstr "Pontok szerkesztése"
-#. 1Q-4
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3121,7 +1762,6 @@ msgctxt ""
msgid "Move Points"
msgstr "Pontok áthelyezése"
-#. g|Jk
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3131,7 +1771,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierMove\">Activates a mode in which you can move points.</ahelp> The mouse pointer displays a small empty square when resting on a point. Drag that point to another location. The curve on both sides of the point follows the movement; the section of the curve between the next points changes shape."
msgstr "<ahelp hid=\".uno:BezierMove\">A pontok áthelyezésére szolgáló módot kapcsolja be.</ahelp> Az egérmutató a ponton pihentetéskor megjelenít egy kis üres négyzetet. Húzza át a pontot egy másik helyre. A pont mindkét felén lévő görbe követi a mozgást; a következő pontok közötti görbeszakaszok alakja változik."
-#. gdd[
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3141,7 +1780,6 @@ msgctxt ""
msgid "Point at the curve between two points or within a closed curve and drag the mouse to shift the entire curve without distorting the form."
msgstr "Az egész görbe áthelyezéséhez mutasson az egérrel a görbére két pont között vagy egy zárt görbébe, és húzza a görbét. Így nem torzítja el az alakzatot."
-#. KI@F
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3150,7 +1788,6 @@ msgctxt ""
msgid "<image id=\"img_id3149377\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149377\">Icon</alt></image>"
msgstr "<image id=\"img_id3149377\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149377\">Ikon</alt></image>"
-#. i``b
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3160,7 +1797,6 @@ msgctxt ""
msgid "Move Points"
msgstr "Pontok áthelyezése"
-#. .@8c
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3170,7 +1806,6 @@ msgctxt ""
msgid "Insert Points"
msgstr "Pontok beszúrása"
-#. mW09
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3180,7 +1815,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierInsert\">Activates the insert mode. This mode allows you to insert points.</ahelp> You can also move points, just as in the move mode. If, however, you click at the curve between two points and move the mouse a little while holding down the mouse button you insert a new point. The point is a smooth point, and the lines to the control points are parallel and remain so when moved."
msgstr "<ahelp hid=\".uno:BezierInsert\">A beszúró módot kapcsolja be. Ebben a módban pontokat lehet beszúrni.</ahelp> A pontokat is mozgathatja, csakúgy, mint mozgatási módban. Ha rákattint egy két pont között levő görbére, és mozgatja az egeret egy kis ideig az egérgomb lenyomva tartása közben, akkor a rendszer beszúr egy új pontot. A pont egy sima pont, és a vezérlőpontok vonalai párhuzamosak és mozgatás közben is azok maradnak."
-#. g*xU
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3190,7 +1824,6 @@ msgctxt ""
msgid "If you wish to create a corner point you must first insert either a smooth or a symmetrical point which is then converted to a corner point by using <emph>Corner Point</emph>."
msgstr "Ha egy sarokpontot kíván létrehozni, akkor először be kell illesztenie egy sima vagy egy szimmetrikus pontot, amely a <emph>Sarokpont</emph> segítségével később átalakításra kerül sarokponttá."
-#. Vil#
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3199,7 +1832,6 @@ msgctxt ""
msgid "<image id=\"img_id3146969\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146969\">Ikon</alt></image>"
-#. =BLs
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3209,7 +1841,6 @@ msgctxt ""
msgid "Insert Points"
msgstr "Pontok beszúrása"
-#. 5m=(
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3219,7 +1850,6 @@ msgctxt ""
msgid "Delete Points"
msgstr "Pontok törlése"
-#. zX0V
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3229,7 +1859,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierDelete\">Use the <emph>Delete Points</emph> icon to delete one or several selected points. If you wish to select several points click the appropriate points while holding down the Shift key.</ahelp>"
msgstr "<ahelp hid=\".uno:BezierDelete\">A <emph>Pontok törlése</emph> ikonnal lehet törölni egy vagy több kijelölt pontot. Több pontot úgy jelölhet ki egyszerre, hogy az egyes pontokra kattintás közben a Shift billentyűt lenyomva tartja.</ahelp>"
-#. yBo9
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3239,7 +1868,6 @@ msgctxt ""
msgid "First select the points to be deleted, and then click this icon, or press Del."
msgstr "Először válassza ki a törölni kívánt pontokat, majd kattintson az ikonra, vagy nyomja meg a Del billentyűt."
-#. V]l3
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3248,7 +1876,6 @@ msgctxt ""
msgid "<image id=\"img_id3146920\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146920\">Icon</alt></image>"
msgstr "<image id=\"img_id3146920\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146920\">Ikon</alt></image>"
-#. ?P`-
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3258,7 +1885,6 @@ msgctxt ""
msgid "Delete Points"
msgstr "Pontok törlése"
-#. H.*B
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3268,7 +1894,6 @@ msgctxt ""
msgid "Split Curve"
msgstr "Görbe felosztása"
-#. :fG\
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3278,7 +1903,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierCutLine\">The<emph> Split Curve </emph>icon splits a curve. Select the point or points where you want to split the curve, then click the icon</ahelp>."
msgstr "<ahelp hid=\".uno:BezierCutLine\">A <emph>Görbe felosztása</emph> ikon feloszt egy görbét. Kattintson a görbe azon pontjára, ahol ketté akarja osztani, majd kattintson az ikonra.</ahelp>"
-#. xIG!
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3287,7 +1911,6 @@ msgctxt ""
msgid "<image id=\"img_id3148489\" src=\"cmd/sc_beziercutline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148489\">Icon</alt></image>"
msgstr "<image id=\"img_id3148489\" src=\"cmd/sc_beziercutline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148489\">Ikon</alt></image>"
-#. !.;y
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3297,7 +1920,6 @@ msgctxt ""
msgid "Split Curve"
msgstr "Görbe felosztása"
-#. ))HW
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3307,7 +1929,6 @@ msgctxt ""
msgid "Convert To Curve"
msgstr "Görbévé alakítás"
-#. qIK^
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3317,7 +1938,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierConvert\">Converts a curve into a straight line or converts a straight line into a curve.</ahelp> If you select a single point, the curve before the point will be converted. If two points are selected, the curve between both points will be converted. If you select more than two points, each time you click this icon, a different portion of the curve will be converted. If necessary, round points are converted into corner points and corner points are converted into round points."
msgstr "<ahelp hid=\".uno:BezierConvert\">Egy görbét egyenes vonallá vagy egy egyenes vonalat görbévé alakít.</ahelp> Ha egyetlen pontot jelöl ki, akkor a pont előtti görbe kerül átalakításra. Ha két pontot jelöl ki, akkor a két pont közötti görbe kerül átalakításra. Ha kettőnél több pontot jelöl ki, akkor az adott ikonra kattintáskor a görbe egy másik része kerül átalakításra. Ha szükséges, akkor a kerekítési pontok sarokpontokká alakíthatók, a sarokpontok pedig kerekítési pontokká."
-#. l+Sa
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3327,7 +1947,6 @@ msgctxt ""
msgid "If a certain section of the curve is straight, the end points of the line have a maximum of one control point each. They cannot be modified to round points unless the straight line is converted back to a curve."
msgstr "Ha a görbe egy adott része egyenes, akkor a vonal végpontja maximum egy vezérlőponttal rendelkezik. Ezek nem alakíthatók sarokponttá, hacsak az egyenes vonalat nem alakítja vissza görbévé."
-#. ~3Rj
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3336,7 +1955,6 @@ msgctxt ""
msgid "<image id=\"img_id3149036\" src=\"cmd/sc_bezierconvert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149036\">Icon</alt></image>"
msgstr "<image id=\"img_id3149036\" src=\"cmd/sc_bezierconvert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149036\">Ikon</alt></image>"
-#. O4V{
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3346,7 +1964,6 @@ msgctxt ""
msgid "Convert To Curve"
msgstr "Görbévé alakítás"
-#. *[`l
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3356,7 +1973,6 @@ msgctxt ""
msgid "Corner Point"
msgstr "Sarokpont"
-#. -=yN
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3366,7 +1982,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierEdge\">Converts the selected point or points into corner points.</ahelp> Corner points have two movable control points, which are independent from each other. A curved line, therefore, does not go straight through a corner point, but forms a corner."
msgstr "<ahelp hid=\".uno:BezierEdge\">A kijelölt pontot vagy pontokat sarokpontokká alakítja.</ahelp> A sarokpontok két mozgatható vezérlőponttal rendelkeznek, amelyek egymástól függenek. A görbe vonal ezért nem lesz egyenes egy sarokpontnál, hanem sarkot alkot."
-#. JZ~G
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3375,7 +1990,6 @@ msgctxt ""
msgid "<image id=\"img_id3154201\" src=\"cmd/sc_bezieredge.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154201\">Icon</alt></image>"
msgstr "<image id=\"img_id3154201\" src=\"cmd/sc_bezieredge.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154201\">Ikon</alt></image>"
-#. aq9E
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3385,7 +1999,6 @@ msgctxt ""
msgid "Corner Point"
msgstr "Sarokpont"
-#. ~x0E
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3395,7 +2008,6 @@ msgctxt ""
msgid "Smooth Transition"
msgstr "Finom átmenet"
-#. ?v]Q
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3405,7 +2017,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierSmooth\">Converts a corner point or symmetrical point into a smooth point.</ahelp> Both control points of the corner point are aligned in parallel, and can only be moved simultaneously. The control points may differentiate in length, allowing you to vary the degree of curvature."
msgstr "<ahelp hid=\".uno:BezierSmooth\">Egy sarok- vagy szimmetriapontot sima ponttá alakít.</ahelp> A sarokpont összes vezérlőpontja párhuzamosra van igazítva, és csak egyszerre mozgatható. A vezérlőpontok hossza különbözhet, ezekkel változtathatja a görbület mértékét."
-#. A%X$
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3414,7 +2025,6 @@ msgctxt ""
msgid "<image id=\"img_id3151183\" src=\"cmd/sc_beziersmooth.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151183\">Icon</alt></image>"
msgstr "<image id=\"img_id3151183\" src=\"cmd/sc_beziersmooth.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151183\">Ikon</alt></image>"
-#. rLUi
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3424,7 +2034,6 @@ msgctxt ""
msgid "Smooth Transition"
msgstr "Finom átmenet"
-#. $%#A
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3434,7 +2043,6 @@ msgctxt ""
msgid "Symmetric Transition"
msgstr "Szimmetrikus átmenet"
-#. nxJ2
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3444,7 +2052,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierSymmetric\">This icon converts a corner point or a smooth point into a symmetrical point.</ahelp> Both control points of the corner point are aligned in parallel and have the same length. They can only be moved simultaneously and the degree of curvature is the same in both directions."
msgstr "<ahelp hid=\".uno:BezierSymmetric\">Ez az ikon a sarokpontot vagy a sima pontot szimmetrikus ponttá alakítja.</ahelp> A sarokpont összes vezérlőpontja párhuzamosra van igazítva, és ugyanolyan hosszú. Csak egyszerre mozgathatók és a görbület mértéke minden irányban ugyanaz."
-#. 5I#X
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3453,7 +2060,6 @@ msgctxt ""
msgid "<image id=\"img_id3159218\" src=\"cmd/sc_beziersymmetric.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159218\">Icon</alt></image>"
msgstr "<image id=\"img_id3159218\" src=\"cmd/sc_beziersymmetric.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159218\">Ikon</alt></image>"
-#. Fsf]
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3463,7 +2069,6 @@ msgctxt ""
msgid "Symmetric Transition"
msgstr "Szimmetrikus átmenet"
-#. ORyf
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3473,7 +2078,6 @@ msgctxt ""
msgid "Close Bézier"
msgstr "Bézier-görbe bezárása"
-#. o)68
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3483,7 +2087,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierClose\">Closes a line or a curve.</ahelp> A line is closed by connecting the last point with the first point, indicated by an enlarged square."
msgstr "<ahelp hid=\".uno:BezierClose\">Lezár egy vonalat vagy ívet.</ahelp> Egy vonal úgy záródik, hogy az utolsó pont össze van kötve az elsővel, amelyet egy megnagyobbított négyzet jelöl."
-#. YQ=T
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3492,7 +2095,6 @@ msgctxt ""
msgid "<image id=\"img_id3148607\" src=\"cmd/sc_bezierclose.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148607\">Icon</alt></image>"
msgstr "<image id=\"img_id3148607\" src=\"cmd/sc_bezierclose.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148607\">Ikon</alt></image>"
-#. .T)*
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3502,7 +2104,6 @@ msgctxt ""
msgid "Close Bézier"
msgstr "Bézier-görbe bezárása"
-#. N7)=
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3512,7 +2113,6 @@ msgctxt ""
msgid "Eliminate Points"
msgstr "Pontok eltávolítása"
-#. BWOP
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3522,7 +2122,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BezierEliminatePoints\">Marks the current point or the selected points for deletion.</ahelp> This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the <emph>Convert to Curve </emph>icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place <switchinline select=\"appl\"><caseinline select=\"DRAW\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link> in the Options dialog box</caseinline><caseinline select=\"IMPRESS\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link> in the Options dialog box</caseinline><defaultinline>is 15° by default.</defaultinline></switchinline>"
msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">Az aktuális vagy kiválasztott pontokat törlésre megjelöli.</ahelp> Ez akkor történik, amikor a pont egy egyenes vonalon található. Ha egy görbét vagy sokszöget alakít át a <emph>Görbévé alakítás</emph> ikon segítségével egyenes vonallá, vagy az egérrel változtat úgy egy görbét, hogy a pont egy egyenes vonalon fekszik, akkor eltávolításra kerül. A szög, amelytől a pontredukciót végezni kell <switchinline select=\"appl\"><caseinline select=\"DRAW\">a Beállítások párbeszédablak <link href=\"text/shared/optionen/01070300.xhp\" name=\"Rajzoló- Rács\"><emph>%PRODUCTNAME Draw - Rács</emph></link> panelén állítható be</caseinline><caseinline select=\"IMPRESS\">a Beállítások párbeszédablak <link href=\"text/shared/optionen/01070300.xhp\" name=\"Bemutató - Rács\"><emph>%PRODUCTNAME Impress - Rács</emph></link> panelén állítható be</caseinline><defaultinline>alapértelmezés szerint 15°.</defaultinline></switchinline>"
-#. t?DM
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
@@ -3531,7 +2130,6 @@ msgctxt ""
msgid "<image id=\"img_id3155385\" src=\"cmd/sc_beziereliminatepoints.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155385\">Icon</alt></image>"
msgstr "<image id=\"img_id3155385\" src=\"cmd/sc_beziereliminatepoints.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155385\">Ikon</alt></image>"
-#. Ncl[
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/shared/00.po b/source/hu/helpcontent2/source/text/shared/00.po
index 1aa4ff0d4a4..903d5d512f9 100644
--- a/source/hu/helpcontent2/source/text/shared/00.po
+++ b/source/hu/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-07-15 01:51+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ,Ck+
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Window Menu"
msgstr "Ablak menü"
-#. i8Xe
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Window Menu"
msgstr "Ablak menü"
-#. sokd
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
msgstr "<variable id=\"window\">Válassza az <emph>Ablak - Új ablak</emph> lehetőséget.</variable>"
-#. ]2Ng
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
msgstr "<variable id=\"liste\">Válasszon az <emph>Ablak</emph> menü alján a nyitott dokumentumok közül</variable>"
-#. m$1!
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "See also..."
msgstr "Lásd még..."
-#. 029h
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "<variable id=\"siehe\">See also... </variable>"
msgstr "<variable id=\"siehe\">Lásd még... </variable>"
-#. bY3$
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Eszközök menü - Esetek\">Eszközök menü - Esetek</link></variable>"
-#. %Qjx
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
msgstr "Az <link href=\"text/shared/guide/main.xhp\" name=\"$[officename]-keretprogram\">$[officename]-keretprogram</link> súgóoldalán minden modulra érvényes útmutatásokat találhat, például az ablakok és a menük kezelésével, a $[officename] testreszabásával, az adatforrásokkal, a Képtárral és a „fogd és vidd” módszerrel kapcsolatban."
-#. Rtt5
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
msgstr "Ha segítségre van szüksége egy másik modullal kapcsolatban, keresse meg annak a modulnak a súgóját a navigációs területen található kombinált listában."
-#. uI8q
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
msgstr "<variable id=\"winmanager\">Ennek a funkciónak az elérhetősége függ az X Window Managertől. </variable>"
-#. gy3*
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
msgstr "<ahelp hid=\".uno:HelperDialog\">Bekapcsolja az automatikus Segédet. A Segédet a <emph>$[officename] - Általános - Segéd</emph> lehetőségen keresztül is aktiválhatja a Beállítások párbeszédablakban.</ahelp>"
-#. 6Hq5
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -131,7 +119,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
msgstr "<ahelp hid=\".uno:HelpTip\">Engedélyezi az egérmutató alatti vezérlőelemek nevének és más súgótartalmaknak megjelenítését.</ahelp>"
-#. 9Y1O
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
msgstr "<ahelp hid=\".uno:ActiveHelp\">Engedélyezi az egérmutató alatti vezérlőelemek rövid leírásának megjelenítését.</ahelp>"
-#. hoUk
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
msgstr "Egyes billentyűparancsok már foglaltak lehetnek az asztali környezetben. Az asztali környezet által lefoglalt billentyűparancsok nem működnek a %PRODUCTNAME-ban. Próbáljon más billentyűket hozzárendelni a %PRODUCTNAME-hoz az <emph>Eszközök – Testreszabás - Billentyűzet</emph> panelen, illetve az asztali környezetben."
-#. @-{y
#: 00000011.xhp
msgctxt ""
"00000011.xhp\n"
@@ -158,7 +143,6 @@ msgctxt ""
msgid "Menu Commands"
msgstr "Menüparancsok"
-#. j0@^
#: 00000011.xhp
msgctxt ""
"00000011.xhp\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Menu Commands"
msgstr "Menüparancsok"
-#. ldH~
#: 00000011.xhp
msgctxt ""
"00000011.xhp\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
msgstr "A menüparancsok használatához jelölje ki az ablakot, amelyben a megfelelő dokumentum található. Hasonlóképpen ha egy objektumhoz kapcsolódó menüparancsot akar aktiválni, jelölje ki a megfelelő objektumot a dokumentumon belül."
-#. W6kr
#: 00000011.xhp
msgctxt ""
"00000011.xhp\n"
@@ -188,7 +170,6 @@ msgctxt ""
msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
msgstr "A menük helyzetfüggők. Ez azt jelenti, hogy azok a menüelemek jelennek meg, amelyek alkalmazhatóak az aktuális feladat kivitelezésében. Ha a kurzor egy szövegen áll, minden olyan menüelem használható, amely a szöveg szerkesztésével kapcsolatos. Ha képeket jelöl ki egy dokumentumban, minden olyan menüparancs elérhető lesz, amely képek szerkesztéséhez kellhet."
-#. zl1N
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -197,7 +178,6 @@ msgctxt ""
msgid "Context Menus"
msgstr "Helyi menük"
-#. #mV1
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "Context Menus"
msgstr "Helyi menük"
-#. ]F]N
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -217,7 +196,6 @@ msgctxt ""
msgid "Cut"
msgstr "Kivágás"
-#. dR06
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -227,7 +205,6 @@ msgctxt ""
msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
msgstr "Kivágja a kijelölt objektumot és eltárolja a vágólapon. Az objektum újra behelyezhető a vágólapról a <emph>Beillesztés</emph> parancs használatával."
-#. Y5IK
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -237,7 +214,6 @@ msgctxt ""
msgid "Paste"
msgstr "Beillesztés"
-#. CLeJ
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -247,7 +223,6 @@ msgctxt ""
msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">A vágólapra helyezett elemet illeszti be a dokumentumba.</ahelp> Ezt a parancsot csak akkor hívhatja meg, ha a vágólap tartalma az aktuális kurzorhelyzetnél beilleszthető."
-#. `9uj
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -257,7 +232,6 @@ msgctxt ""
msgid "Insert"
msgstr "Beszúrás"
-#. k^0x
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -267,7 +241,6 @@ msgctxt ""
msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
msgstr "Megnyit egy almenüt a Képtárban, ahol választhat a <emph>Másolás</emph> és a <emph>Hivatkozás</emph> között. A választott Képtár-objektum vagy bemásolásra kerül a dokumentumba, vagy egy hivatkozás jön létre."
-#. V+C#
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -277,7 +250,6 @@ msgctxt ""
msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
msgstr "Ha kijelöl a dokumentumban egy objektumot, az új beszúrás a kijelölt objektum helyébe fog lépni."
-#. +[vo
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -287,7 +259,6 @@ msgctxt ""
msgid "Background"
msgstr "Háttér"
-#. Aeo%
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -297,7 +268,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Háttérképként beszúrja a kijelölt képet.</ahelp> Használja az <emph>Oldal</emph> vagy a <emph>Bekezdés</emph> almenü parancsait annak megadására, hogy a képelem a teljes oldalt vagy csak az aktuális bekezdést fedje-e le."
-#. k[n~
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -307,7 +277,6 @@ msgctxt ""
msgid "Copy"
msgstr "Másolás"
-#. U2lp
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">A kiválasztott elemet átmásolja a vágólapra.</ahelp>"
-#. .58D
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -327,7 +295,6 @@ msgctxt ""
msgid "Delete"
msgstr "Törlés"
-#. }*=G
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -337,7 +304,6 @@ msgctxt ""
msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Törli az aktuális kijelölést. Ha több objektum van kiválasztva, mindegyiket törli. A legtöbb esetben egy <link href=\"text/shared/01/03150100.xhp\" name=\"biztonsági kérdés\">biztonsági kérdés</link> jelenik meg az objektumok törlése előtt.</ahelp>"
-#. br(B
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -347,7 +313,6 @@ msgctxt ""
msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
msgstr "A környezettől függően az objektumok vagy fizikailag törlődnek az adathordozóról, vagy az objektum megjelenítése kerül eltávolításra."
-#. NH(D
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -357,7 +322,6 @@ msgctxt ""
msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
msgstr "Ha a <emph>Törlés</emph> lehetőséget akkor választja, amikor a Képtárban van, a bejegyzés törlésre kerül a Képtárból, de a fájl maga érintetlen marad."
-#. !YxG
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -367,7 +331,6 @@ msgctxt ""
msgid "Open"
msgstr "Megnyitás"
-#. vqQ[
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -377,7 +340,6 @@ msgctxt ""
msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">A kiválasztott objektum új feladatban való megnyitásához használja a <emph>Megnyitás</emph> parancsot.</ahelp>"
-#. WJ9K
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -387,7 +349,6 @@ msgctxt ""
msgid "Rename"
msgstr "Átnevezés"
-#. A1!d
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -397,7 +358,6 @@ msgctxt ""
msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Átnevezi a kijelölt objektumot.</ahelp> Az <emph>Átnevezés</emph> lehetőség kiválasztása után a név kijelölésre kerül, és az új név közvetlenül megadható. A név megadásához vagy törléséhet, illetve a kurzor áthelyezéséhez a nyílbillentyűkkel állítsa a kurzort a név elejére vagy végére."
-#. `Ky-
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -407,7 +367,6 @@ msgctxt ""
msgid "Update"
msgstr "Frissítés"
-#. 4o}1
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -417,7 +376,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
msgstr "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Nézet frissítése az ablakban vagy a kiválasztott objektumban.</ahelp>"
-#. c(s{
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -427,7 +385,6 @@ msgctxt ""
msgid "Preview"
msgstr "Előnézet"
-#. qsam
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -437,7 +394,6 @@ msgctxt ""
msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
msgstr "A kijelölt elem a legnagyobb méretében jelenik meg a Képtárban. Ha kétszer kattint az előnézetre, visszatér az eredeti Képtár nézethez."
-#. ,pQm
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "Create Link"
msgstr "Hivatkozás létrehozása"
-#. dsWg
#: 00000010.xhp
msgctxt ""
"00000010.xhp\n"
@@ -457,7 +412,6 @@ msgctxt ""
msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
msgstr "A parancs csak akkor aktiválható, ha van kiválasztott objektum. Egy \"Hivatkozás célja: xxx\" (ahol <emph>xxx</emph> az objektum neve) nevű hivatkozás kerül létrehozásra a kijelölt objektummal megegyező könyvtárban."
-#. S-(B
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -466,7 +420,6 @@ msgctxt ""
msgid "Graphics Export Options"
msgstr "Képek exportálásának beállításai"
-#. 2\e1
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -475,7 +428,6 @@ msgctxt ""
msgid "Graphics Export Options"
msgstr "Képek exportálásának beállításai"
-#. HK[$
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -484,7 +436,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"visible\">Képek exportálásának beállításai.</ahelp>"
-#. ITTM
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -493,7 +444,6 @@ msgctxt ""
msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
msgstr "Amikor fájlba ment egy grafikai elemet, kiválaszthatja a fájltípust. A legtámogatottabb fájltípusokra megnyílik egy párbeszédablak, amelyen az exportálás beállításai adhatók meg."
-#. a]LG
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -502,7 +452,6 @@ msgctxt ""
msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
msgstr "A következő fájltípusokhoz nem jelenik meg beállítóablak: PWP, RAS, SVG, TIFF, XPM."
-#. eO1C
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -511,7 +460,6 @@ msgctxt ""
msgid "The other file types show options dialogs where you can set the width and height of the exported image."
msgstr "A többi fájltípushoz megjelenik a beállítóablak, amelyen az exportált kép szélessége és magassága állítható be."
-#. N*Sv
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -520,7 +468,6 @@ msgctxt ""
msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
msgstr "A fájltípustól függően további beállításokra is van lehetőség. Nyomja meg a Shift+F1 billentyűkombinációt, és húzza az egeret a vezérlőelem fölé, hogy megjelenjen a részletes tipp."
-#. j.f}
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -529,7 +476,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megadja a mértékegységet.</ahelp>"
-#. N8PB
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -538,7 +484,6 @@ msgctxt ""
msgid "Width"
msgstr "Szélesség"
-#. ,3Q\
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -547,7 +492,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"visible\">Megadja a szélességet.</ahelp>"
-#. 1%$Z
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -556,7 +500,6 @@ msgctxt ""
msgid "Height"
msgstr "Magasság"
-#. sN|O
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -565,7 +508,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"visible\">Megadja a magasságot.</ahelp>"
-#. #%4o
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -574,7 +516,6 @@ msgctxt ""
msgid "Resolution"
msgstr "Felbontás"
-#. QU`P
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -583,7 +524,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
msgstr "<ahelp hid=\".\">Adja meg a kép felbontását. Válasszon mértékegységet a listából.</ahelp>"
-#. Ikg[
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -592,7 +532,6 @@ msgctxt ""
msgid "More options"
msgstr "További beállítások"
-#. e[#i
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -601,7 +540,6 @@ msgctxt ""
msgid "For JPEG files you can set the color depth and the quality."
msgstr "JPEG-fájloknál beállíthatja a színmélységet és a minőséget."
-#. R`J{
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -610,7 +548,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A színmélység 8 bites szürkeárnyalatos vagy 24 bites valós színű lehet.</ahelp>"
-#. ;k`|
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -619,7 +556,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
msgstr ""
-#. 9mrO
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -628,7 +564,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
msgstr ""
-#. Yk^s
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -637,7 +572,6 @@ msgctxt ""
msgid "For BMP files you can set the compression and the RLE encoding."
msgstr "BMP-fájloknál beállíthatja a tömörítést és az RLE-kódolást."
-#. [+sF
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -646,7 +580,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az RLE (Run Length Encoding) -kódolást alkalmazza BMP-képekre.</ahelp>"
-#. q1nO
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -655,7 +588,6 @@ msgctxt ""
msgid "For PBM, PGM, and PPM files you can set the encoding."
msgstr "PBM-, PGM- és PPM-fájloknál beállíthatja a kódolást."
-#. HZoZ
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -664,7 +596,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A fájlt bináris formátumban exportálja. A létrejött fájl kisebb mint egy szövegfájl.</ahelp>"
-#. WF59
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -673,7 +604,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A fájlt ASCII-szöveg formátumban exportálja. A létrejött fájl nagyobb mint egy bináris fájl.</ahelp>"
-#. WRt4
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -682,7 +612,6 @@ msgctxt ""
msgid "For PNG files you can set the compression and the interlaced mode."
msgstr "PNG-fájloknál beállíthatja a tömörítést és a váltottsoros módot."
-#. VGK9
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -691,7 +620,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megadja, hogy a grafikus elem váltottsoros módban kerüljön-e mentésre.</ahelp>"
-#. 5s$=
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -700,7 +628,6 @@ msgctxt ""
msgid "For GIF files you can set the transparency and the interlaced mode."
msgstr "GIF-fájloknál beállíthatja az átlátszóságot és a váltottsoros módot."
-#. 1Kls
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -709,7 +636,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Meghatározza, hogy átlátszóként mentse-e a kép hátterét. A GIF-képen csak az objektumok lesznek láthatók. A képen átlátszó részeket jelölő szín megadásához használja a Színcserélő eszközt.</ahelp>"
-#. !#w)
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -718,7 +644,6 @@ msgctxt ""
msgid "For EPS files you can set the preview, the color format, the compression, and the version."
msgstr "EPS-fájloknál beállítható az előnézet, a színformátum, a tömörítés és a verzió."
-#. I(Ic
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -727,7 +652,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Egy EPS-fájlt PostScript-nyomtatóval kell kinyomtatni. Más nyomtatók csak a beágyazott előnézetet fogják kinyomtatni.</caseinline></switchinline>"
-#. fLIL
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -736,7 +660,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megadja, hogy egy TIFF formátumú előnézeti képet is belegeneráljon-e a PostScript-fájlba.</ahelp>"
-#. IGH6
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -746,7 +669,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Megadja, hogy egy EPSI formátumú monokróm előnézeti képet is belegeneráljon-e a PostScript fájlba. Ez a formátum csak nyomtatható karaktereket tartalmaz a 7-bites ASCII kódból.</ahelp>"
-#. a/{-
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -756,7 +678,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">A tömörítés nem lehetséges ezen a szinten. Válassza a Level 1 lehetőséget, ha a PostScript-nyomtató nem rendelkezik Level 2-es funkciókkal.</ahelp>"
-#. v?G4
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -766,7 +687,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Válassza a Level 2 lehetőséget, ha a kimeneti eszköz támogatja a színes bitképeket, a palettaképeket és a tömörített képeket.</ahelp>"
-#. ;U$~
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -776,7 +696,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Színesben exportálja a fájlt.</ahelp>"
-#. 1W}c
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -786,7 +705,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Szürkeárnyalatosként exportálja a fájlt.</ahelp>"
-#. uX|#
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -796,7 +714,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Az LZW-tömörítés egy kisebb fájllá tömöríti az állományt egy táblaalapú algoritmus használatával.</ahelp>"
-#. #n}X
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -806,7 +723,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Itt adhatja meg, ha nem kíván tömörítést használni.</ahelp>"
-#. /@E=
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
@@ -815,7 +731,6 @@ msgctxt ""
msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
msgstr "A szűrőkkel kapcsolatos további információkért lásd az <link href=\"text/shared/00/00000020.xhp\" name=\"Információk az import- és exportszűrőkről\">Információk az import- és exportszűrőkről</link> című részt."
-#. HvE,
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
@@ -824,7 +739,6 @@ msgctxt ""
msgid "Help Menu"
msgstr "Súgó menü"
-#. vh]_
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
@@ -834,7 +748,6 @@ msgctxt ""
msgid "Help Menu"
msgstr "Súgó menü"
-#. q)/`
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
@@ -844,7 +757,6 @@ msgctxt ""
msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
msgstr "<variable id=\"content\">Válassza a <emph>Súgó - Tartalom</emph> lehetőséget.</variable>"
-#. [-H[
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
@@ -854,7 +766,6 @@ msgctxt ""
msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
msgstr "<variable id=\"infoanwendung\">Válassza a <emph>Súgó - A </emph><emph>%PRODUCTNAME névjegye</emph> lehetőséget.</variable>"
-#. uVZu
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
@@ -864,7 +775,6 @@ msgctxt ""
msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
msgstr "Automatikusan a <item type=\"productname\">%PRODUCTNAME</item> első elindítása után."
-#. ^EvZ
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
@@ -874,7 +784,6 @@ msgctxt ""
msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
msgstr "Válassza a <emph>Súgó - Regisztráció</emph> lehetőséget (ez egy közvetlen hivatkozás webhelyre)"
-#. 10L^
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -883,7 +792,6 @@ msgctxt ""
msgid "General Glossary"
msgstr "Általános kifejezésgyűjtemény"
-#. qepA
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -892,7 +800,6 @@ msgctxt ""
msgid "<bookmark_value>common terms;glossaries</bookmark_value><bookmark_value>glossaries;common terms</bookmark_value><bookmark_value>terminology;general glossary</bookmark_value>"
msgstr "<bookmark_value>általános kifejezések;szójegyzékek</bookmark_value><bookmark_value>szójegyzékek;általános kifejezések</bookmark_value><bookmark_value>terminológia;általános szójegyzék</bookmark_value>"
-#. :OZY
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -902,7 +809,6 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000005.xhp\" name=\"General Glossary\">General Glossary</link>"
msgstr "<link href=\"text/shared/00/00000005.xhp\" name=\"Általános szójegyzék\">Általános szójegyzék</link>"
-#. .`sY
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -912,7 +818,6 @@ msgctxt ""
msgid "This glossary includes explanations of some of the most important terms you will come across in $[officename]."
msgstr "Ebben a kifejezésgyűjteményben azokról a legfontosabb kifejezésekről talál magyarázatokat, amelyekkel a $[officename] programban találkozhat."
-#. JxaL
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -922,7 +827,6 @@ msgctxt ""
msgid "Use the glossary to look up unfamiliar terms found in any $[officename] application."
msgstr "Használja a kifejezésgyűjteményt a $[officename]-alkalmazásokban felbukkanó, ismeretlen kifejezések kikeresésére."
-#. \;`h
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -931,7 +835,6 @@ msgctxt ""
msgid "<bookmark_value>ASCII; definition</bookmark_value>"
msgstr "<bookmark_value>ASCII; meghatározás</bookmark_value>"
-#. 1]t}
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -941,7 +844,6 @@ msgctxt ""
msgid "ASCII"
msgstr "ASCII"
-#. ^H)3
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -951,7 +853,6 @@ msgctxt ""
msgid "Abbreviation for American Standard Code for Information Interchange. ASCII is a character set for displaying fonts on personal computers. It consists of 128 characters including letters, numbers, punctuation and symbols. The extended ASCII character set contains 256 characters. Each character has been assigned a unique number, also referred to as ASCII Code."
msgstr "Az American Standard Code for Information Interchange (Amerikai, információcseréhez használt szabványos kód) rövidítése. Az ASCII egy olyan karakterkészlet, amellyel betűket jeleníthet meg személyi számítógépeken. 128 karaktert tartalmaz beleértve betűket, számokat, írásjeleket és szimbólumokat. A kibővített ASCII karakterkészlet 256 karaktert számlál. Minden karakterhez hozzá van rendelve egy egyedi szám, amelyet ASCII-kódnak hívnak."
-#. rq5L
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -961,7 +862,6 @@ msgctxt ""
msgid "In HTML pages, only characters from the 7 Bit ASCII character set should appear. Other characters, such as German umlauts, are distinguished by way of a separate code. You can input extended ASCII code characters: the $[officename] export filter performs the necessary conversion."
msgstr "A HTML-oldalak csak a 7 bites ASCII-karakterkészlet elemeit tartalmazhatják. Az egyéb karakterek, mint például az ékezetes betűk, külön kódokkal vannak megkülönböztetve. Nyugodtan írhat ékezetes karaktereket, a $[officename] exportszűrője automatikusan végrehajtja a megfelelő átalakítást."
-#. 36gz
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -971,7 +871,6 @@ msgctxt ""
msgid "Bézier Object"
msgstr "Bézier-objektum"
-#. 9LXJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -981,7 +880,6 @@ msgctxt ""
msgid "Developed by the French mathematician Pierre Bézier, a Bézier curve is a mathematically defined curve used in two-dimensional graphic applications. The curve is defined by four points: the initial position and the terminating position, and two separate middle points. Bézier objects can be modified by moving these points with the mouse."
msgstr "A francia matematikus, Pierre Bézier által definiált Bézier-görbe egy matematikailag meghatározott görbe, amelyet kétdimenziós grafikus alkalmazásoknál használnak. A görbét négy pont határozza meg: a kezdeti és a végső helyzet, valamint két elkülönülő középső pont. A Bézier-objektumokat ezen pontok egérrel történő mozgatásával lehet változtatni."
-#. .rv9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -990,7 +888,6 @@ msgctxt ""
msgid "<bookmark_value>CTL;definition</bookmark_value><bookmark_value>complex text layout;definition</bookmark_value><bookmark_value>complex text layout, see CTL</bookmark_value>"
msgstr "<bookmark_value>CTL;meghatározás</bookmark_value><bookmark_value>komplex szövegelrendezés;meghatározás</bookmark_value><bookmark_value>komplex szövegelrendezés, lásd CTL</bookmark_value>"
-#. sJ96
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1000,7 +897,6 @@ msgctxt ""
msgid "Complex Text Layout (CTL)"
msgstr "Komplex szöveg megjelenítése (CTL)"
-#. L!~s
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1010,7 +906,6 @@ msgctxt ""
msgid "Languages with complex text layout may have some or all of the following features:"
msgstr "A komplex szövegmegjelenítésű nyelvek az alábbiak közül néhány vagy az összes tulajdonsággal rendelkeznek:"
-#. B*.W
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1020,7 +915,6 @@ msgctxt ""
msgid "The language is written with characters or glyphs that are composed of several parts"
msgstr "A nyelv karakterek és több részből álló jelek írásával áll össze."
-#. oVJ6
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1030,7 +924,6 @@ msgctxt ""
msgid "The text direction is from right to left."
msgstr "A szövegirány balról jobbra halad."
-#. gC:6
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1040,7 +933,6 @@ msgctxt ""
msgid "Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as CTL languages."
msgstr "A $[officename] jelenleg a hindi, a thai, a héber és az arab nyelvet támogatja CTL- (komplex szövegelrendezésű) nyelvként."
-#. 19.4
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1050,7 +942,6 @@ msgctxt ""
msgid "Enable CTL support using <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
msgstr "Engedélyezze a CTL-támogatást az <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Beállítások</caseinline><defaultinline>Eszközök - Beállítások</defaultinline></switchinline> - Nyelvi beállítások - Nyelvek</emph> lehetőséggel."
-#. `V-*
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1059,7 +950,6 @@ msgctxt ""
msgid "Context Menu"
msgstr "Helyi menü"
-#. fajM
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1068,7 +958,6 @@ msgctxt ""
msgid "<bookmark_value>DDE; definition</bookmark_value>"
msgstr "<bookmark_value>DDE; meghatározás</bookmark_value>"
-#. _L/G
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1078,7 +967,6 @@ msgctxt ""
msgid "DDE"
msgstr "DDE"
-#. ,;o%
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1088,7 +976,6 @@ msgctxt ""
msgid "DDE stands for \"Dynamic Data Exchange,\" which is a predecessor of OLE, \"Object Linking and Embedding\". With DDE, objects are linked through file reference, but not embedded."
msgstr "A DDE a Dynamic Data Exchange (Dinamikus adatcsere) rövidítése, amely az OLE (Object Linking and Embedding) elődje. A DDE segítségével objektumokat kapcsolhat fájlokhoz hivatkozással, de nem beágyazva."
-#. cppU
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1098,7 +985,6 @@ msgctxt ""
msgid "You can create a DDE link using the following procedure: Select cells from a Calc spreadsheet, copy them into the clipboard and switch to another spreadsheet and select the <emph>Edit - Paste Special</emph> dialog. Select <emph>the Link</emph> option to insert the contents as a DDE link. When activating a link, the inserted cell area will be read from its original file."
msgstr "DDE-hivatkozást a következőképpen hozhat létre: Válasszon ki cellákat egy Calc-munkafüzetből, másolja azokat a vágólapra, majd váltson egy másik munkafüzetre, és válassza a <emph>Szerkesztés - Irányított beillesztés</emph> lehetőséget. A tartalom DDE-kapcsolatként való beszúrásához válassza a <emph>Hivatkozás</emph> lehetőséget. Egy hivatkozás aktiválásakor a beszúrt cella területe az eredeti fájlból kerül beolvasásra."
-#. !~H8
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1108,7 +994,6 @@ msgctxt ""
msgid "Direct and Style Formatting"
msgstr "Közvetlen vagy stílussal történő formázás"
-#. kHB@
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1118,7 +1003,6 @@ msgctxt ""
msgid "If you format a document without Styles, it is referred to as \"direct\" formatting. This means modifying text or other objects, such as frames or tables, by applying various attributes directly. The format applies only to the selected area and all changes must be made separately. Styles, on the other hand, are not applied to the text directly, but rather are defined in the Styles and Formatting window and then applied. One advantage is that when you change a Style, all parts of the document to which that Style is assigned are modified at the same time."
msgstr "Ha stílusok használata nélkül formáz egy dokumentumot, akkor azt \"közvetlen\" formázásnak nevezik. Ez szövegek és egyéb objektumok (például keretek vagy táblázatok) módosítását jelenti a különféle attribútumok közvetlen alkalmazásával. A formátum csak a kiválasztott területen lesz érvényes, és minden változtatást külön kell végrehajtani. A stílusok viszont nem kerülnek közvetlenül alkalmazásra a szövegre, a Stílusok és formázás ablakban kerülnek meghatározásra és felhasználásra. Az egyik előny, hogy egy stílus megváltoztatásakor a dokumentum minden olyan része egyszerre módosítható, amelyhez ez a stílus hozzá volt rendelve."
-#. (K:O
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1128,7 +1012,6 @@ msgctxt ""
msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A and then choosing <emph>Format - Clear Direct Formatting</emph>."
msgstr "A közvetlen formázás dokumentumból való eltávolításához válassza ki a teljes szöveget a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A billentyűkombinációval, majd válassza a <emph>Formátum - Közvetlen formázás törlése</emph> lehetőséget."
-#. \zX.
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1137,7 +1020,6 @@ msgctxt ""
msgid "<bookmark_value>windows; docking definition</bookmark_value><bookmark_value>docking; definition</bookmark_value>"
msgstr "<bookmark_value>ablakok; dokkolás meghatározása</bookmark_value><bookmark_value>dokkolás; meghatározás</bookmark_value>"
-#. ]CN7
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1147,7 +1029,6 @@ msgctxt ""
msgid "Docking"
msgstr "Dokkolás"
-#. w+a/
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1157,7 +1038,6 @@ msgctxt ""
msgid "<variable id=\"andock1\">Some windows in $[officename], for example the Styles and Formatting window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows.</variable>"
msgstr "<variable id=\"andock1\">A $[officename] néhány ablaka dokkolható, például a Stílusok és formázás és a Navigátor ablak. Ezek az ablakok áthelyezhetők, átméretezhetők és élhez dokkolhatók. Minden szélen több ablak is dokkolható egymás tetején, vagy egymás mellett; majd a keretvonalak mozgatásával módosíthatók az ablakok relatív arányai. </variable>"
-#. A.H4
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1167,7 +1047,6 @@ msgctxt ""
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
msgstr "<variable id=\"andock2\">A dokkolás feloldásához vagy visszaállításához tartsa lenyomva a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyűt, és kattintson az ablak egy üres területére. A Stílusok és formázás ablakban az ikonok melletti szürke részre is rákattinthat duplán a <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> billentyű lenyomva tartása közben.</variable>"
-#. zmOv
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1177,7 +1056,6 @@ msgctxt ""
msgid "Docking (AutoHide)"
msgstr "Dokkolás (Automatikus elrejtés)"
-#. _)l{
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1187,7 +1065,6 @@ msgctxt ""
msgid "On any window edge where another window is docked you will see a button which allows you to show or hide the window."
msgstr "Bármely olyan ablakélen, ahol már egy másik ablak dokkolva van, látni fog egy gombot, amellyel megjelenítheti és elrejtheti az ablakot."
-#. 4+9{
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1197,7 +1074,6 @@ msgctxt ""
msgid "If you click the button on the window edge to show the window, the window will remain visible until you manually hide it again (with the same button)."
msgstr "Ha az ablak szélén lévő gombra kattintva jeleníti meg az ablakot, az látható marad, amíg el nem rejti (ugyanannak a gombnak a segítségével)."
-#. 8IF7
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1207,7 +1083,6 @@ msgctxt ""
msgid "If you show the window by clicking the window border, but not the button, you activate the <emph>AutoHide</emph> function. The AutoHide function allows you to temporarily show a hidden window by clicking on its edge. When you click in the document, the docked window hides again."
msgstr "Ha az ablak szegélyére, de nem a gombra kattintva megjeleníti az ablakot, aktiválja az <emph>Automatikus elrejtés</emph> funkciót. Az automatikus elrejtés funkció lehetővé teszi egy rejtett ablak ideiglenes megjelenítését annak szegélyére kattintva. Ha a dokumentumba kattint, a dokkolt ablak ismét eltűnik."
-#. 3Z9K
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1216,7 +1091,6 @@ msgctxt ""
msgid "<bookmark_value>formatting; definition</bookmark_value>"
msgstr "<bookmark_value>formázás; meghatározás</bookmark_value>"
-#. `2kI
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1226,7 +1100,6 @@ msgctxt ""
msgid "Formatting"
msgstr "Formázás"
-#. P*qP
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1236,7 +1109,6 @@ msgctxt ""
msgid "Formatting refers to the visual layout of text using a word-processing or DTP program. This includes defining the paper format, page borders, fonts and font effects, as well as indents and spacing. You can format text <link href=\"text/shared/00/00000005.xhp#Section7\">directly or with Styles</link> provided by $[officename]."
msgstr "A formázás a szöveg vizuális elrendezésére utal szövegszerkesztő vagy DTP-programmal. Ide tartozik a papír formátumának, keretének, a betűtípusoknak és betűeffektusoknak a meghatározása, mint ahogy a behúzások és térközök beállítása. A szövegek <link href=\"text/shared/00/00000005.xhp#Section7\">közvetlenül vagy stílusokkal</link> formázhatók, amely utóbbiak a $[officename] programban érhetők el."
-#. qnI1
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1245,7 +1117,6 @@ msgctxt ""
msgid "<bookmark_value>IME; definition</bookmark_value>"
msgstr "<bookmark_value>IME; meghatározás</bookmark_value>"
-#. =bt_
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1255,7 +1126,6 @@ msgctxt ""
msgid "IME"
msgstr "IME"
-#. y#1/
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1265,7 +1135,6 @@ msgctxt ""
msgid "IME stands for Input Method Editor. A program that allows the user to enter complex characters from non-western character sets using a standard keyboard."
msgstr "Az IME az Input Method Editor (bevitelieljárás-szerkesztő) angol rövidítése. A program lehetővé teszi a felhasználóknak, hogy nem nyugati karakterkészletekből vett összetett karaktereket szabvány billentyűzettel adhassanak meg."
-#. +1Eb
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1274,7 +1143,6 @@ msgctxt ""
msgid "<bookmark_value>JDBC; definition</bookmark_value>"
msgstr "<bookmark_value>JDBC; meghatározás</bookmark_value>"
-#. 8qeA
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1284,7 +1152,6 @@ msgctxt ""
msgid "JDBC"
msgstr "JDBC"
-#. OKqj
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1294,7 +1161,6 @@ msgctxt ""
msgid "You can use the Java Database Connectivity (JDBC) API to connect to a database from %PRODUCTNAME. JDBC drivers are written in the Java programming language and are platform independent."
msgstr "A Java Database Connectivity (JDBC) API segítségével csatlakozhat egy %PRODUCTNAME-adatbázishoz. A JDBC-illesztőprogramokat Java nyelven írják és platformfüggetlenek."
-#. kIPn
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1303,7 +1169,6 @@ msgctxt ""
msgid "<bookmark_value>kerning; definition</bookmark_value>"
msgstr "<bookmark_value>alávágás; meghatározás</bookmark_value>"
-#. #dS}
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1313,7 +1178,6 @@ msgctxt ""
msgid "Kerning"
msgstr "Alávágás"
-#. vf(S
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1323,7 +1187,6 @@ msgctxt ""
msgid "Kerning means increasing or decreasing the amount of space between pairs of letters to improve the overall appearance of the text."
msgstr "Alávágáson az egyes betűk közti távolság növelése vagy csökkentése értendő, mellyel javíthatja az egész szöveg áttekinthetőségét."
-#. .QoV
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1333,7 +1196,6 @@ msgctxt ""
msgid "The kerning tables contain information on which pairs of letters require more spacing. These tables are generally a component of a font."
msgstr "Az alávágás-táblázat információkat tartalmaz arról, amelyik betűpárhoz kell nagyobb térközt rendelni. Ezek a táblázatok általában egy betűtípushoz tartoznak."
-#. n.sr
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1342,7 +1204,6 @@ msgctxt ""
msgid "<bookmark_value>links; definition</bookmark_value>"
msgstr "<bookmark_value>hivatkozások; meghatározás</bookmark_value>"
-#. B}cU
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1352,7 +1213,6 @@ msgctxt ""
msgid "Link"
msgstr "Csatolás"
-#. 4csF
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1362,7 +1222,6 @@ msgctxt ""
msgid "The <emph>Links</emph> command is found in the <emph>Edit</emph> menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link."
msgstr "A <emph>Hivatkozások</emph> parancs a <emph>Szerkesztés</emph> menüben található. A parancs csak akkor aktiválható, ha az aktuális dokumentum legalább egy hivatkozást tartalmaz. Egy kép beszúrásakor azt közvetlenül bemásolhatja vagy hivatkozásként is beszúrhatja a dokumentumba."
-#. ~+_C
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1372,7 +1231,6 @@ msgctxt ""
msgid "When an object is inserted directly into a document, the document size increases by (at least) the size in bytes of the object. You can save the document and open it on another computer, and the inserted object will still be in the same position in the document."
msgstr "Amikor egy objektumot közvetlenül egy dokumentumba szúr be, akkor a dokumentum mérete (legalább) az objektum méretével megnő. A dokumentumot mentheti, és meg is nyithatja egy másik számítógépen, és a beszúrt objektum továbbra is a helyén lesz a dokumentumban."
-#. ]SDf
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1382,7 +1240,6 @@ msgctxt ""
msgid "If you insert the object as a link, only a reference to the file name is inserted. The file size of the document increases only by the path and file reference. If you open your document on another computer, however, the linked file must be in exactly the same position as given by the reference in order to view the object in the document."
msgstr "Ha hivatkozásként szúrja be az objektumot, csak egy fájlnévre történő hivatkozás lesz beillesztve. A dokumentum mérete csak az útvonal- és a hivatkozásadat méretével növekszik. Azonban ha egy másik számítógépen nyitja meg a dokumentumot, a hivatkozott fájlnak pontosan azon a helyen kell lennie, ahová a hivatkozás mutat, különben az objektum nem tekinthető meg."
-#. 7ZJ#
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1392,7 +1249,6 @@ msgctxt ""
msgid "Use <emph>Edit - Links</emph> to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly."
msgstr "Annak megtekintéséhez, hogy a dokumentumhoz milyen fájlok vannak hivatkozásként beszúrva, használja a <emph>Szerkesztés - Hivatkozások</emph> lehetőséget. A hivatkozások szükség esetén eltávolíthatók. Ez megszünteti a hivatkozást, és közvetlenül beilleszti az objektumot."
-#. |Cp[
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1402,7 +1258,6 @@ msgctxt ""
msgid "Number System"
msgstr "Számrendszer"
-#. pR56
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1412,7 +1267,6 @@ msgctxt ""
msgid "A number system is determined by the number of characters available for representing numbers. The decimal system, for instance is based on the ten numbers (0..9), the binary system is based on the two numbers 0 and 1, the hexadecimal system is based on 16 characters (0...9 and A...F)."
msgstr "A számrendszert a számok megjelenítésére rendelkezésre álló karakterek száma határozza meg. A decimális rendszer például a (0..9) számokra épül, a kettes számrendszer a 0 és az 1 számokra, a hexadecimális rendszer 16 karakterre (0...9 és A...F) épül."
-#. {=V}
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1421,7 +1275,6 @@ msgctxt ""
msgid "<bookmark_value>objects; definition</bookmark_value>"
msgstr "<bookmark_value>objektumok; meghatározás</bookmark_value>"
-#. ;#U\
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1431,7 +1284,6 @@ msgctxt ""
msgid "Object"
msgstr "Objektum"
-#. b\*a
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1441,7 +1293,6 @@ msgctxt ""
msgid "An object is a screen element containing data. It can refer to application data, such as text or graphics."
msgstr "Az objektum egy adatokat tartalmazó képernyőelem. Alkalmazásadatokra hivatkozhat, például szövegre vagy képre."
-#. o$d?
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1451,7 +1302,6 @@ msgctxt ""
msgid "Objects are independent and do not influence each other. Any object containing data can be assigned certain commands. For example, a graphic object has commands for image editing and a spreadsheet contains calculation commands."
msgstr "Az objektumok egymástól függetlenek, egymást nem befolyásolják. Bármely adatokat tartalmazó objektumhoz hozzárendelhet bizonyos parancsokat. Például egy képobjektumnak képszerkesztő parancsai, egy munkafüzetnek pedig számítási parancsai vannak."
-#. *T#0
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1460,7 +1310,6 @@ msgctxt ""
msgid "<bookmark_value>ODBC; definition</bookmark_value>"
msgstr "<bookmark_value>ODBC; meghatározás</bookmark_value>"
-#. D!fz
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1470,7 +1319,6 @@ msgctxt ""
msgid "ODBC"
msgstr "ODBC"
-#. sJ*R
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1480,7 +1328,6 @@ msgctxt ""
msgid "Open Database Connectivity (ODBC) is a protocol norm with which applications can access database systems. The query language used is Structured Query Language (SQL). In $[officename], you can determine for each database whether to use SQL commands to run queries. Alternatively, you can use the interactive help to define your query by mouseclick and have it automatically translated into SQL by $[officename]."
msgstr "Az ODBC (Open Database Connectivity) egy olyan protokollszabvány, amely segítségével különböző alkalmazások adatbázis-rendszerekhez férhetnek hozzá. A lekérdezés nyelve az SQL. A $[officename] programban meghatározhatja minden egyes adatbázishoz, hogy használjon-e SQL-parancsokat a lekérdezések futtatásához. Alternatív megoldásként az interaktív súgó segítségével, az egérgombbal történő kattintással is meghatározhatja lekérdezését, amely automatikusan lefordítódik SQL nyelvre a $[officename] programban."
-#. E6eg
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1490,7 +1337,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The 32bit ODBC functions required here can be installed on your system at any time with the help of the setup program supplied with your database. You can then amend the properties through the Control Panel. </caseinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Az ehhez szükséges 32 bites ODBC-funkciók bármikor telepíthetők a rendszerre az adatbázishoz mellékelt telepítőprogram segítségével. Ezt követően a Vezérlőpulton keresztül módosíthatja a tulajdonságokat. </caseinline></switchinline>"
-#. f9cS
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1499,7 +1345,6 @@ msgctxt ""
msgid "<bookmark_value>OLE; definition</bookmark_value>"
msgstr "<bookmark_value>OLE; meghatározás</bookmark_value>"
-#. =[%)
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1509,7 +1354,6 @@ msgctxt ""
msgid "OLE"
msgstr "OLE"
-#. qyuF
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1519,7 +1363,6 @@ msgctxt ""
msgid "Object Linking and Embedding (OLE) objects can be linked to a target document or may also be embedded. Embedding inserts a copy of the object and details of the source program in the target document. If you want to edit the object, simply activate the source program by double-clicking on the object."
msgstr "Az OLE (Object Linking and Embedding) -objektumok céldokumentumokhoz kapcsolhatók hozzá, vagy beágyazhatók azokba. A beágyazás azt jelenti, hogy az objektum egy másolata és a forrásprogram részletei bekerülnek a céldokumentumba. Ha szerkeszteni akarja az objektumot, egyszerűen az objektumra történő dupla kattintással aktiválja a forrásprogramot."
-#. Pf=/
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1528,7 +1371,6 @@ msgctxt ""
msgid "<bookmark_value>OpenGL; definition</bookmark_value>"
msgstr "<bookmark_value>OpenGL; meghatározás</bookmark_value>"
-#. lXOP
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1538,7 +1380,6 @@ msgctxt ""
msgid "OpenGL"
msgstr "OpenGL"
-#. [)Tj
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1548,7 +1389,6 @@ msgctxt ""
msgid "OpenGL represents a 3D graphics language, initially developed by SGI (Silicon Graphics Inc). Two dialects of this language are commonly used: Microsoft OpenGL, developed for use under Windows NT, and Cosmo OpenGL made by SGI. The latter represents an independent graphics language for all platforms and all kind of computers, even usable on machines without special 3-D graphics hardware."
msgstr "Az OpenGL egy 3D-grafikusnyelv, amelyet eredetileg az SGI (Silicon Graphics Inc) fejlesztett. E nyelvnek két elterjedt változata van: a Microsoft OpenGL, amelyet Windows NT-re fejlesztettek, és a Cosmo OpenGL, amely az SGI fejlesztése. Az utóbbi egy független grafikus nyelvet jelöl, amely minden számítógépen és platformon használható, még olyan gépeken is, amelyek nem rendelkeznek speciális 3D-hardverrel."
-#. m;!]
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1558,7 +1398,6 @@ msgctxt ""
msgid "PNG"
msgstr "PNG"
-#. tfJ!
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1568,7 +1407,6 @@ msgctxt ""
msgid "Portable Network Graphics (PNG) is a graphic file format. The files are compressed with a selectable compression factor, and, as opposed to the JPG format, PNG files are always compressed without any information loss."
msgstr "A Portable Network Graphics (PNG) egy grafikus fájlformátum. A fájlok választható tömörítési faktorral tömörítettek, és a JPG formátummal ellentétben a PNG-fájlok tömörítése mindig veszteségmentes."
-#. U6}8
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1578,7 +1416,6 @@ msgctxt ""
msgid "Primary key"
msgstr "Elsődleges kulcs"
-#. y#T1
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1588,7 +1425,6 @@ msgctxt ""
msgid "A primary key serves as a unique identifier of database fields. The unique identification of database fields is used in <link href=\"text/shared/00/00000005.xhp#relational\">relational databases</link>, to access data in other tables. If reference is made to a primary key from another table, this is termed a foreign key."
msgstr "Az elsődleges kulcs az adatbázismezők egy egyedi azonosítója. Az adatbázismezők egyedi azonosítása a <link href=\"text/shared/00/00000005.xhp#relational\">relációs adatbázisokban</link> használhatók, más tábla adatainak eléréséhez. Ha egy elsődleges kulcsra egy másik táblából hivatkoznak, akkor idegen kulcsról van szó."
-#. K.xr
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1598,7 +1434,6 @@ msgctxt ""
msgid "In $[officename], you define the primary key in the design view of a table, by choosing the relevant command from the context menu of a row header for the selected field."
msgstr "A $[officename] alkalmazásban az elsődleges kulcsot a táblázat tervezőnézetében adhatja meg, ha kiválasztja a megfelelő parancsot a kijelölt mező sorfejlécének helyi menüjéből."
-#. s*Ds
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1608,7 +1443,6 @@ msgctxt ""
msgid "Relational Database"
msgstr "Relációs adatbázis"
-#. _Pps
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1618,7 +1452,6 @@ msgctxt ""
msgid "A relational database is a collection of data items organized as a set of formally described tables from which data can be accessed or reassembled in many different ways without having to reorganize the database tables."
msgstr "A relációs adatbázis adatok előírás szerinti táblázatba rendezett gyűjteménye, amelyből sokféle módon elérhetők vagy újraszervezhetők az adatok anélkül, hogy az adatbázistáblákat átszervezné."
-#. vg1|
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1628,7 +1461,6 @@ msgctxt ""
msgid "A relational database management system (RDBMS) is a program that lets you create, update, and administer a relational database. An RDBMS takes Structured Query Language (SQL) statements entered by a user or contained in an application program and creates, updates, or provides access to the database."
msgstr "A relációsadatbáziskezelő-rendszer (RDBMS) egy olyan program, amely lehetővé teszi relációs adatbázisok létrehozását, frissítését és adminisztrálását. Az RDBMS rendszerek felhasználó által beírt vagy egy alkalmazásban szereplő SQL-utasításokat fogad, és az adatbázist létrehozza, frissíti, valamint biztosítja vele kapcsolatot."
-#. VX{n
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1638,7 +1470,6 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Egy relációs adatbázis jó példája egy Ügyfél, Vásárlás és Számlák táblákat tartalmazó adatbázis. A Számla táblázatban nincs tényleges ügyfél vagy beszerzési adat, a táblázat mégis tartalmaz utalást egy relációs hivatkozáson vagy egy reláción keresztül az Ügyfél és Vásárlás táblák megfelelő mezőire vonatkozóan (például az ügyféltábla ügyfélazonosító-mezőjére)."
-#. Xmmo
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1647,7 +1478,6 @@ msgctxt ""
msgid "<bookmark_value>register-true; definition</bookmark_value>"
msgstr "<bookmark_value>soregyen; meghatározás</bookmark_value>"
-#. gkj3
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1657,7 +1487,6 @@ msgctxt ""
msgid "Register-true"
msgstr "Soregyen"
-#. )EVm
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1667,7 +1496,6 @@ msgctxt ""
msgid "Register-true is a typography term that is used in printing. This term refers to the congruent imprint of the lines within a type area on the front and the back side of book pages, newspaper pages and magazine pages. The register-true feature make these pages easier to read by preventing gray shadows from shining through between the lines of text. The register-true term also refers to lines in adjacent text columns that are of the same height."
msgstr "A soregyen egy nyomdaiparban használt tipográfiai kifejezés. A kifejezés a könyvek, újságok és magazinok oldalainak mindkét felén lévő szövegsorok egybeesésére utal. A soregyen megkönnyíti ezen oldalak olvasását azáltal, hogy a sorok között nem látszik át a másik oldal, ezzel okozva szürkés árnyalatot. A soregyen az egyes szöveghasábok sorainak azonos magasságát is jelenti."
-#. d*nB
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1677,7 +1505,6 @@ msgctxt ""
msgid "When you define a paragraph, Paragraph Style, or a Page Style as register-true, the base lines of the affected characters are aligned to a vertical page grid, regardless of font size or of the presence of graphics. If you want, you can specify the setting for this grid as a Page Style property."
msgstr "Amikor egy bekezdést, egy bekezdésstílust vagy egy oldalstílust ad meg soregyenként, az érintett karakterek alapvonalai egy függőleges oldalrácshoz kerülnek igazításra, függetlenül a betűmérettől vagy a képek esetleges jelenlététől. Ha akarja, oldalstílus-tulajdonságként megadhatja e rács beállításait."
-#. *k(0
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1687,7 +1514,6 @@ msgctxt ""
msgid "RTF"
msgstr "RTF"
-#. o7TS
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1697,7 +1523,6 @@ msgctxt ""
msgid "Rich Text Format (RTF) is a file format developed for the exchange of text files. A special feature is that the formatting is converted into directly readable text information. Unfortunately, in comparison to other file formats, this creates relatively large files."
msgstr "Az RTF egy olyan fájlformátum, amely szöveges fájlok cseréjére szolgál. Különlegessége abban rejlik, hogy a formázást átalakítja közvetlenül olvasható szöveges formátumba. Sajnos, más fájl formátumokkal összehasonlítva, meglehetősen sok helyet foglal."
-#. yW[K
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1707,7 +1532,6 @@ msgctxt ""
msgid "Saving Relatively and Absolutely"
msgstr "Mentés relatív és abszolút útvonallal"
-#. jv:i
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1717,7 +1541,6 @@ msgctxt ""
msgid "In various dialogs (for example, <emph>Edit - AutoText</emph>) you can select whether you want to save files relatively or absolutely."
msgstr "Különböző párbeszédablakokban (például a <emph>Szerkesztés - Szövegblokk</emph> menüben) kijelölhető, hogy relatív vagy abszolút útvonallal akarj-e menteni a fájlt."
-#. Va_g
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1727,7 +1550,6 @@ msgctxt ""
msgid "If you choose to save relatively, the references to embedded graphics or other objects in your document will be saved relative to the location in the file system. In this case, it does not matter where the referenced directory structure is recorded. The files will be found regardless of location, as long as the reference remains on the same drive or volume. This is important if you want to make the document available to other computers that may have a completely different directory structure, drive or volume names. It is also recommended to save relatively if you want to create a directory structure on an Internet server."
msgstr "Ha a relatívat választja, a beágyazott képek vagy más objektumok dokumentumon belüli hivatkozásai a fájlrendszeren belüli helyhez képest lesznek mentve. Ilyenkor nem érdekes, hol található a hivatkozott könyvtárszerkezet. A fájlok a helyzetüktől függetlenül megkerülnek addig, amíg a hivatkozás ugyanazon a meghajtón vagy köteten belül marad. Ez akkor fontos, ha azt szeretné, hogy a dokumentum elérhető legyen más számítógépek számára is, amelyek teljesen más könyvtárszerkezetet, illetve meghajtó- vagy kötetneveket használhatnak. Ajánlatos akkor is a relatív mentés, ha egy internetkiszolgálón szeretne könyvtárszerkezetet létrehozni."
-#. G7tv
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1737,7 +1559,6 @@ msgctxt ""
msgid "If you prefer absolute saving, all references to other files will also be defined as absolute, based on the respective drive, volume or root directory. The advantage is that the document containing the references can be moved to other directories or folders, and the references remain valid."
msgstr "Amennyiben az abszolút mentést választja, a más fájlokhoz tartozó hivatkozások is abszolútként, a megfelelő meghajtó, kötet illetve gyökérkönyvtár alapján jelennek meg. Ennek előnye, hogy meg ha a hivatkozásokat tartalmazó dokumentumot más könyvtárakba vagy mappákba mozgathatja, a hivatkozások érvényesek maradnak."
-#. ^qo%
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1746,7 +1567,6 @@ msgctxt ""
msgid "<bookmark_value>SQL;definition</bookmark_value>"
msgstr "<bookmark_value>SQL;meghatározás</bookmark_value>"
-#. 6.~1
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1756,7 +1576,6 @@ msgctxt ""
msgid "SQL"
msgstr "SQL"
-#. t7^D
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1766,7 +1585,6 @@ msgctxt ""
msgid "Structured Query Language (SQL) is a language used for database queries. In $[officename] you can formulate queries either in SQL or interactively with the mouse."
msgstr "Az SQL (Structured Query Language) adatbázis-lekérdezéshez használatos nyelv. A $[officename] programban lekérdezéseket SQL-ben vagy az egér segítségével, interaktívan készíthet."
-#. 76kR
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1776,7 +1594,6 @@ msgctxt ""
msgid "SQL Database / SQL Server"
msgstr "SQL-adatbázis / SQL-kiszolgáló"
-#. beYm
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1786,7 +1603,6 @@ msgctxt ""
msgid "An SQL database is a database system which offers an <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> interface. SQL databases are often used in client/server networks in which different clients access a central server (for example, an SQL server), hence they are also called SQL server databases, or SQL servers for short."
msgstr "Egy SQL adatbázis egy olyan adatbázisrendszer, amely <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link>-felületet biztosít. Az SQL-adatbázisokat gyakran használják kliens/kiszolgáló-hálózatokban, ahol különböző kliensek kapcsolódnak egy központi kiszolgálóhoz (például egy SQL-kiszolgálóhoz), ezért SQL-kiszolgálóadatbázisnak vagy röviden SQL-kiszolgálóknak nevezik őket."
-#. ?=c7
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1796,7 +1612,6 @@ msgctxt ""
msgid "In $[officename], you can integrate external SQL databases. These may be located on your local hard disk as well as on the network. Access is achieved through <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC, or a native driver integrated into $[officename]."
msgstr "A $[officename] programba integrálhat külső SQL-adatbázisokat. Ezek a helyi merevlemezen vagy hálózaton is lehetnek. A hozzáférést egy <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>-, JDBC- vagy egy, a $[officename] programba integrált natív illesztőprogramon keresztül lehet biztosítani."
-#. P1qX
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1806,7 +1621,6 @@ msgctxt ""
msgid "Widows and Orphans"
msgstr "Fattyú- és árvasorok"
-#. #/];
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1816,7 +1630,6 @@ msgctxt ""
msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page."
msgstr "Az özvegysor és a fattyúsor sok-sok éve használt történelmi tipográfiai elnevezések. Az özvegysor a bekezdés végén egy olyan rövid sor, amely nyomtatásban egymagában átkerül a következő oldal (hasáb) tetejére. A fattyúsor ennek ellentéte, egy bekezdés első sora, amely egymagában áll egy oldal (hasáb) alján. A $[officename]-szövegesdokumentumokban a kívánt bekezdésstílusban automatikusan letiltható ezek előfordulása. Ha így tesz, megadhatja, minimálisan hány sort kell együtt tartani egy oldalon."
-#. _B=L
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1825,7 +1638,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "Formátum menü"
-#. k\NT
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1835,7 +1647,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "Formátum menü"
-#. ^g.,
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1845,7 +1656,6 @@ msgctxt ""
msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
msgstr "<variable id=\"standard\">Válassza a <emph>Formátum - Közvetlen formázás törlése</emph> lehetőséget.</variable>"
-#. aVCU
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1855,7 +1665,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character</emph>"
msgstr "Válassza a <emph>Formátum - Karakter</emph> lehetőséget."
-#. 7d@i
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1865,7 +1674,6 @@ msgctxt ""
msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
msgstr "A <emph>Szövegformázás</emph> eszköztáron (a kurzor legyen az objektumon) kattintson a következőre:"
-#. n.#i
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1874,7 +1682,6 @@ msgctxt ""
msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Ikon</alt></image>"
-#. ,pbN
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1884,7 +1691,6 @@ msgctxt ""
msgid "Character"
msgstr "Karakter"
-#. _$_`
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1894,7 +1700,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Font</emph> tab"
msgstr "Válassza a <emph>Formátum - Karakter - Betűkészlet</emph> fület"
-#. !uIk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1904,7 +1709,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Betűkészlet</emph> fület."
-#. ;0%8
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1914,7 +1718,6 @@ msgctxt ""
msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
msgstr "Nyissa meg egy sorfejléc helyi menüjét egy adatbázistáblában, és válassza a <emph>Tábla formátuma - Betűkészlet</emph> fület"
-#. ~$P*
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1924,7 +1727,6 @@ msgctxt ""
msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
msgstr "Válassza a <emph>Formátum - Cím - Karakter</emph> fület (Chart-dokumentumoknál)"
-#. ~Z.P
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1934,7 +1736,6 @@ msgctxt ""
msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
msgstr "Válassza a <emph>Formátum - Jelmagyarázat - Karakter</emph> fület (Chart-dokumentumoknál)"
-#. y~Mb
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1944,7 +1745,6 @@ msgctxt ""
msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
msgstr "Válassza a <emph>Formátum - Tengely - Karakter</emph> fület (Chart-dokumentumoknál)"
-#. ;[!K
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1954,7 +1754,6 @@ msgctxt ""
msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
msgstr "Válassza a <emph>Formátum - Cella - Betűkészlet</emph> fület (munkafüzetek)"
-#. No30
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1964,7 +1763,6 @@ msgctxt ""
msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
msgstr "<emph>Formátum - Oldal - Élőfej/Élőláb</emph> menü, <emph>Szerkesztés</emph> gomb (munkafüzetek)"
-#. ovz0
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1974,7 +1772,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
msgstr "Válassza a <emph>Formátum - Karakter - Betűhatások</emph> fület"
-#. j]57
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1984,7 +1781,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Betűhatások</emph> fület."
-#. \L.y
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -1994,7 +1790,6 @@ msgctxt ""
msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
msgstr "<emph>Formátum - Oldal - Élőfej/Élőláb</emph> menü, <emph>Szerkesztés</emph> gomb (munkafüzetek)"
-#. AZ1A
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2004,7 +1799,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Position</emph> tab"
msgstr "Válassza a <emph>Formátum - Karakterkészlet - Pozíció</emph> fület"
-#. EYBu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2014,7 +1808,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Igazítás</emph> fület."
-#. .(|o
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2024,7 +1817,6 @@ msgctxt ""
msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
msgstr "<emph>Formátum - Oldal - Élőfej/Élőláb</emph> menü, <emph>Szerkesztés</emph> gomb (munkafüzetek)"
-#. phuN
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2034,7 +1826,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
msgstr "Válassza a <emph>Formátum - Karakter - Ázsiai tördelés</emph> fület"
-#. WUj@
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2044,7 +1835,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Ázsiai tördelés</emph> fület"
-#. \3:]
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2054,7 +1844,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
msgstr "Válassza a <emph>Formátum - Bekezdés - Ázsiai tipográfia</emph> fület (nem HTML-ben)"
-#. w`=h
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2064,7 +1853,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Válassza a <emph>Formátum - Cella - Ázsiai tipográfia</emph> fület </caseinline></switchinline>"
-#. JO~u
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2074,7 +1862,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Ázsiai tipográfia</emph> fület"
-#. h#Mi
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2084,7 +1871,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
msgstr "Válassza a <emph>Formátum - Karakter - Hiperhivatkozás</emph> fület."
-#. n6zO
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2094,7 +1880,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph</emph>"
msgstr "Válassza a <emph>Formátum - Bekezdés</emph> lehetőséget."
-#. TFds
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2104,7 +1889,6 @@ msgctxt ""
msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
msgstr "A <emph>Szövegformázás</emph> eszköztáron (a kurzor legyen az objektumon) kattintson a következőre:"
-#. F^l)
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2113,7 +1897,6 @@ msgctxt ""
msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
msgstr "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Ikon</alt></image>"
-#. p(]w
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2123,7 +1906,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "Bekezdés"
-#. -d?d
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2133,7 +1915,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
msgstr "Válassza a <emph>Formátum - Bekezdés - Igazítás</emph> fület"
-#. ibRS
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2143,7 +1924,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Igazítás</emph> fület."
-#. _PV`
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2153,7 +1933,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
msgstr "Válassza a <emph>Formátum - Bekezdés - Behúzás és térköz</emph> fület"
-#. c!iV
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2163,7 +1942,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Behúzás és térköz</emph> fület."
-#. [WEm
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2173,7 +1951,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
msgstr "Válassza a <emph>Formátum - Bekezdés - Tabulátorok</emph> fület"
-#. 4}2g
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2183,7 +1960,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Tabulátorok</emph> fület."
-#. Q[L:
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2193,7 +1969,6 @@ msgctxt ""
msgid "Double-click the ruler"
msgstr "Kattintás kétszer a vonalzóra"
-#. P_jf
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2202,7 +1977,6 @@ msgctxt ""
msgid "(all options only in Writer or Calc)"
msgstr "(minden beállítás csak Writer és Calc esetén)"
-#. 9TGX
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2212,7 +1986,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
msgstr "Válassza a <emph>Formátum - Bekezdés - Szegélyek</emph> fület"
-#. 1f:(
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2222,7 +1995,6 @@ msgctxt ""
msgid "Choose <emph>Format - Picture - Borders</emph> tab"
msgstr "Válassza a <emph>Formátum - Kép - Szegélyek</emph> fület"
-#. q{Aw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2232,7 +2004,6 @@ msgctxt ""
msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
msgstr "Válassza a <emph>Formátum - Keret/objektum - Szegélyek</emph> fület"
-#. _NWE
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2242,7 +2013,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Borders</emph> tab"
msgstr "Válassza a <emph>Formátum- Oldal - Szegélyek</emph> fület"
-#. ]Wu]
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2252,7 +2022,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Szegélyek</emph> fület."
-#. n*SU
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2262,7 +2031,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Header - More</emph> button"
msgstr "Válassza a <emph>Formátum - Oldal - Élőfej - Egyebek</emph> gombot"
-#. YZ76
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2272,7 +2040,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Footer - More</emph> button"
msgstr "Válassza a <emph>Formátum - Oldal - Élőláb - Egyebek</emph> gombot"
-#. Vn:-
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2282,7 +2049,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Válassza a <emph>Formátum - Cellák - Szegélyek</emph> fület</caseinline></switchinline>"
-#. ZQt3
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2292,7 +2058,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Formátum - Bekezdés</emph> menü, <emph>Szegélyek</emph> lap, <emph>Belső margók</emph> lehetőség</caseinline></switchinline>"
-#. S/_\
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2302,7 +2067,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><emph>Formátum - Oldal - Szegély - Belső margók</emph> menü</caseinline></switchinline>"
-#. %o|Y
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2312,7 +2076,6 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
msgstr "Válassza a <emph>Formátum - Bekezdés - Háttér</emph> fület"
-#. R@Z=
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2322,7 +2085,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Background</emph> tab"
msgstr "Válassza a <emph>Formátum - Karakter - Háttér</emph> fület"
-#. fEmX
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2332,7 +2094,6 @@ msgctxt ""
msgid "Choose <emph>Format - Picture - Background</emph> tab"
msgstr "Válassza a <emph>Formátum - Kép - Háttér</emph> fület"
-#. j)#=
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2342,7 +2103,6 @@ msgctxt ""
msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
msgstr "Válassza a <emph>Formátum - Keret/objektum - Háttér</emph> fület"
-#. Y[bh
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2352,7 +2112,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Background</emph> tab"
msgstr "Válassza a <emph>Formátum - Oldal - Háttér</emph> fület"
-#. ACs;
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2362,7 +2121,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Header - More</emph> button"
msgstr "Válassza a <emph>Formátum - Oldal - Élőfej - Egyebek</emph> gombot"
-#. tFVF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2372,7 +2130,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Footer - More</emph> button"
msgstr "Válassza a <emph>Formátum - Oldal - Élőláb - Egyebek</emph> gombot"
-#. GJW(
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2382,7 +2139,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Háttér</emph> fület."
-#. 8d[w
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2392,7 +2148,6 @@ msgctxt ""
msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
msgstr "Válassza a <emph>Beszúrás/Szerkesztés - Szakasz - Háttér</emph> fület"
-#. eB4Q
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2402,7 +2157,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Válassza a <emph>Formátum - Cellák - Háttér</emph> fület</caseinline></switchinline>"
-#. NX2A
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2412,7 +2166,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Organizer</emph> tab"
msgstr "Válassza a <emph>Formátum - Oldal - Szervező</emph> fület"
-#. {m9a
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2422,7 +2175,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Szervező</emph> fület."
-#. _PmG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2432,7 +2184,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Page</emph> tab"
msgstr "Válassza a <emph>Formátum - Oldal - Oldal</emph> fület"
-#. =1DI
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2442,7 +2193,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Oldal</emph> fület."
-#. cXiA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2452,7 +2202,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Header</emph> tab"
msgstr "Válassza a <emph>Formátum - Oldal - Élőfej</emph> fület"
-#. XKt|
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2462,7 +2211,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Élőfej</emph> fület."
-#. E[T2
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2472,7 +2220,6 @@ msgctxt ""
msgid "Choose <emph>Format - Page - Footer</emph> tab"
msgstr "Válassza a <emph>Formátum - Oldal - Élőláb</emph> fület"
-#. ~-w:
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2482,7 +2229,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget, és az egyik bejegyzés helyi menüjéből válassza a <emph>Módosítás/Új - Élőláb</emph> fület."
-#. L6Nm
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2492,7 +2238,6 @@ msgctxt ""
msgid "Choose <emph>Format - Styles and Formatting</emph>"
msgstr "Válassza a <emph>Formátum - Stílusok és formázás</emph> lehetőséget."
-#. BOZL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2502,7 +2247,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
-#. IKvR
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2512,7 +2256,6 @@ msgctxt ""
msgid "On <emph>Formatting</emph> Bar, click"
msgstr "A <emph>Formázás</emph> eszköztáron kattintson a következőre:"
-#. .mlq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2521,7 +2264,6 @@ msgctxt ""
msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
msgstr "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Ikon</alt></image>"
-#. Gg]V
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2531,7 +2273,6 @@ msgctxt ""
msgid "Styles and Formatting"
msgstr "Stílusok és formázás"
-#. 4`#7
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2541,7 +2282,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>A <emph>Rajz</emph> eszköztáron kattintson a következőre:</defaultinline></switchinline>"
-#. ?V8:
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2550,7 +2290,6 @@ msgctxt ""
msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
msgstr "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Ikon</alt></image>"
-#. o?D;
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2560,7 +2299,6 @@ msgctxt ""
msgid "<emph>3D Effects</emph>"
msgstr "<emph>Térhatás</emph>"
-#. bq)(
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2570,7 +2308,6 @@ msgctxt ""
msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
msgstr "<variable id=\"3dgeometrie\">Nyissa meg a térbeli objektum helyi menüjét, és válassza a <emph>Térhatás - Geometria</emph> lapot. </variable>"
-#. o$vY
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2580,7 +2317,6 @@ msgctxt ""
msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
msgstr "<variable id=\"3ddarstellung\">Nyissa meg a térbeli objektum helyi menüjét, és válassza a <emph>Térhatás - Árnyalás</emph> lapot. </variable>"
-#. NA%I
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2590,7 +2326,6 @@ msgctxt ""
msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
msgstr "<variable id=\"3dbeleuchtung\">Nyissa meg a térbeli objektum helyi menüjét, és válassza a <emph>Térhatás - Megvilágítás</emph> lapot. </variable>"
-#. X)w[
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2600,7 +2335,6 @@ msgctxt ""
msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
msgstr "<variable id=\"3dtexturen\">Nyissa meg a térbeli objektum helyi menüjét, és válassza a <emph>Térhatás - Mintázatok</emph> lapot. </variable>"
-#. p7Vs
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2610,7 +2344,6 @@ msgctxt ""
msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
msgstr "<variable id=\"3dmaterial\">Nyissa meg a térbeli objektum helyi menüjét, és válassza a <emph>Térhatás - Anyag</emph> lapot. </variable>"
-#. ?kK^
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2620,7 +2353,6 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering </emph>"
msgstr "Válassza a <emph>Formátum - Felsorolás és számozás</emph> lehetőséget."
-#. ^)Z|
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2630,7 +2362,6 @@ msgctxt ""
msgid "On <emph>Formatting</emph> toolbar, click"
msgstr "A <emph>Formázás</emph> eszköztáron kattintson a következőre:"
-#. Wo|M
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2639,7 +2370,6 @@ msgctxt ""
msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
msgstr "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Ikon</alt></image>"
-#. I@:i
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2649,7 +2379,6 @@ msgctxt ""
msgid "Bullets On/Off"
msgstr "Felsorolás be/ki"
-#. ~EMh
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2659,7 +2388,6 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
msgstr "Válassza a <emph>Formátum - Felsorolás és számozás</emph> lehetőséget. Nyissa meg a <emph>Beállítások</emph> lapot."
-#. bUiU
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2669,7 +2397,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Nyissa meg a <emph>Stílusok és formázás</emph> - Bemutatóstílusok lehetőségnél egy Vázlatstílus helyi menüjét, és válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. t//:
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2679,7 +2406,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nyissa meg a <emph>Stílusok és formázás - Számozási stílusok</emph> lehetőséget, a helyi menüt, majd válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. Y?u~
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2689,7 +2415,6 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
msgstr "Válassza a <emph>Formátum - Felsorolás és számozás - Felsorolásjel</emph> fület."
-#. VUMT
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2699,7 +2424,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Nyissa meg a Stílusok és formázás - Bemutatóstílusok lehetőségnél egy Vázlatstílus helyi menüjét, és válassza az <emph>Új/Módosítás</emph> lehetőséget</caseinline></switchinline>"
-#. QN{h
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2709,7 +2433,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nyissa meg a <emph>Stílusok és formázás - Számozási stílusok</emph> lehetőséget, az egyik bejegyzés helyi menüjét, majd válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. 6pq{
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2719,7 +2442,6 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
msgstr "Válassza a <emph>Formátum - Felsorolás és számozás - Számozás</emph> fület"
-#. nKJY
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2729,7 +2451,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Nyissa meg a <emph>Stílusok és formázás</emph> - Bemutatóstílusok lehetőségnél egy Vázlatstílus helyi menüjét, és válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. N`F@
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2739,7 +2460,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nyissa meg a <emph>Stílusok és formázás - Számozási stílusok</emph> lehetőséget, a helyi menüt, majd válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. {h1c
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2748,7 +2468,6 @@ msgctxt ""
msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
msgstr "<variable id=\"graphics\">Válassza a <emph>Formátum - Felsorolás és számozás - Képek</emph> fület</variable>"
-#. :=l_
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2758,7 +2477,6 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
msgstr "Válassza a <emph>Formátum - Felsorolás és számozás - Vázlat</emph> fület"
-#. AcSo
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2768,7 +2486,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nyissa meg a <emph>Stílusok és formázás - Számozási stílusok</emph> lehetőséget, a helyi menüt, majd válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. x$Lp
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2778,7 +2495,6 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
msgstr "Válassza a <emph>Formátum - Felsorolás és számozás</emph> lehetőséget. Nyissa meg a <emph>Pozíció</emph> lapot."
-#. E$fd
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2788,7 +2504,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Válassza az <emph>Eszközök - Vázlatszintek számozása - Pozíció</emph> fület</caseinline></switchinline>"
-#. y.sr
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2798,7 +2513,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nyissa meg a <emph>Stílusok és formázás - Számozási stílusok</emph> lehetőséget, a helyi menüt, majd válassza az <emph>Új/Módosítás</emph> lehetőséget.</caseinline></switchinline>"
-#. !_3K
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2808,7 +2522,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Formátum - Kép</emph> menü, <emph>Levágás</emph> lap</caseinline></switchinline>"
-#. 65-n
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2818,7 +2531,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Ikon a <emph>Kép</emph> eszköztárban:</defaultinline></switchinline>"
-#. gaW.
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2827,7 +2539,6 @@ msgctxt ""
msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
msgstr "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Ikon</alt></image>"
-#. -jl0
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2837,7 +2548,6 @@ msgctxt ""
msgid "Crop"
msgstr "Levágás"
-#. jvf7
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2847,7 +2557,6 @@ msgctxt ""
msgid "Choose <emph>Format - Change Case</emph>"
msgstr "Válassza a <emph>Formátum - Kisbetű - nagybetű</emph> lehetőséget."
-#. I(W8
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2857,7 +2566,6 @@ msgctxt ""
msgid "Open context menu (text) - choose <emph>Change Case</emph>"
msgstr "Nyissa meg a helyi menüt (szöveg), válassza a <emph>Kisbetű – nagybetű</emph> lehetőséget"
-#. L(n$
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
@@ -2867,7 +2575,6 @@ msgctxt ""
msgid "Menu <emph>Format - Asian phonetic guide</emph>"
msgstr "<emph>Formátum - Ázsiai fonetikus segédlet</emph> menü"
-#. k223
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2876,7 +2583,6 @@ msgctxt ""
msgid "File Menu"
msgstr "Fájl menü"
-#. pe+*
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2886,7 +2592,6 @@ msgctxt ""
msgid "File Menu"
msgstr "Fájl menü"
-#. kEOJ
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2895,7 +2600,6 @@ msgctxt ""
msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
msgstr "<variable id=\"webhtml\">Válassza a <emph>Fájl - Előnézet a böngészőben</emph> lehetőséget.</variable>"
-#. Pn0E
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2905,7 +2609,6 @@ msgctxt ""
msgid "Choose <emph>File - New</emph>"
msgstr "Válassza a <emph>Fájl - Új</emph> lehetőséget."
-#. zGz4
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2915,7 +2618,6 @@ msgctxt ""
msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
msgstr "<emph>Új</emph> ikon a <emph>Standard</emph> eszköztáron (az ikon az új dokumentum típusát mutatja)"
-#. px0D
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2924,7 +2626,6 @@ msgctxt ""
msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Ikon</alt></image>"
-#. -G/u
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2934,7 +2635,6 @@ msgctxt ""
msgid "New"
msgstr "Új"
-#. AXt3
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2944,7 +2644,6 @@ msgctxt ""
msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N billentyűkombináció"
-#. U[aR
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2954,7 +2653,6 @@ msgctxt ""
msgid "Menu <emph>File - New</emph><emph>- Templates and Documents</emph>."
msgstr "<emph>Fájl - Új</emph><emph> - Sablonok és dokumentumok</emph> menü"
-#. RL|R
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2964,7 +2662,6 @@ msgctxt ""
msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N billentyűkombináció"
-#. R%%X
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2974,7 +2671,6 @@ msgctxt ""
msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
msgstr "<variable id=\"etiketten\">Válassza a <emph>Fájl - Új - Címkék</emph> lehetőséget.</variable>"
-#. hqZ4
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2984,7 +2680,6 @@ msgctxt ""
msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
msgstr "<variable id=\"etikettenein\">Válassza a <emph>Fájl - Új - Címkék - Címkék</emph> fület </variable>"
-#. ea}g
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -2994,7 +2689,6 @@ msgctxt ""
msgid "Choose <emph>File - New - Labels - Format</emph> tab"
msgstr "Válassza a <emph>Fájl - Új - Címkék - Formátum</emph> fület"
-#. .-q)
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3004,7 +2698,6 @@ msgctxt ""
msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
msgstr "Válassza a <emph>Fájl - Új - Névjegyek - Formátum</emph> fület"
-#. w{bw
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3014,7 +2707,6 @@ msgctxt ""
msgid "Choose <emph>File - New - Labels - Options</emph> tab"
msgstr "Válassza a <emph>Fájl - Új - Címkék - Beállítások</emph> fület"
-#. a}ah
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3024,7 +2716,6 @@ msgctxt ""
msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
msgstr "Válassza a <emph>Fájl - Új - Névjegyek - Beállítások</emph> fület"
-#. F,]n
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3034,7 +2725,6 @@ msgctxt ""
msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
msgstr "<variable id=\"visikart\">Válassza a <emph>Fájl - Új - Névjegyek</emph> lehetőséget.</variable>"
-#. IR.Y
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3044,7 +2734,6 @@ msgctxt ""
msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
msgstr "<variable id=\"visikartform\">Válassza a <emph>Fájl - Új - Névjegyek - Közepes</emph> fület </variable>"
-#. w-lZ
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3054,7 +2743,6 @@ msgctxt ""
msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
msgstr "<variable id=\"viskartinhalt\">Válassza a <emph>Fájl - Új - Névjegyek - Névjegyek</emph> fület </variable>"
-#. ar?i
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3064,7 +2752,6 @@ msgctxt ""
msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
msgstr "<variable id=\"viskartpriv\">Válassza a <emph>Fájl - Új - Névjegyek - Személyes</emph> fület </variable>"
-#. ,,B}
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
@@ -3074,7 +2761,6 @@ msgctxt ""
msgid "<variable id=\"viskartgesch\">Choose