/* -*- 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // Defines constexpr OUStringLiteral aSlotNewDocDirect = u".uno:AddDirect"; constexpr OUStringLiteral aSlotAutoPilot = u".uno:AutoPilotMenu"; using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star::frame; using namespace com::sun::star::beans; using namespace com::sun::star::util; using namespace com::sun::star::container; using namespace com::sun::star::ui; namespace framework { OUString SAL_CALL NewMenuController::getImplementationName() { return "com.sun.star.comp.framework.NewMenuController"; } sal_Bool SAL_CALL NewMenuController::supportsService( const OUString& sServiceName ) { return cppu::supportsService(this, sServiceName); } css::uno::Sequence< OUString > SAL_CALL NewMenuController::getSupportedServiceNames() { return { SERVICENAME_POPUPMENUCONTROLLER }; } void NewMenuController::setMenuImages( PopupMenu* pPopupMenu, bool bSetImages ) { sal_uInt16 nItemCount = pPopupMenu->GetItemCount(); Reference< XFrame > xFrame( m_xFrame ); for ( sal_uInt16 i = 0; i < nItemCount; i++ ) { sal_uInt16 nItemId = pPopupMenu->GetItemId( i ); if ( nItemId != 0 ) { if ( bSetImages ) { OUString aImageId; OUString aCmd( pPopupMenu->GetItemCommand( nItemId ) ); void* nAttributePtr = pPopupMenu->GetUserValue( nItemId ); MenuAttributes* pAttributes = static_cast(nAttributePtr); if (pAttributes) aImageId = pAttributes->aImageId; INetURLObject aURLObj( aImageId.isEmpty() ? aCmd : aImageId ); Image aImage = SvFileInformationManager::GetImageNoDefault( aURLObj ); if ( !aImage ) aImage = vcl::CommandInfoProvider::GetImageForCommand(aCmd, xFrame); if ( !!aImage ) pPopupMenu->SetItemImage( nItemId, aImage ); } else pPopupMenu->SetItemImage( nItemId, Image() ); } } } void NewMenuController::determineAndSetNewDocAccel(const css::awt::KeyEvent& rKeyCode) { sal_uInt16 nCount(m_xPopupMenu->getItemCount()); sal_uInt16 nId( 0 ); OUString aCommand; if ( !m_aEmptyDocURL.isEmpty() ) { // Search for the empty document URL for ( sal_uInt16 i = 0; i < nCount; i++ ) { if (m_xPopupMenu->getItemType(i) != css::awt::MenuItemType_SEPARATOR) { nId = m_xPopupMenu->getItemId(i); aCommand = m_xPopupMenu->getCommand(nId); if ( aCommand.startsWith( m_aEmptyDocURL ) ) { m_xPopupMenu->setAcceleratorKeyEvent(nId, rKeyCode); break; } } } } } void NewMenuController::setAccelerators() { if ( !m_bModuleIdentified ) return; Reference< XAcceleratorConfiguration > xDocAccelCfg( m_xDocAcceleratorManager ); Reference< XAcceleratorConfiguration > xModuleAccelCfg( m_xModuleAcceleratorManager ); Reference< XAcceleratorConfiguration > xGlobalAccelCfg( m_xGlobalAcceleratorManager ); if ( !m_bAcceleratorCfg ) { // Retrieve references on demand m_bAcceleratorCfg = true; if ( !xDocAccelCfg.is() ) { Reference< XController > xController = m_xFrame->getController(); Reference< XModel > xModel; if ( xController.is() ) { xModel = xController->getModel(); if ( xModel.is() ) { Reference< XUIConfigurationManagerSupplier > xSupplier( xModel, UNO_QUERY ); if ( xSupplier.is() ) { Reference< XUIConfigurationManager > xDocUICfgMgr = xSupplier->getUIConfigurationManager(); if ( xDocUICfgMgr.is() ) { xDocAccelCfg = xDocUICfgMgr->getShortCutManager(); m_xDocAcceleratorManager = xDocAccelCfg; } } } } } if ( !xModuleAccelCfg.is() ) { Reference< XModuleUIConfigurationManagerSupplier > xModuleCfgMgrSupplier = theModuleUIConfigurationManagerSupplier::get( m_xContext ); Reference< XUIConfigurationManager > xUICfgMgr = xModuleCfgMgrSupplier->getUIConfigurationManager( m_aModuleIdentifier ); if ( xUICfgMgr.is() ) { xModuleAccelCfg = xUICfgMgr->getShortCutManager(); m_xModuleAcceleratorManager = xModuleAccelCfg; } } if ( !xGlobalAccelCfg.is() ) { xGlobalAccelCfg = GlobalAcceleratorConfiguration::create( m_xContext ); m_xGlobalAcceleratorManager = xGlobalAccelCfg; } } vcl::KeyCode aEmptyKeyCode; sal_uInt16 nItemCount(m_xPopupMenu->getItemCount()); std::vector< vcl::KeyCode > aMenuShortCuts; std::vector< OUString > aCmds; std::vector< sal_uInt16 > aIds; for ( sal_uInt16 i = 0; i < nItemCount; i++ ) { if (m_xPopupMenu->getItemType(i) != css::awt::MenuItemType_SEPARATOR) { sal_uInt16 nId(m_xPopupMenu->getItemId(i)); aIds.push_back( nId ); aMenuShortCuts.push_back( aEmptyKeyCode ); aCmds.push_back(m_xPopupMenu->getCommand(nId)); } } sal_uInt32 nSeqCount( aIds.size() ); if ( m_bNewMenu ) nSeqCount+=1; Sequence< OUString > aSeq( nSeqCount ); auto aSeqRange = asNonConstRange(aSeq); // Add a special command for our "New" menu. if ( m_bNewMenu ) { aSeqRange[nSeqCount-1] = m_aCommandURL; aMenuShortCuts.push_back( aEmptyKeyCode ); } const sal_uInt32 nCount = aCmds.size(); for ( sal_uInt32 i = 0; i < nCount; i++ ) aSeqRange[i] = aCmds[i]; if ( m_xGlobalAcceleratorManager.is() ) retrieveShortcutsFromConfiguration( xGlobalAccelCfg, aSeq, aMenuShortCuts ); if ( m_xModuleAcceleratorManager.is() ) retrieveShortcutsFromConfiguration( xModuleAccelCfg, aSeq, aMenuShortCuts ); if ( m_xDocAcceleratorManager.is() ) retrieveShortcutsFromConfiguration( xDocAccelCfg, aSeq, aMenuShortCuts ); const sal_uInt32 nCount2 = aIds.size(); for ( sal_uInt32 i = 0; i < nCount2; i++ ) m_xPopupMenu->setAcceleratorKeyEvent(aIds[i], svt::AcceleratorExecute::st_VCLKey2AWTKey(aMenuShortCuts[i])); // Special handling for "New" menu short-cut should be set at the // document which will be opened using it. if ( m_bNewMenu ) { if ( aMenuShortCuts[nSeqCount-1] != aEmptyKeyCode ) determineAndSetNewDocAccel(svt::AcceleratorExecute::st_VCLKey2AWTKey(aMenuShortCuts[nSeqCount-1])); } } void NewMenuController::retrieveShortcutsFromConfiguration( const Reference< XAcceleratorConfiguration >& rAccelCfg, const Sequence< OUString >& rCommands, std::vector< vcl::KeyCode >& aMenuShortCuts ) { if ( !rAccelCfg.is() ) return; try { css::awt::KeyEvent aKeyEvent; Sequence< Any > aSeqKeyCode = rAccelCfg->getPreferredKeyEventsForCommandList( rCommands ); for ( sal_Int32 i = 0; i < aSeqKeyCode.getLength(); i++ ) { if ( aSeqKeyCode[i] >>= aKeyEvent ) aMenuShortCuts[i] = svt::AcceleratorExecute::st_AWTKey2VCLKey( aKeyEvent ); } } catch ( const IllegalArgumentException& ) { } } NewMenuController::NewMenuController( const css::uno::Reference< css::uno::XComponentContext >& xContext ) : svt::PopupMenuControllerBase( xContext ), m_bShowImages( true ), m_bNewMenu( false ), m_bModuleIdentified( false ), m_bAcceleratorCfg( false ), m_aTargetFrame( "_default" ), m_xContext( xContext ) { } NewMenuController::~NewMenuController() { } // private function void NewMenuController::fillPopupMenu( Reference< css::awt::XPopupMenu > const & rPopupMenu ) { VCLXPopupMenu* pPopupMenu = static_cast(comphelper::getFromUnoTunnel( rPopupMenu )); PopupMenu* pVCLPopupMenu = nullptr; SolarMutexGuard aSolarMutexGuard; resetPopupMenu( rPopupMenu ); if ( pPopupMenu ) pVCLPopupMenu = static_cast(pPopupMenu->GetMenu()); if ( !pVCLPopupMenu ) return; Reference< XDispatchProvider > xDispatchProvider( m_xFrame, UNO_QUERY ); URL aTargetURL; aTargetURL.Complete = m_bNewMenu ? OUString(aSlotNewDocDirect) : OUString(aSlotAutoPilot); m_xURLTransformer->parseStrict( aTargetURL ); Reference< XDispatch > xMenuItemDispatch = xDispatchProvider->queryDispatch( aTargetURL, OUString(), 0 ); if(xMenuItemDispatch == nullptr) return; const std::vector< SvtDynMenuEntry > aDynamicMenuEntries = SvtDynamicMenuOptions::GetMenu( m_bNewMenu ? EDynamicMenuType::NewMenu : EDynamicMenuType::WizardMenu ); sal_uInt16 nItemId = 1; for ( const auto& aDynamicMenuEntry : aDynamicMenuEntries ) { if ( aDynamicMenuEntry.sTitle.isEmpty() && aDynamicMenuEntry.sURL.isEmpty() ) continue; if ( aDynamicMenuEntry.sURL == "private:separator" ) rPopupMenu->insertSeparator(-1); else { rPopupMenu->insertItem(nItemId, aDynamicMenuEntry.sTitle, 0, -1); rPopupMenu->setCommand(nItemId, aDynamicMenuEntry.sURL); void* nAttributePtr = MenuAttributes::CreateAttribute( aDynamicMenuEntry.sTargetName, aDynamicMenuEntry.sImageIdentifier ); pPopupMenu->setUserValue(nItemId, nAttributePtr, MenuAttributes::ReleaseAttribute); nItemId++; } } if ( m_bShowImages ) setMenuImages( pVCLPopupMenu, m_bShowImages ); } // XEventListener void SAL_CALL NewMenuController::disposing( const EventObject& ) { Reference< css::awt::XMenuListener > xHolder(this); osl::MutexGuard aLock( m_aMutex ); m_xFrame.clear(); m_xDispatch.clear(); m_xContext.clear(); if ( m_xPopupMenu.is() ) m_xPopupMenu->removeMenuListener( Reference< css::awt::XMenuListener >(this) ); m_xPopupMenu.clear(); } // XStatusListener void SAL_CALL NewMenuController::statusChanged( const FeatureStateEvent& Event ) { Event.State >>= m_aEmptyDocURL; } // XMenuListener void SAL_CALL NewMenuController::itemSelected( const css::awt::MenuEvent& rEvent ) { Reference< css::awt::XPopupMenu > xPopupMenu; Reference< XComponentContext > xContext; { osl::MutexGuard aLock(m_aMutex); xPopupMenu = m_xPopupMenu; xContext = m_xContext; } if ( !xPopupMenu.is() ) return; VCLXPopupMenu* pPopupMenu = static_cast(comphelper::getFromUnoTunnel( xPopupMenu )); if ( !pPopupMenu ) return; OUString aURL; OUString aTargetFrame( m_aTargetFrame ); { SolarMutexGuard aSolarMutexGuard; aURL = pPopupMenu->getCommand(rEvent.MenuId); void* nAttributePtr = pPopupMenu->getUserValue(rEvent.MenuId); MenuAttributes* pAttributes = static_cast(nAttributePtr); if (pAttributes) aTargetFrame = pAttributes->aTargetFrame; } Sequence< PropertyValue > aArgsList{ comphelper::makePropertyValue("Referer", OUString( "private:user" )) }; dispatchCommand( aURL, aArgsList, aTargetFrame ); } void SAL_CALL NewMenuController::itemActivated( const css::awt::MenuEvent& ) { SolarMutexGuard aSolarMutexGuard; if ( !(m_xFrame.is() && m_xPopupMenu.is()) ) return; VCLXPopupMenu* pPopupMenu = static_cast(comphelper::getFromUnoTunnel( m_xPopupMenu )); if ( !pPopupMenu ) return; const StyleSettings& rSettings = Application::GetSettings().GetStyleSettings(); bool bShowImages( rSettings.GetUseImagesInMenus() ); OUString aIconTheme( rSettings.DetermineIconTheme() ); PopupMenu* pVCLPopupMenu = static_cast(pPopupMenu->GetMenu()); if ( m_bShowImages != bShowImages || m_aIconTheme != aIconTheme ) { m_bShowImages = bShowImages; m_aIconTheme = aIconTheme; setMenuImages( pVCLPopupMenu, m_bShowImages ); } setAccelerators(); } // XPopupMenuController void NewMenuController::impl_setPopupMenu() { if ( m_xPopupMenu.is() ) fillPopupMenu( m_xPopupMenu ); // Identify module that we are attach to. It's our context that we need to know. Reference< XModuleManager2 > xModuleManager = ModuleManager::create( m_xContext ); try { m_aModuleIdentifier = xModuleManager->identify( m_xFrame ); m_bModuleIdentified = true; } catch ( const RuntimeException& ) { throw; } catch ( const Exception& ) { } } // XInitialization void SAL_CALL NewMenuController::initialize( const Sequence< Any >& aArguments ) { osl::MutexGuard aLock( m_aMutex ); bool bInitialized( m_bInitialized ); if ( bInitialized ) return; svt::PopupMenuControllerBase::initialize( aArguments ); if ( m_bInitialized ) { const StyleSettings& rSettings = Application::GetSettings().GetStyleSettings(); m_bShowImages = rSettings.GetUseImagesInMenus(); m_aIconTheme = rSettings.DetermineIconTheme(); m_bNewMenu = m_aCommandURL == aSlotNewDocDirect; } } } extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* framework_NewMenuController_get_implementation( css::uno::XComponentContext* context, css::uno::Sequence const& ) { return cppu::acquire(new framework::NewMenuController(context)); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ office-7-0-5'>libreoffice-7-0-5 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/es
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/es
parent965f3562a25b75fc3401d3b44ed96e2e5093ed72 (diff)
update translations for LibreOffice 4.0 beta1
Change-Id: I35e0bf7dfef1541f76508edb962e89bc5d78e339
Diffstat (limited to 'source/es')
-rw-r--r--source/es/accessibility/source/helper.po4
-rw-r--r--source/es/android/sdremote/res/values.po414
-rw-r--r--source/es/avmedia/source/framework.po15
-rw-r--r--source/es/avmedia/source/viewer.po7
-rw-r--r--source/es/basctl/source/basicide.po164
-rw-r--r--source/es/basctl/source/dlged.po23
-rw-r--r--source/es/basctl/uiconfig/basicide/ui.po21
-rw-r--r--source/es/basic/source/classes.po138
-rw-r--r--source/es/basic/source/sbx.po9
-rw-r--r--source/es/chart2/source/controller/dialogs.po415
-rw-r--r--source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/mork/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po7
-rw-r--r--source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/connectivity/source/resource.po136
-rw-r--r--source/es/cui/source/customize.po181
-rw-r--r--source/es/cui/source/dialogs.po469
-rw-r--r--source/es/cui/source/options.po693
-rw-r--r--source/es/cui/source/tabpages.po1024
-rw-r--r--source/es/cui/uiconfig/ui.po292
-rw-r--r--source/es/dbaccess/source/core/resource.po70
-rw-r--r--source/es/dbaccess/source/ext/macromigration.po46
-rw-r--r--source/es/dbaccess/source/sdbtools/resource.po9
-rw-r--r--source/es/dbaccess/source/ui/app.po65
-rw-r--r--source/es/dbaccess/source/ui/browser.po43
-rw-r--r--source/es/dbaccess/source/ui/control.po21
-rw-r--r--source/es/dbaccess/source/ui/dlg.po374
-rw-r--r--source/es/dbaccess/source/ui/inc.po13
-rw-r--r--source/es/dbaccess/source/ui/misc.po48
-rw-r--r--source/es/dbaccess/source/ui/querydesign.po75
-rw-r--r--source/es/dbaccess/source/ui/relationdesign.po10
-rw-r--r--source/es/dbaccess/source/ui/tabledesign.po74
-rw-r--r--source/es/dbaccess/source/ui/uno.po15
-rw-r--r--source/es/desktop/source/app.po31
-rw-r--r--source/es/desktop/source/deployment/gui.po92
-rw-r--r--source/es/desktop/source/deployment/manager.po8
-rw-r--r--source/es/desktop/source/deployment/misc.po6
-rw-r--r--source/es/desktop/source/deployment/registry.po8
-rw-r--r--source/es/desktop/source/deployment/registry/component.po8
-rw-r--r--source/es/desktop/source/deployment/registry/configuration.po4
-rw-r--r--source/es/desktop/source/deployment/registry/help.po5
-rw-r--r--source/es/desktop/source/deployment/registry/package.po3
-rw-r--r--source/es/desktop/source/deployment/registry/script.po6
-rw-r--r--source/es/desktop/source/deployment/registry/sfwk.po3
-rw-r--r--source/es/desktop/source/deployment/unopkg.po12
-rw-r--r--source/es/desktop/uiconfig/ui.po73
-rw-r--r--source/es/dictionaries/af_ZA.po3
-rw-r--r--source/es/dictionaries/an_ES.po3
-rw-r--r--source/es/dictionaries/ar.po3
-rw-r--r--source/es/dictionaries/be_BY.po3
-rw-r--r--source/es/dictionaries/bg_BG.po3
-rw-r--r--source/es/dictionaries/bn_BD.po3
-rw-r--r--source/es/dictionaries/br_FR.po3
-rw-r--r--source/es/dictionaries/ca.po3
-rw-r--r--source/es/dictionaries/cs_CZ.po3
-rw-r--r--source/es/dictionaries/da_DK.po3
-rw-r--r--source/es/dictionaries/de.po3
-rw-r--r--source/es/dictionaries/el_GR.po3
-rw-r--r--source/es/dictionaries/en.po3
-rw-r--r--source/es/dictionaries/en/dialog.po39
-rw-r--r--source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/es/dictionaries/es.po11
-rw-r--r--source/es/dictionaries/et_EE.po3
-rw-r--r--source/es/dictionaries/fr_FR.po3
-rw-r--r--source/es/dictionaries/gd_GB.po3
-rw-r--r--source/es/dictionaries/gl.po11
-rw-r--r--source/es/dictionaries/gu_IN.po3
-rw-r--r--source/es/dictionaries/he_IL.po3
-rw-r--r--source/es/dictionaries/hi_IN.po3
-rw-r--r--source/es/dictionaries/hr_HR.po3
-rw-r--r--source/es/dictionaries/hu_HU.po3
-rw-r--r--source/es/dictionaries/hu_HU/dialog.po34
-rw-r--r--source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/es/dictionaries/it_IT.po3
-rw-r--r--source/es/dictionaries/ku_TR.po3
-rw-r--r--source/es/dictionaries/lt_LT.po3
-rw-r--r--source/es/dictionaries/lv_LV.po3
-rw-r--r--source/es/dictionaries/ne_NP.po3
-rw-r--r--source/es/dictionaries/nl_NL.po3
-rw-r--r--source/es/dictionaries/no.po3
-rw-r--r--source/es/dictionaries/oc_FR.po3
-rw-r--r--source/es/dictionaries/pl_PL.po3
-rw-r--r--source/es/dictionaries/pt_BR.po7
-rw-r--r--source/es/dictionaries/pt_BR/dialog.po311
-rw-r--r--source/es/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po33
-rw-r--r--source/es/dictionaries/pt_PT.po3
-rw-r--r--source/es/dictionaries/ro.po3
-rw-r--r--source/es/dictionaries/ru_RU.po3
-rw-r--r--source/es/dictionaries/ru_RU/dialog.po16
-rw-r--r--source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/es/dictionaries/si_LK.po3
-rw-r--r--source/es/dictionaries/sk_SK.po3
-rw-r--r--source/es/dictionaries/sl_SI.po3
-rw-r--r--source/es/dictionaries/sr.po3
-rw-r--r--source/es/dictionaries/sv_SE.po3
-rw-r--r--source/es/dictionaries/sw_TZ.po3
-rw-r--r--source/es/dictionaries/te_IN.po3
-rw-r--r--source/es/dictionaries/th_TH.po3
-rw-r--r--source/es/dictionaries/uk_UA.po3
-rw-r--r--source/es/dictionaries/vi.po3
-rw-r--r--source/es/dictionaries/zu_ZA.po3
-rw-r--r--source/es/editeng/source/accessibility.po4
-rw-r--r--source/es/editeng/source/editeng.po18
-rw-r--r--source/es/editeng/source/items.po238
-rw-r--r--source/es/editeng/source/misc.po8
-rw-r--r--source/es/editeng/source/outliner.po8
-rw-r--r--source/es/extensions/source/abpilot.po42
-rw-r--r--source/es/extensions/source/bibliography.po76
-rw-r--r--source/es/extensions/source/dbpilots.po58
-rw-r--r--source/es/extensions/source/propctrlr.po397
-rw-r--r--source/es/extensions/source/scanner.po27
-rw-r--r--source/es/extensions/source/update/check.po48
-rw-r--r--source/es/extensions/source/update/check/org/openoffice/Office.po3
-rw-r--r--source/es/filter/source/config/fragments/filters.po74
-rw-r--r--source/es/filter/source/config/fragments/internalgraphicfilters.po46
-rw-r--r--source/es/filter/source/config/fragments/types.po25
-rw-r--r--source/es/filter/source/flash.po4
-rw-r--r--source/es/filter/source/graphicfilter/eps.po3
-rw-r--r--source/es/filter/source/pdf.po142
-rw-r--r--source/es/filter/source/t602.po13
-rw-r--r--source/es/filter/source/xsltdialog.po331
-rw-r--r--source/es/filter/uiconfig/ui.po121
-rw-r--r--source/es/forms/source/resource.po62
-rw-r--r--source/es/formula/source/core/resource.po308
-rw-r--r--source/es/formula/source/ui/dlg.po40
-rw-r--r--source/es/fpicker/source/office.po52
-rw-r--r--source/es/framework/source/classes.po40
-rw-r--r--source/es/framework/source/services.po8
-rw-r--r--source/es/helpcontent2/source/auxiliary.po831
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po87
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po37252
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/01.po69
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po204
-rw-r--r--source/es/helpcontent2/source/text/scalc.po186
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po201
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po49895
-rw-r--r--source/es/helpcontent2/source/text/scalc/02.po125
-rw-r--r--source/es/helpcontent2/source/text/scalc/04.po189
-rw-r--r--source/es/helpcontent2/source/text/scalc/05.po126
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po1424
-rw-r--r--source/es/helpcontent2/source/text/schart.po98
-rw-r--r--source/es/helpcontent2/source/text/schart/00.po64
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po935
-rw-r--r--source/es/helpcontent2/source/text/schart/02.po27
-rw-r--r--source/es/helpcontent2/source/text/schart/04.po34
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po133
-rw-r--r--source/es/helpcontent2/source/text/sdraw/00.po4
-rw-r--r--source/es/helpcontent2/source/text/sdraw/01.po5
-rw-r--r--source/es/helpcontent2/source/text/sdraw/04.po105
-rw-r--r--source/es/helpcontent2/source/text/sdraw/guide.po281
-rw-r--r--source/es/helpcontent2/source/text/shared.po1436
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po1610
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po5553
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po16377
-rw-r--r--source/es/helpcontent2/source/text/shared/04.po314
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po148
-rw-r--r--source/es/helpcontent2/source/text/shared/07.po9
-rw-r--r--source/es/helpcontent2/source/text/shared/autokorr.po50
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po1164
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po1922
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po2559
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po10385
-rw-r--r--source/es/helpcontent2/source/text/simpress.po504
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po164
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po1087
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po667
-rw-r--r--source/es/helpcontent2/source/text/simpress/04.po203
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po647
-rw-r--r--source/es/helpcontent2/source/text/smath.po70
-rw-r--r--source/es/helpcontent2/source/text/smath/00.po85
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po1551
-rw-r--r--source/es/helpcontent2/source/text/smath/02.po8
-rw-r--r--source/es/helpcontent2/source/text/smath/04.po28
-rw-r--r--source/es/helpcontent2/source/text/smath/guide.po106
-rw-r--r--source/es/helpcontent2/source/text/swriter.po2694
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po304
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po3302
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po3695
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po260
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po12307
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po553
-rw-r--r--source/es/librelogo/source.po35
-rw-r--r--source/es/librelogo/source/help/en-US.po2781
-rw-r--r--source/es/librelogo/source/pythonpath.po136
-rw-r--r--source/es/librelogo/source/registry/data/org/openoffice/Office.po118
-rw-r--r--source/es/librelogo/source/registry/data/org/openoffice/Office/UI.po39
-rw-r--r--source/es/mysqlc/source.po4
-rw-r--r--source/es/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po71
-rw-r--r--source/es/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po4
-rw-r--r--source/es/nlpsolver/src/locale.po43
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office.po1932
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po7535
-rw-r--r--source/es/padmin/source.po150
-rw-r--r--source/es/readlicense_oo/docs.po125
-rw-r--r--source/es/reportbuilder/java/com/sun/star/report/function/metadata.po8
-rw-r--r--source/es/reportbuilder/registry/data/org/openoffice/Office.po14
-rw-r--r--source/es/reportbuilder/registry/data/org/openoffice/Office/UI.po68
-rw-r--r--source/es/reportbuilder/registry/data/org/openoffice/TypeDetection.po6
-rw-r--r--source/es/reportbuilder/util.po4
-rw-r--r--source/es/reportdesign/source/core/resource.po18
-rw-r--r--source/es/reportdesign/source/ui/dlg.po123
-rw-r--r--source/es/reportdesign/source/ui/inspection.po84
-rw-r--r--source/es/reportdesign/source/ui/report.po93
-rw-r--r--source/es/sc/source/core/src.po13
-rw-r--r--source/es/sc/source/ui/cctrl.po8
-rw-r--r--source/es/sc/source/ui/dbgui.po328
-rw-r--r--source/es/sc/source/ui/docshell.po6
-rw-r--r--source/es/sc/source/ui/drawfunc.po50
-rw-r--r--source/es/sc/source/ui/formdlg.po18
-rw-r--r--source/es/sc/source/ui/miscdlgs.po109
-rw-r--r--source/es/sc/source/ui/navipi.po40
-rw-r--r--source/es/sc/source/ui/optdlg.po18
-rw-r--r--source/es/sc/source/ui/pagedlg.po76
-rw-r--r--source/es/sc/source/ui/src.po3322
-rw-r--r--source/es/sc/source/ui/styleui.po25
-rw-r--r--source/es/sc/uiconfig/scalc/ui.po148
-rw-r--r--source/es/scaddins/source/analysis.po778
-rw-r--r--source/es/scaddins/source/datefunc.po46
-rw-r--r--source/es/sccomp/source/solver.po13
-rw-r--r--source/es/scp2/source/accessories.po2366
-rw-r--r--source/es/scp2/source/activex.po4
-rw-r--r--source/es/scp2/source/base.po12
-rw-r--r--source/es/scp2/source/calc.po21
-rw-r--r--source/es/scp2/source/draw.po17
-rw-r--r--source/es/scp2/source/extensions.po92
-rw-r--r--source/es/scp2/source/gnome.po4
-rw-r--r--source/es/scp2/source/graphicfilter.po32
-rw-r--r--source/es/scp2/source/impress.po23
-rw-r--r--source/es/scp2/source/javafilter.po26
-rw-r--r--source/es/scp2/source/kde.po4
-rw-r--r--source/es/scp2/source/math.po12
-rw-r--r--source/es/scp2/source/onlineupdate.po4
-rw-r--r--source/es/scp2/source/ooo.po554
-rw-r--r--source/es/scp2/source/python.po6
-rw-r--r--source/es/scp2/source/quickstart.po4
-rw-r--r--source/es/scp2/source/sdkoo.po4
-rw-r--r--source/es/scp2/source/smoketest.po4
-rw-r--r--source/es/scp2/source/stdlibs.po4
-rw-r--r--source/es/scp2/source/tde.po4
-rw-r--r--source/es/scp2/source/winexplorerext.po4
-rw-r--r--source/es/scp2/source/writer.po26
-rw-r--r--source/es/scp2/source/xsltfilter.po4
-rw-r--r--source/es/scripting/source/pyprov.po34
-rw-r--r--source/es/sd/source/core.po94
-rw-r--r--source/es/sd/source/filter/html.po65
-rw-r--r--source/es/sd/source/ui/accessibility.po14
-rw-r--r--source/es/sd/source/ui/animations.po171
-rw-r--r--source/es/sd/source/ui/annotations.po29
-rw-r--r--source/es/sd/source/ui/app.po587
-rw-r--r--source/es/sd/source/ui/dlg.po390
-rw-r--r--source/es/sd/source/ui/slideshow.po20
-rw-r--r--source/es/sd/source/ui/table.po35
-rw-r--r--source/es/sd/source/ui/view.po55
-rw-r--r--source/es/sd/uiconfig/sdraw/ui.po25
-rw-r--r--source/es/sd/uiconfig/simpress/ui.po26
-rw-r--r--source/es/sdext/source/minimizer.po4
-rw-r--r--source/es/sdext/source/minimizer/registry/data/org/openoffice/Office.po3
-rw-r--r--source/es/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po70
-rw-r--r--source/es/sdext/source/pdfimport.po34
-rw-r--r--source/es/sdext/source/presenter.po38
-rw-r--r--source/es/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po376
-rw-r--r--source/es/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po686
-rw-r--r--source/es/setup_native/source/mac.po25
-rw-r--r--source/es/sfx2/source/appl.po143
-rw-r--r--source/es/sfx2/source/bastyp.po4
-rw-r--r--source/es/sfx2/source/dialog.po263
-rw-r--r--source/es/sfx2/source/doc.po277
-rw-r--r--source/es/sfx2/source/menu.po12
-rw-r--r--source/es/sfx2/source/view.po27
-rw-r--r--source/es/sfx2/uiconfig/ui.po34
-rw-r--r--source/es/shell/source/win32/shlxthandler/res.po39
-rw-r--r--source/es/starmath/source.po450
-rw-r--r--source/es/starmath/uiconfig/smath/ui.po21
-rw-r--r--source/es/svl/source/items.po3
-rw-r--r--source/es/svl/source/misc.po76
-rw-r--r--source/es/svtools/source/contnr.po55
-rw-r--r--source/es/svtools/source/control.po48
-rw-r--r--source/es/svtools/source/dialogs.po202
-rw-r--r--source/es/svtools/source/java.po30
-rw-r--r--source/es/svtools/source/misc.po528
-rw-r--r--source/es/svtools/source/toolpanel.po4
-rw-r--r--source/es/svtools/uiconfig/ui.po120
-rw-r--r--source/es/svx/inc.po83
-rw-r--r--source/es/svx/source/accessibility.po39
-rw-r--r--source/es/svx/source/core.po3
-rw-r--r--source/es/svx/source/dialog.po4038
-rw-r--r--source/es/svx/source/engine3d.po149
-rw-r--r--source/es/svx/source/fmcomp.po24
-rw-r--r--source/es/svx/source/form.po272
-rw-r--r--source/es/svx/source/gallery2.po184
-rw-r--r--source/es/svx/source/items.po141
-rw-r--r--source/es/svx/source/src.po123
-rw-r--r--source/es/svx/source/stbctrls.po28
-rw-r--r--source/es/svx/source/svdraw.po905
-rw-r--r--source/es/svx/source/table.po3
-rw-r--r--source/es/svx/source/tbxctrls.po87
-rw-r--r--source/es/svx/source/toolbars.po20
-rw-r--r--source/es/svx/source/unodialogs/textconversiondlgs.po64
-rw-r--r--source/es/sw/source/core/layout.po4
-rw-r--r--source/es/sw/source/core/undo.po173
-rw-r--r--source/es/sw/source/core/unocore.po9
-rw-r--r--source/es/sw/source/ui/app.po305
-rw-r--r--source/es/sw/source/ui/chrdlg.po104
-rw-r--r--source/es/sw/source/ui/config.po285
-rw-r--r--source/es/sw/source/ui/dbui.po339
-rw-r--r--source/es/sw/source/ui/dialog.po89
-rw-r--r--source/es/sw/source/ui/dochdl.po13
-rw-r--r--source/es/sw/source/ui/docvw.po82
-rw-r--r--source/es/sw/source/ui/envelp.po156
-rw-r--r--source/es/sw/source/ui/fldui.po440
-rw-r--r--source/es/sw/source/ui/fmtui.po47
-rw-r--r--source/es/sw/source/ui/frmdlg.po191
-rw-r--r--source/es/sw/source/ui/globdoc.po4
-rw-r--r--source/es/sw/source/ui/index.po184
-rw-r--r--source/es/sw/source/ui/lingu.po18
-rw-r--r--source/es/sw/source/ui/misc.po226
-rw-r--r--source/es/sw/source/ui/ribbar.po106
-rw-r--r--source/es/sw/source/ui/shells.po57
-rw-r--r--source/es/sw/source/ui/smartmenu.po3
-rw-r--r--source/es/sw/source/ui/table.po76
-rw-r--r--source/es/sw/source/ui/uiview.po39
-rw-r--r--source/es/sw/source/ui/utlui.po579
-rw-r--r--source/es/sw/source/ui/web.po13
-rw-r--r--source/es/sw/source/ui/wrtsh.po8
-rw-r--r--source/es/sw/uiconfig/sw/ui.po36
-rw-r--r--source/es/sw/uiconfig/swriter/ui.po332
-rw-r--r--source/es/swext/mediawiki/help.po125
-rw-r--r--source/es/swext/mediawiki/src.po4
-rw-r--r--source/es/swext/mediawiki/src/registry/data/org/openoffice/Office.po4
-rw-r--r--source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po34
-rw-r--r--source/es/sysui/desktop/share.po69
-rw-r--r--source/es/tubes/uiconfig/ui.po9
-rw-r--r--source/es/uui/source.po153
-rw-r--r--source/es/vcl/qa/cppunit/builder.po163
-rw-r--r--source/es/vcl/source/edit.po22
-rw-r--r--source/es/vcl/source/src.po165
-rw-r--r--source/es/vcl/uiconfig/ui.po132
-rw-r--r--source/es/wizards/source/euro.po85
-rw-r--r--source/es/wizards/source/formwizard.po733
-rw-r--r--source/es/wizards/source/importwizard.po79
-rw-r--r--source/es/wizards/source/template.po121
-rw-r--r--source/es/xmlsecurity/source/component.po3
-rw-r--r--source/es/xmlsecurity/source/dialogs.po80
355 files changed, 6712 insertions, 202116 deletions
diff --git a/source/es/accessibility/source/helper.po b/source/es/accessibility/source/helper.po
index cdbab6febbd..b5581a422e2 100644
--- a/source/es/accessibility/source/helper.po
+++ b/source/es/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-04-05 20:00+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Examinar"
-#. pfc%
#: accessiblestrings.src
msgctxt ""
"accessiblestrings.src\n"
diff --git a/source/es/android/sdremote/res/values.po b/source/es/android/sdremote/res/values.po
new file mode 100644
index 00000000000..e7903b3454b
--- /dev/null
+++ b/source/es/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: es\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/es/avmedia/source/framework.po b/source/es/avmedia/source/framework.po
index 207ff98fe61..803c07dd3f3 100644
--- a/source/es/avmedia/source/framework.po
+++ b/source/es/avmedia/source/framework.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 20:00+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Abrir"
-#. Zoi}
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Apply"
msgstr "Aplicar"
-#. jsqR
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Play"
msgstr "Reproducir"
-#. -A$L
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Pause"
msgstr "Pausar"
-#. _Ew|
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Stop"
msgstr "Detener"
-#. W7Lq
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Repeat"
msgstr "Repetir"
-#. iM66
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Mute"
msgstr "Silenciar"
-#. 9![y
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. =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 "Escalado"
-#. 0jm/
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
diff --git a/source/es/avmedia/source/viewer.po b/source/es/avmedia/source/viewer.po
index 4fd16c51398..358495aa42d 100644
--- a/source/es/avmedia/source/viewer.po
+++ b/source/es/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-13 18:59+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Insertar vídeo y sonido"
-#. F:?1
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Open Movie and Sound"
msgstr "Abrir vídeo y sonido"
-#. DFNw
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "All movie and sound files"
msgstr "Todos los archivos de vídeo y sonido"
-#. l}VA
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "All files"
msgstr "Todos los archivos"
-#. 7ms(
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
diff --git a/source/es/basctl/source/basicide.po b/source/es/basctl/source/basicide.po
index 0c561647fc3..c1f6fd79502 100644
--- a/source/es/basctl/source/basicide.po
+++ b/source/es/basctl/source/basicide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-10-08 21:21+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. deMc
#: objdlg.src
msgctxt ""
"objdlg.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr "Catálogo de objetos"
-#. V`%U
#: objdlg.src
msgctxt ""
"objdlg.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Objects Tree"
msgstr "Árbol de objetos"
-#. ZE~=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "<All>"
msgstr "<Todos>"
-#. W2+)
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "< No Module >"
msgstr "< Ningún módulo >"
-#. M]dX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Incorrect Password"
msgstr "Contraseña incorrecta"
-#. r,H6
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Load"
msgstr "Cargar"
-#. g+qX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Save"
msgstr "Guardar"
-#. :\(K
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -91,7 +83,6 @@ msgstr ""
"El texto fuente es demasiado grande por lo que no se puede guardar ni compilar.\n"
"Elimine algunos comentarios o transfiera algunos métodos a otro módulo."
-#. 6Nvl
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Error opening file"
msgstr "Error al abrir el archivo"
-#. I#3L
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -109,7 +99,6 @@ msgctxt ""
msgid "Error loading library"
msgstr "Error al cargar la biblioteca"
-#. $@^F
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -118,7 +107,6 @@ msgctxt ""
msgid "The file does not contain any BASIC libraries"
msgstr "El archivo no contiene bibliotecas BASIC"
-#. qcF/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -127,7 +115,6 @@ msgctxt ""
msgid "Invalid Name"
msgstr "Nombre no válido"
-#. U@~0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -136,7 +123,6 @@ msgctxt ""
msgid "A library name can have up to 30 characters."
msgstr "Un nombre de biblioteca puede tener hasta 30 caracteres."
-#. JMM[
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -145,7 +131,6 @@ msgctxt ""
msgid "Macros from other documents are not accessible."
msgstr "No se puede acceder a las macros de otros documentos."
-#. %NUf
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -154,7 +139,6 @@ msgctxt ""
msgid "This library is read-only."
msgstr "Esta biblioteca es de solo lectura."
-#. CHXF
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "'XX' cannot be replaced."
msgstr "«XX» no se puede reemplazar."
-#. pDgK
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "'XX' cannot be added."
msgstr "No se puede añadir «XX»."
-#. 1pz+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -181,7 +163,6 @@ msgctxt ""
msgid "'XX' was not added."
msgstr "«XX» no se añadió."
-#. AJK1
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -190,7 +171,6 @@ msgctxt ""
msgid "Enter password for 'XX'"
msgstr "Introducir contraseña para «XX»"
-#. kC\9
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -199,7 +179,6 @@ msgctxt ""
msgid "Name already exists"
msgstr "El nombre ya existe"
-#. r)bk
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -208,7 +187,6 @@ msgctxt ""
msgid "(Signed)"
msgstr "(Firmado)"
-#. FxwV
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -217,7 +195,6 @@ msgctxt ""
msgid "Object with same name already exists"
msgstr "Ya existe un objeto con el mismo nombre"
-#. k~#P
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "The 'XX' file already exists"
msgstr "El archivo «XX» ya existe"
-#. F[$.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -241,7 +217,6 @@ msgstr ""
"\n"
"Para más información, compruebe la configuración de seguridad."
-#. ZTC%
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -250,7 +225,6 @@ msgctxt ""
msgid "Compile Error: "
msgstr "Error de compilación: "
-#. ~kzi
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -259,7 +233,6 @@ msgctxt ""
msgid "Runtime Error: #"
msgstr "Error en tiempo de ejecución: #"
-#. 3.!B
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -268,7 +241,6 @@ msgctxt ""
msgid "Search key not found"
msgstr "No se encontró la expresión buscada"
-#. wXS@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -277,7 +249,6 @@ msgctxt ""
msgid "Search to last module complete. Continue at first module?"
msgstr "Se buscó hasta el último módulo. ¿Continuar la búsqueda en el primer módulo?"
-#. ?Hng
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Search key replaced XX times"
msgstr "Expresión buscada reemplazada XX veces"
-#. dX9n
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "The file could not be read"
msgstr "No se pudo leer el archivo"
-#. 9[xg
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "The file could not be saved"
msgstr "No se pudo guardar el archivo"
-#. lKe\
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "The name of the default library cannot be changed."
msgstr "No se puede modificar el nombre de la biblioteca predeterminada."
-#. ,#9v
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "The name of a referenced library cannot be changed."
msgstr "No se puede modificar el nombre de una biblioteca referenciada"
-#. ^}M`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -331,7 +297,6 @@ msgctxt ""
msgid "The default library cannot be deactivated"
msgstr "No se puede desactivar la biblioteca predeterminada"
-#. Zr~A
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -340,7 +305,6 @@ msgctxt ""
msgid "Generating source"
msgstr "Creando un texto fuente"
-#. W83h
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -349,7 +313,6 @@ msgctxt ""
msgid "File name:"
msgstr "Nombre del archivo:"
-#. ,=wX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -358,7 +321,6 @@ msgctxt ""
msgid "Import Libraries"
msgstr "Importar bibliotecas"
-#. e3f;
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -367,7 +329,6 @@ msgctxt ""
msgid "Do you want to delete the macro XX?"
msgstr "¿Desea eliminar la macro XX?"
-#. H~pG
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -376,7 +337,6 @@ msgctxt ""
msgid "Do you want to delete the XX dialog?"
msgstr "¿Desea eliminar el diálogo XX?"
-#. |SeE
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -385,7 +345,6 @@ msgctxt ""
msgid "Do you want to delete the XX library?"
msgstr "¿Desea eliminar la biblioteca 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 "¿Desea eliminar la referencia a la biblioteca XX?"
-#. Xm7Q
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -403,7 +361,6 @@ msgctxt ""
msgid "Do you want to delete the XX module?"
msgstr "¿Desea eliminar el módulo XX?"
-#. =z=.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -412,7 +369,6 @@ msgctxt ""
msgid "Object or method not found"
msgstr "No se ha encontrado el objeto o método"
-#. 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 "Li"
-#. d@%(
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -439,7 +393,6 @@ msgctxt ""
msgid "Col"
msgstr "Col"
-#. GksX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -448,7 +401,6 @@ msgctxt ""
msgid "Document"
msgstr "Documento"
-#. [HYz
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -457,7 +409,6 @@ msgctxt ""
msgid "Macro Bar"
msgstr "Barra de macro"
-#. WT!/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -466,7 +417,6 @@ msgctxt ""
msgid "The window cannot be closed while BASIC is running."
msgstr "No se puede cerrar la ventana mientras se ejecuta BASIC."
-#. ob;X
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -475,7 +425,6 @@ msgctxt ""
msgid "The default library cannot be replaced."
msgstr "No se puede sustituir la biblioteca predeterminada."
-#. _sL@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -484,7 +433,6 @@ msgctxt ""
msgid "Reference to 'XX' not possible."
msgstr "No es posible la referencia a 'XX' ."
-#. $;d+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -493,7 +441,6 @@ msgctxt ""
msgid "Watch"
msgstr "Observador"
-#. q[F0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -502,7 +449,6 @@ msgctxt ""
msgid "Variable"
msgstr "Variable"
-#. [\2#
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -511,7 +457,6 @@ msgctxt ""
msgid "Value"
msgstr "Valor"
-#. `~4,
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -520,7 +465,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. IPB!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -529,7 +473,6 @@ msgctxt ""
msgid "Call Stack"
msgstr "Pila de comandos"
-#. mK3f
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -538,7 +481,6 @@ msgctxt ""
msgid "BASIC Initialization"
msgstr "Inicialización de BASIC"
-#. 8;n!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -547,7 +489,6 @@ msgctxt ""
msgid "Module"
msgstr "Módulo"
-#. U5LV
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -556,7 +497,6 @@ msgctxt ""
msgid "Dialog"
msgstr "Diálogo"
-#. *?3+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -565,7 +505,6 @@ msgctxt ""
msgid "Library"
msgstr "Biblioteca"
-#. p-J$
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -574,7 +513,6 @@ msgctxt ""
msgid "New Library"
msgstr "Biblioteca nueva"
-#. wl|E
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -583,7 +521,6 @@ msgctxt ""
msgid "New Module"
msgstr "Módulo nuevo"
-#. )f3c
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -592,7 +529,6 @@ msgctxt ""
msgid "New Dialog"
msgstr "Diálogo nuevo"
-#. Ub!,
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -601,7 +537,6 @@ msgctxt ""
msgid "All"
msgstr "Todos"
-#. }RLC
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -610,7 +545,6 @@ msgctxt ""
msgid "Page"
msgstr "Página"
-#. :WO!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -619,7 +553,6 @@ msgctxt ""
msgid "A name must be entered."
msgstr "Se debe introducir un nombre."
-#. -@v4
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -632,7 +565,6 @@ msgstr ""
"Tendrá que reiniciar el programa después de estas modificaciones.\n"
"¿Continuar?"
-#. 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 "¿Desea reemplazar el texto en todos los módulos activos?"
-#. 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 "Eliminar observador"
-#. p0?t
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -668,7 +597,6 @@ msgctxt ""
msgid "Watch:"
msgstr "Observador:"
-#. )hOO
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -677,7 +605,6 @@ msgctxt ""
msgid "Calls: "
msgstr "Llamadas: "
-#. C-#U
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -686,7 +613,6 @@ msgctxt ""
msgid "My Macros"
msgstr "Mis macros"
-#. ?!XO
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -695,7 +621,6 @@ msgctxt ""
msgid "My Dialogs"
msgstr "Mis diálogos"
-#. sJGU
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -704,7 +629,6 @@ msgctxt ""
msgid "My Macros & Dialogs"
msgstr "Mis macros y diálogos"
-#. iWd/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -713,7 +637,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr "Macros de %PRODUCTNAME"
-#. RsXB
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -722,7 +645,6 @@ msgctxt ""
msgid "%PRODUCTNAME Dialogs"
msgstr "Diálogos de %PRODUCTNAME"
-#. gllN
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -731,7 +653,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros & Dialogs"
msgstr "Macros y diálogos de %PRODUCTNAME"
-#. lH-y
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -741,7 +662,6 @@ msgctxt ""
msgid "Active"
msgstr "Activo"
-#. mQvu
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -751,7 +671,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Propiedades..."
-#. 3sc.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -760,7 +679,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. a@W+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -770,7 +688,6 @@ msgctxt ""
msgid "Manage Breakpoints..."
msgstr "Administrar puntos de interrupción..."
-#. Wcy=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -779,7 +696,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Administrar puntos de interrupción"
-#. s2^S
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -789,7 +705,6 @@ msgctxt ""
msgid "BASIC Module"
msgstr "Módulo BASIC"
-#. 5IIo
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -799,7 +714,6 @@ msgctxt ""
msgid "BASIC Dialog"
msgstr "Diálogo BASIC"
-#. \%gc
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -809,7 +723,6 @@ msgctxt ""
msgid "Insert"
msgstr "Insertar"
-#. LAie
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -819,7 +732,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. UkD8
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -829,7 +741,6 @@ msgctxt ""
msgid "Rename"
msgstr "Renombrar"
-#. M.5i
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -839,7 +750,6 @@ msgctxt ""
msgid "Hide"
msgstr "Ocultar"
-#. CQ?d
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -849,7 +759,6 @@ msgctxt ""
msgid "Modules..."
msgstr "Módulos..."
-#. SdR)
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -859,7 +768,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Propiedades..."
-#. aau`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -868,7 +776,6 @@ msgctxt ""
msgid "Do you want to overwrite the XX macro?"
msgstr "¿Quiere sobreescribir la macro XX?"
-#. %DZ@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -877,7 +784,6 @@ msgctxt ""
msgid "<Not localized>"
msgstr "<No localizado>"
-#. ofo`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -886,7 +792,6 @@ msgctxt ""
msgid "[Default Language]"
msgstr "[Idioma predeterminado]"
-#. G@B=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -895,7 +800,6 @@ msgctxt ""
msgid "Document Objects"
msgstr "Objetos del documento"
-#. ^X3N
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -904,7 +808,6 @@ msgctxt ""
msgid "Forms"
msgstr "Formularios"
-#. L4Z+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -913,7 +816,6 @@ msgctxt ""
msgid "Modules"
msgstr "Módulos"
-#. Mx!0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -922,7 +824,6 @@ msgctxt ""
msgid "Class Modules"
msgstr "Clases de módulos"
-#. M@CT
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -931,7 +832,6 @@ msgctxt ""
msgid "Rename"
msgstr "Renombrar"
-#. eq\m
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -940,7 +840,6 @@ msgctxt ""
msgid "Replace"
msgstr "Reemplazar"
-#. W@VC
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -949,7 +848,6 @@ msgctxt ""
msgid "Dialog Import - Name already used"
msgstr "Dialogo de Importación - Nombre ya usado"
-#. T3_B
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -970,7 +868,6 @@ msgstr ""
"Renombre el diálogo para mantener el existente, o reemplácelo.\n"
" "
-#. :_6e
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -979,7 +876,6 @@ msgctxt ""
msgid "Add"
msgstr "Añadir"
-#. Yr+\
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -988,7 +884,6 @@ msgctxt ""
msgid "Omit"
msgstr "Omitir"
-#. ^T?v
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -997,7 +892,6 @@ msgctxt ""
msgid "Dialog Import - Language Mismatch"
msgstr "Importar diálogo - Inconsistencias de idioma"
-#. :5]p
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1018,7 +912,6 @@ msgstr ""
"Nota: Se usarán los recursos del idioma predeterminado del diálogo para aquellos idiomas que el diálogo no tenga definidos.\n"
" "
-#. cm14
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1027,7 +920,6 @@ msgctxt ""
msgid "Goto Line"
msgstr "Ir a la línea"
-#. t.GK
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1037,7 +929,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. lKY=
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1047,7 +938,6 @@ msgctxt ""
msgid "Help information"
msgstr "Información de ayuda"
-#. ?gj(
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1057,7 +947,6 @@ msgctxt ""
msgid "Help ID"
msgstr "ID de ayuda"
-#. -p|Q
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1067,7 +956,6 @@ msgctxt ""
msgid "Help file name"
msgstr "Nombre del archivo de ayuda"
-#. #``S
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1076,7 +964,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. Mq-_
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1086,7 +973,6 @@ msgctxt ""
msgid "New"
msgstr "Nuevo"
-#. qYmA
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1096,7 +982,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. I$iQ
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1106,7 +991,6 @@ msgctxt ""
msgid "Active"
msgstr "Activo"
-#. jk[T
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1116,7 +1000,6 @@ msgctxt ""
msgid "Pass Count:"
msgstr "Cantidad de pasadas:"
-#. WAj7
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1126,7 +1009,6 @@ msgctxt ""
msgid "Breakpoints"
msgstr "Puntos de interrupción"
-#. jB*a
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1135,7 +1017,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Administrar puntos de interrupción"
-#. D?0f
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1145,7 +1026,6 @@ msgctxt ""
msgid "Modules"
msgstr "Módulos"
-#. W_]=
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1155,7 +1035,6 @@ msgctxt ""
msgid "Dialogs"
msgstr "Diálogos"
-#. 36Js
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1165,7 +1044,6 @@ msgctxt ""
msgid "Libraries"
msgstr "Bibliotecas"
-#. !*g@
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1174,7 +1052,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Macro Organizer"
msgstr "Organizador de macros Basic de %PRODUCTNAME"
-#. i6H6
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1184,7 +1061,6 @@ msgctxt ""
msgid "M~odule"
msgstr "Módul~o"
-#. }0uw
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1194,7 +1070,6 @@ msgctxt ""
msgid "~Edit"
msgstr "~Editar"
-#. sCzN
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1204,7 +1079,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. ,ASe
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1214,7 +1088,6 @@ msgctxt ""
msgid "~New..."
msgstr "~Nuevo..."
-#. WT=T
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1224,7 +1097,6 @@ msgctxt ""
msgid "~New..."
msgstr "~Nuevo..."
-#. frR:
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1234,7 +1106,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. #kf+
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1244,7 +1115,6 @@ msgctxt ""
msgid "Dialog"
msgstr "Diálogo"
-#. Fpj/
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1254,7 +1124,6 @@ msgctxt ""
msgid "~Edit"
msgstr "~Editar"
-#. ~UGN
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1264,7 +1133,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. ABdx
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1274,7 +1142,6 @@ msgctxt ""
msgid "~New..."
msgstr "Nue~vo..."
-#. JU]Z
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1284,7 +1151,6 @@ msgctxt ""
msgid "~New..."
msgstr "Nue~vo..."
-#. YAwH
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1294,7 +1160,6 @@ msgctxt ""
msgid "~Delete"
msgstr "E~liminar"
-#. 78@@
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1304,7 +1169,6 @@ msgctxt ""
msgid "L~ocation"
msgstr "~Ubicación"
-#. nCdL
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1314,7 +1178,6 @@ msgctxt ""
msgid "~Library"
msgstr "~Biblioteca"
-#. \U8x
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1324,7 +1187,6 @@ msgctxt ""
msgid "~Edit"
msgstr "~Editar"
-#. hP(Q
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1334,7 +1196,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. 1tDJ
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1344,7 +1205,6 @@ msgctxt ""
msgid "~Password..."
msgstr "~Contraseña..."
-#. A^5`
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1354,7 +1214,6 @@ msgctxt ""
msgid "~New..."
msgstr "~Nuevo..."
-#. VTeK
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1364,7 +1223,6 @@ msgctxt ""
msgid "~Import..."
msgstr "~Importar..."
-#. NG%_
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1374,7 +1232,6 @@ msgctxt ""
msgid "E~xport..."
msgstr "E~xportar..."
-#. zp?S
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1384,7 +1241,6 @@ msgctxt ""
msgid "~Delete"
msgstr "Elim~inar..."
-#. Kc.v
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1394,7 +1250,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. Y1`2
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1404,7 +1259,6 @@ msgctxt ""
msgid "Insert as reference (read-only)"
msgstr "Insertar como referencia (sólo para lectura)"
-#. 4c8N
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1414,7 +1268,6 @@ msgctxt ""
msgid "Replace existing libraries"
msgstr "Reemplazar bibliotecas existentes"
-#. p;}g
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1424,7 +1277,6 @@ msgctxt ""
msgid "~Line Number:"
msgstr "~Número de línea:"
-#. `(e~
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1434,7 +1286,6 @@ msgctxt ""
msgid "~Name:"
msgstr "~Nombre:"
-#. iO@h
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1444,7 +1295,6 @@ msgctxt ""
msgid "Export as ~extension"
msgstr "Exportar como ~extensión"
-#. 9)l.
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1454,7 +1304,6 @@ msgctxt ""
msgid "Export as BASIC library"
msgstr "Exportar como biblioteca de BASIC"
-#. \D2F
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1463,7 +1312,6 @@ msgctxt ""
msgid "Export Basic library"
msgstr "Exportar biblioteca de Basic"
-#. T7$-
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1472,7 +1320,6 @@ msgctxt ""
msgid "Export library as extension"
msgstr "Exportar biblioteca como extensión"
-#. rsB+
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1481,7 +1328,6 @@ msgctxt ""
msgid "Export as BASIC library"
msgstr "Exportar como biblioteca de BASIC"
-#. /g+L
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1490,7 +1336,6 @@ msgctxt ""
msgid "Extension"
msgstr "Extensión"
-#. ch4W
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1499,7 +1344,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. ,b1I
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1508,7 +1352,6 @@ msgctxt ""
msgid "~New"
msgstr "~Nuevo"
-#. Kn8D
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1517,7 +1360,6 @@ msgctxt ""
msgid "Choose"
msgstr "Seleccionar"
-#. ic*r
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1526,7 +1368,6 @@ msgctxt ""
msgid "Run"
msgstr "Ejecutar"
-#. ,D#!
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1535,7 +1376,6 @@ msgctxt ""
msgid "~Save"
msgstr "~Guardar"
-#. pRPI
#: basicprint.src
msgctxt ""
"basicprint.src\n"
@@ -1545,7 +1385,6 @@ msgctxt ""
msgid "Print range"
msgstr "Rango de impresión"
-#. D_5S
#: basicprint.src
msgctxt ""
"basicprint.src\n"
@@ -1555,7 +1394,6 @@ msgctxt ""
msgid "All ~Pages"
msgstr "Todas las ~páginas"
-#. 2N4s
#: basicprint.src
msgctxt ""
"basicprint.src\n"
diff --git a/source/es/basctl/source/dlged.po b/source/es/basctl/source/dlged.po
index 9a6ed9a7d10..98c26124e5b 100644
--- a/source/es/basctl/source/dlged.po
+++ b/source/es/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: 2012-06-30 12:17+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Idiomas disponibles"
-#. JGIq
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Add..."
msgstr "Añadir..."
-#. _oXj
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. p]vE
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. }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 "Si una determinada configuración regional de interfaz de usuario no está localizada, se utiliza el idioma predeterminado. Asimismo, todas las cadenas del idioma predeterminado se copian en los recursos de los idiomas que se hayan incorporado."
-#. *TMb
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Close"
msgstr "C~errar"
-#. SfP_
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "[Default Language]"
msgstr "[Idioma predeterminado]"
-#. so),
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. @,QV
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "<Press 'Add' to create language resources>"
msgstr "<Pulse 'Añadir' para crear recursos de idiomas>"
-#. Z@]S
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Manage User Interface Languages [$1]"
msgstr "Administrar idiomas de interfaz de usuario [$1]"
-#. {@Ru
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -129,7 +118,6 @@ msgstr ""
"\n"
"¿Desea eliminar los recursos de los idiomas seleccionados?"
-#. Q13J
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -138,7 +126,6 @@ msgctxt ""
msgid "Delete Language Resources"
msgstr "Eliminar recursos del idioma"
-#. Ag$]
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -148,7 +135,6 @@ msgctxt ""
msgid "Default language"
msgstr "Idioma predeterminado"
-#. ?(~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 "Seleccione un idioma para definir el idioma predeterminado de interfaz de usuario. Todas las cadenas que existan se asignarán a los recursos que creados para el idioma seleccionado."
-#. 0~l0
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "Add User Interface Languages"
msgstr "Añadir idiomas de interfaz de usuario"
-#. \JB_
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Available Languages"
msgstr "Idiomas disponibles"
-#. 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 "Seleccione los idiomas a añadir. Los recursos de dichos idiomas se crearán en la biblioteca. Las cadenas del idioma predeterminado de interfaz de usuario se copiarán de forma predeterminada en estos recursos nuevos."
-#. 6a+c
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -197,7 +179,6 @@ msgctxt ""
msgid "Set Default User Interface Language"
msgstr "Establecer idioma predeterminado de interfaz de usuario"
-#. ]nNM
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "Properties: "
msgstr "Propiedades: "
-#. I_7p
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "No Control marked"
msgstr "Ningún elemento de control seleccionado"
-#. ,!pS
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
diff --git a/source/es/basctl/uiconfig/basicide/ui.po b/source/es/basctl/uiconfig/basicide/ui.po
index e66c0a49e4b..7194a2dfab0 100644
--- a/source/es/basctl/uiconfig/basicide/ui.po
+++ b/source/es/basctl/uiconfig/basicide/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-21 12:57+0000\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353502656.0\n"
-#. dCgB
#: basicmacrodialog.ui
msgctxt ""
"basicmacrodialog.ui\n"
@@ -25,40 +25,33 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Macros"
msgstr "Macros de %PRODUCTNAME Basic"
-#. ;$kl
#: basicmacrodialog.ui
-#, fuzzy
msgctxt ""
"basicmacrodialog.ui\n"
"existingmacrosft\n"
"label\n"
"string.text"
msgid "Existing macros in:"
-msgstr "Macros existentes ~en:"
+msgstr "Macros existentes en:"
-#. peL)
#: basicmacrodialog.ui
-#, fuzzy
msgctxt ""
"basicmacrodialog.ui\n"
"macrofromft\n"
"label\n"
"string.text"
msgid "Macro from"
-msgstr "~Desde la macro"
+msgstr "Macro de"
-#. O@}F
#: basicmacrodialog.ui
-#, fuzzy
msgctxt ""
"basicmacrodialog.ui\n"
"macrotoft\n"
"label\n"
"string.text"
msgid "Save macro in"
-msgstr "Guardar la m~acro en"
+msgstr "Guardar la macro en"
-#. 0h%}
#: basicmacrodialog.ui
msgctxt ""
"basicmacrodialog.ui\n"
diff --git a/source/es/basic/source/classes.po b/source/es/basic/source/classes.po
index 576053c06df..a85c1a5cc59 100644
--- a/source/es/basic/source/classes.po
+++ b/source/es/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: 2012-08-14 06:16+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Error de sintaxis."
-#. Zz8?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Return without Gosub."
msgstr "Retorno sin Gosub."
-#. S[$m
#: sb.src
msgctxt ""
"sb.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Incorrect entry; please retry."
msgstr "Entrada incorrecta, vuelva a intentarlo."
-#. ES_7
#: sb.src
msgctxt ""
"sb.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Invalid procedure call."
msgstr "Llamada a procedimiento no válida."
-#. ;hGR
#: sb.src
msgctxt ""
"sb.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Overflow."
msgstr "Desbordamiento."
-#. \AfP
#: sb.src
msgctxt ""
"sb.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Not enough memory."
msgstr "No hay suficiente memoria."
-#. ml6H
#: sb.src
msgctxt ""
"sb.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Array already dimensioned."
msgstr "Matriz ya dimensionada."
-#. b|NG
#: sb.src
msgctxt ""
"sb.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Index out of defined range."
msgstr "Índice fuera del área definida."
-#. \~}O
#: sb.src
msgctxt ""
"sb.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Duplicate definition."
msgstr "Definición duplicada."
-#. _#VG
#: sb.src
msgctxt ""
"sb.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Division by zero."
msgstr "División por cero."
-#. $4kM
#: sb.src
msgctxt ""
"sb.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Variable not defined."
msgstr "Variable no definida."
-#. l6X6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Data type mismatch."
msgstr "Discrepancia del tipo de datos."
-#. jcL%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Invalid parameter."
msgstr "Parámetro no válido."
-#. q/0#
#: sb.src
msgctxt ""
"sb.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Process interrupted by user."
msgstr "Proceso interrumpido por el usuario."
-#. _dYH
#: sb.src
msgctxt ""
"sb.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Resume without error."
msgstr "Reanudar sin error."
-#. hYO\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Not enough stack memory."
msgstr "No hay suficiente memoria de pila."
-#. %_Dv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Sub-procedure or function procedure not defined."
msgstr "Subprocedimiento o procedimiento de función no definido."
-#. 7rBQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Error loading DLL file."
msgstr "Error al cargar el archivo DLL."
-#. :I|%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Wrong DLL call convention."
msgstr "Convención de llamada DLL incorrecta."
-#. [so#
#: sb.src
msgctxt ""
"sb.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Internal error $(ARG1)."
msgstr "Error interno $(ARG1)."
-#. M75T
#: sb.src
msgctxt ""
"sb.src\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Invalid file name or file number."
msgstr "El nombre o número del archivo no es válido."
-#. }_Yn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "File not found."
msgstr "Archivo no encontrado."
-#. ;Ybb
#: sb.src
msgctxt ""
"sb.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "Incorrect file mode."
msgstr "Modo de archivo incorrecto."
-#. Zp9;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "File already open."
msgstr "Archivo ya abierto."
-#. UsS4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Device I/O error."
msgstr "Error de E/S del dispositivo."
-#. TIHT
#: sb.src
msgctxt ""
"sb.src\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "File already exists."
msgstr "Este archivo ya existe."
-#. os1N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "Incorrect record length."
msgstr "Longitud de registro incorrecta."
-#. sZrg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Disk or hard drive full."
msgstr "Disco o unidad de disco duro llenos."
-#. _s0e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "Reading exceeds EOF."
msgstr "La lectura supera el fin de archivo (EOF)."
-#. /3x%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "Incorrect record number."
msgstr "Número de registro incorrecto."
-#. h4Q[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "Too many files."
msgstr "Demasiados archivos."
-#. 5da~
#: sb.src
msgctxt ""
"sb.src\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "Device not available."
msgstr "Dispositivo no disponible."
-#. 84*.
#: sb.src
msgctxt ""
"sb.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "Access denied."
msgstr "Acceso denegado."
-#. gcYO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "Disk not ready."
msgstr "Disco no preparado."
-#. S!Ag
#: sb.src
msgctxt ""
"sb.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "Not implemented."
msgstr "No implementado."
-#. sK~8
#: sb.src
msgctxt ""
"sb.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Renaming on different drives impossible."
msgstr "No es posible el cambio de nombre en varias unidades."
-#. hY25
#: sb.src
msgctxt ""
"sb.src\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "Path/File access error."
msgstr "Error de acceso al archivo o la ruta."
-#. Xsrw
#: sb.src
msgctxt ""
"sb.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "Path not found."
msgstr "No se ha encontrado la ruta."
-#. H2ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "Object variable not set."
msgstr "Variable de objeto no establecida."
-#. t1Oh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "Invalid string pattern."
msgstr "Patrón de cadena de caracteres no válido."
-#. 1=Ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "Use of zero not permitted."
msgstr "No se permite el uso del cero."
-#. COPc
#: sb.src
msgctxt ""
"sb.src\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "DDE Error."
msgstr "Error de DDE."
-#. tGZl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "Awaiting response to DDE connection."
msgstr "Esperando respuesta para la conexión DDE."
-#. 4!fm
#: sb.src
msgctxt ""
"sb.src\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "No DDE channels available."
msgstr "No hay canales DDE disponibles."
-#. P*QO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "No application responded to DDE connect initiation."
msgstr "Ninguna aplicación ha respondido a la iniciación de conexión DDE."
-#. EOuh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "Too many applications responded to DDE connect initiation."
msgstr "Demasiadas aplicaciones han respondido a la iniciación de conexión DDE."
-#. fDA1
#: sb.src
msgctxt ""
"sb.src\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "DDE channel locked."
msgstr "Canal DDE bloqueado."
-#. b+-d
#: sb.src
msgctxt ""
"sb.src\n"
@@ -495,7 +447,6 @@ msgctxt ""
msgid "External application cannot execute DDE operation."
msgstr "Una aplicación externa no puede ejecutar la operación DDE."
-#. B:IX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "Timeout while waiting for DDE response."
msgstr "Tiempo de espera excedido mientras se esperaba la respuesta de DDE."
-#. $TRU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "User pressed ESCAPE during DDE operation."
msgstr "El usuario presionó ESCAPE durante la operación DDE."
-#. hPzU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "External application busy."
msgstr "Aplicación externa ocupada."
-#. [Ik;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "DDE operation without data."
msgstr "Operación de DDE sin datos."
-#. NydK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -545,7 +492,6 @@ msgctxt ""
msgid "Data are in wrong format."
msgstr "Los datos tienen un formato incorrecto."
-#. G?W:
#: sb.src
msgctxt ""
"sb.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "External application has been terminated."
msgstr "Se ha cerrado la aplicación externa."
-#. Ql6A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "DDE connection interrupted or modified."
msgstr "Se ha interrumpido o modificado la conexión DDE."
-#. `R@[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "DDE method invoked with no channel open."
msgstr "Se ha invocado el método DDE sin un canal abierto."
-#. Eaq)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "Invalid DDE link format."
msgstr "Formato de vínculo DDE no válido."
-#. FuG|
#: sb.src
msgctxt ""
"sb.src\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "DDE message has been lost."
msgstr "Se ha perdido el mensaje DDE."
-#. EaPZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "Paste link already performed."
msgstr "Pegar vínculo ya ejecutado."
-#. aJ-`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Link mode cannot be set due to invalid link topic."
msgstr "No se puede establecer el modo de vínculo debido a un vínculo de un tema no válido."
-#. w[Uz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "DDE requires the DDEML.DLL file."
msgstr "DDE necesita el archivo DDEML.DLL."
-#. 3n#`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "Module cannot be loaded; invalid format."
msgstr "No se puede cargar el módulo: formato no válido."
-#. X3pu
#: sb.src
msgctxt ""
"sb.src\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "Invalid object index."
msgstr "Índice de objetos no válido."
-#. .IBB
#: sb.src
msgctxt ""
"sb.src\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "Object is not available."
msgstr "El objeto no está disponible."
-#. |~H?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "Incorrect property value."
msgstr "Valor de propiedad incorrecto."
-#. dgFD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "This property is read-only."
msgstr "Esta propiedad es de sólo lectura."
-#. E*c;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "This property is write only."
msgstr "Esta propiedad es de sólo escritura."
-#. F_sE
#: sb.src
msgctxt ""
"sb.src\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "Invalid object reference."
msgstr "Referencia de objetos no válida."
-#. b\Y;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "Property or method not found: $(ARG1)."
msgstr "Propiedad o método no encontrados: $(ARG1)."
-#. )D(6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -715,7 +645,6 @@ msgctxt ""
msgid "Object required."
msgstr "Objeto necesario."
-#. LX{Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -725,7 +654,6 @@ msgctxt ""
msgid "Invalid use of an object."
msgstr "Uso no válido de un objeto."
-#. r5h!
#: sb.src
msgctxt ""
"sb.src\n"
@@ -735,7 +663,6 @@ msgctxt ""
msgid "OLE Automation is not supported by this object."
msgstr "Este objeto no admite la automatización OLE."
-#. 1_B^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -745,7 +672,6 @@ msgctxt ""
msgid "This property or method is not supported by the object."
msgstr "El objeto no admite este método o propiedad."
-#. y;7g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -755,7 +681,6 @@ msgctxt ""
msgid "OLE Automation Error."
msgstr "Error en la automatización OLE."
-#. gjcL
#: sb.src
msgctxt ""
"sb.src\n"
@@ -765,7 +690,6 @@ msgctxt ""
msgid "This action is not supported by given object."
msgstr "El objeto determinado no admite esta acción."
-#. ^ssg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -775,7 +699,6 @@ msgctxt ""
msgid "Named arguments are not supported by given object."
msgstr "El objeto determinado no admite los argumentos nombrados."
-#. 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 "El objeto determinado no admite la configuración local actual."
-#. ~~$5
#: sb.src
msgctxt ""
"sb.src\n"
@@ -795,7 +717,6 @@ msgctxt ""
msgid "Named argument not found."
msgstr "No se encuentra el argumento nombrado."
-#. 0Sm4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -805,7 +726,6 @@ msgctxt ""
msgid "Argument is not optional."
msgstr "El argumento no es opcional."
-#. \wCF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -815,7 +735,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr "Número no válido de argumentos."
-#. p:r?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -825,7 +744,6 @@ msgctxt ""
msgid "Object is not a list."
msgstr "El objeto no es una lista."
-#. N_,C
#: sb.src
msgctxt ""
"sb.src\n"
@@ -835,7 +753,6 @@ msgctxt ""
msgid "Invalid ordinal number."
msgstr "Número ordinal no válido."
-#. odO9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -845,7 +762,6 @@ msgctxt ""
msgid "Specified DLL function not found."
msgstr "No se encuentra la función DLL especificada."
-#. %ilX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -855,7 +771,6 @@ msgctxt ""
msgid "Invalid clipboard format."
msgstr "Formato no válido del portapapeles."
-#. `,mF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -865,7 +780,6 @@ msgctxt ""
msgid "Object does not have this property."
msgstr "El objeto no tiene esta propiedad."
-#. ^[|F
#: sb.src
msgctxt ""
"sb.src\n"
@@ -875,7 +789,6 @@ msgctxt ""
msgid "Object does not have this method."
msgstr "El objeto no tiene este método."
-#. M4QZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -885,7 +798,6 @@ msgctxt ""
msgid "Required argument lacking."
msgstr "Falta argumento requerido."
-#. 8ZCD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -895,7 +807,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr "Número no válido de argumentos."
-#. ^V?f
#: sb.src
msgctxt ""
"sb.src\n"
@@ -905,7 +816,6 @@ msgctxt ""
msgid "Error executing a method."
msgstr "Error al ejecutar un método."
-#. mpQe
#: sb.src
msgctxt ""
"sb.src\n"
@@ -915,7 +825,6 @@ msgctxt ""
msgid "Unable to set property."
msgstr "No es posible definir la propiedad."
-#. S61)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -925,7 +834,6 @@ msgctxt ""
msgid "Unable to determine property."
msgstr "No es posible determinar la propiedad."
-#. 3ALz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -935,7 +843,6 @@ msgctxt ""
msgid "Unexpected symbol: $(ARG1)."
msgstr "Símbolo no esperado: $(ARG1)."
-#. ;,vQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -945,7 +852,6 @@ msgctxt ""
msgid "Expected: $(ARG1)."
msgstr "Se esperaba: $(ARG1)."
-#. \5Ps
#: sb.src
msgctxt ""
"sb.src\n"
@@ -955,7 +861,6 @@ msgctxt ""
msgid "Symbol expected."
msgstr "Símbolo esperado."
-#. 2YW\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -965,7 +870,6 @@ msgctxt ""
msgid "Variable expected."
msgstr "Variable esperada."
-#. 0YGl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -975,7 +879,6 @@ msgctxt ""
msgid "Label expected."
msgstr "Etiqueta esperada."
-#. #RU$
#: sb.src
msgctxt ""
"sb.src\n"
@@ -985,7 +888,6 @@ msgctxt ""
msgid "Value cannot be applied."
msgstr "No se puede aplicar el valor."
-#. L_i+
#: sb.src
msgctxt ""
"sb.src\n"
@@ -995,7 +897,6 @@ msgctxt ""
msgid "Variable $(ARG1) already defined."
msgstr "La variable $(ARG1) ya está definida."
-#. kW8M
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1005,7 +906,6 @@ msgctxt ""
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Subprocedimiento o procedimiento de función $(ARG1) ya definido."
-#. dyMK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1015,7 +915,6 @@ msgctxt ""
msgid "Label $(ARG1) already defined."
msgstr "La etiqueta $(ARG1) ya está definida."
-#. Qq+^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1025,7 +924,6 @@ msgctxt ""
msgid "Variable $(ARG1) not found."
msgstr "No se encuentra la variable $(ARG1)."
-#. WDkj
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1035,7 +933,6 @@ msgctxt ""
msgid "Array or procedure $(ARG1) not found."
msgstr "No se encuentra la matriz o el procedimiento $(ARG1)."
-#. hlPl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1045,7 +942,6 @@ msgctxt ""
msgid "Procedure $(ARG1) not found."
msgstr "No se encuentra el procedimiento $(ARG1)."
-#. pDfg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1055,7 +951,6 @@ msgctxt ""
msgid "Label $(ARG1) undefined."
msgstr "La etiqueta $(ARG1) no está definida."
-#. P?iO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1065,7 +960,6 @@ msgctxt ""
msgid "Unknown data type $(ARG1)."
msgstr "Tipo de datos $(ARG1) desconocido."
-#. e_}A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1075,7 +969,6 @@ msgctxt ""
msgid "Exit $(ARG1) expected."
msgstr "Se esperaba la salida $(ARG1)."
-#. DQDp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1085,7 +978,6 @@ msgctxt ""
msgid "Statement block still open: $(ARG1) missing."
msgstr "Bloqueo de instrucción todavía abierto: falta $(ARG1)."
-#. !:%@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1095,7 +987,6 @@ msgctxt ""
msgid "Parentheses do not match."
msgstr "Los paréntesis no coinciden."
-#. i9/Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1105,7 +996,6 @@ msgctxt ""
msgid "Symbol $(ARG1) already defined differently."
msgstr "El símbolo $(ARG1) ya se ha definido de forma diferente."
-#. \LXI
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1115,7 +1005,6 @@ msgctxt ""
msgid "Parameters do not correspond to procedure."
msgstr "Los parámetros no se corresponden con el procedimiento."
-#. ]_#9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1125,7 +1014,6 @@ msgctxt ""
msgid "Invalid character in number."
msgstr "Carácter no válido en el número."
-#. yd^N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1135,7 +1023,6 @@ msgctxt ""
msgid "Array must be dimensioned."
msgstr "Se debe dimensionar la matriz."
-#. U]7r
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1145,7 +1032,6 @@ msgctxt ""
msgid "Else/Endif without If."
msgstr "Else/Endif sin If."
-#. l,@@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1155,7 +1041,6 @@ msgctxt ""
msgid "$(ARG1) not allowed within a procedure."
msgstr "No se permite $(ARG1) en un procedimiento."
-#. rQae
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1165,7 +1050,6 @@ msgctxt ""
msgid "$(ARG1) not allowed outside a procedure."
msgstr "No se permite $(ARG1) fuera de un procedimiento."
-#. o71[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1175,7 +1059,6 @@ msgctxt ""
msgid "Dimension specifications do not match."
msgstr "Las especificaciones de dimensiones no coinciden."
-#. tGW%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1185,7 +1068,6 @@ msgctxt ""
msgid "Unknown option: $(ARG1)."
msgstr "Opción desconocida: $(ARG1)."
-#. a+s?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1195,7 +1077,6 @@ msgctxt ""
msgid "Constant $(ARG1) redefined."
msgstr "La constante $(ARG1) se ha vuelto a definir."
-#. {Kr_
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1205,7 +1086,6 @@ msgctxt ""
msgid "Program too large."
msgstr "El programa es demasiado grande."
-#. XTNn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1215,7 +1095,6 @@ msgctxt ""
msgid "Strings or arrays not permitted."
msgstr "Matrices o cadenas de caracteres no permitidos."
-#. 7Lkp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1225,7 +1104,6 @@ msgctxt ""
msgid "An exception occurred $(ARG1)."
msgstr "Se ha producido una excepción $(ARG1)."
-#. ECV`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1235,7 +1113,6 @@ msgctxt ""
msgid "This array is fixed or temporarily locked."
msgstr "Este arreglo es fijo o temporalmente supendido."
-#. uD8]
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1245,7 +1122,6 @@ msgctxt ""
msgid "Out of string space."
msgstr "Fuera de espacio en cadena."
-#. 3@]t
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1255,7 +1131,6 @@ msgctxt ""
msgid "Expression Too Complex."
msgstr "Expresión muy compleja."
-#. mE%R
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1265,7 +1140,6 @@ msgctxt ""
msgid "Can't perform requested operation."
msgstr "No se puede producir la operación solicitada."
-#. MY$g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1275,7 +1149,6 @@ msgctxt ""
msgid "Too many DLL application clients."
msgstr "Demasiadas aplicaciones clientes tipo DLL."
-#. E-7l
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1285,7 +1158,6 @@ msgctxt ""
msgid "For loop not initialized."
msgstr "No se inicializó el bucle For."
-#. ,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 "Se ha interrumpido la macro activa"
-#. xR6k
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1313,7 +1183,6 @@ msgctxt ""
msgid "Reference will not be saved: "
msgstr "No se guardará la referencia: "
-#. 0pV\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1322,7 +1191,6 @@ msgctxt ""
msgid "Error loading library '$(ARG1)'."
msgstr "Error al cargar la biblioteca '$(ARG1)'."
-#. AT.h
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1331,7 +1199,6 @@ msgctxt ""
msgid "Error saving library: '$(ARG1)'."
msgstr "Error al guardar la biblioteca: '$(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 "No se ha podido inicializar BASIC desde el archivo '$(ARG1)'."
-#. }9dQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1349,7 +1215,6 @@ msgctxt ""
msgid "Error saving BASIC: '$(ARG1)'."
msgstr "Error al guardar BASIC: '$(ARG1)'."
-#. n{Uv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1358,7 +1223,6 @@ msgctxt ""
msgid "Error removing library."
msgstr "Error al suprimir la biblioteca."
-#. ZSrL
#: sb.src
msgctxt ""
"sb.src\n"
diff --git a/source/es/basic/source/sbx.po b/source/es/basic/source/sbx.po
index e157fa7ffe8..0c8acd4b91d 100644
--- a/source/es/basic/source/sbx.po
+++ b/source/es/basic/source/sbx.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 20:00+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Activado"
-#. X209
#: format.src
msgctxt ""
"format.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Off"
msgstr "Desactivado"
-#. Q-y5
#: format.src
msgctxt ""
"format.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "Verdadero"
-#. \YCB
#: format.src
msgctxt ""
"format.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "Falso"
-#. ld7q
#: format.src
msgctxt ""
"format.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. nKe!
#: format.src
msgctxt ""
"format.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. )lVb
#: format.src
msgctxt ""
"format.src\n"
diff --git a/source/es/chart2/source/controller/dialogs.po b/source/es/chart2/source/controller/dialogs.po
index 234ef4cd81b..e262ac7ba3c 100644
--- a/source/es/chart2/source/controller/dialogs.po
+++ b/source/es/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-08-14 05:39+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Posición"
-#. 2bA!
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Orientación del texto"
-#. (Y46
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Dirección de te~xto"
-#. Ta3j
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Sche~me"
msgstr "Esque~ma"
-#. wD[=
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "~Shading"
msgstr "~Sombreado"
-#. /QqL
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Object borders"
msgstr "Bordes del ~objeto"
-#. QmzN
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Rounded edges"
msgstr "Bordes ~redondeados"
-#. aS{~
#: dlg_DataSource.src
msgctxt ""
"dlg_DataSource.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Data Ranges"
msgstr "Rango de datos"
-#. oDtD
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "~Display legend"
msgstr "~Mostrar leyenda"
-#. !n%9
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierda"
-#. 1P9H
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Derecha"
-#. N~Zf
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Arriba"
-#. N+Ks
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Abajo"
-#. `]m)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Negative and Positive"
msgstr "Negativo y positivo"
-#. GeY)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Negative"
msgstr "Negativo"
-#. .l[7
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -171,7 +155,6 @@ msgctxt ""
msgid "Positive"
msgstr "Positivo"
-#. -21e
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "From Data Table"
msgstr "Desde la tabla de datos"
-#. tqK@
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Linear (%SERIESNAME)"
msgstr "Lineal (%SERIESNAME)"
-#. 5^hJ
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -198,7 +179,6 @@ msgctxt ""
msgid "Logarithmic (%SERIESNAME)"
msgstr "Logarítmica (%SERIESNAME)"
-#. =?g\
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "Exponential (%SERIESNAME)"
msgstr "Exponencial (%SERIESNAME)"
-#. F=I/
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -216,7 +195,6 @@ msgctxt ""
msgid "Power (%SERIESNAME)"
msgstr "Potencia (%SERIESNAME)"
-#. cI\E
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -225,7 +203,6 @@ msgctxt ""
msgid "Mean (%SERIESNAME)"
msgstr "Promedio (%SERIESNAME)"
-#. ?J)8
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "Space"
msgstr "Espacio"
-#. W4nI
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "Comma"
msgstr "Coma"
-#. ABZF
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "Semicolon"
msgstr "Semicoma"
-#. Fp7(
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -265,7 +239,6 @@ msgctxt ""
msgid "New line"
msgstr "Nueva línea"
-#. 93Rx
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -274,7 +247,6 @@ msgctxt ""
msgid "Simple"
msgstr "Sencilla"
-#. X)Cq
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Realistic"
msgstr "Realista"
-#. *(X]
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Custom"
msgstr "Personalizada"
-#. h.]G
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -301,7 +271,6 @@ msgctxt ""
msgid "Shape"
msgstr "Forma"
-#. (BCV
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -310,7 +279,6 @@ msgctxt ""
msgid "~Number of lines"
msgstr "~Número de líneas"
-#. ;4CQ
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -319,7 +287,6 @@ msgctxt ""
msgid "Separator"
msgstr "Separador"
-#. 9e|j
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -328,7 +295,6 @@ msgctxt ""
msgid "Column"
msgstr "Columna"
-#. Q:Pn
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -337,7 +303,6 @@ msgctxt ""
msgid "Bar"
msgstr "Barra"
-#. :%2T
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -346,7 +311,6 @@ msgctxt ""
msgid "Area"
msgstr "Área"
-#. -v_=
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -355,7 +319,6 @@ msgctxt ""
msgid "Pie"
msgstr "Círculo"
-#. ~WAm
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -364,7 +327,6 @@ msgctxt ""
msgid "Exploded Pie Chart"
msgstr "Gráfico circular esparcido"
-#. 6.V@
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -373,7 +335,6 @@ msgctxt ""
msgid "Exploded Donut Chart"
msgstr "Gráfico de anillos seccionado"
-#. [bQ{
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -382,7 +343,6 @@ msgctxt ""
msgid "Donut"
msgstr "Anillo"
-#. OMPv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -391,7 +351,6 @@ msgctxt ""
msgid "Line"
msgstr "Línea"
-#. x#-|
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -400,7 +359,6 @@ msgctxt ""
msgid "XY (Scatter)"
msgstr "XY (dispersión)"
-#. 4*:L
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -409,7 +367,6 @@ msgctxt ""
msgid "Points and Lines"
msgstr "Puntos y líneas"
-#. HY{t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -418,7 +375,6 @@ msgctxt ""
msgid "Points Only"
msgstr "Sólo puntos"
-#. 6sa/
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -427,7 +383,6 @@ msgctxt ""
msgid "Lines Only"
msgstr "Sólo líneas"
-#. #R3E
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -436,7 +391,6 @@ msgctxt ""
msgid "3D Lines"
msgstr "Líneas 3D"
-#. `4;t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -445,7 +399,6 @@ msgctxt ""
msgid "Column and Line"
msgstr "Línea y columna"
-#. XvZ.
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -454,7 +407,6 @@ msgctxt ""
msgid "Columns and Lines"
msgstr "Líneas y columnas"
-#. $G_8
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -463,7 +415,6 @@ msgctxt ""
msgid "Stacked Columns and Lines"
msgstr "Líneas y columnas apiladas"
-#. d3jd
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -472,7 +423,6 @@ msgctxt ""
msgid "Net"
msgstr "Red"
-#. 0;S`
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -481,7 +431,6 @@ msgctxt ""
msgid "Stock"
msgstr "Stock"
-#. R:j4
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -490,7 +439,6 @@ msgctxt ""
msgid "Stock Chart 1"
msgstr "Diagrama de curso 1"
-#. iAu$
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -499,7 +447,6 @@ msgctxt ""
msgid "Stock Chart 2"
msgstr "Diagrama de curso 2"
-#. jV!_
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -508,7 +455,6 @@ msgctxt ""
msgid "Stock Chart 3"
msgstr "Diagrama de curso 3"
-#. =09H
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -517,7 +463,6 @@ msgctxt ""
msgid "Stock Chart 4"
msgstr "Diagrama de curso 4"
-#. p^8~
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -526,7 +471,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normal"
-#. SuFe
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -535,7 +479,6 @@ msgctxt ""
msgid "Stacked"
msgstr "En pilas"
-#. (Gg1
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -544,7 +487,6 @@ msgctxt ""
msgid "Percent Stacked"
msgstr "Porcentaje apilado"
-#. ?LZx
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -553,7 +495,6 @@ msgctxt ""
msgid "Deep"
msgstr "Profundidad"
-#. 8`?Y
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -562,7 +503,6 @@ msgctxt ""
msgid "Filled"
msgstr "Llenado"
-#. CIIf
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -571,7 +511,6 @@ msgctxt ""
msgid "Bubble"
msgstr "Burbuja"
-#. .*xv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -580,7 +519,6 @@ msgctxt ""
msgid "Bubble Chart"
msgstr "Gráfico de Burbuja"
-#. =E`M
#: dlg_View3D.src
msgctxt ""
"dlg_View3D.src\n"
@@ -589,7 +527,6 @@ msgctxt ""
msgid "3D View"
msgstr "Vista en 3D"
-#. |)N:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -599,7 +536,6 @@ msgctxt ""
msgid "Insert Row"
msgstr "Insertar fila"
-#. .2pr
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -609,7 +545,6 @@ msgctxt ""
msgid "Insert Series"
msgstr "Insertar series"
-#. 4^5V
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -619,7 +554,6 @@ msgctxt ""
msgid "Insert Text Column"
msgstr "Insertar columna de texto"
-#. #HR6
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -629,7 +563,6 @@ msgctxt ""
msgid "Delete Row"
msgstr "Eliminar fila"
-#. km3:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -639,7 +572,6 @@ msgctxt ""
msgid "Delete Series"
msgstr "Eliminar series"
-#. $3sv
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -649,7 +581,6 @@ msgctxt ""
msgid "Move Series Right"
msgstr "Mover series a la derecha"
-#. P/dj
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -659,7 +590,6 @@ msgctxt ""
msgid "Move Row Down"
msgstr "Mover filas abajo"
-#. $$77
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -668,7 +598,6 @@ msgctxt ""
msgid "Data Table"
msgstr "Tabla de datos"
-#. =E\\
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -678,7 +607,6 @@ msgctxt ""
msgid "Choose a data range"
msgstr "Seleccione un rango de datos"
-#. t;Y!
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -688,7 +616,6 @@ msgctxt ""
msgid "~Data range"
msgstr "~Rango de datos"
-#. @p99
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -698,7 +625,6 @@ msgctxt ""
msgid "Data series in ~rows"
msgstr "Serie de datos en ~filas"
-#. 69eT
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -708,7 +634,6 @@ msgctxt ""
msgid "Data series in ~columns"
msgstr "Serie de datos en ~columnas"
-#. K@Zi
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -718,7 +643,6 @@ msgctxt ""
msgid "~First row as label"
msgstr "Primera ~fila como etiqueta"
-#. [w4)
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -728,7 +652,6 @@ msgctxt ""
msgid "F~irst column as label"
msgstr "Primera c~olumna como etiqueta"
-#. 8]is
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -738,7 +661,6 @@ msgctxt ""
msgid "Regression Type"
msgstr "Curva de regresión"
-#. (wAr
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -748,7 +670,6 @@ msgctxt ""
msgid "~None"
msgstr "~Ninguno"
-#. GG9S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -758,7 +679,6 @@ msgctxt ""
msgid "~Linear"
msgstr "~Lineal"
-#. 4:q_
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -768,7 +688,6 @@ msgctxt ""
msgid "L~ogarithmic"
msgstr "L~ogarítmico"
-#. 9K`S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -778,7 +697,6 @@ msgctxt ""
msgid "E~xponential"
msgstr "E~xponencial"
-#. b9pq
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -788,7 +706,6 @@ msgctxt ""
msgid "~Power"
msgstr "~Poder"
-#. knid
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -798,7 +715,6 @@ msgctxt ""
msgid "Equation"
msgstr "Ecuación"
-#. l)?b
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -808,7 +724,6 @@ msgctxt ""
msgid "Show ~equation"
msgstr "Mostrar ~ecuación"
-#. fljX
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -818,7 +733,6 @@ msgctxt ""
msgid "Show ~coefficient of determination (R²)"
msgstr "Mostrar ~coeficiente determinado(R²)"
-#. W|.3
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -828,7 +742,6 @@ msgctxt ""
msgid "~Clockwise direction"
msgstr "~Sentido horario"
-#. ,hUr
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -838,7 +751,6 @@ msgctxt ""
msgid "Starting angle"
msgstr "Ángulo inicial"
-#. 8icR
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -848,7 +760,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~Grado"
-#. E8Nh
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -858,7 +769,6 @@ msgctxt ""
msgid "Plot options"
msgstr "Opciones de Plot"
-#. 5SC{
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -868,7 +778,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr "Incluir ~valores de las celdas fue oculta"
-#. ;bc;
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -878,7 +787,6 @@ msgctxt ""
msgid "~Light source"
msgstr "Fuente de ~luz"
-#. b@)R
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -888,7 +796,6 @@ msgctxt ""
msgid "~Ambient light"
msgstr "Luz ~ambiental"
-#. jXhM
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -897,7 +804,6 @@ msgctxt ""
msgid "Light Preview"
msgstr "Vista preliminar de la iluminación"
-#. i80-
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -907,7 +813,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "Disposición ve~rtical"
-#. i\vL
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -917,7 +822,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~Grados"
-#. 0.Y#
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -927,7 +831,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Orientación del texto"
-#. hDoi
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -937,7 +840,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Dirección de te~xto"
-#. YA|:
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -947,7 +849,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. SBG(
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -957,7 +858,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Efecto de fuentes"
-#. I@Wu
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -967,7 +867,6 @@ msgctxt ""
msgid "Font Position"
msgstr "Posición de fuente"
-#. VWxy
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -976,7 +875,6 @@ msgctxt ""
msgid "Character"
msgstr "Carácter"
-#. VD+x
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -985,7 +883,6 @@ msgctxt ""
msgid "Numbers are required. Check your input."
msgstr "Se requieren números. Revise sus datos."
-#. #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 "El intérvalo mayor requiere un número positivo. Revise sus datos."
-#. 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 "La escala logarítmica requiere números positivos. Revise sus datos."
-#. 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 "El mínimo debe ser menor que el máximo. Revise sus datos."
-#. 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 "El intervalo principal debe ser mayor que el intervalo secundario. Verifique los datos."
-#. [=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 "Los dos intervalos, principal y secundario, deben ser mayores que la resolución. Verifique los datos."
-#. jLX5
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1040,7 +932,6 @@ msgctxt ""
msgid "Axes"
msgstr "Ejes"
-#. OO2y
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1050,7 +941,6 @@ msgctxt ""
msgid "Major grids"
msgstr "Cuadrículas principales"
-#. B[TW
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1060,7 +950,6 @@ msgctxt ""
msgid "~X axis"
msgstr "Eje ~X"
-#. L068
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1070,7 +959,6 @@ msgctxt ""
msgid "~Y axis"
msgstr "Eje ~Y"
-#. 9]MJ
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1080,7 +968,6 @@ msgctxt ""
msgid "~Z axis"
msgstr "Eje ~Z"
-#. S|.I
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1090,7 +977,6 @@ msgctxt ""
msgid "Secondary axes"
msgstr "Ejes secundarios"
-#. L(K}
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1100,7 +986,6 @@ msgctxt ""
msgid "Minor grids"
msgstr "Cuadrículas auxiliares"
-#. #+EL
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1110,7 +995,6 @@ msgctxt ""
msgid "Choose a chart type"
msgstr "Seleccione un tipo de gráfico"
-#. !A4Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1120,7 +1004,6 @@ msgctxt ""
msgid "X axis with Categories"
msgstr "Eje X con categorías"
-#. [QFc
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1130,7 +1013,6 @@ msgctxt ""
msgid "~3D Look"
msgstr "Vista ~3D"
-#. }\g@
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1140,7 +1022,6 @@ msgctxt ""
msgid "~Stack series"
msgstr "~Series apliladas"
-#. wAj`
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1150,7 +1031,6 @@ msgctxt ""
msgid "On top"
msgstr "Arriba"
-#. {_ID
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1160,7 +1040,6 @@ msgctxt ""
msgid "Percent"
msgstr "Porcentaje"
-#. fJnZ
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1170,7 +1049,6 @@ msgctxt ""
msgid "Deep"
msgstr "Fondo"
-#. 4Y]o
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1180,7 +1058,6 @@ msgctxt ""
msgid "S~mooth lines"
msgstr "Líneas s~uaves"
-#. 4M\0
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1190,7 +1067,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Propiedades..."
-#. CX=Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1200,7 +1076,6 @@ msgctxt ""
msgid "~Sort by X values"
msgstr "~Ordenar por valores de X"
-#. lEJ3
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1210,7 +1085,6 @@ msgctxt ""
msgid "Cubic spline"
msgstr "Spline cúbico"
-#. =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 "~Resolución"
-#. 7znu
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1240,7 +1112,6 @@ msgctxt ""
msgid "~Degree of polynomials"
msgstr "~Grado de los polinomios"
-#. Yq=6
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1250,7 +1121,6 @@ msgctxt ""
msgid "Customize data ranges for individual data series"
msgstr "Configure los rangos de datos para cada serie"
-#. s+aV
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1260,7 +1130,6 @@ msgctxt ""
msgid "Data ~series"
msgstr "Series de ~datos"
-#. JWm_
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1270,7 +1139,6 @@ msgctxt ""
msgid "~Data ranges"
msgstr "~Rangos de datos"
-#. .:VG
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1280,7 +1148,6 @@ msgctxt ""
msgid "Ran~ge for %VALUETYPE"
msgstr "Ran~go para %VALUETYPE"
-#. Zl#c
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1290,7 +1157,6 @@ msgctxt ""
msgid "~Categories"
msgstr "~Categorías"
-#. 1m2y
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1300,7 +1166,6 @@ msgctxt ""
msgid "Data ~labels"
msgstr "Etiquetas de ~datos"
-#. f[R%
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1310,7 +1175,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. kBDc
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1320,7 +1184,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eliminar"
-#. G^6K
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1330,7 +1193,6 @@ msgctxt ""
msgid "Sho~w labels"
msgstr "Mostrar ~etiqueta"
-#. Zoa+
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1340,7 +1202,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Orientación del texto"
-#. a`5r
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1350,7 +1211,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "Disposición ve~rtical"
-#. 68oB
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1360,7 +1220,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~Grado"
-#. e9@?
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1370,7 +1229,6 @@ msgctxt ""
msgid "Text flow"
msgstr "Flujo del texto"
-#. 0egC
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1380,7 +1238,6 @@ msgctxt ""
msgid "O~verlap"
msgstr "So~breponer"
-#. l:ya
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1390,7 +1247,6 @@ msgctxt ""
msgid "~Break"
msgstr "~Salto"
-#. .@6\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1400,7 +1256,6 @@ msgctxt ""
msgid "Order"
msgstr "Organizar"
-#. g:FP
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1410,7 +1265,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~Mosaico"
-#. ,jVO
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1420,7 +1274,6 @@ msgctxt ""
msgid "St~agger odd"
msgstr "~Organización impar"
-#. 8H5\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1430,7 +1283,6 @@ msgctxt ""
msgid "Stagger ~even"
msgstr "Orga~nización par"
-#. 6S](
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1440,7 +1292,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "A~utomático"
-#. 1o^t
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1450,7 +1301,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Dirección del te~xto"
-#. 0/!M
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1460,7 +1310,6 @@ msgctxt ""
msgid "~Title"
msgstr "~Título"
-#. PZFl
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1470,7 +1319,6 @@ msgctxt ""
msgid "~Subtitle"
msgstr "~Subtítulo"
-#. VBni
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1480,7 +1328,6 @@ msgctxt ""
msgid "Axes"
msgstr "Ejes"
-#. %y.|
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1490,7 +1337,6 @@ msgctxt ""
msgid "~X axis"
msgstr "Eje ~X"
-#. 1O{i
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1500,7 +1346,6 @@ msgctxt ""
msgid "~Y axis"
msgstr "Eje ~Y"
-#. QkE=
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1510,7 +1355,6 @@ msgctxt ""
msgid "~Z axis"
msgstr "Eje ~Z"
-#. ffL@
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1520,7 +1364,6 @@ msgctxt ""
msgid "Secondary Axes"
msgstr "Ejes secundarios"
-#. @8#P
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1530,7 +1373,6 @@ msgctxt ""
msgid "X ~axis"
msgstr "~Eje X"
-#. TS(}
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1540,7 +1382,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr "E~je Y"
-#. -C0w
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1550,7 +1391,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr "Sangrías y espaciado"
-#. :WTi
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1560,7 +1400,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. 8tw(
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1570,7 +1409,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Tipografía asiática"
-#. {Klu
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1580,7 +1418,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tabulador"
-#. jers
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1589,7 +1426,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "Párrafo"
-#. #C55
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1598,7 +1434,6 @@ msgctxt ""
msgid " degrees"
msgstr " grados"
-#. BMbV
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1608,7 +1443,6 @@ msgctxt ""
msgid "~Right-angled axes"
msgstr "Ejes del ángulo de~recho"
-#. jWQx
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1618,7 +1452,6 @@ msgctxt ""
msgid "~X rotation"
msgstr "Rotación en ~X"
-#. (%\N
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1628,7 +1461,6 @@ msgctxt ""
msgid "~Y rotation"
msgstr "Rotación en ~Y"
-#. miUt
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1638,7 +1470,6 @@ msgctxt ""
msgid "~Z rotation"
msgstr "Rotación en ~Z"
-#. N=!e
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1648,7 +1479,6 @@ msgctxt ""
msgid "~Perspective"
msgstr "~Perspectiva"
-#. =YB6
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1658,7 +1488,6 @@ msgctxt ""
msgid "X ~axis"
msgstr "~Eje X"
-#. hZjk
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1668,7 +1497,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr "E~je Y"
-#. N7M7
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1678,7 +1506,6 @@ msgctxt ""
msgid "Z axi~s"
msgstr "Eje ~Z"
-#. #b?E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1687,7 +1514,6 @@ msgctxt ""
msgid "Chart Wizard"
msgstr "Asistente de gráficos"
-#. OV$q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1696,7 +1522,6 @@ msgctxt ""
msgid "Smooth Lines"
msgstr "Líneas suaves"
-#. MLs=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1705,7 +1530,6 @@ msgctxt ""
msgid "Number Format for Percentage Value"
msgstr "Formato de número por valor del porcentaje."
-#. [2mK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1714,7 +1538,6 @@ msgctxt ""
msgid "Chart Type"
msgstr "Tipo de gráfico"
-#. }`h%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1723,7 +1546,6 @@ msgctxt ""
msgid "Data Range"
msgstr "Rango de datos"
-#. @QzI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1732,7 +1554,6 @@ msgctxt ""
msgid "Chart Elements"
msgstr "Elementos de gráficos"
-#. ,QlR
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1741,7 +1562,6 @@ msgctxt ""
msgid "Chart Location"
msgstr "Ubicación del gráfico"
-#. GOT7
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1750,7 +1570,6 @@ msgctxt ""
msgid "Line"
msgstr "Línea"
-#. w^ul
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1759,7 +1578,6 @@ msgctxt ""
msgid "Borders"
msgstr "Borde"
-#. bx$a
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1768,7 +1586,6 @@ msgctxt ""
msgid "Area"
msgstr "Área"
-#. HE9j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1777,7 +1594,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Transparencia"
-#. :7)n
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1786,7 +1602,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. Rje4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1795,7 +1610,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Efecto de fuentes"
-#. _Au`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1804,7 +1618,6 @@ msgctxt ""
msgid "Numbers"
msgstr "Números"
-#. `Y1Y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1813,7 +1626,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. 8QM_
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1822,7 +1634,6 @@ msgctxt ""
msgid "Up"
msgstr "Arriba"
-#. 1$X/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1831,7 +1642,6 @@ msgctxt ""
msgid "Down"
msgstr "Abajo"
-#. rr/8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1840,7 +1650,6 @@ msgctxt ""
msgid "Layout"
msgstr "Diseño"
-#. ]S?b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1849,7 +1658,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. 4L1%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1858,7 +1666,6 @@ msgctxt ""
msgid "Scale"
msgstr "Escala"
-#. 3l@l
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1867,7 +1674,6 @@ msgctxt ""
msgid "Positioning"
msgstr "Posición"
-#. x\.E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1876,7 +1682,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. 4MGk
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1885,7 +1690,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr "Barras de error X"
-#. 0Igp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1894,7 +1698,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr "Barras de error Y"
-#. Y]0*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1903,7 +1706,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr "Barras de error Z"
-#. YU\X
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1912,7 +1714,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. 5=oK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1921,7 +1722,6 @@ msgctxt ""
msgid "Perspective"
msgstr "Perspectiva"
-#. e{?y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1930,7 +1730,6 @@ msgctxt ""
msgid "Appearance"
msgstr "Apariencia"
-#. [)o%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1939,7 +1738,6 @@ msgctxt ""
msgid "Illumination"
msgstr "Iluminación"
-#. /(B=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1948,7 +1746,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Tipografía Asiática"
-#. :+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 "La línea del valor medio con un valor de %AVERAGE_VALUE y una desviación estándar del %STD_DEVIATION"
-#. E%IQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1966,7 +1762,6 @@ msgctxt ""
msgid "Axis"
msgstr "Eje"
-#. ibaz
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1975,7 +1770,6 @@ msgctxt ""
msgid "X Axis"
msgstr "Eje X"
-#. ,/Rn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1984,7 +1778,6 @@ msgctxt ""
msgid "Y Axis"
msgstr "Eje Y"
-#. 1om8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1993,7 +1786,6 @@ msgctxt ""
msgid "Z Axis"
msgstr "Eje Z"
-#. -#_=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2002,7 +1794,6 @@ msgctxt ""
msgid "Secondary X Axis"
msgstr "Eje X secundario"
-#. gWrK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2011,7 +1802,6 @@ msgctxt ""
msgid "Secondary Y Axis"
msgstr "Eje Y secundario"
-#. ?[f8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2020,7 +1810,6 @@ msgctxt ""
msgid "Axes"
msgstr "Ejes"
-#. YgOW
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2029,7 +1818,6 @@ msgctxt ""
msgid "Grids"
msgstr "Cuadrículas"
-#. ke3*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2038,7 +1826,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. lOW(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2047,7 +1834,6 @@ msgctxt ""
msgid "X Axis Major Grid"
msgstr "Cuadrícula mayor del eje X"
-#. #wk1
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2056,7 +1842,6 @@ msgctxt ""
msgid "Y Axis Major Grid"
msgstr "Cuadrícula mayor del eje Y"
-#. UH@@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2065,7 +1850,6 @@ msgctxt ""
msgid "Z Axis Major Grid"
msgstr "Cuadrícula mayor del eje Z"
-#. 9?cE
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2074,7 +1858,6 @@ msgctxt ""
msgid "X Axis Minor Grid"
msgstr "Cuadrícula menor del eje X"
-#. YWO5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2083,7 +1866,6 @@ msgctxt ""
msgid "Y Axis Minor Grid"
msgstr "Cuadrícula menor del eje Y"
-#. 4j6J
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2092,7 +1874,6 @@ msgctxt ""
msgid "Z Axis Minor Grid"
msgstr "Cuadrícula menor del eje Z"
-#. sYEn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2101,7 +1882,6 @@ msgctxt ""
msgid "Legend"
msgstr "Leyenda"
-#. 8c`i
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2110,7 +1890,6 @@ msgctxt ""
msgid "Title"
msgstr "Título"
-#. kLHp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2119,7 +1898,6 @@ msgctxt ""
msgid "Titles"
msgstr "Títulos"
-#. m[@6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2128,7 +1906,6 @@ msgctxt ""
msgid "Main Title"
msgstr "Título principal"
-#. .lG5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2137,7 +1914,6 @@ msgctxt ""
msgid "Subtitle"
msgstr "Subtítulo"
-#. *jdG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2146,7 +1922,6 @@ msgctxt ""
msgid "X Axis Title"
msgstr "Título del eje X"
-#. SX[Q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2155,7 +1930,6 @@ msgctxt ""
msgid "Y Axis Title"
msgstr "Título del eje Y"
-#. ]7.b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2164,7 +1938,6 @@ msgctxt ""
msgid "Z Axis Title"
msgstr "Título del eje Z"
-#. $HXQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2173,7 +1946,6 @@ msgctxt ""
msgid "Secondary X Axis Title"
msgstr "Título secundario del eje X"
-#. @.5E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2182,7 +1954,6 @@ msgctxt ""
msgid "Secondary Y Axis Title"
msgstr "Título secundario del eje Y"
-#. ?5k5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2191,7 +1962,6 @@ msgctxt ""
msgid "Label"
msgstr "Etiqueta"
-#. .%E/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2200,7 +1970,6 @@ msgctxt ""
msgid "Data Labels"
msgstr "Etiquetas de datos"
-#. oe^C
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2209,7 +1978,6 @@ msgctxt ""
msgid "Data Point"
msgstr "Punto de datos"
-#. *`4I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2218,7 +1986,6 @@ msgctxt ""
msgid "Data Points"
msgstr "Puntos de datos"
-#. 5;Uc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2227,7 +1994,6 @@ msgctxt ""
msgid "Legend Key"
msgstr "Clave de leyenda"
-#. 1mXl
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2236,7 +2002,6 @@ msgctxt ""
msgid "Data Series"
msgstr "Series de datos"
-#. A^\/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2245,7 +2010,6 @@ msgctxt ""
msgid "Data Series"
msgstr "Series de datos"
-#. Q.Bm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2254,7 +2018,6 @@ msgctxt ""
msgid "Trend Line"
msgstr "Línea de tendencia"
-#. 3A2I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2263,7 +2026,6 @@ msgctxt ""
msgid "Trend Lines"
msgstr "Líneas de tendencia"
-#. ~J6k
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2272,7 +2034,6 @@ msgctxt ""
msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
msgstr "Línea de tendencia %FORMULA con precisión R² = %RSQUARED"
-#. vzbm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2281,7 +2042,6 @@ msgctxt ""
msgid "Mean Value Line"
msgstr "Línea del valor medio"
-#. (_Oj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2290,7 +2050,6 @@ msgctxt ""
msgid "Equation"
msgstr "Ecuación"
-#. 1hj{
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2299,7 +2058,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr "Barras de error X"
-#. RN#6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2308,7 +2066,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr "Barras de error Y"
-#. Jr2O
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2317,7 +2074,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr "Barras de error Z"
-#. Zp(8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2326,7 +2082,6 @@ msgctxt ""
msgid "Stock Loss"
msgstr "Reducción"
-#. ;nt8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2335,7 +2090,6 @@ msgctxt ""
msgid "Stock Gain"
msgstr "Crecimiento"
-#. 33)~
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2344,7 +2098,6 @@ msgctxt ""
msgid "Chart Area"
msgstr "Área de gráficos"
-#. 3-4`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2353,7 +2106,6 @@ msgctxt ""
msgid "Chart"
msgstr "Gráfico"
-#. t8[[
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2362,7 +2114,6 @@ msgctxt ""
msgid "Chart Wall"
msgstr "Plano lateral del gráfico"
-#. 0Hq|
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2371,7 +2122,6 @@ msgctxt ""
msgid "Chart Floor"
msgstr "Gráfico de superficie"
-#. awbi
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2380,7 +2130,6 @@ msgctxt ""
msgid "Drawing Object"
msgstr "Objeto de dibujo"
-#. T0^x
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2389,7 +2138,6 @@ msgctxt ""
msgid "Select data range"
msgstr "Seleccionar un rango de datos"
-#. YlE)
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2398,7 +2146,6 @@ msgctxt ""
msgid "Select a color using the color dialog"
msgstr "Seleccionar un color usando el diálogo de color"
-#. 5Wbc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2407,7 +2154,6 @@ msgctxt ""
msgid "Light Source %LIGHTNUMBER"
msgstr "Iluminación %LIGHTNUMBER"
-#. bv_+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2416,7 +2162,6 @@ msgctxt ""
msgid "Data Series '%SERIESNAME'"
msgstr "Serie de datos '%SERIESNAME'"
-#. -x7j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2425,7 +2170,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER"
msgstr "Punto de datos %POINTNUMBER"
-#. R7n^
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2434,7 +2178,6 @@ msgctxt ""
msgid "Values: %POINTVALUES"
msgstr "Valores: %POINTVALUES"
-#. DM-.
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2443,7 +2186,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
msgstr "Punto de datos %POINTNUMBER, series de datos %SERIESNUMBER, valores: %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 "Punto de datos %POINTNUMBER en serie de datos %SERIESNUMBER seleccionado, valor: %POINTVALUES"
-#. 3f^o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2461,7 +2202,6 @@ msgctxt ""
msgid "%OBJECTNAME selected"
msgstr "%OBJECTNAME seleccionada"
-#. }NA@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2470,7 +2210,6 @@ msgctxt ""
msgid "Pie exploded by %PERCENTVALUE percent"
msgstr "Circulos expandidos por porcentaje %PERCENTVALUE"
-#. {Pez
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2479,7 +2218,6 @@ msgctxt ""
msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
msgstr "%OBJECTNAME para las series de dato '%SERIESNAME'"
-#. Tkh#
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2488,7 +2226,6 @@ msgctxt ""
msgid "%OBJECTNAME for all Data Series"
msgstr "%OBJECTNAME para todas las series de datos"
-#. f,Vj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2497,7 +2234,6 @@ msgctxt ""
msgid "Edit chart type"
msgstr "Editar tipo de gráfico"
-#. owTG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2506,7 +2242,6 @@ msgctxt ""
msgid "Edit data ranges"
msgstr "Editar rangos de datos"
-#. h[n4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2515,7 +2250,6 @@ msgctxt ""
msgid "Edit 3D view"
msgstr "Editar vista 3D"
-#. 7wE:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2524,7 +2258,6 @@ msgctxt ""
msgid "Edit chart data"
msgstr "Editar datos del gráfico"
-#. G9*d
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2533,7 +2266,6 @@ msgctxt ""
msgid "Legend on/off"
msgstr "Activar/desactivar leyenda"
-#. ms!r
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2542,7 +2274,6 @@ msgctxt ""
msgid "Horizontal grid on/off"
msgstr "Activar/desactivar cuadricula horizontal"
-#. zxjI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2551,7 +2282,6 @@ msgctxt ""
msgid "Scale Text"
msgstr "Escalar texto"
-#. ]oB2
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2560,7 +2290,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr "Diseño automático"
-#. 1Gan
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2571,7 +2300,6 @@ msgstr ""
"No es posible ejecutar la acción\n"
"con los objetos seleccionados."
-#. KLJ:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2580,7 +2308,6 @@ msgctxt ""
msgid "Edit text"
msgstr "Editar el texto"
-#. zNY4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2589,7 +2316,6 @@ msgctxt ""
msgid "Column %COLUMNNUMBER"
msgstr "Columna %COLUMNNUMBER"
-#. 23K3
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2598,7 +2324,6 @@ msgctxt ""
msgid "Row %ROWNUMBER"
msgstr "Fila %ROWNUMBER"
-#. S=*e
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2607,7 +2332,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. $=l!
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2616,7 +2340,6 @@ msgctxt ""
msgid "X-Values"
msgstr "Valores-X"
-#. $f\y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2625,7 +2348,6 @@ msgctxt ""
msgid "Y-Values"
msgstr "Valores-Y"
-#. I[7E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2634,7 +2356,6 @@ msgctxt ""
msgid "Bubble Sizes"
msgstr "Tamaño de Burbuja"
-#. q(j;
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2643,7 +2364,6 @@ msgctxt ""
msgid "X-Error-Bars"
msgstr "Barras-Error-X"
-#. lrQ\
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2652,7 +2372,6 @@ msgctxt ""
msgid "Positive X-Error-Bars"
msgstr "Barras-Error-X Positivas"
-#. QFp(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2661,7 +2380,6 @@ msgctxt ""
msgid "Negative X-Error-Bars"
msgstr "Barras-Error-X Negativas"
-#. imSO
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2670,7 +2388,6 @@ msgctxt ""
msgid "Y-Error-Bars"
msgstr "Barras-Error-Y"
-#. `UFh
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2679,7 +2396,6 @@ msgctxt ""
msgid "Positive Y-Error-Bars"
msgstr "Barras-Error-Y Positivas"
-#. l@)o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2688,7 +2404,6 @@ msgctxt ""
msgid "Negative Y-Error-Bars"
msgstr "Barras-Error-Y Negativas"
-#. ],hv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2697,7 +2412,6 @@ msgctxt ""
msgid "Open Values"
msgstr "Abrir valores"
-#. B*OJ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2706,7 +2420,6 @@ msgctxt ""
msgid "Close Values"
msgstr "Cerrar valores"
-#. i3VT
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2715,7 +2428,6 @@ msgctxt ""
msgid "Low Values"
msgstr "Valores bajos"
-#. cD^v
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2724,7 +2436,6 @@ msgctxt ""
msgid "High Values"
msgstr "Valores altos"
-#. ;-Ya
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2733,7 +2444,6 @@ msgctxt ""
msgid "Categories"
msgstr "Categorías"
-#. IZBn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2742,7 +2452,6 @@ msgctxt ""
msgid "Unnamed Series"
msgstr "Serie sin nombre"
-#. ~O0Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2751,7 +2460,6 @@ msgctxt ""
msgid "Unnamed Series %NUMBER"
msgstr "Serie sin nombre %NUMBER"
-#. |QKQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2760,7 +2468,6 @@ msgctxt ""
msgid "Select Range for %VALUETYPE of %SERIESNAME"
msgstr "Seleccionar rango para %VALUETYPE de %SERIESNAME"
-#. x!Se
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2769,7 +2476,6 @@ msgctxt ""
msgid "Select Range for Categories"
msgstr "Seleccionar rango para categorías"
-#. m3}R
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2778,7 +2484,6 @@ msgctxt ""
msgid "Select Range for data labels"
msgstr "Seleccionar rango para etiquetas de datos"
-#. RJb?
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2787,7 +2492,6 @@ msgctxt ""
msgid "Select Range for Positive Error Bars"
msgstr "Seleccionar rango para barras de error positivas"
-#. `C$+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2796,7 +2500,6 @@ msgctxt ""
msgid "Select Range for Negative Error Bars"
msgstr "Seleccionar rango para barras de error negativas"
-#. ?E$Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2809,7 +2512,6 @@ msgstr ""
"Su última entrada es incorrecta.\n"
"¿Ignorar estos cambios y cerrar el diálogo?"
-#. nCOv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2818,7 +2520,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "Izquierda-a-derecha"
-#. $kId
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2827,7 +2528,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "Derecha-a-izquierda"
-#. S`BX
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2836,7 +2536,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "Utilizar las configuraciones del objeto superior"
-#. rckm
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2846,7 +2545,6 @@ msgctxt ""
msgid "Axis line"
msgstr "Línea de ejes"
-#. SD6X
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2856,7 +2554,6 @@ msgctxt ""
msgid "~Cross other axis at"
msgstr "~Cruza otros ejes en"
-#. c9cc
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2866,7 +2563,6 @@ msgctxt ""
msgid "Start"
msgstr "Inicio"
-#. YVFb
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2876,7 +2572,6 @@ msgctxt ""
msgid "End"
msgstr "Fin"
-#. Hw.^
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2886,7 +2581,6 @@ msgctxt ""
msgid "Value"
msgstr "Valor"
-#. +-{(
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2896,7 +2590,6 @@ msgctxt ""
msgid "Category"
msgstr "Categoría"
-#. ~`FW
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2906,7 +2599,6 @@ msgctxt ""
msgid "Axis ~between categories"
msgstr "Ejes e~ntre categorías"
-#. LY7z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2916,7 +2608,6 @@ msgctxt ""
msgid "Labels"
msgstr "Etiquetas"
-#. 8[W:
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2926,7 +2617,6 @@ msgctxt ""
msgid "~Place labels"
msgstr "~Coloca etiquetas"
-#. D[s0
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2936,7 +2626,6 @@ msgctxt ""
msgid "Near axis"
msgstr "Ejes cercanos"
-#. S%S2
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2946,7 +2635,6 @@ msgctxt ""
msgid "Near axis (other side)"
msgstr "Ejes cercanos (otro lado)"
-#. 1Qec
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2956,7 +2644,6 @@ msgctxt ""
msgid "Outside start"
msgstr "Comenzar fuera"
-#. %t1}
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2966,7 +2653,6 @@ msgctxt ""
msgid "Outside end"
msgstr "Finalizar fuera"
-#. QN1h
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2976,7 +2662,6 @@ msgctxt ""
msgid "~Distance"
msgstr "~Distancia"
-#. mPyG
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2986,7 +2671,6 @@ msgctxt ""
msgid "Interval marks"
msgstr "Marcas de intervalo"
-#. /VJ\
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2996,7 +2680,6 @@ msgctxt ""
msgid "Major:"
msgstr "Mayor:"
-#. t^2?
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3006,7 +2689,6 @@ msgctxt ""
msgid "~Inner"
msgstr "~Interno"
-#. ~FK?
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3016,7 +2698,6 @@ msgctxt ""
msgid "~Outer"
msgstr "~Exterior"
-#. @~-@
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3026,7 +2707,6 @@ msgctxt ""
msgid "Minor:"
msgstr "Menor:"
-#. 3/jC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3036,7 +2716,6 @@ msgctxt ""
msgid "I~nner"
msgstr "I~nterior"
-#. q[lj
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3046,7 +2725,6 @@ msgctxt ""
msgid "O~uter"
msgstr "E~xterior"
-#. -O43
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3056,7 +2734,6 @@ msgctxt ""
msgid "Place ~marks"
msgstr "Colocar ~marcas"
-#. jiQk
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3066,7 +2743,6 @@ msgctxt ""
msgid "At labels"
msgstr "En etiquetas"
-#. V3YC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3076,7 +2752,6 @@ msgctxt ""
msgid "At axis"
msgstr "En ejes"
-#. 8E8C
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3086,7 +2761,6 @@ msgctxt ""
msgid "At axis and labels"
msgstr "En ejes y etiquetas"
-#. ;!Z4
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3096,7 +2770,6 @@ msgctxt ""
msgid "Grids"
msgstr "Cuadrículas"
-#. XP5Z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3106,7 +2779,6 @@ msgctxt ""
msgid "Show major ~grid"
msgstr "Mostrar cu~adrícula mayor"
-#. /pjH
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3116,7 +2788,6 @@ msgctxt ""
msgid "Mo~re..."
msgstr "Má~s..."
-#. 3LQ!
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3126,7 +2797,6 @@ msgctxt ""
msgid "~Show minor grid"
msgstr "Mo~strar cuadrícula menor"
-#. ZpxH
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3136,7 +2806,6 @@ msgctxt ""
msgid "Mor~e..."
msgstr "Má~s..."
-#. =[g1
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3146,7 +2815,6 @@ msgctxt ""
msgid "Standard Error"
msgstr "Error estándar"
-#. hiJ@
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3156,7 +2824,6 @@ msgctxt ""
msgid "Standard Deviation"
msgstr "Desviación estándar"
-#. ;Hm,
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3166,7 +2833,6 @@ msgctxt ""
msgid "Variance"
msgstr "Varianza"
-#. D]IP
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3176,7 +2842,6 @@ msgctxt ""
msgid "Error Margin"
msgstr "Margen de error"
-#. ,[ic
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3186,7 +2851,6 @@ msgctxt ""
msgid "Error Category"
msgstr "Categoría de error"
-#. |Bzt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3196,7 +2860,6 @@ msgctxt ""
msgid "~None"
msgstr "~Ninguno"
-#. (T]f
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3206,7 +2869,6 @@ msgctxt ""
msgid "~Constant Value"
msgstr "Valor ~constante"
-#. 21lr
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3216,7 +2878,6 @@ msgctxt ""
msgid "~Percentage"
msgstr "~Porcentaje"
-#. 40%j
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3226,7 +2887,6 @@ msgctxt ""
msgid "Cell ~Range"
msgstr "~Rango de celda"
-#. ;Mat
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3236,7 +2896,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Parametros"
-#. [9VJ
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3246,7 +2905,6 @@ msgctxt ""
msgid "P~ositive (+)"
msgstr "P~ositivo (+)"
-#. 1,gt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3256,7 +2914,6 @@ msgctxt ""
msgid "~Negative (-)"
msgstr "~Negativo (-)"
-#. LUUh
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3266,7 +2923,6 @@ msgctxt ""
msgid "Same value for both"
msgstr "El mismo valor para ambos"
-#. Fj-Q
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3276,7 +2932,6 @@ msgctxt ""
msgid "Error Indicator"
msgstr "Indicador de errores"
-#. cl0H
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3286,7 +2941,6 @@ msgctxt ""
msgid "Positive ~and Negative"
msgstr "Positivo ~y Negativo"
-#. _eU_
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3296,7 +2950,6 @@ msgctxt ""
msgid "Pos~itive"
msgstr "Pos~itivo"
-#. FS4-
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3306,7 +2959,6 @@ msgctxt ""
msgid "Ne~gative"
msgstr "Ne~gativo"
-#. 5KHP
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3316,7 +2968,6 @@ msgctxt ""
msgid "Days"
msgstr "Días"
-#. *u.K
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3326,7 +2977,6 @@ msgctxt ""
msgid "Months"
msgstr "Meses"
-#. )(SQ
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3336,7 +2986,6 @@ msgctxt ""
msgid "Years"
msgstr "Años"
-#. ~9J`
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3346,7 +2995,6 @@ msgctxt ""
msgid "Scale"
msgstr "Escala"
-#. dTXi
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3356,7 +3004,6 @@ msgctxt ""
msgid "~Reverse direction"
msgstr "Dirección en ~reversa"
-#. :\7L
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3366,7 +3013,6 @@ msgctxt ""
msgid "~Logarithmic scale"
msgstr "Escala ~logarítmica"
-#. )tli
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3376,7 +3022,6 @@ msgctxt ""
msgid "T~ype"
msgstr "~Tipo"
-#. fGyk
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3386,7 +3031,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automática"
-#. _1xX
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3396,7 +3040,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. :yj^
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3406,7 +3049,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. j%DR
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3416,7 +3058,6 @@ msgctxt ""
msgid "~Minimum"
msgstr "~Mínimo"
-#. #X(g
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3426,7 +3067,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. V^*c
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3436,7 +3076,6 @@ msgctxt ""
msgid "Ma~ximum"
msgstr "Má~ximo"
-#. ez:a
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3446,7 +3085,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "~Automático"
-#. 52OW
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3456,7 +3094,6 @@ msgctxt ""
msgid "R~esolution"
msgstr "R~esolución"
-#. vO{%
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3466,7 +3103,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "Automát~ica"
-#. CUJ9
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3476,7 +3112,6 @@ msgctxt ""
msgid "Ma~jor interval"
msgstr "Intervalo ~principal"
-#. XCc[
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3486,7 +3121,6 @@ msgctxt ""
msgid "Au~tomatic"
msgstr "~Automático"
-#. ;r1\
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3496,7 +3130,6 @@ msgctxt ""
msgid "Minor inter~val count"
msgstr "Intervalos secundarios"
-#. {bi6
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3506,7 +3139,6 @@ msgctxt ""
msgid "Minor inter~val"
msgstr "Inter~valo menor"
-#. {*X1
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3516,7 +3148,6 @@ msgctxt ""
msgid "Aut~omatic"
msgstr "~Automático"
-#. [;l[
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3526,7 +3157,6 @@ msgctxt ""
msgid "Re~ference value"
msgstr "Valor de re~ferencia"
-#. =H40
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3536,7 +3166,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "Automát~ico"
-#. 6:Wa
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3546,7 +3175,6 @@ msgctxt ""
msgid "Box"
msgstr "Caja"
-#. -l2b
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3556,7 +3184,6 @@ msgctxt ""
msgid "Cylinder"
msgstr "Cilíndro"
-#. PKtY
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3566,7 +3193,6 @@ msgctxt ""
msgid "Cone"
msgstr "Cono"
-#. 57Zr
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3576,7 +3202,6 @@ msgctxt ""
msgid "Pyramid"
msgstr "Pirámide"
-#. -7}K
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3586,7 +3211,6 @@ msgctxt ""
msgid "Best fit"
msgstr "Mejor acomodo"
-#. s8-Y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3596,7 +3220,6 @@ msgctxt ""
msgid "Center"
msgstr "Centro"
-#. bSEA
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3606,7 +3229,6 @@ msgctxt ""
msgid "Above"
msgstr "Arriba"
-#. u\_G
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3616,7 +3238,6 @@ msgctxt ""
msgid "Top left"
msgstr "Arriba e izquierda"
-#. a9#w
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3626,7 +3247,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierda"
-#. =-^)
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3636,7 +3256,6 @@ msgctxt ""
msgid "Bottom left"
msgstr "Abajo e izquierda"
-#. i3le
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3646,7 +3265,6 @@ msgctxt ""
msgid "Below"
msgstr "Abajo"
-#. ui1O
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3656,7 +3274,6 @@ msgctxt ""
msgid "Bottom right"
msgstr "Abajo y derecha"
-#. G8,p
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3666,7 +3283,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecha"
-#. DnRS
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3676,7 +3292,6 @@ msgctxt ""
msgid "Top right"
msgstr "Arriba y derecha"
-#. @A~T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3686,7 +3301,6 @@ msgctxt ""
msgid "Inside"
msgstr "Adentro"
-#. Ub2P
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3696,7 +3310,6 @@ msgctxt ""
msgid "Outside"
msgstr "Afuera"
-#. ^q^+
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3706,7 +3319,6 @@ msgctxt ""
msgid "Near origin"
msgstr "Cerca del origen"
-#. r(m@
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3716,7 +3328,6 @@ msgctxt ""
msgid "Show value as ~number"
msgstr "Mostrar valores como ~números"
-#. 1j\s
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3726,7 +3337,6 @@ msgctxt ""
msgid "Number ~format..."
msgstr "~Formato de número..."
-#. b5UV
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3736,7 +3346,6 @@ msgctxt ""
msgid "Show value as ~percentage"
msgstr "Mostrar valores como ~porcentaje"
-#. kGL.
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3746,7 +3355,6 @@ msgctxt ""
msgid "Percentage f~ormat..."
msgstr "Formato de p~orcentaje..."
-#. Hgqq
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3756,7 +3364,6 @@ msgctxt ""
msgid "Show ~category"
msgstr "Mostrar ~categoría"
-#. =L9T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3766,7 +3373,6 @@ msgctxt ""
msgid "Show ~legend key"
msgstr "Mostrar clave de ~leyenda"
-#. V0kj
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3776,7 +3382,6 @@ msgctxt ""
msgid "Place~ment"
msgstr "Posiciona~miento"
-#. HUEL
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3786,7 +3391,6 @@ msgctxt ""
msgid "Rotate Text"
msgstr "Girar texto"
-#. ;\$8
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3796,7 +3400,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~Grados"
-#. 4#_y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3806,7 +3409,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Dirección de te~xto"
-#. ng[|
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3816,7 +3418,6 @@ msgctxt ""
msgid "Align data series to"
msgstr "Alinear línea de datos a"
-#. ~_SB
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3826,7 +3427,6 @@ msgctxt ""
msgid "Primary Y axis"
msgstr "Eje primario Y"
-#. _zJy
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3836,7 +3436,6 @@ msgctxt ""
msgid "Secondary Y axis"
msgstr "Ejes secundarios Y"
-#. XQNr
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3846,7 +3445,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. KMAa
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3856,7 +3454,6 @@ msgctxt ""
msgid "~Overlap"
msgstr "~Sobreponer"
-#. p1=I
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3866,7 +3463,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Espacio"
-#. Z[1D
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3876,7 +3472,6 @@ msgctxt ""
msgid "Connection lines"
msgstr "Líneas de conexión"
-#. 0*o)
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3886,7 +3481,6 @@ msgctxt ""
msgid "Show ~bars side by side"
msgstr "Mostrar ~barras lado con lado"
-#. QK3f
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3896,7 +3490,6 @@ msgctxt ""
msgid "Plot options"
msgstr "Opciones de Plot"
-#. |\AV
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3906,7 +3499,6 @@ msgctxt ""
msgid "Plot missing values"
msgstr "Valores de trazo perdidos"
-#. #96`
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3916,7 +3508,6 @@ msgctxt ""
msgid "~Leave gap"
msgstr "~Mostrar espacio"
-#. um\c
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3926,7 +3517,6 @@ msgctxt ""
msgid "~Assume zero"
msgstr "~Asumir cero"
-#. ATS2
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3936,7 +3526,6 @@ msgctxt ""
msgid "~Continue line"
msgstr "~Continuar la línea"
-#. _SmQ
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3946,7 +3535,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr "Incluir ~valores desde las celdas ocultas"
-#. ]ma^
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
@@ -3956,7 +3544,6 @@ msgctxt ""
msgid "Choose titles, legend, and grid settings"
msgstr "Escoger títulos, leyendas y configuración de cuadrícula"
-#. @8D|
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
diff --git a/source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index ddc0f9f01d1..761d7c6715b 100644
--- a/source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
index 6fec2379693..e397cfd3a4a 100644
--- a/source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
index af4ada19c3c..053ec208e6c 100644
--- a/source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
index eda87f9b3a3..1cf0acfe7b4 100644
--- a/source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Evolution local"
-#. 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/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
index 9f06570bb91..0817207f793 100644
--- a/source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
index 6336af24ae3..d32a750f09c 100644
--- a/source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
index 4d219c14ddb..fed7120ed22 100644
--- a/source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:02+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
index 1465ac1aad6..714bbaa1643 100644
--- a/source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:02+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index 33f2cc73745..04b5b0b441c 100644
--- a/source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:02+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index 5a23590bef6..04e415a8f45 100644
--- a/source/es/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/es/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: 2012-06-22 09:11+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
index 905bb2a1f41..7e616f79396 100644
--- a/source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:03+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Libreta de direcciones de Microsoft Outlook"
-#. [/:1
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Microsoft Windows Address Book"
msgstr "Libreta de direcciones de Windows"
-#. %2[M
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "SeaMonkey Address Book"
msgstr "Libreta de direcciones de SeaMonkey"
-#. 54[^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Thunderbird/Icedove Address Book"
msgstr "Libreta de direcciones de Thunderbird/Icedove"
-#. zqSc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index 08463f94ac1..05823fa5e58 100644
--- a/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:04+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
index cefb60e74c6..792305ab144 100644
--- a/source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:04+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
index d75601a681c..d58a240d482 100644
--- a/source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 19:04+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
index d9d5a513560..4f24abfb904 100644
--- a/source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ b/source/es/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 15:07+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/connectivity/source/resource.po b/source/es/connectivity/source/resource.po
index 9a02d464cbe..b5e68404110 100644
--- a/source/es/connectivity/source/resource.po
+++ b/source/es/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: 2012-10-08 09:57+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Directorio de libreta de direcciones Mozilla/Seamonkey"
#. 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 "Directorio de direcciones de Thunderbird"
-#. $Ihk
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Outlook Express Addressbook"
msgstr "Libreta de direcciones de Outlook Express"
-#. @KYo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Outlook (MAPI) Addressbook"
msgstr "Libreta de direcciones de Outlook (MAPI)"
-#. 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 "No se admite la creación de tablas en este tipo de libretas de direcciones."
-#. +$$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 "No es posible crear nuevas libretas de direcciones si Mozilla está en ejecución."
-#. 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 "No se ha podido recuperar una entrada de la libreta de direcciones, se ha producido un error desconocido."
-#. 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 "No se ha podido recuperar un directorio de la libreta de direcciones, se ha producido un error desconocido."
-#. 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 "Se ha superado el tiempo de espera mientras se esperaba el resultado."
-#. 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 "Se ha producido un error mientras se ejecutaba la consulta."
-#. 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 "No puede hacer cambios en la libreta de direcciones de Mozilla si se está ejecutando."
-#. `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 "Se ha cambiado la libreta de direcciones de Mozilla fuera de este proceso; no es posible modificarla en esta situación."
-#. RrJO
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "Can't find the requested row."
msgstr "No es posible encontrar la fila solicitada."
-#. 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 "No es posible encontrar la tarjeta de la fila solicitada."
-#. /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 "La consulta no puede ser ejecutada. Se requiere al menos una tabla."
-#. 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 "El controlador no soporta la funcion 'COUNT'."
-#. $@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 "El tipo de declaración no es soportado por este controlador de base de datos."
-#. EL7J
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "An unknown error occurred."
msgstr "Ha ocurrido un error desconocido."
-#. @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 "No es posible crear una nueva libreta de direcciones. El código de error de Mozilla es $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 "La biblioteca '$libname$' no pudo ser cargada."
-#. +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 "Ha ocurrido un error mientras se actualizaba la fila actual."
-#. 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 "Ha ocurrido un error mientras se obtenía la fila actual."
-#. 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 "La actualización de la fila no puede ser cancelada."
-#. 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 "No se puede crear una nueva fila."
-#. $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 "La consulta no se puede ejecutar. 'IS NULL' solo puede ser usado con un nombre de columna."
-#. Fb]K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -251,7 +225,6 @@ msgctxt ""
msgid "Illegal cursor movement occurred."
msgstr "Ha ocurrido un movimiento ilegal del cursor."
-#. 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 "Por favor, confirmar la '$position$' de la fila, antes de actualizar filas o insertar nuevas."
-#. ;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 "La llamada a actualizar no puede ser ejecutada. La fila es invalida."
-#. =+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 "La fila actual no puede ser guardada."
-#. Q%m0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -287,7 +257,6 @@ msgctxt ""
msgid "No hostname was provided."
msgstr "No se ha proporcionado nombre de host."
-#. R^[G
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -296,7 +265,6 @@ msgctxt ""
msgid "No Base DN was provided."
msgstr "No se ha proporcionado Base 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 "No se ha podido establecer la conexión con el servidor LDAP."
-#. 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 "No existe una conexión a la base de datos"
-#. 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 "Has intentado configurar un parametro en la posición '$pos$' pero solamente se permite '$count$' parametro(s). Una de las posibles razones sea que la propiedad \"ParameterNameSubstitution\" no este configurada como TRUE en la fuente de datos."
-#. 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 final de InputStream ha sido alcanzado antes de satisfacer la longitud especificada en el momento de su configuración."
-#. #Wb^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -341,7 +305,6 @@ msgctxt ""
msgid "The input stream was not set."
msgstr "El ingreso de cadena no fue definida."
-#. :KKT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -350,7 +313,6 @@ msgctxt ""
msgid "There is no element named '$name$'."
msgstr "No hay un elmento llamado '$name$'."
-#. ;HCE
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -359,7 +321,6 @@ msgctxt ""
msgid "Invalid bookmark value"
msgstr "Valor de marcador invalido."
-#. (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 "Privilegio no otorgado: Solo las tablas privilegiadas son permitidas."
-#. 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 "Privilegio no revocado: Solo las tablas de privilegios pueden ser revocadas."
-#. ;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 "El nombre de la columna '$columnname$' es desconocida."
-#. N7LX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -395,7 +353,6 @@ msgctxt ""
msgid "Function sequence error."
msgstr "Error en función de secuencia."
-#. xmW\
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -404,7 +361,6 @@ msgctxt ""
msgid "Invalid descriptor index."
msgstr "Descriptor de indice invalido."
-#. 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 "El driver no soporta esta función '$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 "El driver no soporta la funcionalidad para '$functionname$'. No esta implementado."
-#. E0Xc
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -431,7 +385,6 @@ msgctxt ""
msgid "The formula for TypeInfoSettings is wrong!"
msgstr "La formula para TypeInfoSetting esta erronea!"
-#. ;#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 "La cadena '$string$' supera la longitud máxima de $maxlen$ caracteres al convertirse en el juego de caracteres '$charset$'."
-#. 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 "La cadena de texto '$string$' no se puede convertir cuando se usa la codificación '$charset'."
-#. DMWV
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -458,7 +409,6 @@ msgctxt ""
msgid "The connection URL is invalid."
msgstr "URL de conexión no válido."
-#. 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 "La consulta no puede ser ejecutado. Es muy compleja."
-#. !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 "La consulta no puede ser ejecutada. El operador es muy complejo."
-#. !=}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 "La consulta no se pudo ejecutar. No puede usar 'LIKE' con columnas de este tipo."
-#. 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 "La consulta no puede ser ejecutada. 'LIKE' solo puede ser usado con un argumento de cadena."
-#. 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 "La consulta no puede ser ejecutada. 'NOT LIKE' es muy complejo."
-#. 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 "La consulta no puede ser ejecutada. 'LIKE' contiene un caracter comodín en el medio."
-#. 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 "La consulta no puede ser ejecutada. 'LIKE' contiene muchos caracteres comodines."
-#. 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 "El nombre de la columna '$columnname$' no es valido."
-#. [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 "La declaración contiene una sección invalida de columnas."
-#. 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 "La columna en la posición '$position$' no puede ser actualizada."
-#. 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 "El archivo $filename$ no se pudo cargar."
-#. 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 "El tipo no puede ser convertido."
-#. @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 "No se puede anexar la columna: descriptor de columna no válido."
-#. 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 "No se puede crear el grupo: descriptor de objeto no válido."
-#. 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 "No se puede crear el índice: descriptor de objeto no válido."
-#. ^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 "No se puede crear llave: descriptor de objeto no válido."
-#. 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 "No se puede crear tabla: descriptor de objeto no válido."
-#. 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 "No se puede crear usuario: descriptor de objeto no válido."
-#. (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 "No se puede crear vista: descriptor de objeto no válido."
-#. 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 "No se puede crear la vista: no hay objeto de comando."
-#. 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 "No se pudo crear la conexión. Quizá el proveedor de datos necesario no está instalado."
-#. ?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 "No se pudo eliminar el índice. Se produjo un error desconocido al acceder al sistema de archivos."
-#. 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 "No se pudo crear el índice. Solo se permite una columna por índice."
-#. 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 "No se pudo crear el índice. Los valores no son únicos."
-#. `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 "No se pudo crear el índice. Apareció un error inesperado."
-#. 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 "No se pudo crear el índice. El archivo '$filename$' es usado por otro índice."
-#. @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 "No se pudo crear el índice. El tamaño de la columna elegida es demasiado grande."
-#. }+.?
#: 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 "El nombre '$name$' no coincide con las limitaciones de nombres de SQL."
-#. 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 "El archivo $filename$ no se pudo cargar."
-#. 6z@%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -743,7 +663,6 @@ msgctxt ""
msgid "Invalid column type for column '$columnname$'."
msgstr "Tipo de columna no válido para la columna «$columnname$»."
-#. nGQz
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -752,7 +671,6 @@ msgctxt ""
msgid "Invalid precision for column '$columnname$'."
msgstr "Precisión inválida por columna '$columnname$'."
-#. 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 "La precisión es inferior a la escala de la columna '$columnname$'."
-#. 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 "La longitud del nombre de columna es inválida por la columna '$columnname$'."
-#. q00K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -779,7 +695,6 @@ msgctxt ""
msgid "Duplicate value found in column '$columnname$'."
msgstr "Encontrado valor duplicado en la columna '$columnname$'."
-#. X(VT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -791,7 +706,6 @@ msgid ""
"The specified value \"$value$ is longer than the number of digits allowed."
msgstr "La columna '$columnname$' ha sido definida como un tipo \"Decimal\", el máximo. La longitud es de $precision$ caracteres. (con $scale$ decimal).El valor especificado es mayor que el número de dígitos permitido."
-#. p${!
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -800,7 +714,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
msgstr "La columna '$columnname$' no puede ser alterada. Puede ser que el sistema de archivos está protegido contra escritura."
-#. ]j@H
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -809,7 +722,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
msgstr "La columna '$columnname$' no puede ser actualizada. El valor es inválido para esta columna."
-#. uj.0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -818,7 +730,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be added. May be the file system is write protected."
msgstr "La columna '$columnname$' no puede ser agregada. Puede ser que el sistema de archivos está protegido contra escritura."
-#. m7a$
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -827,7 +738,6 @@ msgctxt ""
msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
msgstr "La columna en la posición '$position$' no puede ser reducida. Puede ser el sistema de archivos está protegido contra escritura."
-#. :c@#
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -836,7 +746,6 @@ msgctxt ""
msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
msgstr "La tabla '$tablename$' no puede ser reducida. Puede ser el sistema de archivos está protegido contra escritura."
-#. u)|,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -845,7 +754,6 @@ msgctxt ""
msgid "The table could not be altered."
msgstr "No se pudo alterar la tabla."
-#. oY{3
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -854,7 +762,6 @@ msgctxt ""
msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
msgstr "El archivo «$filename$» es un archivo dBase no válido (o no reconocido)."
-#. Dk63
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -863,7 +770,6 @@ msgctxt ""
msgid "Cannot open Evolution address book."
msgstr "No se puede abrir la libreta de direcciones de Evolution."
-#. Mg+@
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -872,7 +778,6 @@ msgctxt ""
msgid "Can only sort by table columns."
msgstr "Solo se puede ordenar por columnas de tabla."
-#. km~f
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -881,7 +786,6 @@ msgctxt ""
msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
msgstr "No se puede ejecutar la consulta. Es demasiado complicada. Solo se soporta \"CONTAR(*)\"."
-#. =nFX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -890,7 +794,6 @@ msgctxt ""
msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
msgstr "No se puede ejecutar la consulta. Los argumentos «BETWEEN» no son correctos."
-#. -}C%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -899,7 +802,6 @@ msgctxt ""
msgid "The query can not be executed. The function is not supported."
msgstr "No se puede ejecutar la consulta. La función no es compatible."
-#. $jt2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -908,7 +810,6 @@ msgctxt ""
msgid "The table can not be changed. It is read only."
msgstr "No se puede cambiar la tabla. Es de solo lectura."
-#. 0b)4
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -917,7 +818,6 @@ msgctxt ""
msgid "The row could not be deleted. The option \"Display inactive records\" is set."
msgstr "No se pudo eliminar la fila. La opción «Mostrar registros inactivos» está activada."
-#. )y.K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -926,7 +826,6 @@ msgctxt ""
msgid "The row could not be deleted. It is already deleted."
msgstr "No se pudo eliminar la fila. Ya se había eliminado."
-#. #l*3
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -935,7 +834,6 @@ msgctxt ""
msgid "The query can not be executed. It contains more than one table."
msgstr "No se puede ejecutar la consulta, porque contiene más de una tabla."
-#. =rQW
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -944,7 +842,6 @@ msgctxt ""
msgid "The query can not be executed. It contains no valid table."
msgstr "No se puede ejecutar la consulta. No contiene una tabla válida."
-#. Hkkg
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -953,7 +850,6 @@ msgctxt ""
msgid "The query can not be executed. It contains no valid columns."
msgstr "No se puede ejecutar la consulta. No contiene columnas válidas."
-#. j$,Q
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -962,7 +858,6 @@ msgctxt ""
msgid "The count of the given parameter values doesn't match the parameters."
msgstr "La cuenta de los valores de los parámetros dados no coinciden con los parámetros."
-#. $BfU
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -971,7 +866,6 @@ msgctxt ""
msgid "The URL '$URL$' is not valid. A connection can not be created."
msgstr "La URL «$URL$» no es válida. No se puede crear una conexión."
-#. 6.QN
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -980,7 +874,6 @@ msgctxt ""
msgid "The driver class '$classname$' could not be loaded."
msgstr "No se pudo cargar el controlador de la clase «$classname$»."
-#. shWj
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -989,7 +882,6 @@ msgctxt ""
msgid "No Java installation could be found. Please check your installation."
msgstr "No se pudo encontrar la instalación de Java. Compruebe su instalación."
-#. 6m3%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -998,7 +890,6 @@ msgctxt ""
msgid "The execution of the query doesn't return a valid result set."
msgstr "La ejecución de la consulta no devuelve un conjunto de resultados válido."
-#. 2Lf)
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1007,7 +898,6 @@ msgctxt ""
msgid "The execution of the update statement doesn't effect any rows."
msgstr "La ejecución de la actualización no afecta ninguna fila."
-#. o@ek
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1016,7 +906,6 @@ msgctxt ""
msgid "The additional driver class path is '$classpath$'."
msgstr "La ruta del manejador de clase adicional es «$classpath$»."
-#. nw8%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1025,7 +914,6 @@ msgctxt ""
msgid "The type of parameter at position '$position$' is unknown."
msgstr "La tipo de parámetro en la posición '$position$' es desconocido."
-#. )YD2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1034,7 +922,6 @@ msgctxt ""
msgid "The type of column at position '$position$' is unknown."
msgstr "El tipo de columna en la posición '$position$' es desconocido."
-#. :lOr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1043,7 +930,6 @@ msgctxt ""
msgid "No suitable KDE installation was found."
msgstr "No se encontró una adecuada instalación de KDE."
-#. kc(d
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1052,7 +938,6 @@ msgctxt ""
msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
msgstr "La versión $major$.$minor$ de KDE o superior es requerida para acceder a la libreta de direcciones de KDE."
-#. mO]c
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1061,7 +946,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 "La versión de KDE encontrada es muy reciente. Solamente se sabe de KDE versión $major$.$minor$ funcionando con este producto.\n"
-#. p0jK
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1074,7 +958,6 @@ msgstr ""
"Si está seguro de que su versión de KDE funciona, puede ejecutar la siguiente macro de Basic para desactivar esta comprobación de versión:\n"
"\n"
-#. ^EJF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1083,7 +966,6 @@ msgctxt ""
msgid "Parameters can appear only in prepared statements."
msgstr "Los parametros solo pueden aparecer en las declaraciones preparadas."
-#. s-^1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1092,7 +974,6 @@ msgctxt ""
msgid "No such table!"
msgstr "¡No existe esta tabla!"
-#. nSH:
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1101,7 +982,6 @@ msgctxt ""
msgid "No suitable Mac OS installation was found."
msgstr "No se encontró una instalación adecuada de Mac OS"
-#. =qP1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1110,7 +990,6 @@ msgctxt ""
msgid "The connection can not be established. No storage or URL was given."
msgstr "La conexión no pudo ser establecida. No fue proporcionado algún almacenamiento o URL."
-#. jzB,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1119,7 +998,6 @@ msgctxt ""
msgid "The given URL contains no valid local file system path. Please check the location of your database file."
msgstr "La URL proporcionada contiene una ruta de archivo local no valida. Por favor revisar la ubicación del archivo de la base de datos."
-#. )?4o
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1128,7 +1006,6 @@ msgctxt ""
msgid "An error occurred while obtaining the connection's table container."
msgstr "Ha ocurrido un error al obtener el contenedor de tabla de esta conexión."
-#. (05j
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1137,7 +1014,6 @@ msgctxt ""
msgid "An error occurred while creating the table editor dialog."
msgstr "Ha ocurrido un error al crear el cuadro de diálogo del editor de la tabla."
-#. Kh;I
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1146,7 +1022,6 @@ msgctxt ""
msgid "There is no table named '$tablename$'."
msgstr "No existe una tabla llamada '$tablename$'."
-#. tx_=
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1155,7 +1030,6 @@ msgctxt ""
msgid "The provided DocumentUI is not allowed to be NULL."
msgstr "El DocumentUI provisto no puede ser NULL."
-#. E[k2
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1164,7 +1038,6 @@ msgctxt ""
msgid "The record operation has been vetoed."
msgstr "Se ha vetado la operación de registro."
-#. bWU`
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1173,7 +1046,6 @@ msgctxt ""
msgid "The statement contains a cyclic reference to one or more sub queries."
msgstr "La sentencia contiene una referencia cíclica a una o más subconsultas."
-#. 53In
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1182,7 +1054,6 @@ msgctxt ""
msgid "The name must not contain any slashes ('/')."
msgstr "El nombre no puede contener ninguna diagonal ('/')."
-#. lXOt
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1191,7 +1062,6 @@ msgctxt ""
msgid "$1$ is no SQL conform identifier."
msgstr "$1$ no es un identificador de SQL."
-#. H52a
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1200,7 +1070,6 @@ msgctxt ""
msgid "Query names must not contain quote characters."
msgstr "Los nombres de las consultas no deben contener caracteres en comillas."
-#. OJa/
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1209,7 +1078,6 @@ msgctxt ""
msgid "The name '$1$' is already in use in the database."
msgstr "El nombre '$1$' esta siendo usado por la base de datos."
-#. Dlp:
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1218,7 +1086,6 @@ msgctxt ""
msgid "No connection to the database exists."
msgstr "No hay conexión a la base de datos."
-#. zt(%
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1227,7 +1094,6 @@ msgctxt ""
msgid "No $1$ exists."
msgstr "No existe $1$ ."
-#. @b{T
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
diff --git a/source/es/cui/source/customize.po b/source/es/cui/source/customize.po
index 88bd74a900b..7f770848040 100644
--- a/source/es/cui/source/customize.po
+++ b/source/es/cui/source/customize.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-10-08 09:45+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 12:58+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353502697.0\n"
-#. j-B^
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "Event"
msgstr "Evento"
-#. _xpn
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -35,7 +34,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr "Acción asignada"
-#. ja\n
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -45,7 +43,6 @@ msgctxt ""
msgid "Save In"
msgstr "Guardar en"
-#. |M9I
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -55,7 +52,6 @@ msgctxt ""
msgid "Assign:"
msgstr "Asignar:"
-#. uAWW
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -65,7 +61,6 @@ msgctxt ""
msgid "M~acro..."
msgstr "M~acro..."
-#. $*0r
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -75,7 +70,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eliminar"
-#. S8A)
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -85,7 +79,6 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. B%*x
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -95,7 +88,6 @@ msgctxt ""
msgid "Keyboard"
msgstr "Teclado"
-#. cJGx
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -105,7 +97,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barras de herramientas"
-#. lU#W
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -115,7 +106,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. 0wGy
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -124,7 +114,6 @@ msgctxt ""
msgid "Customize"
msgstr "Personalizar"
-#. +L?G
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -133,7 +122,6 @@ msgctxt ""
msgid "Menu"
msgstr "Menú"
-#. eR2U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -142,7 +130,6 @@ msgctxt ""
msgid "Begin a Group"
msgstr "Empezar un grupo"
-#. b_K*
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -151,7 +138,6 @@ msgctxt ""
msgid "Rename..."
msgstr "Renombrar..."
-#. r%|N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -160,7 +146,6 @@ msgctxt ""
msgid "Delete..."
msgstr "Eliminar..."
-#. d(`f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -169,7 +154,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. L4rV
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Move..."
msgstr "Mover..."
-#. }SVT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -187,7 +170,6 @@ msgctxt ""
msgid "Restore Default Settings"
msgstr "Restaurar configuración predeterminada"
-#. #ivo
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -196,7 +178,6 @@ msgctxt ""
msgid "Restore Default Command"
msgstr "Restaurar comando predeterminado"
-#. =DbR
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Text only"
msgstr "Solo texto"
-#. 6,\u
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -214,7 +194,6 @@ msgctxt ""
msgid "Toolbar Name"
msgstr "Nombre de la barra de herramientas"
-#. 9[PA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "Save In"
msgstr "Guardar en"
-#. eXdU
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Menus"
msgstr "Menús de %PRODUCTNAME %MODULENAME"
-#. t$1q
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "New..."
msgstr "Nuevo..."
-#. @~lW
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Menu Content"
msgstr "Contenido del menú"
-#. lic=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "Entries"
msgstr "Entradas"
-#. ={na
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Add..."
msgstr "Añadir..."
-#. Cz(c
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -283,9 +256,7 @@ msgctxt ""
msgid "Modify"
msgstr "Modificar"
-#. VCwD
#: cfg.src
-#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXPAGE_MENUS\n"
@@ -294,7 +265,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. %5;f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -304,7 +274,6 @@ msgctxt ""
msgid "Add Submenu..."
msgstr "Añadir submenú..."
-#. l0_N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -314,7 +283,6 @@ msgctxt ""
msgid "Icons Only"
msgstr "Solo iconos"
-#. T0]N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -324,7 +292,6 @@ msgctxt ""
msgid "Icons & Text"
msgstr "Iconos y texto"
-#. ^udJ
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -334,7 +301,6 @@ msgctxt ""
msgid "Change Icon..."
msgstr "Cambiar icono..."
-#. 7wjq
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -344,7 +310,6 @@ msgctxt ""
msgid "Reset Icon"
msgstr "Restablecer icono"
-#. }~_]
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -353,7 +318,6 @@ msgctxt ""
msgid "New Menu %n"
msgstr "Menú nuevo %n"
-#. J{=Y
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "New Toolbar %n"
msgstr "Barra de herramientas nueva %n"
-#. 1~C[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -371,7 +334,6 @@ msgctxt ""
msgid "Move Menu"
msgstr "Mover menú"
-#. HII,
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -380,7 +342,6 @@ msgctxt ""
msgid "Add Submenu"
msgstr "Añadir submenú"
-#. !6m^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -389,7 +350,6 @@ msgctxt ""
msgid "Submenu name"
msgstr "Nombre del submenú"
-#. 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 "Para añadir un comando a un menú, seleccione la categoría y luego el comando. También puede arrastrar el comando a la lista Comandos de la pestaña Menús en el diálogo Personalizar."
-#. OPXN
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Menu name"
msgstr "Nombre del menú"
-#. JS(w
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -418,7 +376,6 @@ msgctxt ""
msgid "Menu position"
msgstr "Posición del menú"
-#. -k#d
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -427,7 +384,6 @@ msgctxt ""
msgid "New Menu"
msgstr "Menú nuevo"
-#. 4dv?
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -436,7 +392,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. L}y(
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -446,7 +401,6 @@ msgctxt ""
msgid "Icons"
msgstr "Iconos"
-#. .?[S
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -456,7 +410,6 @@ msgctxt ""
msgid "Import..."
msgstr "Importar..."
-#. ry*^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -466,7 +419,6 @@ msgctxt ""
msgid "Delete..."
msgstr "Eliminar..."
-#. 7iIT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -480,7 +432,6 @@ msgstr ""
"Nota:\n"
"El tamaño de un icono debería ser de 16×16 píxeles para lograr la mejor calidad. Los iconos con tamaños distintos se redimensionrán automáticamente."
-#. \DF}
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -489,7 +440,6 @@ msgctxt ""
msgid "Change Icon"
msgstr "Cambiar icono"
-#. dRXT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -503,7 +453,6 @@ msgstr ""
"No se pudieron importar los archivos listados a continuación.\n"
"No se pudo interpretar el formato de archivo."
-#. -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 "No se pudieron importar los archivos listados a continuación. No se pudo interpretar el formato de archivo."
-#. 6?o6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -530,7 +477,6 @@ msgctxt ""
msgid "Are you sure to delete the image?"
msgstr "¿Está seguro de que quiere eliminar la imagen?"
-#. 3bqk
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -543,7 +489,6 @@ msgstr ""
"El icono %ICONNAME ya está en la lista de imágenes.\n"
"¿Le gustaría reemplazar el icono existente?"
-#. e1J_
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -552,7 +497,6 @@ msgctxt ""
msgid "Confirm Icon Replacement"
msgstr "Confirmar el reemplazo del icono"
-#. %\@%
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -561,7 +505,6 @@ msgctxt ""
msgid "Yes to All"
msgstr "Sí a todo"
-#. w#!6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -570,7 +513,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Toolbars"
msgstr "Barras de herramientas de %PRODUCTNAME %MODULENAME"
-#. ig)B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -579,7 +521,6 @@ msgctxt ""
msgid "Toolbar"
msgstr "Barra de herramientas"
-#. Z}q6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -588,9 +529,7 @@ msgctxt ""
msgid "Toolbar Content"
msgstr "Contenido de la barra de herramientas"
-#. o\66
#: cfg.src
-#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXSTR_COMMANDS\n"
@@ -598,7 +537,6 @@ msgctxt ""
msgid "Commands"
msgstr "Comandos"
-#. NF$r
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -607,7 +545,6 @@ msgctxt ""
msgid "Command"
msgstr "Comando"
-#. 13cn
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -616,7 +553,6 @@ msgctxt ""
msgid "Are you sure you want to delete the '%MENUNAME' menu?"
msgstr "¿Está seguro de que quiere eliminar el menú «%MENUNAME»?"
-#. naB`
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -625,7 +561,6 @@ msgctxt ""
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "No hay más comandos en la barra de herramientas. ¿Quiere eliminar la barra de herramientas?"
-#. #p\j
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -634,7 +569,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "La configuración de menú de %SAVE IN SELECTION% se restaurará a su estado original. ¿Quiere continuar?"
-#. /TiS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -643,7 +577,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "La configuración de menú de %SAVE IN SELECTION% se restaurará a su estado original. ¿Quiere continuar?"
-#. iWEu
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -652,7 +585,6 @@ msgctxt ""
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "La configuración de la barra de herramientas de %SAVE IN SELECTION% se restaurará a su estado original. ¿Quiere continuar?"
-#. _oP[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -661,7 +593,6 @@ msgctxt ""
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "Esta acción eliminará todos los cambios realizados en esta barra de herramientas. ¿Realmente desea restablecer la barra de herramientas?"
-#. Q\pG
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -670,7 +601,6 @@ msgctxt ""
msgid "Function is already included in this popup."
msgstr "La función ya está incluida en este emergente."
-#. E7RS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -679,7 +609,6 @@ msgctxt ""
msgid "~New name"
msgstr "~Nuevo nombre"
-#. ^i*M
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -688,7 +617,6 @@ msgctxt ""
msgid "Rename Menu"
msgstr "Renombrar menú"
-#. YbJA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -697,7 +625,6 @@ msgctxt ""
msgid "Rename Toolbar"
msgstr "Renombrar barra de herramientas"
-#. jZ03
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -706,7 +633,6 @@ msgctxt ""
msgid "Up"
msgstr "Arriba"
-#. D|%U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -715,7 +641,6 @@ msgctxt ""
msgid "Down"
msgstr "Abajo"
-#. 6/DA
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -724,7 +649,6 @@ msgctxt ""
msgid "~Save..."
msgstr "~Guardar..."
-#. [P~Y
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -733,7 +657,6 @@ msgctxt ""
msgid "R~eset"
msgstr "R~establecer"
-#. Cf|1
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -742,7 +665,6 @@ msgctxt ""
msgid "~Load..."
msgstr "~Cargar..."
-#. HmDi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -751,7 +673,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. k8Ud
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -760,7 +681,6 @@ msgctxt ""
msgid "~Modify"
msgstr "~Modificar"
-#. 2!F~
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -769,9 +689,7 @@ msgctxt ""
msgid "~New"
msgstr "~Nuevo"
-#. ${0m
#: acccfg.src
-#, fuzzy
msgctxt ""
"acccfg.src\n"
"FIXEDTEXT_TEXT_GROUP\n"
@@ -779,7 +697,6 @@ msgctxt ""
msgid "~Category"
msgstr "~Categoría"
-#. GiBa
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -788,7 +705,6 @@ msgctxt ""
msgid "Function"
msgstr "Funcion"
-#. Amm=
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -797,7 +713,6 @@ msgctxt ""
msgid "Functions"
msgstr "Funciones"
-#. c3f:
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -807,7 +722,6 @@ msgctxt ""
msgid "Shortcut keys"
msgstr "Teclas rápidas"
-#. ~gAl
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -817,7 +731,6 @@ msgctxt ""
msgid "~Keys"
msgstr "~Teclas"
-#. q/*9
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -827,7 +740,6 @@ msgctxt ""
msgid "Load Keyboard Configuration"
msgstr "Cargar la configuración del teclado"
-#. )7Vi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -837,7 +749,6 @@ msgctxt ""
msgid "Save Keyboard Configuration"
msgstr "Guardar la configuración de teclado"
-#. S:G]
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -847,9 +758,7 @@ msgctxt ""
msgid "Configuration"
msgstr "Configuración"
-#. ~{9d
#: acccfg.src
-#, fuzzy
msgctxt ""
"acccfg.src\n"
"RID_SVXPAGE_CONFIGGROUPBOX\n"
@@ -858,7 +767,6 @@ msgctxt ""
msgid "BASIC Macros"
msgstr "Macros BASIC"
-#. MfpT
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -868,7 +776,6 @@ msgctxt ""
msgid "Styles"
msgstr "Estilos"
-#. $W23
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -878,7 +785,6 @@ msgctxt ""
msgid "Event"
msgstr "Evento"
-#. sp!~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -888,7 +794,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr "Acción asignada"
-#. 7-A1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -898,7 +803,6 @@ msgctxt ""
msgid "Assign:"
msgstr "Asignar:"
-#. hQ$Q
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -908,7 +812,6 @@ msgctxt ""
msgid "M~acro..."
msgstr "M~acro..."
-#. StBD
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -918,7 +821,6 @@ msgctxt ""
msgid "Com~ponent..."
msgstr "Com~ponente..."
-#. k+F@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -928,7 +830,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Quitar"
-#. wO#o
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -937,7 +838,6 @@ msgctxt ""
msgid "Assign action"
msgstr "Asignar acción"
-#. }ncg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -947,7 +847,6 @@ msgctxt ""
msgid "Component method name"
msgstr "Nombre del método del componente"
-#. s\`/
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -956,7 +855,6 @@ msgctxt ""
msgid "Assign Component"
msgstr "Asignar componente"
-#. dLYQ
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -965,7 +863,6 @@ msgctxt ""
msgid "Start Application"
msgstr "Iniciar aplicación"
-#. v2d[
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -974,7 +871,6 @@ msgctxt ""
msgid "Close Application"
msgstr "Cerrar aplicación"
-#. %H!x
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -983,7 +879,6 @@ msgctxt ""
msgid "New Document"
msgstr "Documento nuevo"
-#. AL^0
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -992,7 +887,6 @@ msgctxt ""
msgid "Document closed"
msgstr "Documento cerrado"
-#. @3Vd
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1001,7 +895,6 @@ msgctxt ""
msgid "Document is going to be closed"
msgstr "El documento será cerrado"
-#. w;PH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1010,7 +903,6 @@ msgctxt ""
msgid "Open Document"
msgstr "Abrir documento"
-#. %)}(
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1019,7 +911,6 @@ msgctxt ""
msgid "Save Document"
msgstr "Guardar documento"
-#. `$b`
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1028,7 +919,6 @@ msgctxt ""
msgid "Save Document As"
msgstr "Guardar documento como"
-#. E*BO
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1037,7 +927,6 @@ msgctxt ""
msgid "Document has been saved"
msgstr "El documento se ha guardado"
-#. U?F8
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1046,7 +935,6 @@ msgctxt ""
msgid "Document has been saved as"
msgstr "El documento se ha guardado como"
-#. njr\
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1055,7 +943,6 @@ msgctxt ""
msgid "Activate Document"
msgstr "Activar documento"
-#. zUV@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1064,7 +951,6 @@ msgctxt ""
msgid "Deactivate Document"
msgstr "Desactivar documento"
-#. N-3~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1073,7 +959,6 @@ msgctxt ""
msgid "Print Document"
msgstr "Impresión de documento"
-#. G]Kg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1082,7 +967,6 @@ msgctxt ""
msgid "'Modified' status was changed"
msgstr "Se ha cambiado el estado «modificado»"
-#. 0/eq
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1091,7 +975,6 @@ msgctxt ""
msgid "Printing of form letters started"
msgstr "Inició la impresión de las cartas modelo"
-#. 8-#P
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1100,7 +983,6 @@ msgctxt ""
msgid "Printing of form letters finished"
msgstr "Finalizó la impresión de las cartas modelo"
-#. o`,X
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1109,7 +991,6 @@ msgctxt ""
msgid "Merging of form fields started"
msgstr "Inició la fusión de campos en el formulario"
-#. %*EA
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1118,7 +999,6 @@ msgctxt ""
msgid "Merging of form fields finished"
msgstr "Finalizó la fusión de campos en el formulario"
-#. C;1I
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1127,7 +1007,6 @@ msgctxt ""
msgid "Changing the page count"
msgstr "Modificación del contador de páginas"
-#. `CT^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1136,7 +1015,6 @@ msgctxt ""
msgid "Loaded a sub component"
msgstr "Se cargó un subcomponente"
-#. d/Pf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1145,7 +1023,6 @@ msgctxt ""
msgid "Closed a sub component"
msgstr "Se cerró un subcomponente"
-#. I,`n
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1154,7 +1031,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr "Rellenar parámetros"
-#. XsHX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1163,7 +1039,6 @@ msgctxt ""
msgid "Execute action"
msgstr "Ejecutar una acción"
-#. K)DR
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1172,7 +1047,6 @@ msgctxt ""
msgid "After updating"
msgstr "Después de actualizar"
-#. VH)#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1181,7 +1055,6 @@ msgctxt ""
msgid "Before updating"
msgstr "Antes de actualizar"
-#. NysH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1190,7 +1063,6 @@ msgctxt ""
msgid "Before record action"
msgstr "Antes de la acción en el registro de datos"
-#. -=So
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1199,7 +1071,6 @@ msgctxt ""
msgid "After record action"
msgstr "Después de la acción en el registro de datos"
-#. Qtkn
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1208,7 +1079,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "Confirmar eliminación"
-#. zTYx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1217,7 +1087,6 @@ msgctxt ""
msgid "Error occurred"
msgstr "Ocurrió un error"
-#. qc3.
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1226,7 +1095,6 @@ msgctxt ""
msgid "While adjusting"
msgstr "Al ajustar"
-#. rL.|
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1235,7 +1103,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr "Recepción de foco"
-#. Y.6e
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1244,7 +1111,6 @@ msgctxt ""
msgid "When losing focus"
msgstr "Al perder el foco"
-#. B%3l
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1253,7 +1119,6 @@ msgctxt ""
msgid "Item status changed"
msgstr "Estado modificado"
-#. zIW^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1262,7 +1127,6 @@ msgctxt ""
msgid "Key pressed"
msgstr "Tecla pulsada"
-#. Q(de
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1271,7 +1135,6 @@ msgctxt ""
msgid "Key released"
msgstr "Tecla después de pulsada"
-#. .Tf=
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1280,7 +1143,6 @@ msgctxt ""
msgid "When loading"
msgstr "Al cargar"
-#. X2fy
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1289,7 +1151,6 @@ msgctxt ""
msgid "Before reloading"
msgstr "Antes de recargar"
-#. E.Q#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1298,7 +1159,6 @@ msgctxt ""
msgid "When reloading"
msgstr "Al recargar"
-#. p#Vl
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1307,7 +1167,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr "Mover ratón por medio del teclado"
-#. e*M;
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1316,7 +1175,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr "Ratón dentro"
-#. ]faH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1325,7 +1183,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr "Ratón fuera"
-#. Yuu*
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1334,7 +1191,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr "Movimiento de ratón"
-#. LkIT
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1343,7 +1199,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr "Botón del ratón presionado"
-#. JAG]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1352,7 +1207,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr "Botón del ratón soltado"
-#. !gkv
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1361,7 +1215,6 @@ msgctxt ""
msgid "Before record change"
msgstr "Antes del cambio de registro"
-#. w`-2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1370,7 +1223,6 @@ msgctxt ""
msgid "After record change"
msgstr "Después del cambio de registro"
-#. Y0}2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1379,7 +1231,6 @@ msgctxt ""
msgid "After resetting"
msgstr "Después de restablecer"
-#. JWpx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1388,7 +1239,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr "Antes de restablecer"
-#. eps}
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1397,7 +1247,6 @@ msgctxt ""
msgid "Approve action"
msgstr "Aprobar acción"
-#. seFP
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1406,7 +1255,6 @@ msgctxt ""
msgid "Before submitting"
msgstr "Antes del envío"
-#. \(IG
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1415,7 +1263,6 @@ msgctxt ""
msgid "Text modified"
msgstr "Texto modificado"
-#. A%T%
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1424,7 +1271,6 @@ msgctxt ""
msgid "Before unloading"
msgstr "Antes de descargar"
-#. !pfh
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1433,7 +1279,6 @@ msgctxt ""
msgid "When unloading"
msgstr "Al descargar"
-#. M,J1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1442,7 +1287,6 @@ msgctxt ""
msgid "Changed"
msgstr "Modificado"
-#. RTE-
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1451,7 +1295,6 @@ msgctxt ""
msgid "Document created"
msgstr "Documento creado"
-#. Dr.t
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1460,7 +1303,6 @@ msgctxt ""
msgid "Document loading finished"
msgstr "La carga del documento ha finalizado"
-#. cV)6
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1469,7 +1311,6 @@ msgctxt ""
msgid "Saving of document failed"
msgstr "Falló el guardado del documento"
-#. YXUB
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1478,7 +1319,6 @@ msgctxt ""
msgid "'Save as' has failed"
msgstr "Falló «Guardar como»"
-#. !%^]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1487,7 +1327,6 @@ msgctxt ""
msgid "Storing or exporting copy of document"
msgstr "Almacenar o exportar copia del documento"
-#. A)]:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1496,7 +1335,6 @@ msgctxt ""
msgid "Document copy has been created"
msgstr "Se creó una copia del documento"
-#. J%Q:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1505,7 +1343,6 @@ msgctxt ""
msgid "Creating of document copy failed"
msgstr "Falló la creación de una copia del documento"
-#. Y{ap
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1514,7 +1351,6 @@ msgctxt ""
msgid "View created"
msgstr "Vista creada"
-#. RZ([
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1523,7 +1359,6 @@ msgctxt ""
msgid "View is going to be closed"
msgstr "La vista se cerrará"
-#. p:$f
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1532,7 +1367,6 @@ msgctxt ""
msgid "View closed"
msgstr "Vista cerrada"
-#. Y,ra
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1541,7 +1375,6 @@ msgctxt ""
msgid "Document title changed"
msgstr "Título del documento cambiado"
-#. bNLp
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1550,7 +1383,6 @@ msgctxt ""
msgid "Document mode changed"
msgstr "Modo de documento cambiado"
-#. KLrx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1559,7 +1391,6 @@ msgctxt ""
msgid "Visible area changed"
msgstr "Área visible modificada"
-#. gd`i
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1568,7 +1399,6 @@ msgctxt ""
msgid "Document has got a new storage"
msgstr "Documento tiene un nuevo almacenamiento"
-#. A3BV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1577,7 +1407,6 @@ msgctxt ""
msgid "Document layout finished"
msgstr "El diseño del documento ha finalizado"
-#. Rmvf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1586,7 +1415,6 @@ msgctxt ""
msgid "Selection changed"
msgstr "Selección cambiada"
-#. iihC
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1595,7 +1423,6 @@ msgctxt ""
msgid "Double click"
msgstr "Doble clic"
-#. 2!XX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1604,7 +1431,6 @@ msgctxt ""
msgid "Right click"
msgstr "Clic derecho"
-#. %[cV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1613,7 +1439,6 @@ msgctxt ""
msgid "Formulas calculated"
msgstr "Fórmulas calculadas"
-#. ^,UT
#: macropg.src
msgctxt ""
"macropg.src\n"
diff --git a/source/es/cui/source/dialogs.po b/source/es/cui/source/dialogs.po
index e92a32e4a4c..670020f9d27 100644
--- a/source/es/cui/source/dialogs.po
+++ b/source/es/cui/source/dialogs.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-11-09 07:54+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:01+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353502897.0\n"
-#. JQkn
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "Number of columns:"
msgstr "Número de columnas:"
-#. AH!B
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -35,7 +34,6 @@ msgctxt ""
msgid "Number of rows:"
msgstr "Número de filas:"
-#. #JL_
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -44,7 +42,6 @@ msgctxt ""
msgid "Insert Table"
msgstr "Insertar tabla"
-#. -+=O
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -54,9 +51,7 @@ msgctxt ""
msgid "Origi~nal"
msgstr "~Original"
-#. !@n?
#: commonlingui.src
-#, fuzzy
msgctxt ""
"commonlingui.src\n"
"RID_SVX_WND_COMMON_LINGU\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "~Word"
msgstr "~Palabra"
-#. [Zi`
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr "S~ugerencias"
-#. UxL3
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Ignore"
msgstr "~Ignorar"
-#. PE#P
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Always I~gnore"
msgstr "Ig~norar siempre"
-#. dqEi
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~Reemplazar"
-#. VVYV
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Always R~eplace"
msgstr "~Reemplazar siempre"
-#. (+Di
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Options..."
msgstr "Opciones..."
-#. 0O{B
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. KT;n
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "go to record"
msgstr "ir a registro"
-#. 7ojd
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "Record Number"
msgstr "Número de registro"
-#. {EtJ
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. S,q=
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Nombre"
-#. 45eG
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -182,7 +165,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. QO;H
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -192,7 +174,6 @@ msgctxt ""
msgid "~Title"
msgstr "~Título"
-#. p|s1
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "~Description"
msgstr "~Descripción"
-#. l78d
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -211,7 +191,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. (/fB
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -221,7 +200,6 @@ msgctxt ""
msgid "Enter the name for the new library."
msgstr "Introduzca el nombre para la biblioteca nueva."
-#. !N=@
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -231,7 +209,6 @@ msgctxt ""
msgid "Create Library"
msgstr "Crear biblioteca"
-#. `J?K
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -241,7 +218,6 @@ msgctxt ""
msgid "Create Macro"
msgstr "Crear macro"
-#. g/m.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -251,7 +227,6 @@ msgctxt ""
msgid "Enter the name for the new macro."
msgstr "Introduzca el nombre para la macro nueva."
-#. |{iY
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -261,7 +236,6 @@ msgctxt ""
msgid "Rename"
msgstr "Renombrar"
-#. W%2?
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -271,7 +245,6 @@ msgctxt ""
msgid "Enter the new name for the selected object."
msgstr "Introduzca el nombre nuevo para el objeto seleccionado."
-#. ri[#
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Create Library"
msgstr "Crear biblioteca"
-#. ,-^k
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Do you want to delete the following object?"
msgstr "¿Quiere eliminar el siguiente objeto?"
-#. ~0)[
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr "Confirmar eliminación"
-#. _3$.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -307,7 +277,6 @@ msgctxt ""
msgid "The selected object could not be deleted."
msgstr "No se pudo eliminar el objeto seleccionado."
-#. H18j
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -316,7 +285,6 @@ msgctxt ""
msgid " You do not have permission to delete this object."
msgstr " No tiene permiso para eliminar este objeto."
-#. 1Jv:
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -325,7 +293,6 @@ msgctxt ""
msgid "Error Deleting Object"
msgstr "Error al eliminar el objeto"
-#. cHhH
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -334,7 +301,6 @@ msgctxt ""
msgid "The object could not be created."
msgstr "No se pudo crear el objeto."
-#. K*6W
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -343,7 +309,6 @@ msgctxt ""
msgid " Object with the same name already exists."
msgstr " Ya existe un objeto con el mismo nombre."
-#. Yq_l
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid " You do not have permission to create this object."
msgstr " No tiene permiso para crear este objeto."
-#. spOJ
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -361,7 +325,6 @@ msgctxt ""
msgid "Error Creating Object"
msgstr "Error al crear el objeto"
-#. NQAL
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -370,7 +333,6 @@ msgctxt ""
msgid "The object could not be renamed."
msgstr "No se pudo renombrar el objeto."
-#. 1*3R
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -379,7 +341,6 @@ msgctxt ""
msgid " You do not have permission to rename this object."
msgstr " No tiene permiso para renombrar este objeto."
-#. HYLl
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -388,7 +349,6 @@ msgctxt ""
msgid "Error Renaming Object"
msgstr "Error al renombrar el objeto"
-#. s6](
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -397,7 +357,6 @@ msgctxt ""
msgid "%PRODUCTNAME Error"
msgstr "Error de %PRODUCTNAME"
-#. C$nb
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -406,7 +365,6 @@ msgctxt ""
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "El lenguaje de comandos %LANGUAGENAME no es compatible con este programa."
-#. D#N(
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -415,7 +373,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Se ha producido un error al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME."
-#. E2ZD
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -424,7 +381,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Se ha producido una excepción al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME."
-#. 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 "Se ha producido un error al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME en la línea: %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 "Se ha producido una excepción al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME en la línea: %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 "Se ha producido un error de marco de programación al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME."
-#. 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 "Se ha producido un error de marco de programación al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME en la línea: %LINENUMBER."
-#. Dz^m
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -469,7 +421,6 @@ msgctxt ""
msgid "Type:"
msgstr "Tipo:"
-#. k7^}
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -478,7 +429,6 @@ msgctxt ""
msgid "Message:"
msgstr "Mensaje:"
-#. 3lg2
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -487,7 +437,6 @@ msgctxt ""
msgid "Color Picker"
msgstr "Selector de color"
-#. 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 "Elija un color del documento"
-#. {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 "~Rojo"
-#. 0D3o
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -537,7 +482,6 @@ msgctxt ""
msgid "~Green"
msgstr "~Verde"
-#. \#ic
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -547,7 +491,6 @@ msgctxt ""
msgid "~Blue"
msgstr "~Azul"
-#. fIkP
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -557,7 +500,6 @@ msgctxt ""
msgid "Hex ~#"
msgstr "~# hex"
-#. 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 "~Tono"
-#. N57m
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -587,7 +527,6 @@ msgctxt ""
msgid "~Saturation"
msgstr "~Saturación"
-#. cPyX
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -597,7 +536,6 @@ msgctxt ""
msgid "Bright~ness"
msgstr "~Brillo"
-#. 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 "~Cian"
-#. 5mFC
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -627,7 +563,6 @@ msgctxt ""
msgid "~Magenta"
msgstr "~Magenta"
-#. 53Xa
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -637,7 +572,6 @@ msgctxt ""
msgid "~Yellow"
msgstr "Amari~llo"
-#. ]emz
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -647,7 +581,6 @@ msgctxt ""
msgid "~Key"
msgstr "Lla~ve"
-#. \pA8
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -657,7 +590,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. 2F1Z
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -666,7 +598,6 @@ msgctxt ""
msgid "Properties of "
msgstr "Propiedades de "
-#. 15EY
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -676,7 +607,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. RbR?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -686,7 +616,6 @@ msgctxt ""
msgid "Files"
msgstr "Archivos"
-#. 1WZ%
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -695,7 +624,6 @@ msgctxt ""
msgid "Properties of "
msgstr "Propiedades de "
-#. is@h
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -705,7 +633,6 @@ msgctxt ""
msgid "Type:"
msgstr "Tipo:"
-#. kA7V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -715,7 +642,6 @@ msgctxt ""
msgid "Location:"
msgstr "Ubicación:"
-#. )MmX
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -725,7 +651,6 @@ msgctxt ""
msgid "Contents:"
msgstr "Contenido:"
-#. L(!(
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -735,7 +660,6 @@ msgctxt ""
msgid "Modified:"
msgstr "Modificado el:"
-#. ib8I
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -745,7 +669,6 @@ msgctxt ""
msgid "~File type"
msgstr "~Tipo de archivo"
-#. v)hb
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -755,7 +678,6 @@ msgctxt ""
msgid "~Find Files..."
msgstr "Bus~car archivos..."
-#. pL8^
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -765,7 +687,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. YxAu
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -775,7 +696,6 @@ msgctxt ""
msgid "A~dd All"
msgstr "Añadir ~todos"
-#. eEF:
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -785,7 +705,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "Pr~evisualización"
-#. 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 "Título"
-#. h*#`
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -824,7 +740,6 @@ msgctxt ""
msgid "Enter Title"
msgstr "Introducir título"
-#. I9!p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -834,7 +749,6 @@ msgctxt ""
msgid "Directory"
msgstr "Directorio"
-#. VH{G
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -844,7 +758,6 @@ msgctxt ""
msgid "File type"
msgstr "Tipo de archivo"
-#. -Fub
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -853,7 +766,6 @@ msgctxt ""
msgid "Find"
msgstr "Buscar"
-#. cJ,d
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -863,7 +775,6 @@ msgctxt ""
msgid "File"
msgstr "Archivo"
-#. ~mtv
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -872,7 +783,6 @@ msgctxt ""
msgid "Apply"
msgstr "Aplicar"
-#. gdfS
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -882,7 +792,6 @@ msgctxt ""
msgid "File"
msgstr "Archivo"
-#. Ip#V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -891,7 +800,6 @@ msgctxt ""
msgid "Update"
msgstr "Actualizar"
-#. oY*p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -901,7 +809,6 @@ msgctxt ""
msgid "ID"
msgstr "ID"
-#. ZViV
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -910,7 +817,6 @@ msgctxt ""
msgid "Theme ID"
msgstr "Temas ID"
-#. \{J1
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -919,7 +825,6 @@ msgctxt ""
msgid "<No Files>"
msgstr "<Ningún archivo>"
-#. jGG?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -928,7 +833,6 @@ msgctxt ""
msgid "Do you want to update the file list?"
msgstr "¿Desea actualizar la lista de archivos?"
-#. Di38
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -937,7 +841,6 @@ msgctxt ""
msgid "Object;Objects"
msgstr "Objeto;Objetos"
-#. pJ-W
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -946,7 +849,6 @@ msgctxt ""
msgid "(read-only)"
msgstr "(solo lectura)"
-#. 3:9w
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -955,7 +857,6 @@ msgctxt ""
msgid "<All Files>"
msgstr "<Todos los archivos>"
-#. \^i-
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -964,7 +865,6 @@ msgctxt ""
msgid "This ID already exists..."
msgstr "Esta ID ya existe..."
-#. _*.H
#: about.src
msgctxt ""
"about.src\n"
@@ -974,7 +874,6 @@ msgctxt ""
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr "Versión %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 "%PRODUCTNAME es una suite de productividad moderna, fácil de usar y de código abierto, para procesar texto, hojas de cálculo, presentaciones y más."
-#. vJe3
#: about.src
msgctxt ""
"about.src\n"
@@ -994,7 +892,6 @@ msgctxt ""
msgid "This release was supplied by %OOOVENDOR"
msgstr "Este producto fue suministrado por %OOOVENDOR"
-#. W=Y_
#: about.src
msgctxt ""
"about.src\n"
@@ -1004,7 +901,6 @@ msgctxt ""
msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
msgstr "Copyright © 2000–2012 Colaboradores de LibreOffice y/o sus afiliados"
-#. PQ#6
#: about.src
msgctxt ""
"about.src\n"
@@ -1014,7 +910,6 @@ msgctxt ""
msgid "LibreOffice was based on OpenOffice.org"
msgstr "LibreOffice se basó en OpenOffice.org"
-#. Inr3
#: about.src
msgctxt ""
"about.src\n"
@@ -1024,7 +919,6 @@ msgctxt ""
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME deriva de LibreOffice que se basó a su vez en OpenOffice.org"
-#. 9iuu
#: about.src
msgctxt ""
"about.src\n"
@@ -1034,7 +928,6 @@ msgctxt ""
msgid "(Build ID: $BUILDID)"
msgstr "(ID de compilación: $BUILDID)"
-#. NSIV
#: about.src
msgctxt ""
"about.src\n"
@@ -1044,7 +937,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"
@@ -1054,7 +946,6 @@ msgctxt ""
msgid "Credits"
msgstr "Créditos"
-#. J3Jn
#: about.src
msgctxt ""
"about.src\n"
@@ -1064,7 +955,6 @@ msgctxt ""
msgid "Website"
msgstr "Sitio web"
-#. i2V.
#: about.src
msgctxt ""
"about.src\n"
@@ -1074,7 +964,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. G*]4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1084,7 +973,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. vUQR
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1094,7 +982,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Efectos de fuente"
-#. 3?)^
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1104,7 +991,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. hlh#
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1114,7 +1000,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr "Diseño asiático"
-#. d\(S
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1124,7 +1009,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr "Sangría y espaciado"
-#. y/f$
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1134,7 +1018,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. D6qF
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1144,7 +1027,6 @@ msgctxt ""
msgid "Text Flow"
msgstr "Flujo del texto"
-#. UD_4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1154,7 +1036,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Tipografía asiática"
-#. aTLc
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1164,7 +1045,6 @@ msgctxt ""
msgid "Background"
msgstr "Fondo"
-#. }1,p
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1173,7 +1053,6 @@ msgctxt ""
msgid "Text Format"
msgstr "Formato de texto"
-#. v$gu
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1183,7 +1062,6 @@ msgctxt ""
msgid "~Options"
msgstr "~Opciones"
-#. SM1b
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1192,7 +1070,6 @@ msgctxt ""
msgid "Attributes"
msgstr "Atributos"
-#. LD%H
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1202,7 +1079,6 @@ msgctxt ""
msgid "~Exchange characters"
msgstr "~Intercambiar caracteres"
-#. [Pi9
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1212,7 +1088,6 @@ msgctxt ""
msgid "~Add characters"
msgstr "~Añadir caracteres"
-#. +(O;
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1222,7 +1097,6 @@ msgctxt ""
msgid "~Remove characters"
msgstr "~Eliminar caracteres"
-#. J:4C
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1232,7 +1106,6 @@ msgctxt ""
msgid "~Combine"
msgstr "~Combinar"
-#. gbBC
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1242,7 +1115,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. DuTs
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1251,7 +1123,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr "Búsqueda por semejanza"
-#. k]@_
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1261,7 +1132,6 @@ msgctxt ""
msgid "Source:"
msgstr "Fuente:"
-#. !A.C
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1271,7 +1141,6 @@ msgctxt ""
msgid "~Insert as"
msgstr "~Insertar como"
-#. OMLL
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1281,7 +1150,6 @@ msgctxt ""
msgid "Link to"
msgstr "Vínculo a"
-#. q{bE
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1291,7 +1159,6 @@ msgctxt ""
msgid "~As icon"
msgstr "Co~mo icono"
-#. ,1%~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1301,7 +1168,6 @@ msgctxt ""
msgid "~Other Icon..."
msgstr "~Otro icono..."
-#. )@lS
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1311,7 +1177,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. U@@a
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1321,7 +1186,6 @@ msgctxt ""
msgid "Object"
msgstr "Objeto"
-#. v8_5
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1330,7 +1194,6 @@ msgctxt ""
msgid "Paste Special"
msgstr "Pegado especial"
-#. c`$+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1340,7 +1203,6 @@ msgctxt ""
msgid "Source file"
msgstr "Archivo fuente"
-#. a,w^
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1350,7 +1212,6 @@ msgctxt ""
msgid "Element:"
msgstr "Elemento:"
-#. kM@g
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1360,7 +1221,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. hI/s
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1370,7 +1230,6 @@ msgctxt ""
msgid "Status"
msgstr "Estado"
-#. tL)m
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1380,7 +1239,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. l3_@
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1390,7 +1248,6 @@ msgctxt ""
msgid "~Update"
msgstr "Act~ualizar"
-#. /@R+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1400,7 +1257,6 @@ msgctxt ""
msgid "~Open"
msgstr "~Abrir"
-#. KQqI
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1410,7 +1266,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Modificar..."
-#. ;R,p
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1420,7 +1275,6 @@ msgctxt ""
msgid "~Break Link"
msgstr "~Desvincular"
-#. sLvl
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1430,7 +1284,6 @@ msgctxt ""
msgid "Source file"
msgstr "Archivo fuente"
-#. 6!L8
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1440,7 +1293,6 @@ msgctxt ""
msgid "Element:"
msgstr "Elemento:"
-#. b-eK
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1450,7 +1302,6 @@ msgctxt ""
msgid "Type:"
msgstr "Tipo:"
-#. sE5o
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1460,9 +1311,7 @@ msgctxt ""
msgid "Update:"
msgstr "Actualización:"
-#. qVkM
#: svuidlg.src
-#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -1471,7 +1320,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. KO-M
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1481,7 +1329,6 @@ msgctxt ""
msgid "Ma~nual"
msgstr "Ma~nual"
-#. U|Nc
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1491,7 +1338,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. YZ[\
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1501,7 +1347,6 @@ msgctxt ""
msgid "Manual"
msgstr "Manual"
-#. 2CId
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1511,7 +1356,6 @@ msgctxt ""
msgid "Not available"
msgstr "No disponible"
-#. oEVY
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1521,7 +1365,6 @@ msgctxt ""
msgid "Graphic"
msgstr "Gráfica"
-#. m8~j
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1531,7 +1374,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. 1Y;1
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1541,7 +1383,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr "¿Está seguro de que quiere eliminar el vínculo seleccionado?"
-#. =-S)
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1551,7 +1392,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr "¿Está seguro de que quiere eliminar el vínculo seleccionado?"
-#. 6j/[
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1561,7 +1401,6 @@ msgctxt ""
msgid "Waiting"
msgstr "En espera"
-#. *=%J
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1570,7 +1409,6 @@ msgctxt ""
msgid "Edit Links"
msgstr "Editar vínculo"
-#. ]q+~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1580,7 +1418,6 @@ msgctxt ""
msgid "Exchange source:"
msgstr "Intercambiar fuentes:"
-#. 4I9;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1590,7 +1427,6 @@ msgctxt ""
msgid "Edit"
msgstr "Editar"
-#. aG_H
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1599,7 +1435,6 @@ msgctxt ""
msgid "Modify Link"
msgstr "Modificar vínculo"
-#. (}N.
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1609,7 +1444,6 @@ msgctxt ""
msgid "~Class"
msgstr "~Clase"
-#. ii$;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1619,18 +1453,15 @@ msgctxt ""
msgid "Class ~Location"
msgstr "~Ubicación de clase"
-#. T2j\
#: svuidlg.src
-#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_INSERT_OBJECT_APPLET\n"
"BTN_CLASS\n"
"pushbutton.text"
msgid "~Search..."
-msgstr "~Busqueda..."
+msgstr "~Buscar…"
-#. 0QcZ
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1640,7 +1471,6 @@ msgctxt ""
msgid "File"
msgstr "Archivo"
-#. _a(?
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1650,7 +1480,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. Es_Q
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1659,7 +1488,6 @@ msgctxt ""
msgid "Insert Applet"
msgstr "Insertar applet:"
-#. %a#=
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1669,7 +1497,6 @@ msgctxt ""
msgid "Author"
msgstr "Autor"
-#. :A[;
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1679,7 +1506,6 @@ msgctxt ""
msgid "~Text"
msgstr "~Texto"
-#. !W!A
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1689,7 +1515,6 @@ msgctxt ""
msgid "Contents"
msgstr "Contenido"
-#. Ss^W
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1699,7 +1524,6 @@ msgctxt ""
msgid "~Insert"
msgstr "~Insertar"
-#. @2#v
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1709,7 +1533,6 @@ msgctxt ""
msgid "Author"
msgstr "Autor"
-#. ,40J
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1719,7 +1542,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr "Editar comentario"
-#. K2K_
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1729,7 +1551,6 @@ msgctxt ""
msgid "Insert Comment"
msgstr "Insertar comentario"
-#. eB(6
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1738,7 +1559,6 @@ msgctxt ""
msgid "Comment"
msgstr "Comentario"
-#. ^tib
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1748,7 +1568,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. GZZ.
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1758,7 +1577,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Efectos de fuente"
-#. Ah.s
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1768,7 +1586,6 @@ msgctxt ""
msgid "Borders"
msgstr "Bordes"
-#. l\ks
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1778,7 +1595,6 @@ msgctxt ""
msgid "Background"
msgstr "Fondo"
-#. Nt}G
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1788,7 +1604,6 @@ msgctxt ""
msgid "Return"
msgstr "Regresar"
-#. $)x;
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1797,7 +1612,6 @@ msgctxt ""
msgid "Format Cells"
msgstr "Formato de celdas"
-#. pjv\
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1807,9 +1621,7 @@ msgctxt ""
msgid "Parameters"
msgstr "Parámetros"
-#. SN+G
#: grfflt.src
-#, fuzzy
msgctxt ""
"grfflt.src\n"
"RID_SVX_GRFFILTER_DLG_MOSAIC\n"
@@ -1818,7 +1630,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Anchura"
-#. p1X7
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1828,9 +1639,7 @@ msgctxt ""
msgid " Pixel"
msgstr " Píxel"
-#. nwbg
#: grfflt.src
-#, fuzzy
msgctxt ""
"grfflt.src\n"
"RID_SVX_GRFFILTER_DLG_MOSAIC\n"
@@ -1839,7 +1648,6 @@ msgctxt ""
msgid "H~eight"
msgstr "A~ltura"
-#. N7R~
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1849,7 +1657,6 @@ msgctxt ""
msgid " Pixel"
msgstr " Píxel"
-#. p3!y
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1859,7 +1666,6 @@ msgctxt ""
msgid "E~nhance edges"
msgstr "~Mejorar bordes"
-#. !bNm
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1868,7 +1674,6 @@ msgctxt ""
msgid "Mosaic"
msgstr "Mosaico"
-#. _0,q
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1878,7 +1683,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Parámetros"
-#. ^PlP
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1888,7 +1692,6 @@ msgctxt ""
msgid "Threshold ~value"
msgstr "Valor de ~umbral"
-#. ~)5X
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1898,7 +1701,6 @@ msgctxt ""
msgid "~Invert"
msgstr "I~nvertir"
-#. W(wS
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1907,7 +1709,6 @@ msgctxt ""
msgid "Solarization"
msgstr "Solarización"
-#. _G@@
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1917,7 +1718,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Parámetros"
-#. M2,n
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1927,7 +1727,6 @@ msgctxt ""
msgid "Aging degree"
msgstr "Grado de envejecim."
-#. :d9]
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1936,7 +1735,6 @@ msgctxt ""
msgid "Aging"
msgstr "Envejecimiento"
-#. XZc%
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1946,7 +1744,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Parámetros"
-#. xiDI
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1956,7 +1753,6 @@ msgctxt ""
msgid "Poster colors"
msgstr "Colores del póster"
-#. gVT(
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1965,7 +1761,6 @@ msgctxt ""
msgid "Posterize"
msgstr "Póster"
-#. .oe|
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1975,7 +1770,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Parámetros"
-#. \5\Z
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1985,7 +1779,6 @@ msgctxt ""
msgid "Light source"
msgstr "Fuente de luz"
-#. dx+o
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1994,9 +1787,7 @@ msgctxt ""
msgid "Relief"
msgstr "Relieve"
-#. !#1M
#: grfflt.src
-#, fuzzy
msgctxt ""
"grfflt.src\n"
"RID_SVX_GRFFILTER_DLG_SMOOTH\n"
@@ -2005,7 +1796,6 @@ msgctxt ""
msgid "Parameters"
msgstr "Parámetros"
-#. c3c4
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2013,9 +1803,8 @@ msgctxt ""
"DLG_FILTERSMOOTH_FT_RADIUS\n"
"fixedtext.text"
msgid "Smooth Radius"
-msgstr ""
+msgstr "Radio suave"
-#. v%.e
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2024,7 +1813,6 @@ msgctxt ""
msgid "Smooth"
msgstr "Suavizar"
-#. :KSr
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2034,7 +1822,6 @@ msgctxt ""
msgid "Paths"
msgstr "Rutas"
-#. KdMM
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2044,7 +1831,6 @@ msgctxt ""
msgid "Mark the default path for new files."
msgstr "Indique la ruta predeterminada de los archivos nuevos."
-#. [51a
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2054,9 +1840,7 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. )N])
#: multipat.src
-#, fuzzy
msgctxt ""
"multipat.src\n"
"RID_SVXDLG_MULTIPATH\n"
@@ -2065,7 +1849,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. En0v
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2075,7 +1858,6 @@ msgctxt ""
msgid "Path list"
msgstr "Lista de rutas"
-#. TRw.
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2084,7 +1866,6 @@ msgctxt ""
msgid "Select Paths"
msgstr "Seleccionar rutas"
-#. m6Tt
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2093,7 +1874,6 @@ msgctxt ""
msgid "The path %1 already exists."
msgstr "La ruta %1 ya existe."
-#. ct+:
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2102,7 +1882,6 @@ msgctxt ""
msgid "Select files"
msgstr "Seleccionar archivos"
-#. qaxg
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2111,7 +1890,6 @@ msgctxt ""
msgid "Files"
msgstr "Archivos"
-#. WqDs
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2120,7 +1898,6 @@ msgctxt ""
msgid "Select Archives"
msgstr "Seleccionar archivos"
-#. N4GD
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2129,7 +1906,6 @@ msgctxt ""
msgid "Archives"
msgstr "Archivos"
-#. Ejr6
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2138,7 +1914,6 @@ msgctxt ""
msgid "The file %1 already exists."
msgstr "El archivo %1 ya existe."
-#. C!dE
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2148,7 +1923,6 @@ msgctxt ""
msgid "Text languag~e"
msgstr "Idioma del t~exto"
-#. dq#@
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2158,7 +1932,6 @@ msgctxt ""
msgid "More..."
msgstr "Más..."
-#. D]i)
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2168,7 +1941,6 @@ msgctxt ""
msgid "~Not in dictionary"
msgstr "~No está en el diccionario"
-#. 19.u
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2178,7 +1950,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr "S~ugerencias"
-#. Qj94
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2188,7 +1959,6 @@ msgctxt ""
msgid "Check ~grammar"
msgstr "Comprobar ~gramática"
-#. mi]-
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2198,7 +1968,6 @@ msgctxt ""
msgid "~Ignore Once"
msgstr "~Ignorar una vez"
-#. 0}6\
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2208,7 +1977,6 @@ msgctxt ""
msgid "I~gnore All"
msgstr "I~gnorar todo"
-#. k#aT
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2218,7 +1986,6 @@ msgctxt ""
msgid "I~gnore Rule"
msgstr "I~gnorar regla"
-#. y:He
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2228,7 +1995,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. _VN:
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2238,7 +2004,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. Ut6,
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2248,7 +2013,6 @@ msgctxt ""
msgid "~Change"
msgstr "~Cambiar"
-#. -f98
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2258,7 +2022,6 @@ msgctxt ""
msgid "Change A~ll"
msgstr "Cambiar to~do"
-#. ;8tW
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2268,7 +2031,6 @@ msgctxt ""
msgid "AutoCor~rect"
msgstr "Autocor~rección"
-#. .q5C
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2278,7 +2040,6 @@ msgctxt ""
msgid "O~ptions..."
msgstr "O~pciones..."
-#. 2}-4
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2288,7 +2049,6 @@ msgctxt ""
msgid "~Undo"
msgstr "~Deshacer"
-#. epNd
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2298,7 +2058,6 @@ msgctxt ""
msgid "Cl~ose"
msgstr "C~errar"
-#. ]$lP
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2308,7 +2067,6 @@ msgctxt ""
msgid "Resu~me"
msgstr "Reanu~dar"
-#. 3pED
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2318,7 +2076,6 @@ msgctxt ""
msgid "(no suggestions)"
msgstr "(no hay sugerencias)"
-#. A_hh
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2328,7 +2085,6 @@ msgctxt ""
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Ortografía: $LANGUAGE ($LOCATION)"
-#. :35q
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2338,7 +2094,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
msgstr "Ortografía y gramática: $LANGUAGE ($LOCATION)"
-#. B3,S
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2348,7 +2103,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
msgstr "Ortografía y gramática: $LANGUAGE ($LOCATION) [$VendorName]"
-#. Oruo
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2357,7 +2111,6 @@ msgctxt ""
msgid "Spellcheck: "
msgstr "Revisión ortográfica: "
-#. lQDX
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2367,7 +2120,6 @@ msgctxt ""
msgid "~Split cell into"
msgstr "~Dividir la celda en"
-#. %S?v
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2377,7 +2129,6 @@ msgctxt ""
msgid "Split"
msgstr "Dividir"
-#. T\yI
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2387,7 +2138,6 @@ msgctxt ""
msgid "H~orizontally"
msgstr "H~orizontalmente"
-#. ^C%S
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2397,7 +2147,6 @@ msgctxt ""
msgid "~Into equal proportions"
msgstr "~A proporciones iguales"
-#. y(/I
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2407,7 +2156,6 @@ msgctxt ""
msgid "~Vertically"
msgstr "~Verticalmente"
-#. sYN+
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2417,7 +2165,6 @@ msgctxt ""
msgid "Direction"
msgstr "Dirección"
-#. 3hto
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2426,7 +2173,6 @@ msgctxt ""
msgid "Split Cells"
msgstr "Dividir celdas"
-#. K\)t
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2435,7 +2181,6 @@ msgctxt ""
msgid "No alternatives found."
msgstr "No se encontraron alternativas."
-#. [o|L
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2444,7 +2189,6 @@ msgctxt ""
msgid "Select File for Floating Frame"
msgstr "Seleccionar archivo para un marco flotante"
-#. Bx0.
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2453,7 +2197,6 @@ msgctxt ""
msgid "My Macros"
msgstr "Mis macros"
-#. [2V#
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2462,7 +2205,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr "Macros de %PRODUCTNAME"
-#. S7)b
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2471,17 +2213,14 @@ msgctxt ""
msgid "Add Commands"
msgstr "Añadir comandos"
-#. s2Fv
#: cuires.src
-#, fuzzy
msgctxt ""
"cuires.src\n"
"RID_SVXSTR_SELECTOR_RUN\n"
"string.text"
msgid "Run"
-msgstr "Eje~cutar"
+msgstr "Ejecutar"
-#. mRwK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2490,7 +2229,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "Insertar filas"
-#. EWNK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2499,7 +2237,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Insertar columnas"
-#. DJr*
#: iconcdlg.src
msgctxt ""
"iconcdlg.src\n"
@@ -2508,7 +2245,6 @@ msgctxt ""
msgid "~Back"
msgstr "~Anterior"
-#. hm/:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2518,7 +2254,6 @@ msgctxt ""
msgid "~Find"
msgstr "~Buscar"
-#. ?=/h
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2528,7 +2263,6 @@ msgctxt ""
msgid "Format"
msgstr "Formato"
-#. gP:z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2538,7 +2272,6 @@ msgctxt ""
msgid "~Hangul/Hanja"
msgstr "~Hangul/Hanja"
-#. E*l:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2548,7 +2281,6 @@ msgctxt ""
msgid "Hanja (Han~gul)"
msgstr "Hanja (Han~gul)"
-#. ~\ef
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2558,7 +2290,6 @@ msgctxt ""
msgid "Hang~ul (Hanja)"
msgstr "Hang~ul (Hanja)"
-#. 9f_J
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2568,7 +2299,6 @@ msgctxt ""
msgid "Hangu~l"
msgstr "Hangu~l"
-#. =6~o
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2578,7 +2308,6 @@ msgctxt ""
msgid "Hang~ul"
msgstr "Hang~ul"
-#. {*IQ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2588,7 +2317,6 @@ msgctxt ""
msgid "Han~ja"
msgstr "Han~ja"
-#. qDL6
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2598,7 +2326,6 @@ msgctxt ""
msgid "Ha~nja"
msgstr "Ha~nja"
-#. r^LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2608,7 +2335,6 @@ msgctxt ""
msgid "Conversion"
msgstr "Conversión"
-#. ,*V$
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2618,7 +2344,6 @@ msgctxt ""
msgid "Hangul ~only"
msgstr "~Sólo Hangul"
-#. .)vB
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2628,7 +2353,6 @@ msgctxt ""
msgid "Hanja onl~y"
msgstr "~Sólo Hanja"
-#. .{gr
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2638,7 +2362,6 @@ msgctxt ""
msgid "Replace b~y character"
msgstr "~Sustituir caracteres uno por uno"
-#. WK3M
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2648,7 +2371,6 @@ msgctxt ""
msgid "Hangul"
msgstr "Hangul"
-#. D;Ps
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2658,7 +2380,6 @@ msgctxt ""
msgid "Hanja"
msgstr "Hanja"
-#. Z|[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2667,7 +2388,6 @@ msgctxt ""
msgid "Hangul/Hanja Conversion"
msgstr "Conversión de Hangul/Hanja"
-#. k=@D
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2677,7 +2397,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "Diccionarios definidos por el usuario"
-#. =VVJ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2687,7 +2406,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. R8%Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2697,7 +2415,6 @@ msgctxt ""
msgid "Ignore post-positional word"
msgstr "Ignorar palabra de posición posterior"
-#. i4n,
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2707,7 +2424,6 @@ msgctxt ""
msgid "Show recently used entries first"
msgstr "Muestra las entradas usadas recientemente en primer lugar"
-#. Qk`Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2717,7 +2433,6 @@ msgctxt ""
msgid "Replace all unique entries automatically"
msgstr "Reemplazar todas las entradas únicas automáticamente"
-#. /\;u
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2727,7 +2442,6 @@ msgctxt ""
msgid "New..."
msgstr "Nuevo"
-#. Ms/R
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2737,7 +2451,6 @@ msgctxt ""
msgid "Edit..."
msgstr "Editar..."
-#. /8LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2747,7 +2460,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. pf5k
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2756,7 +2468,6 @@ msgctxt ""
msgid "Hangul/Hanja Options"
msgstr "Opciones de Hangul/Hanja"
-#. z;6c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2766,7 +2477,6 @@ msgctxt ""
msgid "Dictionary"
msgstr "Diccionario"
-#. =2[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2776,7 +2486,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Nombre"
-#. ][6Z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2785,7 +2494,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr "Diccionario nuevo"
-#. HMg`
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2795,7 +2503,6 @@ msgctxt ""
msgid "[Enter text here]"
msgstr "[Introduzca el texto aquí]"
-#. .c/~
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2805,7 +2512,6 @@ msgctxt ""
msgid "Book"
msgstr "Libro"
-#. F[$_
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2815,7 +2521,6 @@ msgctxt ""
msgid "Original"
msgstr "Original"
-#. rs.K
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2825,7 +2530,6 @@ msgctxt ""
msgid "Suggestions (max. 8)"
msgstr "Sugerencias (máx. 8)"
-#. Q$)s
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2835,7 +2539,6 @@ msgctxt ""
msgid "New"
msgstr "Nuevo"
-#. g([7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2845,7 +2548,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. GF,c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2855,7 +2557,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. rr^7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2864,7 +2565,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr "Editar diccionario personalizado"
-#. p3_c
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2874,7 +2574,6 @@ msgctxt ""
msgid "Apply"
msgstr "Aplicar"
-#. z*]I
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2884,7 +2583,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. gy4G
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2893,7 +2591,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "Destino en documento"
-#. X/m:
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2902,7 +2599,6 @@ msgctxt ""
msgid "Targets do not exist in the document."
msgstr "Los destinos no existen en el documento."
-#. i3C0
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2911,7 +2607,6 @@ msgctxt ""
msgid "Couldn't open the document."
msgstr "No se pudo abrir el documento."
-#. dTPN
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2920,7 +2615,6 @@ msgctxt ""
msgid "Mark Tree"
msgstr "Árbol de marcas"
-#. BA]n
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2930,7 +2624,6 @@ msgctxt ""
msgid "File encryption password"
msgstr "Contraseña de cifrado del archivo"
-#. 8$u*
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2940,7 +2633,6 @@ msgctxt ""
msgid "~Enter password to open"
msgstr "~Introduzca la contraseña para abrir"
-#. NH6r
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2950,7 +2642,6 @@ msgctxt ""
msgid "Confirm password"
msgstr "Confirme la contraseña"
-#. T3/i
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2960,7 +2651,6 @@ msgctxt ""
msgid "Note: After a password has been set, the document will only open with "
msgstr "Nota: Luego de establecer una contraseña, el documento solo se abrirá con "
-#. Ty55
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2970,7 +2660,6 @@ msgctxt ""
msgid "File sharing password"
msgstr "Contraseña para compartir el archivo"
-#. mSdf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2980,7 +2669,6 @@ msgctxt ""
msgid "Open file read-only"
msgstr "Abrir documento como solo lectura"
-#. eY%Q
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2990,7 +2678,6 @@ msgctxt ""
msgid "Enter password to allow editing"
msgstr "Ingrese la contraseña para permitir la edición"
-#. ?qQg
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3000,7 +2687,6 @@ msgctxt ""
msgid "Confirm password"
msgstr "Confirmar la contraseña"
-#. CzkZ
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3010,7 +2696,6 @@ msgctxt ""
msgid "Password must be confirmed"
msgstr "La contraseña debe confirmarse"
-#. X7bk
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3020,7 +2705,6 @@ msgctxt ""
msgid "More ~Options"
msgstr "Más ~opciones"
-#. N8Nb
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3030,7 +2714,6 @@ msgctxt ""
msgid "Fewer ~Options"
msgstr "Menos ~opciones"
-#. J=eq
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3040,7 +2723,6 @@ msgctxt ""
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "La contraseña de confirmación no es igual a la otra contraseña. Para establecer la contraseña, ingrese la misma contraseña en ambas cajas."
-#. DBsf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3050,7 +2732,6 @@ msgctxt ""
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Las contraseñas de confirmación no son iguales a las contraseñas originales. Ingrese nuevamente las contraseñas."
-#. KIwu
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3060,7 +2741,6 @@ msgctxt ""
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Ingrese una contraseña para abrir o modificar, o marque la opción de abrir sólo para lectura para continuar."
-#. T913
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3069,7 +2749,6 @@ msgctxt ""
msgid "Set Password"
msgstr "Establecer contraseña"
-#. GtFb
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3079,7 +2758,6 @@ msgctxt ""
msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
msgstr "Las siguientes columnas están por ahora ocultas. Seleccione las que deban mostrarse y pulse sobre Aceptar."
-#. 66\h
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3088,7 +2766,6 @@ msgctxt ""
msgid "Show columns"
msgstr "Mostrar columnas"
-#. ;Nl/
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3098,7 +2775,6 @@ msgctxt ""
msgid "~URL"
msgstr "~URL"
-#. vyqo
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3108,7 +2784,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Ma~rco"
-#. dJ$b
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3118,7 +2793,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Nombre"
-#. x[gT
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3128,7 +2802,6 @@ msgctxt ""
msgid "Alternative ~text"
msgstr "~Texto alternativo"
-#. Jj@1
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3138,7 +2811,6 @@ msgctxt ""
msgid "~Description"
msgstr "~Descripción"
-#. m%N9
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3147,7 +2819,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. -|w`
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3157,7 +2828,6 @@ msgctxt ""
msgid "Search for"
msgstr "Buscar por"
-#. cjUW
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3167,7 +2837,6 @@ msgctxt ""
msgid "~Text"
msgstr "~Texto"
-#. 1wk!
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3177,7 +2846,6 @@ msgctxt ""
msgid "Field content is ~NULL"
msgstr "Contenido del campo es ~NULL"
-#. iIi@
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3187,7 +2855,6 @@ msgctxt ""
msgid "Field content is not NU~LL"
msgstr "Contenido del campo no es N~ULL"
-#. F:2/
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3197,7 +2864,6 @@ msgctxt ""
msgid "Where to search"
msgstr "Área"
-#. ,ugO
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3207,7 +2873,6 @@ msgctxt ""
msgid "Form"
msgstr "Formulario"
-#. HDyg
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3217,7 +2882,6 @@ msgctxt ""
msgid "All Fields"
msgstr "Todos los campos"
-#. 8B5A
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3227,7 +2891,6 @@ msgctxt ""
msgid "Single field"
msgstr "Campo individual"
-#. }9g]
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3237,7 +2900,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. p%(*
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3247,7 +2909,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. -Tst
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3257,7 +2918,6 @@ msgctxt ""
msgid "Apply field format"
msgstr "Usar formato de campo"
-#. n\8{
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3267,7 +2927,6 @@ msgctxt ""
msgid "Match case"
msgstr "Coincidir mayúsculas y minúsculas"
-#. it|3
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3277,7 +2936,6 @@ msgctxt ""
msgid "Search backwards"
msgstr "Buscar hacia atrás"
-#. O`ez
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3287,7 +2945,6 @@ msgctxt ""
msgid "From Beginning"
msgstr "Desde el principio"
-#. 16xC
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3297,7 +2954,6 @@ msgctxt ""
msgid "Wildcard expression"
msgstr "Expresión con comodines"
-#. 0g-H
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3307,7 +2963,6 @@ msgctxt ""
msgid "Regular expression"
msgstr "Expresión regular"
-#. W8;M
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3317,7 +2972,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr "Búsqueda por semejanza"
-#. m31=
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3327,7 +2981,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. jJ*}
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3337,7 +2990,6 @@ msgctxt ""
msgid "Match character width"
msgstr "Hacer coincidir el ancho del carácter"
-#. 3`xm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3347,7 +2999,6 @@ msgctxt ""
msgid "Sounds like (Japanese)"
msgstr "Se parece a (Japonés)"
-#. j7Sm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3357,7 +3008,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. |`#C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3367,7 +3017,6 @@ msgctxt ""
msgid "State"
msgstr "Estado"
-#. 9VXk
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3377,7 +3026,6 @@ msgctxt ""
msgid "Record :"
msgstr "Registro :"
-#. +m`C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3387,7 +3035,6 @@ msgctxt ""
msgid "Search"
msgstr "Buscar"
-#. ON)R
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3397,7 +3044,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. F([F
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3407,7 +3053,6 @@ msgctxt ""
msgid "~Help"
msgstr "Ay~uda"
-#. USgK
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3416,7 +3061,6 @@ msgctxt ""
msgid "Record Search"
msgstr "Búsqueda de registro de datos"
-#. kZ`W
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3425,7 +3069,6 @@ msgctxt ""
msgid "anywhere in the field"
msgstr "en cualquier parte del campo"
-#. $?Bi
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3434,7 +3077,6 @@ msgctxt ""
msgid "beginning of field"
msgstr "al comienzo del campo"
-#. 2m2z
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3443,7 +3085,6 @@ msgctxt ""
msgid "end of field"
msgstr "al final del campo"
-#. 9y\(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3452,7 +3093,6 @@ msgctxt ""
msgid "entire field"
msgstr "todo el campo"
-#. Fyg1
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3461,7 +3101,6 @@ msgctxt ""
msgid "From top"
msgstr "Desde arriba"
-#. |pB(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3470,7 +3109,6 @@ msgctxt ""
msgid "From bottom"
msgstr "Desde abajo"
-#. W1kf
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3479,7 +3117,6 @@ msgctxt ""
msgid "No records corresponding to your data found."
msgstr "No se han encontrado registros correspondientes a los datos."
-#. Nrm$
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3488,7 +3125,6 @@ msgctxt ""
msgid "An unknown error occurred. The search could not be finished."
msgstr "Error desconocido. No se ha podido finalizar la búsqueda."
-#. $9EZ
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3497,7 +3133,6 @@ msgctxt ""
msgid "Overflow, search continued at the beginning"
msgstr "Desborde, la búsqueda continuó en el comienzo"
-#. *9Ss
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3506,7 +3141,6 @@ msgctxt ""
msgid "Overflow, search continued at the end"
msgstr "Desborde, la búsqueda continuó en el final"
-#. _wV?
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3515,7 +3149,6 @@ msgctxt ""
msgid "counting records"
msgstr "contando registros de datos"
-#. r7HA
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3525,7 +3158,6 @@ msgctxt ""
msgid "Hyperlink type"
msgstr "Tipo de hiperenlace"
-#. 0NYm
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3535,7 +3167,6 @@ msgctxt ""
msgid "~Web"
msgstr "~Web"
-#. $Qtr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3545,7 +3176,6 @@ msgctxt ""
msgid "~FTP"
msgstr "~FTP"
-#. (f_?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3555,7 +3185,6 @@ msgctxt ""
msgid "Tar~get"
msgstr "~Destino"
-#. SeM#
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3565,7 +3194,6 @@ msgctxt ""
msgid "~Login name"
msgstr "~Nombre de inicio de sesión"
-#. ,LPj
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3575,7 +3203,6 @@ msgctxt ""
msgid "~Password"
msgstr "~Contraseña"
-#. eU:P
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3585,7 +3212,6 @@ msgctxt ""
msgid "Anonymous ~user"
msgstr "Usuario ~anónimo"
-#. ,Bu[
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3595,7 +3221,6 @@ msgctxt ""
msgid "WWW Browser"
msgstr "Navegador web"
-#. pVIH
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3605,7 +3230,6 @@ msgctxt ""
msgid "Open web browser, copy an URL, and paste it to Target field"
msgstr "Abra el navegador web, copie una URL y péguela en el campo Destino"
-#. jP[4
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3615,7 +3239,6 @@ msgctxt ""
msgid "Further settings"
msgstr "Otras opciones"
-#. pwv)
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3625,7 +3248,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Ma~rco"
-#. V44A
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3635,7 +3257,6 @@ msgctxt ""
msgid "F~orm"
msgstr "F~ormulario"
-#. i352
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3645,7 +3266,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. JoDD
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3655,7 +3275,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. +.[]
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3665,7 +3284,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "Te~xto"
-#. TQ1?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3675,7 +3293,6 @@ msgctxt ""
msgid "N~ame"
msgstr "N~ombre"
-#. xp?2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3685,7 +3302,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. pB%$
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3695,7 +3311,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. IOK:
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3704,7 +3319,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperenlace"
-#. P^3(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3714,7 +3328,6 @@ msgctxt ""
msgid "Mail & news"
msgstr "Correo y noticias"
-#. ?o1U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3724,7 +3337,6 @@ msgctxt ""
msgid "~E-mail"
msgstr "Correo ~electrónico"
-#. 5#*Q
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3734,7 +3346,6 @@ msgctxt ""
msgid "~News"
msgstr "~Noticias"
-#. PCm2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3744,7 +3355,6 @@ msgctxt ""
msgid "Re~cipient"
msgstr "~Destinatario"
-#. V4A0
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3754,7 +3364,6 @@ msgctxt ""
msgid "~Subject"
msgstr "A~sunto"
-#. Q=F`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3764,7 +3373,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr "Orígenes de datos..."
-#. A)ZY
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3774,7 +3382,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr "Orígenes de datos..."
-#. h}Wq
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3784,7 +3391,6 @@ msgctxt ""
msgid "Further settings"
msgstr "Otras opciones"
-#. _-w;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3794,7 +3400,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Ma~rco"
-#. 9I9S
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3804,7 +3409,6 @@ msgctxt ""
msgid "F~orm"
msgstr "F~ormulario"
-#. !$_;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3814,7 +3418,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. 59P;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3824,7 +3427,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. ^@0{
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3834,7 +3436,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "Te~xto"
-#. /dnx
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3844,7 +3445,6 @@ msgctxt ""
msgid "N~ame"
msgstr "N~ombre"
-#. p`hr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3854,7 +3454,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. aBLz
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3864,7 +3463,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. ?Rac
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3873,7 +3471,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperenlace"
-#. j6u`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3883,7 +3480,6 @@ msgctxt ""
msgid "Document"
msgstr "Documento"
-#. 1=Te
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3893,7 +3489,6 @@ msgctxt ""
msgid "~Path"
msgstr "~Ruta"
-#. ~!|B
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3903,7 +3498,6 @@ msgctxt ""
msgid "Open File"
msgstr "Abrir archivo"
-#. s-25
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3913,7 +3507,6 @@ msgctxt ""
msgid "Open File"
msgstr "Abrir archivo"
-#. NgmW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3923,7 +3516,6 @@ msgctxt ""
msgid "Target in document"
msgstr "Destino en el documento"
-#. #MYW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3933,7 +3525,6 @@ msgctxt ""
msgid "Targ~et"
msgstr "~Destino"
-#. A@6_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3943,7 +3534,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. ph[;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3953,7 +3543,6 @@ msgctxt ""
msgid "Test text"
msgstr "Texto de prueba"
-#. $R`(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3963,7 +3552,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "Destino en documento"
-#. 0]co
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3973,7 +3561,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "Destino en documento"
-#. FF^(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3983,7 +3570,6 @@ msgctxt ""
msgid "Further settings"
msgstr "Otras opciones"
-#. {awi
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3993,7 +3579,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Ma~rco"
-#. ZV\O
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4003,7 +3588,6 @@ msgctxt ""
msgid "F~orm"
msgstr "F~ormulario"
-#. [z4K
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4013,7 +3597,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. ,U.W
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4023,7 +3606,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. kvbO
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4033,7 +3615,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "Te~xto"
-#. `|m|
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4043,7 +3624,6 @@ msgctxt ""
msgid "N~ame"
msgstr "N~ombre"
-#. D\6F
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4053,7 +3633,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. td!k
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4063,7 +3642,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. ]%Px
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4072,7 +3650,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperenlace"
-#. *-*d
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4082,7 +3659,6 @@ msgctxt ""
msgid "New document"
msgstr "Nuevo documento"
-#. Q9Pb
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4092,7 +3668,6 @@ msgctxt ""
msgid "Edit ~now"
msgstr "Editar a~hora"
-#. 6:]p
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4102,7 +3677,6 @@ msgctxt ""
msgid "Edit ~later"
msgstr "Editar ~después"
-#. 5m$V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4112,7 +3686,6 @@ msgctxt ""
msgid "~File"
msgstr "~Archivo"
-#. V0m0
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4122,7 +3695,6 @@ msgctxt ""
msgid "File ~type"
msgstr "~Tipo de archivo"
-#. sNOa
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4132,7 +3704,6 @@ msgctxt ""
msgid "Select Path"
msgstr "Seleccionar ruta"
-#. (:A,
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4142,7 +3713,6 @@ msgctxt ""
msgid "Select Path"
msgstr "Seleccionar ruta"
-#. -]a3
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4152,7 +3722,6 @@ msgctxt ""
msgid "Further settings"
msgstr "Otras opciones"
-#. fmXl
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4162,7 +3731,6 @@ msgctxt ""
msgid "F~rame"
msgstr "Ma~rco"
-#. |86V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4172,7 +3740,6 @@ msgctxt ""
msgid "F~orm"
msgstr "F~ormulario"
-#. mKrs
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4182,7 +3749,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. IFOf
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4192,7 +3758,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. r6BB
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4202,7 +3767,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "Te~xto"
-#. ~Mq(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4212,7 +3776,6 @@ msgctxt ""
msgid "N~ame"
msgstr "N~ombre"
-#. dZXk
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4222,7 +3785,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. zK]z
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4232,7 +3794,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. x;ZE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4241,7 +3802,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperenlace"
-#. 09mE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4250,7 +3810,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperenlace"
-#. ]-/)
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4259,7 +3818,6 @@ msgctxt ""
msgid "Apply"
msgstr "Aplicar"
-#. TQGN
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4268,7 +3826,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. N$)L
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4277,7 +3834,6 @@ msgctxt ""
msgid "Mouse over object"
msgstr "El ratón está sobre el objeto"
-#. ~,38
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4286,7 +3842,6 @@ msgctxt ""
msgid "Trigger hyperlink"
msgstr "Ejecutar hiperenlace"
-#. !\1h
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4295,7 +3850,6 @@ msgctxt ""
msgid "Mouse leaves object"
msgstr "El ratón abandona el objeto"
-#. (2V!
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4304,7 +3858,6 @@ msgctxt ""
msgid "Please type in a valid file name."
msgstr "Introduzca un nombre de archivo válido."
-#. .mG@
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4313,7 +3866,6 @@ msgctxt ""
msgid "Internet"
msgstr "Internet"
-#. mSyU
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4322,7 +3874,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to a Web page or FTP server connection."
msgstr "Aquí es donde puede crear un hiperenlace a una página web o una conexión a servidor FTP."
-#. A5}_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4331,7 +3882,6 @@ msgctxt ""
msgid "Mail & News"
msgstr "Correo y noticias"
-#. cHu(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4340,7 +3890,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
msgstr "Crea un hiperenlace a una dirección de correo electrónico o a un grupo de noticias."
-#. KN!U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4349,7 +3898,6 @@ msgctxt ""
msgid "Document"
msgstr "Documento"
-#. eP`}
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4358,7 +3906,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an existing document or a target within a document."
msgstr "Crea un hiperenlace a un documento existente o a un destino dentro de un documento."
-#. kU1%
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4367,7 +3914,6 @@ msgctxt ""
msgid "New Document"
msgstr "Documento nuevo"
-#. %r;g
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4376,7 +3922,6 @@ msgctxt ""
msgid "This is where you create a new document to which the new link points."
msgstr "Crea un documento nuevo al que refiere el hiperenlace."
-#. ?h/R
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4385,7 +3930,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. mAnp
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4394,7 +3938,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. X(k6
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
diff --git a/source/es/cui/source/options.po b/source/es/cui/source/options.po
index f01e48de831..77aaa39114c 100644
--- a/source/es/cui/source/options.po
+++ b/source/es/cui/source/options.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-10-03 00:27+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:06+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353503203.0\n"
-#. A=\H
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "~Apply replacement table"
msgstr "~Aplicar la tabla de sustituciones"
-#. odH$
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -35,7 +34,6 @@ msgctxt ""
msgid "~Font"
msgstr "~Fuente"
-#. \q-r
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -45,7 +43,6 @@ msgctxt ""
msgid "Re~place with"
msgstr "Reem~plazar con"
-#. onWg
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -55,7 +52,6 @@ msgctxt ""
msgid "Apply"
msgstr "Aplicar"
-#. `z0Z
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -65,7 +61,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. ]@Zo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -75,7 +70,6 @@ msgctxt ""
msgid "Font settings for HTML, Basic and SQL sources"
msgstr "Configuración de fuentes para HTML, Basic y orígenes de datos SQL"
-#. ?yp8
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -85,7 +79,6 @@ msgctxt ""
msgid "Fonts"
msgstr "Fuentes"
-#. A\x7
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -95,7 +88,6 @@ msgctxt ""
msgid "Non-proportional fonts only"
msgstr "Sólo fuentes no proporcionales"
-#. @jQo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -105,7 +97,6 @@ msgctxt ""
msgid "~Size"
msgstr "~Tamaño"
-#. pk(;
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -115,7 +106,6 @@ msgctxt ""
msgid "Always"
msgstr "Siempre"
-#. j/M%
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -125,7 +115,6 @@ msgctxt ""
msgid "Screen only"
msgstr "Sólo en pantalla"
-#. \8--
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -135,7 +124,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. NI?w
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -145,7 +133,6 @@ msgctxt ""
msgid "Replace with"
msgstr "Reemplazar con"
-#. F?eD
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -155,7 +142,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. ~0FQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -165,7 +151,6 @@ msgctxt ""
msgid "Default text direction"
msgstr "Dirección predeterminada del texto"
-#. obv%
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -175,7 +160,6 @@ msgctxt ""
msgid "~Left-to-right"
msgstr "De ~izquierda a derecha"
-#. 8hHh
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -185,7 +169,6 @@ msgctxt ""
msgid "~Right-to-left"
msgstr "De ~derecha a izquierda"
-#. M(q2
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -195,7 +178,6 @@ msgctxt ""
msgid "Sheet view"
msgstr "Vista de hoja"
-#. l@hP
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -205,7 +187,6 @@ msgctxt ""
msgid "Right-~to-left"
msgstr "De derecha ~a izquierda"
-#. %djQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -215,7 +196,6 @@ msgctxt ""
msgid "~Current document only"
msgstr "~Sólo para el documento actual"
-#. f`v;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -225,7 +205,6 @@ msgctxt ""
msgid "Color scheme"
msgstr "Esquema de colores"
-#. \BMw
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -235,7 +214,6 @@ msgctxt ""
msgid "Scheme"
msgstr "Esquema"
-#. Mn%,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -245,7 +223,6 @@ msgctxt ""
msgid "Save..."
msgstr "Guardar..."
-#. 6jmD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -255,7 +232,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. k+mp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -265,7 +241,6 @@ msgctxt ""
msgid "Custom colors"
msgstr "Colores personalizados"
-#. HJdj
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -275,7 +250,6 @@ msgctxt ""
msgid "On"
msgstr "Act."
-#. `?5*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -285,7 +259,6 @@ msgctxt ""
msgid "User interface elements"
msgstr "Elementos de la interfaz del usuario"
-#. K]2@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -295,7 +268,6 @@ msgctxt ""
msgid "Color setting"
msgstr "Config. del color"
-#. N-WH
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -305,7 +277,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista prelim."
-#. E!Sq
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -315,7 +286,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. nhy+
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -325,7 +295,6 @@ msgctxt ""
msgid "Document background"
msgstr "Fondo del documento"
-#. *~K*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -335,7 +304,6 @@ msgctxt ""
msgid "Text boundaries"
msgstr "Límites del texto"
-#. h]I.
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -345,7 +313,6 @@ msgctxt ""
msgid "Application background"
msgstr "Fondo de la aplicación"
-#. fDF;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -355,7 +322,6 @@ msgctxt ""
msgid "Object boundaries"
msgstr "Límites de los objetos"
-#. lbY~
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "Table boundaries"
msgstr "Límites de las tablas"
-#. G[YZ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -375,7 +340,6 @@ msgctxt ""
msgid "Font color"
msgstr "Color de la fuente"
-#. QhTp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -385,7 +349,6 @@ msgctxt ""
msgid "Unvisited links"
msgstr "Enlaces no visitados"
-#. +U],
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -395,7 +358,6 @@ msgctxt ""
msgid "Visited links"
msgstr "Enlaces visitados"
-#. )m1@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -405,7 +367,6 @@ msgctxt ""
msgid "AutoSpellcheck"
msgstr "Revisión ortográfica automática"
-#. h4Xu
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -415,7 +376,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr "Etiquetas inteligentes"
-#. hw3I
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -425,7 +385,6 @@ msgctxt ""
msgid "Shadows"
msgstr "Sombras"
-#. ]5`f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -435,7 +394,6 @@ msgctxt ""
msgid "Text Document"
msgstr "Documento de texto"
-#. 4s.*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -445,7 +403,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. g]9j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -455,7 +412,6 @@ msgctxt ""
msgid "Field shadings"
msgstr "Sombreado de los campos"
-#. VAu1
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -465,7 +421,6 @@ msgctxt ""
msgid "Index and table shadings"
msgstr "Sombreado de los índices y tablas"
-#. ~;h`
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -475,7 +430,6 @@ msgctxt ""
msgid "Script indicator"
msgstr "Indicador de escritura"
-#. HQ?J
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -485,7 +439,6 @@ msgctxt ""
msgid "Section boundaries"
msgstr "Límites de las secciones"
-#. i1zC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -495,7 +448,6 @@ msgctxt ""
msgid "Headers and Footer delimiter"
msgstr "Delimitador de encabezado y pie"
-#. b:?Q
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -505,7 +457,6 @@ msgctxt ""
msgid "Page and column breaks"
msgstr "Saltos de páginas y de columnas"
-#. 7a{;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -515,7 +466,6 @@ msgctxt ""
msgid "Direct cursor"
msgstr "Cursor directo"
-#. *a81
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -525,7 +475,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "Documento HTML"
-#. O72Y
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -535,7 +484,6 @@ msgctxt ""
msgid "SGML syntax highlighting"
msgstr "Resaltado de la sintaxis SGML"
-#. P:Mr
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -545,7 +493,6 @@ msgctxt ""
msgid "Comment highlighting"
msgstr "Resaltado de los comentarios"
-#. egNR
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -555,7 +502,6 @@ msgctxt ""
msgid "Keyword highlighting"
msgstr "Resaltado de las palabras claves"
-#. U^=j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -565,7 +511,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. #g.f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -575,7 +520,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "Hoja de cálculo"
-#. 7fQQ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -585,7 +529,6 @@ msgctxt ""
msgid "Grid lines"
msgstr "Líneas de la cuadrícula"
-#. |N03
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -595,7 +538,6 @@ msgctxt ""
msgid "Page breaks"
msgstr "Saltos de página"
-#. Z/`c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -605,7 +547,6 @@ msgctxt ""
msgid "Manual page breaks"
msgstr "Saltos de página manuales"
-#. c3J6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -615,7 +556,6 @@ msgctxt ""
msgid "Automatic page breaks"
msgstr "Saltos de página automáticos"
-#. b/b)
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -625,7 +565,6 @@ msgctxt ""
msgid "Detective"
msgstr "Detective"
-#. dN3T
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -635,7 +574,6 @@ msgctxt ""
msgid "Detective error"
msgstr "Error del detective"
-#. 3#:,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -645,7 +583,6 @@ msgctxt ""
msgid "References"
msgstr "Referencias"
-#. )+)m
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -655,7 +592,6 @@ msgctxt ""
msgid "Notes background"
msgstr "Fondo de los comentarios"
-#. xeXK
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -665,7 +601,6 @@ msgctxt ""
msgid "Drawing / Presentation"
msgstr "Dibujo / Presentación"
-#. 1~UG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -675,7 +610,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. eY-7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -685,7 +619,6 @@ msgctxt ""
msgid "Basic Syntax Highlighting"
msgstr "Resaltado de la sintaxis de Basic"
-#. E]Y%
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -695,7 +628,6 @@ msgctxt ""
msgid "Identifier"
msgstr "Identificador"
-#. ppBS
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -705,7 +637,6 @@ msgctxt ""
msgid "Comment"
msgstr "Comentario"
-#. VRZD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -715,7 +646,6 @@ msgctxt ""
msgid "Number"
msgstr "Número"
-#. TV`8
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -725,7 +655,6 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. G3n@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -735,7 +664,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operador"
-#. tS83
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -745,7 +673,6 @@ msgctxt ""
msgid "Reserved expression"
msgstr "Expresión reservada"
-#. TKG7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -755,7 +682,6 @@ msgctxt ""
msgid "Error"
msgstr "Error"
-#. /@+6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -765,7 +691,6 @@ msgctxt ""
msgid "SQL Syntax Highlighting"
msgstr "Resaltado de la sintaxis de SQL"
-#. rl/b
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -775,7 +700,6 @@ msgctxt ""
msgid "Identifier"
msgstr "Identificador"
-#. OEOC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -785,7 +709,6 @@ msgctxt ""
msgid "Number"
msgstr "Número"
-#. t/k;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -795,7 +718,6 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. (pRG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -805,7 +727,6 @@ msgctxt ""
msgid "Operator"
msgstr "Operador"
-#. O6.s
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -815,7 +736,6 @@ msgctxt ""
msgid "Keyword"
msgstr "Palabra clave"
-#. [?JL
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -825,7 +745,6 @@ msgctxt ""
msgid "Parameter"
msgstr "Parámetro"
-#. /Y[\
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -835,7 +754,6 @@ msgctxt ""
msgid "Comment"
msgstr "Comentario"
-#. vu[c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -845,7 +763,6 @@ msgctxt ""
msgid "Colorsettings of the Extensions"
msgstr "Configuraciones de color de las extensiones"
-#. \ig?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -855,7 +772,6 @@ msgctxt ""
msgid "Spell check highlighting"
msgstr "Resaltado de la revisión ortográfica"
-#. F@`=
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -865,7 +781,6 @@ msgctxt ""
msgid "Grammar check highlighting"
msgstr "Resaltado de la revisión gramatical"
-#. /7J?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -874,7 +789,6 @@ msgctxt ""
msgid "Do you really want to delete the color scheme?"
msgstr "¿Desea eliminar el esquema de colores?"
-#. A*.;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -883,7 +797,6 @@ msgctxt ""
msgid "Color Scheme Deletion"
msgstr "Eliminación del esquema de colores"
-#. xvT}
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -892,7 +805,6 @@ msgctxt ""
msgid "Save scheme"
msgstr "Guardar el esquema"
-#. [5mX
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -901,7 +813,6 @@ msgctxt ""
msgid "Name of color scheme"
msgstr "Nombre del esquema de colores"
-#. B}jR
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -911,7 +822,6 @@ msgctxt ""
msgid "Miscellaneous options"
msgstr "Otras opciones"
-#. =:Q$
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -921,7 +831,6 @@ msgctxt ""
msgid "Support ~assistive technology tools (program restart required)"
msgstr "Habilitar las herramientas de tecnología de ~asistencia (se debe reiniciar el programa)"
-#. WcI~
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -931,7 +840,6 @@ msgctxt ""
msgid "Use te~xt selection cursor in read-only text documents"
msgstr "Usar el cursor de selección en los documentos de te~xto de sólo lectura"
-#. C-dh
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -941,7 +849,6 @@ msgctxt ""
msgid "Allow animated ~graphics"
msgstr "Permitir ~imágenes animadas"
-#. kweM
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -951,7 +858,6 @@ msgctxt ""
msgid "Allow animated ~text"
msgstr "Permitir ~texto animado"
-#. =|Lk
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -961,7 +867,6 @@ msgctxt ""
msgid "~Help tips disappear after "
msgstr "Los consejos emer~gentes desaparecen tras "
-#. 4,NJ
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -971,7 +876,6 @@ msgctxt ""
msgid "seconds"
msgstr "segundos"
-#. GaI6
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -981,7 +885,6 @@ msgctxt ""
msgid "Options for high contrast appearance"
msgstr "Opciones para la apariencia de alto contraste"
-#. q`[|
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -991,7 +894,6 @@ msgctxt ""
msgid "Automatically ~detect high contrast mode of operating system"
msgstr "~Detectar automáticamente el modo de alto contraste del sistema operativo"
-#. gpk%
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1001,7 +903,6 @@ msgctxt ""
msgid "Use automatic font ~color for screen display"
msgstr "Usar el ~color de fuente automático para la visualización en pantalla"
-#. .Ij2
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1011,7 +912,6 @@ msgctxt ""
msgid "~Use system colors for page previews"
msgstr "~Usar los colores del sistema en la vista previa de las páginas"
-#. 2x9@
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1021,7 +921,6 @@ msgctxt ""
msgid "Connection pool"
msgstr "Persistencia de conexiones"
-#. 82!s
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1031,7 +930,6 @@ msgctxt ""
msgid "Connection pooling enabled"
msgstr "Activar conexiones persistentes"
-#. ZGsP
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1041,7 +939,6 @@ msgctxt ""
msgid "Drivers known in %PRODUCTNAME"
msgstr "Controladores registrados en %PRODUCTNAME"
-#. g/*C
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1051,7 +948,6 @@ msgctxt ""
msgid "Current driver:"
msgstr "Controlador actual:"
-#. ?/pU
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1061,7 +957,6 @@ msgctxt ""
msgid "Enable pooling for this driver"
msgstr "Activar conexiones persistentes para este controlador"
-#. DGgy
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1071,7 +966,6 @@ msgctxt ""
msgid "Timeout (seconds)"
msgstr "Tiempo de espera (segundos)"
-#. R]t8
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1081,7 +975,6 @@ msgctxt ""
msgid "Driver name"
msgstr "Nombre del controlador"
-#. UZ7P
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1091,7 +984,6 @@ msgctxt ""
msgid "Pool"
msgstr "Persistente"
-#. sJ!}
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1101,7 +993,6 @@ msgctxt ""
msgid "Timeout"
msgstr "Tiempo de espera"
-#. E8nj
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1111,7 +1002,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. Mjva
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1121,7 +1011,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. X6z@
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1131,7 +1020,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. h{?i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1141,7 +1029,6 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. 13lr
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1151,7 +1038,6 @@ msgctxt ""
msgid "Move Up"
msgstr "Hacia arriba"
-#. Kk;M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1161,7 +1047,6 @@ msgctxt ""
msgid "Move Down"
msgstr "Hacia abajo"
-#. A[h6
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1171,7 +1056,6 @@ msgctxt ""
msgid "~Back"
msgstr "~Volver"
-#. \4Fz
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1181,7 +1065,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr "~Obtener más diccionarios en línea..."
-#. UK\l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1191,7 +1074,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. =s*M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1201,7 +1083,6 @@ msgctxt ""
msgid "Spelling"
msgstr "Ortografía"
-#. vR0*
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1211,7 +1092,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Separación silábica"
-#. l^r:
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1221,7 +1101,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr "Sinónimos"
-#. oYol
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1231,7 +1110,6 @@ msgctxt ""
msgid "Grammar"
msgstr "Gramática"
-#. ld~b
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1240,7 +1118,6 @@ msgctxt ""
msgid "Edit Modules"
msgstr "Editar módulos"
-#. =*6X
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1250,7 +1127,6 @@ msgctxt ""
msgid "Characters before break"
msgstr "Caracteres antes de separar"
-#. l^`~
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1260,7 +1136,6 @@ msgctxt ""
msgid "Characters after break"
msgstr "Caracteres después de separar"
-#. %2Y3
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1270,7 +1145,6 @@ msgctxt ""
msgid "Minimal word length"
msgstr "Tamaño minímo de palabra"
-#. plc8
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1279,7 +1153,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Separación silábica"
-#. g)%k
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1289,7 +1162,6 @@ msgctxt ""
msgid "Writing aids"
msgstr "Asistencia a la escritura"
-#. ^2GQ
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1299,7 +1171,6 @@ msgctxt ""
msgid "Available language modules"
msgstr "Módulos de idioma disponibles"
-#. ;*(T
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1309,7 +1180,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~Editar..."
-#. 25qH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1319,7 +1189,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "Diccionarios definidos por el usuario"
-#. cF:O
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1329,7 +1198,6 @@ msgctxt ""
msgid "~New..."
msgstr "~Nuevo..."
-#. 5gA+
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1339,7 +1207,6 @@ msgctxt ""
msgid "Ed~it..."
msgstr "Ed~itar..."
-#. RImA
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1349,7 +1216,6 @@ msgctxt ""
msgid "~Delete"
msgstr "E~liminar"
-#. D?(.
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1359,7 +1225,6 @@ msgctxt ""
msgid "~Options"
msgstr "~Opciones"
-#. ~f/{
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1369,7 +1234,6 @@ msgctxt ""
msgid "Edi~t..."
msgstr "Edi~tar..."
-#. \0)i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1379,7 +1243,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr "~Obtener más diccionarios en línea..."
-#. qh4p
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1389,7 +1252,6 @@ msgctxt ""
msgid "Check uppercase words"
msgstr "Revisar palabras en mayúsculas"
-#. XFy]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1399,17 +1261,6 @@ msgctxt ""
msgid "Check words with numbers "
msgstr "Revisar palabras con números "
-#. b#n5
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SFXPAGE_LINGU\n"
-"STR_CAPITALIZATION\n"
-"string.text"
-msgid "Check capitalization"
-msgstr "Revisar el uso de mayúsculas y minúsculas"
-
-#. w+UH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1419,7 +1270,6 @@ msgctxt ""
msgid "Check special regions"
msgstr "Revisar regiones especiales"
-#. J@b?
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1429,7 +1279,6 @@ msgctxt ""
msgid "Check spelling as you type"
msgstr "Revisar la ortografía al escribir"
-#. !bY}
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1439,7 +1288,6 @@ msgctxt ""
msgid "Check grammar as you type"
msgstr "Revisar la gramática al escribir"
-#. vT^Y
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1449,7 +1297,6 @@ msgctxt ""
msgid "Minimal number of characters for hyphenation: "
msgstr "Cantidad mínima de caracteres para la separación silábica: "
-#. Jjl;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1459,7 +1306,6 @@ msgctxt ""
msgid "Characters before line break: "
msgstr "Caracteres antes del salto de línea: "
-#. $__I
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1469,7 +1315,6 @@ msgctxt ""
msgid "Characters after line break: "
msgstr "Caracteres después del salto de línea: "
-#. c_U/
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1479,7 +1324,6 @@ msgctxt ""
msgid "Hyphenate without inquiry"
msgstr "Separar en sílabas sin preguntar"
-#. iAE1
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1489,7 +1333,6 @@ msgctxt ""
msgid "Hyphenate special regions"
msgstr "Separación silábica en regiones especiales"
-#. m7s6
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1499,7 +1342,6 @@ msgctxt ""
msgid "Edit Available language modules"
msgstr "Editar los módulos de idioma disponibles"
-#. 7Q/l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1509,7 +1351,6 @@ msgctxt ""
msgid "Edit User-defined dictionaries"
msgstr "Editar los diccionarios definidos por el usuario"
-#. 7,P;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1519,7 +1360,6 @@ msgctxt ""
msgid "Edit Options"
msgstr "Editar las opciones"
-#. g|q^
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1528,7 +1368,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. jI9]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1537,7 +1376,6 @@ msgctxt ""
msgid "Do you want to delete the dictionary?"
msgstr "¿Desea eliminar el diccionario?"
-#. OP:W
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1546,7 +1384,6 @@ msgctxt ""
msgid "Save"
msgstr "Guardar"
-#. (Gqx
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1556,7 +1393,6 @@ msgctxt ""
msgid "Load"
msgstr "Cargar"
-#. oSZ,
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1566,7 +1402,6 @@ msgctxt ""
msgid "Load user-specific settings with the document"
msgstr "Cargar las configuraciones específicas del usuario junto con el documento"
-#. `@VC
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1576,7 +1411,6 @@ msgctxt ""
msgid "Load printer settings with the document"
msgstr "Cargar las configuraciones de la impresora junto con el documento"
-#. T^mK
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1586,7 +1420,6 @@ msgctxt ""
msgid "Save"
msgstr "Guardar"
-#. t%iL
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1596,7 +1429,6 @@ msgctxt ""
msgid "~Edit document properties before saving"
msgstr "~Editar las propiedades del documento antes de guardar"
-#. -[uP
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1606,7 +1438,6 @@ msgctxt ""
msgid "Al~ways create backup copy"
msgstr "~Siempre crear una copia de seguridad"
-#. 0j[z
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1616,7 +1447,6 @@ msgctxt ""
msgid "Save ~AutoRecovery information every"
msgstr "Guardar datos de ~recuperación automática cada"
-#. ;W1!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1626,7 +1456,6 @@ msgctxt ""
msgid "Minutes"
msgstr "Minutos"
-#. nUa=
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1636,7 +1465,6 @@ msgctxt ""
msgid "Save URLs relative to file system"
msgstr "Guardar los URL en forma relativa al sistema de archivos"
-#. V)$!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1646,7 +1474,6 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr "Guardar los URL en forma relativa a Internet"
-#. CmX8
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1656,7 +1483,6 @@ msgctxt ""
msgid "Default file format and ODF settings"
msgstr "Formato predeterminado de archivo y opciones ODF"
-#. %U6k
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1666,7 +1492,6 @@ msgctxt ""
msgid "ODF format version"
msgstr "Versión del formato ODF"
-#. Lr4b
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1676,7 +1501,6 @@ msgctxt ""
msgid "1.0/1.1"
msgstr "1.0/1.1"
-#. t.nq
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1686,7 +1510,6 @@ msgctxt ""
msgid "1.2"
msgstr "1.2"
-#. p7hQ
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1696,7 +1519,6 @@ msgctxt ""
msgid "1.2 Extended (compat mode)"
msgstr "1.2 extendido (modo de compatibilidad)"
-#. ?(b+
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1706,7 +1528,6 @@ msgctxt ""
msgid "1.2 Extended (recommended)"
msgstr "1.2 extendido (recomendado)"
-#. q7Qe
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1716,7 +1537,6 @@ msgctxt ""
msgid "Size optimization for ODF format"
msgstr "Optimización del tamaño para el formato ODF"
-#. S:3M
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1726,7 +1546,6 @@ msgctxt ""
msgid "Warn when not saving in ODF or default format"
msgstr "Advertir cuando no se guarde en ODF ni en el formato predeterminado"
-#. ;w%I
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1736,7 +1555,6 @@ msgctxt ""
msgid "D~ocument type"
msgstr "Tipo de d~ocumento"
-#. ~PfO
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1746,7 +1564,6 @@ msgctxt ""
msgid "Always sa~ve as"
msgstr "Siempre guar~dar como"
-#. TQqH
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1756,7 +1573,6 @@ msgctxt ""
msgid "Text document"
msgstr "Documento de texto"
-#. F*A7
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1766,7 +1582,6 @@ msgctxt ""
msgid "HTML document"
msgstr "Documento HTML"
-#. 43]|
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1776,7 +1591,6 @@ msgctxt ""
msgid "Master document"
msgstr "Documento maestro"
-#. *6i)
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1786,7 +1600,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "Hoja de cálculo"
-#. WUb1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1796,7 +1609,6 @@ msgctxt ""
msgid "Presentation"
msgstr "Presentación"
-#. CdO1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1806,7 +1618,6 @@ msgctxt ""
msgid "Drawing"
msgstr "Dibujo"
-#. %x|?
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1817,7 +1628,6 @@ msgid "Formula"
msgstr "Fórmula"
#. EN-US, the term 'extended' must not be translated.
-#. l^u*
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1827,7 +1637,6 @@ msgctxt ""
msgid "Not using ODF 1.2 Extended may cause information to be lost."
msgstr "Puede perderse información al no utilizar ODF 1.2 Extendido."
-#. Ls=.
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1837,7 +1646,6 @@ msgctxt ""
msgid "Using \"%1\" as default file format may cause information loss.\n"
msgstr "La utilización de \"%1\" como formato de archivo predeterminado puede causar pérdidas de información.\n"
-#. zgR5
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1847,7 +1655,6 @@ msgctxt ""
msgid "Size ~1"
msgstr "Tamaño ~1"
-#. PO2R
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1857,7 +1664,6 @@ msgctxt ""
msgid "Size ~2"
msgstr "Tamaño ~2"
-#. 3g$2
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1867,7 +1673,6 @@ msgctxt ""
msgid "Size ~3"
msgstr "Tamaño ~3"
-#. 0r4N
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1877,7 +1682,6 @@ msgctxt ""
msgid "Size ~4"
msgstr "Tamaño ~4"
-#. MJC6
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1887,7 +1691,6 @@ msgctxt ""
msgid "Size ~5"
msgstr "Tamaño ~5"
-#. mreQ
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1897,7 +1700,6 @@ msgctxt ""
msgid "Size ~6"
msgstr "Tamaño ~6"
-#. VcR9
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1907,7 +1709,6 @@ msgctxt ""
msgid "Size ~7"
msgstr "Tamaño ~7"
-#. C%pS
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1917,7 +1718,6 @@ msgctxt ""
msgid "Font sizes"
msgstr "Tamaños de fuentes"
-#. |[RB
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1927,7 +1727,6 @@ msgctxt ""
msgid "Import"
msgstr "Importar"
-#. bNGp
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1937,7 +1736,6 @@ msgctxt ""
msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr "~Usar la conf. regional '%ENGLISHUSLOCALE' para los números"
-#. TxmA
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1947,7 +1745,6 @@ msgctxt ""
msgid "~Import unknown HTML tags as fields"
msgstr "~Importar etiquetas HTML desconocidas como campos"
-#. MPj\
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1957,7 +1754,6 @@ msgctxt ""
msgid "Ignore ~font settings"
msgstr "Ignorar las configuraciones de ~fuente"
-#. GM(I
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1967,7 +1763,6 @@ msgctxt ""
msgid "Export"
msgstr "Exportar"
-#. ABpI
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1976,7 +1771,6 @@ msgctxt ""
msgid "Display ~warning"
msgstr "Mostrar ~advertencia"
-#. ^yzu
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1985,7 +1779,6 @@ msgctxt ""
msgid "~Print layout"
msgstr "Diseño de ~impresión"
-#. bmJi
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1994,7 +1787,6 @@ msgctxt ""
msgid "~Copy local graphics to Internet"
msgstr "~Copiar las imágenes locales a Internet"
-#. *6ta
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2003,7 +1795,6 @@ msgctxt ""
msgid "Character set"
msgstr "Conjunto de caracteres"
-#. QsDh
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2013,7 +1804,6 @@ msgctxt ""
msgid "~Company"
msgstr "~Empresa"
-#. 5~=-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2023,7 +1813,6 @@ msgctxt ""
msgid "First/Last ~name/Initials"
msgstr "~Nombre/Apellidos/Iniciales"
-#. G#cq
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2033,7 +1822,6 @@ msgctxt ""
msgid "Last Name/First name/Father's name/Initials"
msgstr "Apellido/Nombre/Nombre del padre/Iniciales"
-#. xakm
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2043,7 +1831,6 @@ msgctxt ""
msgid "Last/First ~name/Initials"
msgstr "~Apellido/Nombre/Iniciales"
-#. /2XD
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2053,7 +1840,6 @@ msgctxt ""
msgid "~Street"
msgstr "~Calle"
-#. D+rO
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2063,7 +1849,6 @@ msgctxt ""
msgid "Street/Apartment number"
msgstr "Calle/Número de departamento"
-#. O0Ki
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2073,7 +1858,6 @@ msgctxt ""
msgid "Zip/City"
msgstr "C.P./Ciudad"
-#. Uao{
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2083,7 +1867,6 @@ msgctxt ""
msgid "City/State/Zip"
msgstr "Ciudad/País/CP"
-#. oyb1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2093,7 +1876,6 @@ msgctxt ""
msgid "Country/Region"
msgstr "País/Región"
-#. ?D$O
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2103,7 +1885,6 @@ msgctxt ""
msgid "~Title/Position"
msgstr "~Título/Puesto"
-#. [ED-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2113,7 +1894,6 @@ msgctxt ""
msgid "Tel. (Home/Work)"
msgstr "Teléfono (Casa/Trabajo)"
-#. o/5*
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2123,7 +1903,6 @@ msgctxt ""
msgid "Fa~x / E-mail"
msgstr "Fa~x / E-mail"
-#. 6dG1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2133,7 +1912,6 @@ msgctxt ""
msgid "Address "
msgstr "Dirección "
-#. :M3h
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2143,7 +1921,6 @@ msgctxt ""
msgid "Use data for document properties"
msgstr "Usar los datos de las propiedades del documento"
-#. =jqL
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2152,7 +1929,6 @@ msgctxt ""
msgid "User Data"
msgstr "Datos del usuario"
-#. +fXe
#: readonlyimage.src
msgctxt ""
"readonlyimage.src\n"
@@ -2161,7 +1937,6 @@ msgctxt ""
msgid "This setting is protected by the Administrator"
msgstr "Esta opción está protegida por el administrador"
-#. Eev*
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2171,7 +1946,6 @@ msgctxt ""
msgid "Security warnings"
msgstr "Advertencias de seguridad"
-#. 8A_[
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2181,7 +1955,6 @@ msgctxt ""
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr "Advertir si el documento contiene cambios grabados, versiones, información oculta o notas:"
-#. B4O_
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2191,7 +1964,6 @@ msgctxt ""
msgid "When saving or sending"
msgstr "Al guardar o enviar"
-#. shvw
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2201,7 +1973,6 @@ msgctxt ""
msgid "When signing"
msgstr "Al firmar"
-#. |U;4
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2211,7 +1982,6 @@ msgctxt ""
msgid "When printing"
msgstr "Al imprimir"
-#. ccZm
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2221,7 +1991,6 @@ msgctxt ""
msgid "When creating PDF files"
msgstr "Al crear archivos PDF"
-#. kd=Z
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2231,7 +2000,6 @@ msgctxt ""
msgid "Security options"
msgstr "Opciones de seguridad"
-#. GF6W
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2241,7 +2009,6 @@ msgctxt ""
msgid "Remove personal information on saving"
msgstr "Eliminar la información personal al guardar"
-#. fJp-
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2251,7 +2018,6 @@ msgctxt ""
msgid "Recommend password protection on saving"
msgstr "Recomiendar protección con contraseña al guardar"
-#. ;MC6
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2261,7 +2027,6 @@ msgctxt ""
msgid "Ctrl-click required to follow hyperlinks"
msgstr "Requerir Ctrl-clic para visitar hiperenlaces"
-#. K2#U
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2270,7 +2035,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr "Opciones de seguridad y alertas"
-#. Cp@J
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2280,7 +2044,6 @@ msgctxt ""
msgid "Chart colors"
msgstr "Colores del gráfico"
-#. ;Rls
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2290,7 +2053,6 @@ msgctxt ""
msgid "Color table"
msgstr "Tabla de color"
-#. 0\bZ
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2300,7 +2062,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. }Jrr
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2310,7 +2071,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eliminar"
-#. VVnT
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2320,7 +2080,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Predeterminado"
-#. YU9]
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2329,7 +2088,6 @@ msgctxt ""
msgid "Default Colors"
msgstr "Colores predeterminados"
-#. mPoM
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2338,7 +2096,6 @@ msgctxt ""
msgid "Data Series $(ROW)"
msgstr "Series de datos $(ROW)"
-#. bo,w
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2347,7 +2104,6 @@ msgctxt ""
msgid "Do you really want to delete the chart color?"
msgstr "¿Desea eliminar el color del gráfico?"
-#. UU#8
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2356,7 +2112,6 @@ msgctxt ""
msgid "Chart Color Deletion"
msgstr "Eliminación del color del gráfico"
-#. |FlO
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2366,7 +2121,6 @@ msgctxt ""
msgid "Registered name"
msgstr "Nombre registrado"
-#. }O[-
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2376,7 +2130,6 @@ msgctxt ""
msgid "Database file"
msgstr "Archivo de base de datos"
-#. ?),S
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2386,7 +2139,6 @@ msgctxt ""
msgid "~New..."
msgstr "~Nuevo..."
-#. wuoU
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2396,7 +2148,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~Editar..."
-#. `{zb
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2406,7 +2157,6 @@ msgctxt ""
msgid "~Delete"
msgstr "E~liminar"
-#. 0)Fh
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2416,7 +2166,6 @@ msgctxt ""
msgid "Registered databases"
msgstr "Bases de datos registradas"
-#. =ae0
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2425,7 +2174,6 @@ msgctxt ""
msgid "Registered databases"
msgstr "Bases de datos registradas"
-#. hZiT
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2435,7 +2183,6 @@ msgctxt ""
msgid "Treat as equal"
msgstr "Tratar como si fueran iguales"
-#. KmWi
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2445,7 +2192,6 @@ msgctxt ""
msgid "~uppercase/lowercase"
msgstr "~mayúsculas/minúsculas"
-#. +88#
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2455,7 +2201,6 @@ msgctxt ""
msgid "~full-width/half-width forms"
msgstr "formas de ancho ~normal/ancho medio"
-#. Yct?
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2465,7 +2210,6 @@ msgctxt ""
msgid "~hiragana/katakana"
msgstr "~hiragana/katakana"
-#. wZLN
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2475,7 +2219,6 @@ msgctxt ""
msgid "~contractions (yo-on, sokuon)"
msgstr "~contracciones (yo-on, sokuon)"
-#. 89|:
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2485,7 +2228,6 @@ msgctxt ""
msgid "~minus/dash/cho-on"
msgstr "~menos/raya/cho-on"
-#. :$;B
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2495,7 +2237,6 @@ msgctxt ""
msgid "'re~peat character' marks"
msgstr "marcas de 're~petición de carácter'"
-#. Ll#h
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2505,7 +2246,6 @@ msgctxt ""
msgid "~variant-form kanji (itaiji)"
msgstr "forma ~variante kanji (itaiji)"
-#. RLD6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2515,7 +2255,6 @@ msgctxt ""
msgid "~old Kana forms"
msgstr "~antiguas formas Kana"
-#. ?w}z
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2525,7 +2264,6 @@ msgctxt ""
msgid "~di/zi, du/zu"
msgstr "~di/zi, du/zu"
-#. 3X4L
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2535,7 +2273,6 @@ msgctxt ""
msgid "~ba/va, ha/fa"
msgstr "~ba/va, ha/fa"
-#. 3HC6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2545,7 +2282,6 @@ msgctxt ""
msgid "~tsi/thi/chi, dhi/zi"
msgstr "~tsi/thi/chi, dhi/zi"
-#. sU9=
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2555,7 +2291,6 @@ msgctxt ""
msgid "h~yu/fyu, byu/vyu"
msgstr "h~yu/fyu, byu/vyu"
-#. rauS
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2565,7 +2300,6 @@ msgctxt ""
msgid "~se/she, ze/je"
msgstr "~se/she, ze/je"
-#. N7LY
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2575,7 +2309,6 @@ msgctxt ""
msgid "~ia/iya (piano/piyano)"
msgstr "~ia/iya (piano/piyano)"
-#. ,odo
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2585,7 +2318,6 @@ msgctxt ""
msgid "~ki/ku (tekisuto/tekusuto)"
msgstr "~ki/ku (tekisuto/tekusuto)"
-#. Sz::
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2595,7 +2327,6 @@ msgctxt ""
msgid "Prolon~ged vowels (ka-/kaa)"
msgstr "Vocales prolon~gadas (ka-/kaa)"
-#. *kAs
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2605,7 +2336,6 @@ msgctxt ""
msgid "Ignore"
msgstr "Ignorar"
-#. Q([|
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2615,7 +2345,6 @@ msgctxt ""
msgid "Pu~nctuation characters"
msgstr "Caracteres de pu~ntuación"
-#. j8v1
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2625,7 +2354,6 @@ msgctxt ""
msgid "~Whitespace characters"
msgstr "Caracteres de espacio en ~blanco"
-#. +FWd
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2635,7 +2363,6 @@ msgctxt ""
msgid "Midd~le dots"
msgstr "P~untos centrales"
-#. \.Gn
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2644,7 +2371,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "Buscar en japonés"
-#. FaD!
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2654,7 +2380,6 @@ msgctxt ""
msgid "Online Update Options"
msgstr "Opciones de actualización en línea"
-#. I9Np
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2664,7 +2389,6 @@ msgctxt ""
msgid "~Check for updates automatically"
msgstr "~Buscar actualizaciones automáticamente"
-#. 3?@D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2674,7 +2398,6 @@ msgctxt ""
msgid "Every Da~y"
msgstr "Ca~da día"
-#. ul)D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2684,7 +2407,6 @@ msgctxt ""
msgid "Every ~Week"
msgstr "Cada ~semana"
-#. #rsS
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2694,7 +2416,6 @@ msgctxt ""
msgid "Every ~Month"
msgstr "Cada ~mes"
-#. doG(
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2704,7 +2425,6 @@ msgctxt ""
msgid "Last checked: %DATE%, %TIME%"
msgstr "Última búsqueda: %DATE%, %TIME%"
-#. Oqg^
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2714,7 +2434,6 @@ msgctxt ""
msgid "Check ~now"
msgstr "Buscar a~hora"
-#. 3a_)
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2724,7 +2443,6 @@ msgctxt ""
msgid "~Download updates automatically"
msgstr "~Descargar actualizaciones automáticamente"
-#. RhY~
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2734,7 +2452,6 @@ msgctxt ""
msgid "Download destination:"
msgstr "Destino de la descarga:"
-#. EF+I
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2744,7 +2461,6 @@ msgctxt ""
msgid "Ch~ange..."
msgstr "Ca~mbiar..."
-#. xH/+
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2754,7 +2470,6 @@ msgctxt ""
msgid "Last checked: Not yet"
msgstr "Última búsqueda: Aún no realizada"
-#. (/bd
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2763,7 +2478,6 @@ msgctxt ""
msgid "OnlineUpdate"
msgstr "Actualización en línea"
-#. ,M0q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2773,7 +2487,6 @@ msgctxt ""
msgid "~Revert"
msgstr "~Revertir"
-#. _SYW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2783,7 +2496,6 @@ msgctxt ""
msgid "The selected module could not be loaded."
msgstr "No se pudo cargar el módulo seleccionado."
-#. ukL;
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2792,7 +2504,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. !vl4
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2802,7 +2513,6 @@ msgctxt ""
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. BlF]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2812,7 +2522,6 @@ msgctxt ""
msgid "User Data"
msgstr "Datos del usuario"
-#. ,::m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2822,7 +2531,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. hFl~
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2832,7 +2540,6 @@ msgctxt ""
msgid "Memory"
msgstr "Memoria"
-#. gG;B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2842,7 +2549,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. {Joa
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2852,7 +2558,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. /;d:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2862,7 +2567,6 @@ msgctxt ""
msgid "Paths"
msgstr "Rutas"
-#. `PF{
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2872,7 +2576,6 @@ msgctxt ""
msgid "Colors"
msgstr "Colores"
-#. ]X~[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2882,7 +2585,6 @@ msgctxt ""
msgid "Fonts"
msgstr "Fuentes"
-#. 0@56
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2892,7 +2594,6 @@ msgctxt ""
msgid "Security"
msgstr "Seguridad"
-#. HSPe
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2902,7 +2603,6 @@ msgctxt ""
msgid "Appearance"
msgstr "Apariencia"
-#. Ek#u
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2912,7 +2612,6 @@ msgctxt ""
msgid "Accessibility"
msgstr "Accesibilidad"
-#. YkY/
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2920,9 +2619,8 @@ msgctxt ""
"13\n"
"itemlist.text"
msgid "Advanced"
-msgstr ""
+msgstr "Avanzado"
-#. rwW`
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2932,7 +2630,6 @@ msgctxt ""
msgid "Online Update"
msgstr "Actualización en línea"
-#. B]l]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2942,7 +2639,6 @@ msgctxt ""
msgid "Language Settings"
msgstr "Configuración de idioma"
-#. lOH[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2952,7 +2648,6 @@ msgctxt ""
msgid "Languages"
msgstr "Idiomas"
-#. F=\y
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2962,7 +2657,6 @@ msgctxt ""
msgid "Writing Aids"
msgstr "Asistencia a la escritura"
-#. (*pv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2972,7 +2666,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "Búsqueda en Japonés"
-#. Hr[3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2982,7 +2675,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr "Diseño asiático"
-#. 0@QW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2992,7 +2684,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr "Disposición compleja de texto"
-#. 6j_?
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3002,7 +2693,6 @@ msgctxt ""
msgid "Internet"
msgstr "Internet"
-#. MRTU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3012,7 +2702,6 @@ msgctxt ""
msgid "Proxy"
msgstr "Proxy"
-#. HxUr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3022,7 +2711,6 @@ msgctxt ""
msgid "E-mail"
msgstr "Correo electrónico"
-#. :|lO
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3032,7 +2720,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr "Complemento del navegador"
-#. jB7_
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3042,7 +2729,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
-#. Ez,w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3052,7 +2738,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. cj#h
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3062,7 +2747,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. z4hb
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3072,7 +2756,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr "Ayudas de formato"
-#. kX$3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3082,7 +2765,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. l.2B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3092,7 +2774,6 @@ msgctxt ""
msgid "Basic Fonts (Western)"
msgstr "Fuentes básicas (occidentales)"
-#. _UXE
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3102,7 +2783,6 @@ msgctxt ""
msgid "Basic Fonts (Asian)"
msgstr "Fuentes básicas (asiáticas)"
-#. YX:%
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3112,7 +2792,6 @@ msgctxt ""
msgid "Basic Fonts (CTL)"
msgstr "Fuentes básicas (CTL)"
-#. mP=E
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3122,7 +2801,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. H2Y#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3132,7 +2810,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. 3SB_
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3142,7 +2819,6 @@ msgctxt ""
msgid "Changes"
msgstr "Cambios"
-#. $lFu
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3152,7 +2828,6 @@ msgctxt ""
msgid "Comparison"
msgstr "Comparación"
-#. aB\D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3162,7 +2837,6 @@ msgctxt ""
msgid "Compatibility"
msgstr "Compatibilidad"
-#. `=]l
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3172,7 +2846,6 @@ msgctxt ""
msgid "AutoCaption"
msgstr "Leyenda automática"
-#. `J:Q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3182,7 +2855,6 @@ msgctxt ""
msgid "Mail Merge E-mail"
msgstr "Correo electrónico de Combinar correspondencia"
-#. 9dn(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3192,7 +2864,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME Writer/Web"
-#. GnRw
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3202,7 +2873,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. Nv%(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3212,7 +2882,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr "Ayudas de formato"
-#. XWQ[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3222,7 +2891,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. :B|!
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3232,7 +2900,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. Romr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3242,7 +2909,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. [K)m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3252,7 +2918,6 @@ msgctxt ""
msgid "Background"
msgstr "Fondo"
-#. +iBl
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3262,7 +2927,6 @@ msgctxt ""
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME Math"
-#. +uDg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3272,7 +2936,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. 5K-k
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3282,7 +2945,6 @@ msgctxt ""
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc"
-#. H9xU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3292,7 +2954,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. NU%N
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3302,7 +2963,6 @@ msgctxt ""
msgid "Defaults"
msgstr "Predeterminados"
-#. N|0.
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3312,7 +2972,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. kG\1
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3322,7 +2981,6 @@ msgctxt ""
msgid "International"
msgstr "Internacional"
-#. \$l3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3332,7 +2990,6 @@ msgctxt ""
msgid "Calculate"
msgstr "Calcular"
-#. Sk`5
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3342,7 +2999,6 @@ msgctxt ""
msgid "Formula"
msgstr "Fórmula"
-#. 3SG+
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3352,7 +3008,6 @@ msgctxt ""
msgid "Sort Lists"
msgstr "Listas de ordenamiento"
-#. W6fZ
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3362,7 +3017,6 @@ msgctxt ""
msgid "Changes"
msgstr "Cambios"
-#. T9C=
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3372,7 +3026,6 @@ msgctxt ""
msgid "Compatibility"
msgstr "Compatibilidad"
-#. _W9Z
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3382,7 +3035,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. ^xQ(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3392,7 +3044,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. j\gR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3402,7 +3053,6 @@ msgctxt ""
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME Impress"
-#. /sAH
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3412,7 +3062,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. nUS2
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3422,7 +3071,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. ,J0#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3432,7 +3080,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. !q@W
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3442,7 +3089,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. GPOG
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3452,7 +3098,6 @@ msgctxt ""
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME Draw"
-#. cV2r
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3462,7 +3107,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. xmuL
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3472,7 +3116,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. m!qY
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3482,7 +3125,6 @@ msgctxt ""
msgid "Grid"
msgstr "Cuadrícula"
-#. mP5D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3492,7 +3134,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. 9)sB
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3502,7 +3143,6 @@ msgctxt ""
msgid "Charts"
msgstr "Gráficos"
-#. `r:w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3512,7 +3152,6 @@ msgctxt ""
msgid "Default Colors"
msgstr "Colores predeterminados"
-#. cKkg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3522,7 +3161,6 @@ msgctxt ""
msgid "Load/Save"
msgstr "Cargar/Guardar"
-#. m?g:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3532,7 +3170,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. 4+LR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3542,7 +3179,6 @@ msgctxt ""
msgid "VBA Properties"
msgstr "Propiedades de VBA"
-#. WbyR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3552,7 +3188,6 @@ msgctxt ""
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#. OoXN
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3562,7 +3197,6 @@ msgctxt ""
msgid "HTML Compatibility"
msgstr "Compatibilidad HTML"
-#. #={;
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3572,7 +3206,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
-#. [;2j
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3582,7 +3215,6 @@ msgctxt ""
msgid "Connections"
msgstr "Conexiones"
-#. xR[v
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3592,7 +3224,6 @@ msgctxt ""
msgid "Databases"
msgstr "Bases de datos"
-#. 5!e[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3601,7 +3232,6 @@ msgctxt ""
msgid "Site certificates"
msgstr "Certificados de sitios"
-#. lwlv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3610,7 +3240,6 @@ msgctxt ""
msgid "Personal certificates"
msgstr "Certificados personales"
-#. _aZX
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3620,7 +3249,6 @@ msgctxt ""
msgid "Kerning"
msgstr "Ajuste de espaciado entre caracteres"
-#. eVTz
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3630,7 +3258,6 @@ msgctxt ""
msgid "~Western characters only"
msgstr "Sólo en caracteres ~occidentales"
-#. 2eI_
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3640,7 +3267,6 @@ msgctxt ""
msgid "Western ~text and Asian punctuation"
msgstr "~Texto occidental y puntuación asiática"
-#. ApQn
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3650,7 +3276,6 @@ msgctxt ""
msgid "Character spacing"
msgstr "Espaciado entre caracteres"
-#. Yn]P
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3660,7 +3285,6 @@ msgctxt ""
msgid "~No compression"
msgstr "~Sin compresión"
-#. /.mE
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3670,7 +3294,6 @@ msgctxt ""
msgid "~Compress punctuation only"
msgstr "~Comprimir sólo la puntuación"
-#. `Al!
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3680,7 +3303,6 @@ msgctxt ""
msgid "Compress ~punctuation and Japanese Kana"
msgstr "Comprimir la ~puntuación y Kana japonés"
-#. 4@Z{
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3690,7 +3312,6 @@ msgctxt ""
msgid "First and last characters"
msgstr "Primer y último carácter"
-#. Ur]C
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3700,7 +3321,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Idioma"
-#. fqOF
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3710,7 +3330,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Predeterminado"
-#. gT-)
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3720,7 +3339,6 @@ msgctxt ""
msgid "Not at start of line:"
msgstr "No al principio de la línea"
-#. aB5-
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3730,7 +3348,6 @@ msgctxt ""
msgid "Not at end of line:"
msgstr "No al final de la línea"
-#. I08U
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3740,7 +3357,6 @@ msgctxt ""
msgid "Without user-defined line break symbols"
msgstr "Sin símbolos de salto de línea definidos por el usuario"
-#. ^Bw~
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3749,7 +3365,6 @@ msgctxt ""
msgid "Proxy"
msgstr "Proxy"
-#. ]I@@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3759,7 +3374,6 @@ msgctxt ""
msgid "Java options"
msgstr "Opciones de Java"
-#. ^KHF
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3769,7 +3383,6 @@ msgctxt ""
msgid "~Use a Java runtime environment"
msgstr "~Usar un entorno de ejecución de Java"
-#. PmPu
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3779,7 +3392,6 @@ msgctxt ""
msgid "~Java runtime environments (JRE) already installed:"
msgstr "Entornos de ejecución de ~Java (JRE) instalados:"
-#. J5Cr
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3789,7 +3401,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. u_S0
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3799,7 +3410,6 @@ msgctxt ""
msgid "~Parameters..."
msgstr "~Parámetros..."
-#. Oo.1
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3809,7 +3419,6 @@ msgctxt ""
msgid "~Class Path..."
msgstr "Ruta de ~clase..."
-#. V?5n
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3817,9 +3426,8 @@ msgctxt ""
"FL_EXPERIMENTAL\n"
"fixedline.text"
msgid "Optional (unstable) options"
-msgstr ""
+msgstr "Opciones inestables (opcionales)"
-#. dPu2
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3827,9 +3435,8 @@ msgctxt ""
"CB_EXPERIMENTAL\n"
"checkbox.text"
msgid "Enable experimental features"
-msgstr ""
+msgstr "Activar las características experimentales"
-#. AiLT
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3837,9 +3444,8 @@ msgctxt ""
"CB_MACRO\n"
"checkbox.text"
msgid "Enable macro recording"
-msgstr ""
+msgstr "Activar la grabación de macros"
-#. u7\^
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3849,7 +3455,6 @@ msgctxt ""
msgid "Location: "
msgstr "Ubicación: "
-#. AM%f
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3859,7 +3464,6 @@ msgctxt ""
msgid "with accessibility support"
msgstr "con soporte de accesibilidad"
-#. oER6
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3869,7 +3473,6 @@ msgctxt ""
msgid "Select a Java Runtime Environment"
msgstr "Seleccionar un entorno de ejecución de Java"
-#. ?gY7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3879,7 +3482,6 @@ msgctxt ""
msgid "Vendor"
msgstr "Fabricante"
-#. WX4e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3889,7 +3491,6 @@ msgctxt ""
msgid "Version"
msgstr "Versión"
-#. Cp`H
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3899,9 +3500,7 @@ msgctxt ""
msgid "Features"
msgstr "Características"
-#. -z1]
#: optjava.src
-#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXPAGE_OPTIONS_JAVA\n"
@@ -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 "~Parámetro de inicio de Java"
-#. mfGf
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3929,7 +3526,6 @@ msgctxt ""
msgid "~Assign"
msgstr "~Asignar"
-#. 80/}
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3939,7 +3535,6 @@ msgctxt ""
msgid "Assig~ned start parameters"
msgstr "Parámetros de inicio asig~nados"
-#. Cp@,
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3949,7 +3544,6 @@ msgctxt ""
msgid "For example: -Dmyprop=c:\\program files\\java"
msgstr "Por ejemplo: -Dmyprop=c:\\program files\\java"
-#. K?)3
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3959,7 +3553,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eliminar"
-#. kVa7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3968,7 +3561,6 @@ msgctxt ""
msgid "Java Start Parameters"
msgstr "Parámetros de inicio de Java"
-#. gB:p
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3978,7 +3570,6 @@ msgctxt ""
msgid "A~ssigned folders and archives"
msgstr "Carpetas y paquetes a~signados"
-#. \Hm@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3988,7 +3579,6 @@ msgctxt ""
msgid "~Add Archive..."
msgstr "~Añadir paquete..."
-#. `*Vb
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3998,7 +3588,6 @@ msgctxt ""
msgid "Add ~Folder"
msgstr "Añadir ~carpeta"
-#. =A:e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4008,7 +3597,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eliminar"
-#. ]WhV
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4017,7 +3605,6 @@ msgctxt ""
msgid "Class Path"
msgstr "Ruta de clase"
-#. ;DoI
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4030,7 +3617,6 @@ msgstr ""
"La carpeta seleccionada no contiene un entorno de ejecución de Java.\n"
"Seleccione una carpeta diferente."
-#. m+7R
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4043,20 +3629,6 @@ msgstr ""
"La versión del entorno de ejecución de Java seleccionado no es la requerida.\n"
"Seleccione una carpeta diferente."
-#. 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 ""
-"Debe reiniciar %PRODUCTNAME para que el entorno de ejecución de Java seleccionado funcione adecuadamente.\n"
-"Reinicie %PRODUCTNAME ahora."
-
-#. I?^k
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4069,7 +3641,6 @@ msgstr ""
"Necesita reiniciar %PRODUCTNAME para que los valores nuevos o modificados surtan efecto.\n"
"Reinicie %PRODUCTNAME ahora."
-#. !j-G
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4079,7 +3650,6 @@ msgctxt ""
msgid "~Database file"
msgstr "Archivo de ~base de datos"
-#. =w2.
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4089,7 +3659,6 @@ msgctxt ""
msgid "~Browse..."
msgstr "~Examinar..."
-#. X\SR
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4099,7 +3668,6 @@ msgctxt ""
msgid "Registered ~name"
msgstr "~Nombre registrado"
-#. iuUJ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4109,7 +3677,6 @@ msgctxt ""
msgid "Edit Database Link"
msgstr "Editar el enlace a la base de datos"
-#. }?4O
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4119,7 +3686,6 @@ msgctxt ""
msgid "Create Database Link"
msgstr "Crear un enlace a la base de datos"
-#. ^+uQ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4134,7 +3700,6 @@ msgstr ""
"$file$\n"
"no existe"
-#. ^gHK
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4149,7 +3714,6 @@ msgstr ""
"$file$\n"
"no existe en el sistema de archivos local"
-#. q3PM
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4162,7 +3726,6 @@ msgstr ""
"El nombre '$file$' ya se utilizó para otra base de datos.\n"
"Elija un nombre diferente."
-#. a%b8
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4171,7 +3734,6 @@ msgctxt ""
msgid "Do you want to delete the entry?"
msgstr "¿Quiere eliminar esta entrada?"
-#. p~{X
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4181,7 +3743,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. uq/K
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4191,7 +3752,6 @@ msgctxt ""
msgid "Path"
msgstr "Ruta"
-#. fg$t
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4201,7 +3761,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~Editar..."
-#. d=*h
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4211,7 +3770,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Predeterminado"
-#. Z}*7
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4221,7 +3779,6 @@ msgctxt ""
msgid "Paths used by %PRODUCTNAME"
msgstr "Rutas que utiliza %PRODUCTNAME"
-#. Nwsb
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4231,7 +3788,6 @@ msgctxt ""
msgid "Edit Paths: %1"
msgstr "Editar rutas: %1"
-#. 0P6,
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4240,7 +3796,6 @@ msgctxt ""
msgid "Paths"
msgstr "Rutas"
-#. TOsx
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4253,7 +3808,6 @@ msgstr ""
"Los directorios de configuración y de correo deben ser distintos\n"
"Elija una nueva ruta."
-#. a%Fs
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4262,7 +3816,6 @@ msgctxt ""
msgid "Configuration"
msgstr "Configuración"
-#. M4Rz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4271,7 +3824,6 @@ msgctxt ""
msgid "My Documents"
msgstr "Mis documentos"
-#. J!sZ
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4280,7 +3832,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Imágenes"
-#. 6isK
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4289,7 +3840,6 @@ msgctxt ""
msgid "Icons"
msgstr "Iconos"
-#. f@It
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4298,7 +3848,6 @@ msgctxt ""
msgid "Palettes"
msgstr "Paletas"
-#. Q4Fe
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4307,7 +3856,6 @@ msgctxt ""
msgid "Backups"
msgstr "Copias de seguridad"
-#. uXYX
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4316,7 +3864,6 @@ msgctxt ""
msgid "Modules"
msgstr "Módulos"
-#. y9c)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4325,7 +3872,6 @@ msgctxt ""
msgid "Templates"
msgstr "Plantillas"
-#. $%aO
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4334,7 +3880,6 @@ msgctxt ""
msgid "AutoText"
msgstr "Autotexto"
-#. pa_k
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4343,7 +3888,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr "Diccionarios"
-#. P:~D
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4352,7 +3896,6 @@ msgctxt ""
msgid "Help"
msgstr "Ayuda"
-#. Q@)T
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4361,7 +3904,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Galería"
-#. S.x/
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4370,7 +3912,6 @@ msgctxt ""
msgid "Message Storage"
msgstr "Almacén de mensajes"
-#. !YM[
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4379,7 +3920,6 @@ msgctxt ""
msgid "Temporary files"
msgstr "Archivos temporales"
-#. \Tm)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4388,7 +3928,6 @@ msgctxt ""
msgid "Plug-ins"
msgstr "Complementos"
-#. rnxz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4397,7 +3936,6 @@ msgctxt ""
msgid "Folder Bookmarks"
msgstr "Marcadores de carpetas"
-#. n,@:
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4406,7 +3944,6 @@ msgctxt ""
msgid "Filters"
msgstr "Filtros"
-#. 7NA@
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4415,7 +3952,6 @@ msgctxt ""
msgid "Add-ins"
msgstr "Complementos"
-#. 9)3c
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4424,7 +3960,6 @@ msgctxt ""
msgid "User Configuration"
msgstr "Configuración de usuario"
-#. ,hkG
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4433,7 +3968,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "Diccionarios definidos por el usuario"
-#. e%Dj
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4442,7 +3976,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "Autocorrección"
-#. H[\{
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4451,7 +3984,6 @@ msgctxt ""
msgid "Writing aids"
msgstr "Asistencia a la escritura"
-#. 2k_@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4461,7 +3993,6 @@ msgctxt ""
msgid "Sequence checking"
msgstr "Control de secuencia"
-#. @1PN
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4471,7 +4002,6 @@ msgctxt ""
msgid "Use se~quence checking"
msgstr "Usar el control de se~cuencia"
-#. V_P(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4481,7 +4011,6 @@ msgctxt ""
msgid "Restricted"
msgstr "Restringido"
-#. jr*4
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4491,7 +4020,6 @@ msgctxt ""
msgid "~Type and replace"
msgstr "~Escribir y reemplazar"
-#. |9e(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4501,7 +4029,6 @@ msgctxt ""
msgid "Cursor control"
msgstr "Control del cursor"
-#. 21je
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4511,7 +4038,6 @@ msgctxt ""
msgid "Movement"
msgstr "Movimiento"
-#. jVib
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4521,7 +4047,6 @@ msgctxt ""
msgid "Lo~gical"
msgstr "Ló~gico"
-#. ,_Hy
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4531,7 +4056,6 @@ msgctxt ""
msgid "~Visual"
msgstr "~Visual"
-#. 9n4m
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4541,7 +4065,6 @@ msgctxt ""
msgid "General options"
msgstr "Opciones generales"
-#. S)~V
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4551,7 +4074,6 @@ msgctxt ""
msgid "~Numerals"
msgstr "~Numerales"
-#. Mx/@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4561,7 +4083,6 @@ msgctxt ""
msgid "Arabic"
msgstr "Arábigo"
-#. 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 "Sistema"
-#. 4!])
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4591,7 +4110,6 @@ msgctxt ""
msgid "Context"
msgstr "Contexto"
-#. 0LeK
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4600,7 +4118,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr "Disposición compleja de texto (CTL)"
-#. `JwJ
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4610,7 +4127,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Nombre"
-#. a,F2
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4620,7 +4136,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Idioma"
-#. xMXC
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4630,7 +4145,6 @@ msgctxt ""
msgid "~Exception (-)"
msgstr "~Excepción (-)"
-#. 5%0s
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4640,7 +4154,6 @@ msgctxt ""
msgid "Dictionary"
msgstr "Diccionario"
-#. mOZ)
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4649,7 +4162,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr "Nuevo diccionario"
-#. Kvmc
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4659,7 +4171,6 @@ msgctxt ""
msgid "~Book"
msgstr "~Libro"
-#. Y*4t
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4669,7 +4180,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Idioma"
-#. $cYD
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4679,7 +4189,6 @@ msgctxt ""
msgid "~Word"
msgstr "~Palabra"
-#. Iq}[
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4689,7 +4198,6 @@ msgctxt ""
msgid "Replace ~By:"
msgstr "~Reemplazar por:"
-#. Z0=6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4699,7 +4207,6 @@ msgctxt ""
msgid "~New"
msgstr "~Nuevo"
-#. 9!S6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4709,7 +4216,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. l;`f
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4719,7 +4225,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~Reemplazar"
-#. U`I*
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4729,7 +4234,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. =jF^
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4738,7 +4242,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr "Editar diccionarios personalizados"
-#. O/91
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4751,7 +4254,6 @@ msgstr ""
"Ya existe el nombre especificado.\n"
"Escriba un nuevo nombre."
-#. !TG=
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4760,7 +4262,6 @@ msgctxt ""
msgid "Do you want to change the '%1' dictionary language?"
msgstr "¿Desea cambiar el idioma del diccionario '%1' ?"
-#. 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 "Cargar el ~código Basic"
-#. KSy7
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4790,7 +4289,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr "Código e~jecutable"
-#. \!]w
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4800,7 +4298,6 @@ msgctxt ""
msgid "Save ~original Basic code"
msgstr "Guardar el código Basic ~original"
-#. (_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 "C~argar el código Basic"
-#. :vUd
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4830,7 +4325,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr "Código e~jecutable"
-#. t^0I
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4840,7 +4334,6 @@ msgctxt ""
msgid "Sa~ve original Basic code"
msgstr "Guar~dar el código Basic original"
-#. 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 "Cargar el código Ba~sic"
-#. AJeg
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4870,7 +4361,6 @@ msgctxt ""
msgid "Sav~e original Basic code"
msgstr "Guarda~r el código Basic original"
-#. 41rG
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4880,7 +4370,6 @@ msgctxt ""
msgid "[L]"
msgstr "[C]"
-#. {)7]
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4890,7 +4379,6 @@ msgctxt ""
msgid "[S]"
msgstr "[G]"
-#. XIRT
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4900,7 +4388,6 @@ msgctxt ""
msgid "[L]: Load and convert the object"
msgstr "[C]: Cargar y convertir el objeto"
-#. thlE
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4910,7 +4397,6 @@ msgctxt ""
msgid "[S]: Convert and save the object"
msgstr "[G]: Convertir y guardar el objeto"
-#. =lGU
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4920,7 +4406,6 @@ msgctxt ""
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "De MathType a %PRODUCTNAME Math o a la inversa"
-#. %DHi
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4930,7 +4415,6 @@ msgctxt ""
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "De WinWord a %PRODUCTNAME Writer o a la inversa"
-#. c@,c
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4940,7 +4424,6 @@ msgctxt ""
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "De Excel a %PRODUCTNAME Calc o a la inversa"
-#. Sx,`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4950,7 +4433,6 @@ msgctxt ""
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "De PowerPoint a %PRODUCTNAME Impress o a la inversa"
-#. p2,2
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4960,7 +4442,6 @@ msgctxt ""
msgid "Undo"
msgstr "Deshacer"
-#. Ro8]
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4970,7 +4451,6 @@ msgctxt ""
msgid "Number of steps"
msgstr "Cantidad de pasos"
-#. SN_f
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4980,7 +4460,6 @@ msgctxt ""
msgid "Graphics cache"
msgstr "Caché de imágenes"
-#. $Q^P
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4990,7 +4469,6 @@ msgctxt ""
msgid "Use for %PRODUCTNAME"
msgstr "Usar para %PRODUCTNAME"
-#. 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 "Memoria por objeto"
-#. 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 "Eliminar de la memoria después de"
-#. n3R0
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5040,7 +4514,6 @@ msgctxt ""
msgid "hh:mm"
msgstr "hh:mm"
-#. }ZKK
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5050,7 +4523,6 @@ msgctxt ""
msgid "Cache for inserted objects"
msgstr "Caché para los objetos insertados"
-#. F3y+
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5060,7 +4532,6 @@ msgctxt ""
msgid "Number of objects"
msgstr "Número de objetos"
-#. Ikf/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5070,7 +4541,6 @@ msgctxt ""
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inicio rápido de %PRODUCTNAME"
-#. dx^3
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5080,7 +4550,6 @@ msgctxt ""
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME durante el inicio del sistema"
-#. 6K=X
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5090,7 +4559,6 @@ msgctxt ""
msgid "Enable systray Quickstarter"
msgstr "Habilitar el inicio rápido en la bandeja del sistema"
-#. `!9w
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5100,7 +4568,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr "Complemento del navegador"
-#. $;4R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5110,7 +4577,6 @@ msgctxt ""
msgid "~Display documents in browser"
msgstr "Mostrar ~documentos en el navegador"
-#. ~1YW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5120,7 +4586,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuraciones"
-#. I1kK
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5130,7 +4595,6 @@ msgctxt ""
msgid "Proxy s~erver"
msgstr "Servidor pro~xy"
-#. SK(E
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5140,7 +4604,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. Vk}?
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5150,7 +4613,6 @@ msgctxt ""
msgid "System"
msgstr "Sistema"
-#. 6O!V
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5160,7 +4622,6 @@ msgctxt ""
msgid "Manual"
msgstr "Manual"
-#. e*Z6
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5170,7 +4631,6 @@ msgctxt ""
msgid "Use browser settings"
msgstr "Usar la configuración del navegador"
-#. -Pi*
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5180,7 +4640,6 @@ msgctxt ""
msgid "HT~TP proxy"
msgstr "Proxy HT~TP"
-#. F\0r
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5190,7 +4649,6 @@ msgctxt ""
msgid "~Port"
msgstr "~Puerto"
-#. Uq`o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5200,7 +4658,6 @@ msgctxt ""
msgid "HTTP~S proxy"
msgstr "Proxy HTTP~S"
-#. ZeX%
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5210,7 +4667,6 @@ msgctxt ""
msgid "P~ort"
msgstr "P~uerto"
-#. BF:g
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5220,7 +4676,6 @@ msgctxt ""
msgid "~FTP proxy"
msgstr "Proxy ~FTP"
-#. Mr$j
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5230,7 +4685,6 @@ msgctxt ""
msgid "P~ort"
msgstr "P~uerto"
-#. !L}c
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5240,7 +4694,6 @@ msgctxt ""
msgid "~SOCKS proxy"
msgstr "Proxy ~SOCKS"
-#. L]+m
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5250,7 +4703,6 @@ msgctxt ""
msgid "Po~rt"
msgstr "Pue~rto"
-#. I*u`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5260,7 +4712,6 @@ msgctxt ""
msgid "~No proxy for:"
msgstr "S~in proxy para"
-#. AUdH
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5270,7 +4721,6 @@ msgctxt ""
msgid "Separator ;"
msgstr "Separador ;"
-#. fL;R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5280,7 +4730,6 @@ msgctxt ""
msgid "DNS server"
msgstr "Servidor DNS"
-#. X5$^
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5290,7 +4739,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. K{(7
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5300,7 +4748,6 @@ msgctxt ""
msgid "~Manual"
msgstr "~Manual"
-#. 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 "no es una entrada válida para este campo. Escriba un valor entre 0 y 255."
-#. 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 "no es una entrada válida para este campo. Escriba un valor entre 1 y 255."
-#. 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 "Opciones de seguridad y alertas"
-#. _\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 "Ajustar las opciones relacionadas con la seguridad y definir alertas para la información oculta en los documentos."
-#. C%[/
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5359,7 +4801,6 @@ msgctxt ""
msgid "Options..."
msgstr "Opciones..."
-#. j,Fn
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5369,7 +4810,6 @@ msgctxt ""
msgid "Passwords for web connections"
msgstr "Contraseñas para las conexiones web"
-#. (D5s
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5379,7 +4819,6 @@ msgctxt ""
msgid "Persistently save passwords for web connections"
msgstr "Guardar las contraseñas para conexiones web persistentemente"
-#. gOOu
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5389,7 +4828,6 @@ msgctxt ""
msgid "Connections..."
msgstr "Conexiones..."
-#. -sma
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5399,7 +4837,6 @@ msgctxt ""
msgid "Protected by a master password (recommended)"
msgstr "Protegidas mediante una contraseña maestra (recomendado)"
-#. 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 "Las contraseñas están protegidas por una contraseña maestra. Deberá ingresarla una vez por sesión, si %PRODUCTNAME necesita recuperar una contraseña de la lista protegida de contraseñas."
-#. uHou
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5419,7 +4855,6 @@ msgctxt ""
msgid "Master Password..."
msgstr "Contraseña maestra..."
-#. O;6$
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5429,7 +4864,6 @@ msgctxt ""
msgid "Macro security"
msgstr "Seguridad de macros"
-#. #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 "Ajuste el nivel de seguridad para ejecutar macros y especifique los desarrolladores de macros de confianza."
-#. H$.Y
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5449,7 +4882,6 @@ msgctxt ""
msgid "Macro Security..."
msgstr "Seguridad de macros..."
-#. FBJ,
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5459,7 +4891,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr "Ruta del certificado"
-#. 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 "Seleccione el directorio del certificado Network Security Services para usar para las firmas digitales."
-#. Zqv8
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5479,7 +4909,6 @@ msgctxt ""
msgid "Certificate..."
msgstr "Certificar..."
-#. !a9h
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5495,7 +4924,6 @@ msgstr ""
"\n"
"¿Quiere eliminar la lista de contraseñas y la contraseña maestra?"
-#. ]bE+
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5504,7 +4932,6 @@ msgctxt ""
msgid "Security"
msgstr "Seguridad"
-#. ,LvN
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5519,7 +4946,6 @@ msgstr ""
"\n"
"El valor máximo para un número de puerto es 65535."
-#. 3C$K
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5537,7 +4963,6 @@ msgstr ""
"\n"
"¿Desea desactivar Java igualmente?"
-#. TY*W
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5547,7 +4972,6 @@ msgctxt ""
msgid "~Don't show warning again"
msgstr "~No mostrar más esta advertencia"
-#. qa8o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5557,7 +4981,6 @@ msgctxt ""
msgid "Sending documents as e-mail attachments"
msgstr "Envío de documentos como adjuntos en un correo electrónico"
-#. hZYo
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5567,7 +4990,6 @@ msgctxt ""
msgid "~E-mail program"
msgstr "Programa de ~correo electrónico"
-#. eU/[
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5577,7 +4999,6 @@ msgctxt ""
msgid "All files"
msgstr "Todos los archivos"
-#. [(%E
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5587,7 +5008,6 @@ msgctxt ""
msgid "Web login information (passwords are never shown)"
msgstr "Información de acceso web (las contraseñas nunca se muestran)"
-#. tLxk
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5597,7 +5017,6 @@ msgctxt ""
msgid "Remove"
msgstr "Eliminar"
-#. cEle
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5607,7 +5026,6 @@ msgctxt ""
msgid "Remove All"
msgstr "Eliminar todo"
-#. z#ym
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5617,7 +5035,6 @@ msgctxt ""
msgid "Change Password..."
msgstr "Cambiar la contraseña..."
-#. %\[;
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5627,7 +5044,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. G8nn
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5637,7 +5053,6 @@ msgctxt ""
msgid "Website"
msgstr "Sitio web"
-#. U9ns
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5647,7 +5062,6 @@ msgctxt ""
msgid "User name"
msgstr "Nombre de usuario"
-#. ix]!
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5656,7 +5070,6 @@ msgctxt ""
msgid "Stored Web Connection Information"
msgstr "Información de conexión web almacenada"
-#. ,I]I
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5666,7 +5079,6 @@ msgctxt ""
msgid "Help"
msgstr "Ayuda"
-#. YD+@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5676,7 +5088,6 @@ msgctxt ""
msgid "~Tips"
msgstr "~Consejos"
-#. eD=X
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5686,7 +5097,6 @@ msgctxt ""
msgid "~Extended tips"
msgstr "Consejos e~xtendidos"
-#. 1#:d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5696,7 +5106,6 @@ msgctxt ""
msgid "~Help Agent"
msgstr "~Ayudante"
-#. f6g6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5706,7 +5115,6 @@ msgctxt ""
msgid "~Reset Help Agent"
msgstr "~Restablecer el ayudante"
-#. g#x(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5716,7 +5124,6 @@ msgctxt ""
msgid "Open/Save dialogs"
msgstr "Diálogos para abrir/guardar"
-#. mmS2
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5726,7 +5133,6 @@ msgctxt ""
msgid "~Use %PRODUCTNAME dialogs"
msgstr "~Usar los diálogos de %PRODUCTNAME"
-#. j@+#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5736,7 +5142,6 @@ msgctxt ""
msgid "Show ODMA DMS dialogs first"
msgstr "Mostrar primero los diálogos ODMA DMS"
-#. j(J3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5746,7 +5151,6 @@ msgctxt ""
msgid "Print dialogs"
msgstr "Diálogos de impresión"
-#. -#;*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5756,7 +5160,6 @@ msgctxt ""
msgid "Use %PRODUCTNAME ~dialogs"
msgstr "Usar los ~diálogos de %PRODUCTNAME"
-#. `ed@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5766,7 +5169,6 @@ msgctxt ""
msgid "Document status"
msgstr "Estado del documento"
-#. MOx)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5776,7 +5178,6 @@ msgctxt ""
msgid "~Printing sets \"document modified\" status"
msgstr "Considerar como modificado el documento al ~imprimir"
-#. 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 "Permitir guardar el documento aunque no haya sido modificado"
-#. iK!g
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5796,7 +5196,6 @@ msgctxt ""
msgid "Year (two digits)"
msgstr "Año (dos dígitos)"
-#. lZJ7
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5806,7 +5205,6 @@ msgctxt ""
msgid "Interpret as years between"
msgstr "Interpretar como años entre"
-#. D*H`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5816,7 +5214,6 @@ msgctxt ""
msgid "and "
msgstr "y "
-#. bKH[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5826,7 +5223,6 @@ msgctxt ""
msgid "User Interface"
msgstr "Interfaz del usuario"
-#. .yL.
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5836,7 +5232,6 @@ msgctxt ""
msgid "Sc~aling"
msgstr "Esc~ala"
-#. $cC*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5846,7 +5241,6 @@ msgctxt ""
msgid "Icon size and style"
msgstr "Tamaño y estilo de los iconos"
-#. VCmX
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5856,7 +5250,6 @@ msgctxt ""
msgid "Icon size"
msgstr "Tamaño de los iconos"
-#. hB~A
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5866,7 +5259,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. ,kLh
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5876,7 +5268,6 @@ msgctxt ""
msgid "Small"
msgstr "Pequeño"
-#. KvFm
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5886,7 +5277,6 @@ msgctxt ""
msgid "Large"
msgstr "Grande"
-#. NC@)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5896,7 +5286,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. (z#]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5906,7 +5295,6 @@ msgctxt ""
msgid "Galaxy (default)"
msgstr "Galaxia (predeterminado)"
-#. jH)b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5916,7 +5304,6 @@ msgctxt ""
msgid "High Contrast"
msgstr "Contraste alto"
-#. 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 "Cristal"
-#. ~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 "Oxígeno"
-#. IxiQ
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5966,7 +5349,6 @@ msgctxt ""
msgid "Classic"
msgstr "Clásico"
-#. @%|F
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5976,7 +5358,6 @@ msgctxt ""
msgid "Human"
msgstr "Humano"
-#. obAt
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5984,9 +5365,8 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Tango Testing"
-msgstr ""
+msgstr "Tango (en pruebas)"
-#. q%e@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5996,7 +5376,6 @@ msgctxt ""
msgid "Use system ~font for user interface"
msgstr "Usar la ~fuente del sistema para la interfaz del usuario"
-#. l/O3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6006,7 +5385,6 @@ msgctxt ""
msgid "Screen font antialiasing"
msgstr "Suavizar las fuentes en la pantalla"
-#. xn~k
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6016,7 +5394,6 @@ msgctxt ""
msgid "from"
msgstr "a partir de"
-#. f_!h
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6026,7 +5403,6 @@ msgctxt ""
msgid "Pixels"
msgstr "Píxeles"
-#. 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 "Iconos en los menús"
-#. ijM9
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6056,7 +5430,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. bP%i
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6066,7 +5439,6 @@ msgctxt ""
msgid "Hide"
msgstr "Ocultar"
-#. #6tp
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6076,7 +5448,6 @@ msgctxt ""
msgid "Show"
msgstr "Mostrar"
-#. v?27
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6086,7 +5457,6 @@ msgctxt ""
msgid "Font Lists"
msgstr "Listas de fuentes"
-#. h0hR
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6096,7 +5466,6 @@ msgctxt ""
msgid "Show p~review of fonts"
msgstr "Mostrar p~revisualización de las fuentes"
-#. M[V(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6106,7 +5475,6 @@ msgctxt ""
msgid "Show font h~istory"
msgstr "Mostrar h~istorial de fuentes"
-#. 5Emv
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6116,7 +5484,6 @@ msgctxt ""
msgid "Graphics output"
msgstr "Salida gráfica"
-#. *a`d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6126,7 +5493,6 @@ msgctxt ""
msgid "Use hardware acceleration"
msgstr "Usar la aceleración por hardware"
-#. 2p0?
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6136,7 +5502,6 @@ msgctxt ""
msgid "Use Anti-Aliasing"
msgstr "Usar el suavizado de fuentes"
-#. aMIe
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6146,7 +5511,6 @@ msgctxt ""
msgid "Mouse"
msgstr "Ratón"
-#. =HWk
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6156,7 +5520,6 @@ msgctxt ""
msgid "Mouse positioning"
msgstr "Posicionamiento del ratón"
-#. IPmL
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6166,7 +5529,6 @@ msgctxt ""
msgid "Default button"
msgstr "En el botón predeterminado"
-#. \bTM
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6176,7 +5538,6 @@ msgctxt ""
msgid "Dialog center"
msgstr "Al centro del diálogo"
-#. KU?K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6186,7 +5547,6 @@ msgctxt ""
msgid "No automatic positioning"
msgstr "Sin posicionamiento automático"
-#. futz
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6196,7 +5556,6 @@ msgctxt ""
msgid "Middle mouse button"
msgstr "Botón central del ratón"
-#. q96U
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6206,7 +5565,6 @@ msgctxt ""
msgid "No function"
msgstr "Sin función"
-#. K2/~
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6216,7 +5574,6 @@ msgctxt ""
msgid "Automatic scrolling"
msgstr "Desplazamiento automático"
-#. A!(K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6226,7 +5583,6 @@ msgctxt ""
msgid "Paste clipboard"
msgstr "Pegar el portapapeles"
-#. atGU
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6236,7 +5592,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. $s.b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6246,7 +5601,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Transparencia"
-#. ,{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 "Idioma para"
-#. VZt6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6276,7 +5628,6 @@ msgctxt ""
msgid "~User interface"
msgstr "Interfaz del ~usuario"
-#. HXP_
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6286,7 +5637,6 @@ msgctxt ""
msgid "Locale setting"
msgstr "Configuración regional"
-#. /%${
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6296,7 +5646,6 @@ msgctxt ""
msgid "Decimal separator key"
msgstr "Símbolo del separador decimal"
-#. L)[t
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6306,7 +5655,6 @@ msgctxt ""
msgid "~Same as locale setting ( %1 )"
msgstr "El ~mismo de la configuración regional ( %1 )"
-#. hK+W
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6316,7 +5664,6 @@ msgctxt ""
msgid "~Default currency"
msgstr "Moneda ~predeterminada"
-#. K8$R
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6326,7 +5673,6 @@ msgctxt ""
msgid "Date acceptance ~patterns"
msgstr "Pa~trones de aceptación de datos"
-#. 6bDG
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6336,7 +5682,6 @@ msgctxt ""
msgid "Default languages for documents"
msgstr "Idiomas predeterminados para los documentos"
-#. w)d+
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6346,7 +5691,6 @@ msgctxt ""
msgid "Western"
msgstr "Occidental"
-#. X4of
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6356,7 +5700,6 @@ msgctxt ""
msgid "Asian"
msgstr "Asiático"
-#. 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 "Solo para el documento actual"
-#. lKr)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6386,7 +5727,6 @@ msgctxt ""
msgid "Enhanced language support"
msgstr "Manejo avanzado de idiomas"
-#. W=V`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6394,9 +5734,8 @@ msgctxt ""
"CB_ASIANSUPPORT\n"
"checkbox.text"
msgid "Show UI elements for East Asia~n writings"
-msgstr ""
+msgstr "Mostrar elementos de la IU para escrituras asiáticas orie~ntales"
-#. ~k5-
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6404,9 +5743,8 @@ msgctxt ""
"CB_CTLSUPPORT\n"
"checkbox.text"
msgid "Show UI elements for B~i-Directional writing"
-msgstr ""
+msgstr "Mostrar elementos de la IU para escritura b~idireccional"
-#. H(%/
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6414,9 +5752,8 @@ msgctxt ""
"CB_IGNORE_LANG_CHANGE\n"
"checkbox.text"
msgid "Ignore s~ystem input language"
-msgstr ""
+msgstr "Ignorar idioma de entrada del siste~ma"
-#. 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 "Se actualizó la configuración de idioma de la interfaz del usuario y tomará efecto la próxima vez que inicie %PRODUCTNAME %PRODUCTVERSION"
-#. DIQJ
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6435,7 +5771,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr "Ruta del certificado"
-#. 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 "Seleccione o añada el directorio correcto del certificado Network Security Services para usarlo para las firmas digitales:"
-#. buLe
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6455,7 +5789,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. At/*
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6465,7 +5798,6 @@ msgctxt ""
msgid "Select a Certificate directory"
msgstr "Seleccione un directorio del certificado"
-#. 7lQw
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6475,7 +5807,6 @@ msgctxt ""
msgid "manual"
msgstr "manual"
-#. ,{`@
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6485,7 +5816,6 @@ msgctxt ""
msgid "Profile"
msgstr "Perfil"
-#. ]mvi
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6495,7 +5825,6 @@ msgctxt ""
msgid "Directory"
msgstr "Directorio"
-#. $AA:
#: certpath.src
msgctxt ""
"certpath.src\n"
diff --git a/source/es/cui/source/tabpages.po b/source/es/cui/source/tabpages.po
index 37c56349d14..62f92d6b9c3 100644
--- a/source/es/cui/source/tabpages.po
+++ b/source/es/cui/source/tabpages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-08-17 08:17+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:09+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353503361.0\n"
-#. bz*m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -24,7 +24,6 @@ msgctxt ""
msgid "Please enter a name for the gradient:"
msgstr "Introduzca aquí un nombre para el gradiente:"
-#. \|^?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +32,6 @@ msgctxt ""
msgid "Do you want to delete the gradient?"
msgstr "¿Desea realmente eliminar el gradiente de color?"
-#. J0=v
#: strings.src
msgctxt ""
"strings.src\n"
@@ -47,7 +45,6 @@ msgstr ""
"Puede modificarlo\n"
"o añadir uno nuevo."
-#. aoNW
#: strings.src
msgctxt ""
"strings.src\n"
@@ -56,7 +53,6 @@ msgctxt ""
msgid "Please enter a name for the bitmap:"
msgstr "Introduzca aquí un nombre para la bitmap:"
-#. 5`b,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -65,7 +61,6 @@ msgctxt ""
msgid "Please enter a name for the external bitmap:"
msgstr "Introduzca aquí un nombre para la bitmap externa:"
-#. T!Xf
#: strings.src
msgctxt ""
"strings.src\n"
@@ -74,7 +69,6 @@ msgctxt ""
msgid "Are you sure you want to delete the bitmap?"
msgstr "¿Desea realmente eliminar el bitmap?"
-#. ^oVM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -88,7 +82,6 @@ msgstr ""
"Puede modificar el bitmap seleccionado\n"
"o añadir uno nuevo."
-#. tc;;
#: strings.src
msgctxt ""
"strings.src\n"
@@ -97,7 +90,6 @@ msgctxt ""
msgid "Please enter a name for the line style:"
msgstr "Inserte aquí el nombre del estilo de línea:"
-#. D$-e
#: strings.src
msgctxt ""
"strings.src\n"
@@ -106,7 +98,6 @@ msgctxt ""
msgid "Do you want to delete the line style?"
msgstr "¿Desea realmente eliminar el estilo de línea?"
-#. w9S4
#: strings.src
msgctxt ""
"strings.src\n"
@@ -120,7 +111,6 @@ msgstr ""
"Puede modificar el estilo de línea seleccionado\n"
"o añadir uno nuevo."
-#. N:w[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -129,7 +119,6 @@ msgctxt ""
msgid "Please enter a name for the hatching:"
msgstr "Introduzca aquí un nombre para la trama:"
-#. I2,Z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -138,7 +127,6 @@ msgctxt ""
msgid "Do you want to delete the hatching?"
msgstr "¿Desea realmente eliminar el entramado?"
-#. NluX
#: strings.src
msgctxt ""
"strings.src\n"
@@ -152,7 +140,6 @@ msgstr ""
"Puede modificar la trama seleccionada\n"
"o añadir una nueva."
-#. qQ5L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -161,7 +148,6 @@ msgctxt ""
msgid "Modify"
msgstr "Modificar"
-#. t-9^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -170,7 +156,6 @@ msgctxt ""
msgid "Add"
msgstr "Añadir"
-#. 2c?|
#: strings.src
msgctxt ""
"strings.src\n"
@@ -179,7 +164,6 @@ msgctxt ""
msgid "Please enter a name for the new color:"
msgstr "Inserte aquí el nombre del nuevo color:"
-#. Z/p*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -188,7 +172,6 @@ msgctxt ""
msgid "Do you want to delete the color?"
msgstr "¿Desea realmente eliminar el color?"
-#. v3Pw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -202,7 +185,6 @@ msgstr ""
"Puede modificar el color seleccionado\n"
"o añadir uno nuevo."
-#. Wb(#
#: strings.src
msgctxt ""
"strings.src\n"
@@ -211,7 +193,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. \a0q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -220,7 +201,6 @@ msgctxt ""
msgid "The file could not be saved!"
msgstr "¡No se pudo guardar el archivo!"
-#. %Y#{
#: strings.src
msgctxt ""
"strings.src\n"
@@ -229,7 +209,6 @@ msgctxt ""
msgid "The file could not be loaded!"
msgstr "¡No se pudo cargar el archivo!"
-#. x7o*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -240,7 +219,6 @@ msgstr ""
"La tabla ha sido modificada sin guardar.\n"
"¿Desea guardarla?"
-#. BY;z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -253,7 +231,6 @@ msgstr ""
"Este nombre ya existe. \n"
"Introduzca otro nombre por favor."
-#. [S=I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -262,7 +239,6 @@ msgctxt ""
msgid "Please enter a name for the new arrowhead:"
msgstr "Introduzca aquí un nombre para el nuevo fin de línea:"
-#. `z*8
#: strings.src
msgctxt ""
"strings.src\n"
@@ -271,7 +247,6 @@ msgctxt ""
msgid "Do you want to delete the arrowhead?"
msgstr "¿Desea realmente eliminar el final de línea?"
-#. _}D`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -284,9 +259,7 @@ msgstr ""
"El final de línea ha sido modificado pero no guardado. \n"
"¿Desea guardar ahora el final de línea?"
-#. .0;n
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"RID_SVXSTR_CHARNAME_TRANSPARENT\n"
@@ -294,7 +267,6 @@ msgctxt ""
msgid "Transparent"
msgstr "Transparente"
-#. ADJg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -303,7 +275,6 @@ msgctxt ""
msgid "No %1"
msgstr "No %1"
-#. )mlP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -312,7 +283,6 @@ msgctxt ""
msgid "Family"
msgstr "Familia"
-#. X3I]
#: strings.src
msgctxt ""
"strings.src\n"
@@ -321,9 +291,7 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. .j5E
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"RID_SVXSTR_CHARNAME_STYLE\n"
@@ -331,7 +299,6 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. shf_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -340,7 +307,6 @@ msgctxt ""
msgid "Typeface"
msgstr "Tipo de letra"
-#. P!fM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -350,7 +316,6 @@ msgctxt ""
msgid "Transparency mode"
msgstr "Modo de transparencia"
-#. {i/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -360,7 +325,6 @@ msgctxt ""
msgid "~No transparency"
msgstr "~Sin transparencia"
-#. .7Zf
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -370,7 +334,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~Transparencia"
-#. rM_C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -380,7 +343,6 @@ msgctxt ""
msgid "Gradient"
msgstr "Gradiente"
-#. 6TX_
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -390,7 +352,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr "Ti~po"
-#. |2t9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -400,7 +361,6 @@ msgctxt ""
msgid "Linear"
msgstr "Linear"
-#. =jQm
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -410,7 +370,6 @@ msgctxt ""
msgid "Axial"
msgstr "Matriz"
-#. 3EP1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -420,7 +379,6 @@ msgctxt ""
msgid "Radial"
msgstr "Radial"
-#. ]#aZ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -430,7 +388,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr "Elipses"
-#. Hm;f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -440,7 +397,6 @@ msgctxt ""
msgid "Quadratic"
msgstr "Cuadrático"
-#. AU==
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -450,7 +406,6 @@ msgctxt ""
msgid "Square"
msgstr "Cuadrado"
-#. \!^1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -460,7 +415,6 @@ msgctxt ""
msgid "Center ~X"
msgstr "Centrado ~X"
-#. {6$S
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -470,7 +424,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr "Centrado ~Y"
-#. DTd=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -480,7 +433,6 @@ msgctxt ""
msgid "~Angle"
msgstr "~Angulo"
-#. _UQe
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -490,7 +442,6 @@ msgctxt ""
msgid " degrees"
msgstr " grados"
-#. efT`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -500,7 +451,6 @@ msgctxt ""
msgid "~Border"
msgstr "~Borde"
-#. %6k1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -510,7 +460,6 @@ msgctxt ""
msgid "~Start value"
msgstr "Valor ~inicial"
-#. C:@8
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -520,7 +469,6 @@ msgctxt ""
msgid "~End value"
msgstr "Valor ~final"
-#. rCSD
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -529,7 +477,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Transparencia"
-#. SP\]
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -539,7 +486,6 @@ msgctxt ""
msgid "Fill"
msgstr "Relleno"
-#. Vgl^
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -549,7 +495,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. s2L2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -559,7 +504,6 @@ msgctxt ""
msgid "Color"
msgstr "Color"
-#. ;9Ac
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -569,7 +513,6 @@ msgctxt ""
msgid "Gradient"
msgstr "Gradiente"
-#. 2e5%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -579,7 +522,6 @@ msgctxt ""
msgid "Hatching"
msgstr "Trama"
-#. 9#s5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -589,7 +531,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "Mapa de bits"
-#. -*;%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -599,9 +540,7 @@ msgctxt ""
msgid "Increments"
msgstr "Incremento"
-#. 0Ka5
#: tabarea.src
-#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -610,7 +549,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "Au~tomática"
-#. G7o[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -620,7 +558,6 @@ msgctxt ""
msgid "~Background color"
msgstr "Color de ~fondo"
-#. dc;2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -630,7 +567,6 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. c-j`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -640,7 +576,6 @@ msgctxt ""
msgid "~Original"
msgstr "~Original"
-#. :lE~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -650,7 +585,6 @@ msgctxt ""
msgid "Re~lative"
msgstr "Rela~tivo"
-#. 5@6t
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -660,7 +594,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "An~cho"
-#. 8h5f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -670,7 +603,6 @@ msgctxt ""
msgid "H~eight"
msgstr "A~ltura"
-#. *?n9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -680,7 +612,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. ]u)i
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -690,7 +621,6 @@ msgctxt ""
msgid "~X Offset"
msgstr "Desfaz ~X"
-#. QpB:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -700,7 +630,6 @@ msgctxt ""
msgid "~Y Offset"
msgstr "Desfaz ~Y"
-#. .2MN
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -710,7 +639,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~Mosaico"
-#. #b^l
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -720,7 +648,6 @@ msgctxt ""
msgid "Auto~Fit"
msgstr "Auto~Fit"
-#. `JeJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -730,7 +657,6 @@ msgctxt ""
msgid "Offset"
msgstr "Desfaz"
-#. NLX;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -740,7 +666,6 @@ msgctxt ""
msgid "Ro~w"
msgstr "~Fila"
-#. dO`|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -750,7 +675,6 @@ msgctxt ""
msgid "Colu~mn"
msgstr "Colu~mna"
-#. q?g-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -759,7 +683,6 @@ msgctxt ""
msgid "Area"
msgstr "Área"
-#. O#Q2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -769,7 +692,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. ,4#.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -779,7 +701,6 @@ msgctxt ""
msgid "~Use shadow"
msgstr "~Usa sombras"
-#. fW-$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -789,7 +710,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Posición"
-#. n#ns
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -799,7 +719,6 @@ msgctxt ""
msgid "~Distance"
msgstr "~Distancia"
-#. Fr1[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -809,7 +728,6 @@ msgctxt ""
msgid "~Color"
msgstr "~Color"
-#. +{\k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -819,7 +737,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~Transparencia"
-#. @PQ:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -828,7 +745,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Sombra"
-#. B-Y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -838,7 +754,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. A0nG
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -848,7 +763,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "Es~pacio"
-#. ,ASA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -858,7 +772,6 @@ msgctxt ""
msgid "A~ngle"
msgstr "A~gulo"
-#. _k2A
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -868,7 +781,6 @@ msgctxt ""
msgid " degrees"
msgstr " grados"
-#. $~=7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -878,7 +790,6 @@ msgctxt ""
msgid "~Line type"
msgstr "Tipo de ~linea"
-#. 1*KW
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -888,7 +799,6 @@ msgctxt ""
msgid "Single"
msgstr "Simple"
-#. hQak
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -898,7 +808,6 @@ msgctxt ""
msgid "Crossed"
msgstr "Cruzado"
-#. P;=x
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -908,7 +817,6 @@ msgctxt ""
msgid "Triple"
msgstr "Triple"
-#. HGtc
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -918,7 +826,6 @@ msgctxt ""
msgid "Line ~color"
msgstr "Linea de ~color"
-#. \`*%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -928,7 +835,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. ^_8R
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -938,7 +844,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Modificar..."
-#. C*D-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -948,7 +853,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Eliminar..."
-#. mxu`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -958,7 +862,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. B%1Q
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -968,7 +871,6 @@ msgctxt ""
msgid "Load Hatches List"
msgstr "Carga el listado de tramas"
-#. sE5p
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -978,7 +880,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. _^|?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -988,7 +889,6 @@ msgctxt ""
msgid "Save Hatches List"
msgstr "Guardar el listado de tramas"
-#. ma9g
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -998,7 +898,6 @@ msgctxt ""
msgid "Embed"
msgstr "Incrustar"
-#. T)]y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1007,7 +906,6 @@ msgctxt ""
msgid "Hatching"
msgstr "Trama"
-#. Hr,+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1017,7 +915,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. )o`;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1027,7 +924,6 @@ msgctxt ""
msgid "Pattern Editor"
msgstr "Editor de patrones"
-#. -/{@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1037,7 +933,6 @@ msgctxt ""
msgid "~Foreground color"
msgstr "Color de ~superficie"
-#. Hk2Z
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1047,7 +942,6 @@ msgctxt ""
msgid "~Background color"
msgstr "Color de ~fondo"
-#. -s:C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1057,7 +951,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "Mapa de bits"
-#. +Rpr
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1067,7 +960,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. E\/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1077,7 +969,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Modificar..."
-#. ZnY%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1087,7 +978,6 @@ msgctxt ""
msgid "~Import..."
msgstr "~Importar..."
-#. sBG#
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1097,7 +987,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Eliminar..."
-#. CBTJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1107,7 +996,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. /x\5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1117,7 +1005,6 @@ msgctxt ""
msgid "Load Bitmap List"
msgstr "Cargar lista de mapas de bits"
-#. ]CH1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1127,7 +1014,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 3d^L
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1137,7 +1023,6 @@ msgctxt ""
msgid "Save Bitmap List"
msgstr "Guardar lista de mapas de bits"
-#. z{wT
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1147,7 +1032,6 @@ msgctxt ""
msgid "Embed"
msgstr "Incrustado"
-#. 9_@%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1156,7 +1040,6 @@ msgctxt ""
msgid "Bitmap Patterns"
msgstr "Patrones de mapa de bits"
-#. _g2`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1166,7 +1049,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. {hGV
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1176,7 +1058,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr "Ti~po"
-#. odos
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1186,7 +1067,6 @@ msgctxt ""
msgid "Linear"
msgstr "Lineal"
-#. ,1nA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1196,7 +1076,6 @@ msgctxt ""
msgid "Axial"
msgstr "Axial"
-#. ]n4T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1206,7 +1085,6 @@ msgctxt ""
msgid "Radial"
msgstr "Radial"
-#. PGr)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1216,7 +1094,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr "Elipsoide"
-#. 2Zge
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1226,7 +1103,6 @@ msgctxt ""
msgid "Square"
msgstr "Cuadrado"
-#. NDC,
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1236,7 +1112,6 @@ msgctxt ""
msgid "Rectangular"
msgstr "Rectangular"
-#. .)`T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1246,7 +1121,6 @@ msgctxt ""
msgid "Center ~X"
msgstr "Centrado ~X"
-#. JrEp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1256,7 +1130,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr "Centrado ~Y"
-#. \$He
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1266,7 +1139,6 @@ msgctxt ""
msgid "A~ngle"
msgstr "Án~gulo"
-#. uzh~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1276,7 +1148,6 @@ msgctxt ""
msgid " degrees"
msgstr " grados"
-#. :;fo
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1286,7 +1157,6 @@ msgctxt ""
msgid "~Border"
msgstr "~Borde"
-#. V%]P
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1296,7 +1166,6 @@ msgctxt ""
msgid "~From"
msgstr "~Desde"
-#. Q.m`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1306,7 +1175,6 @@ msgctxt ""
msgid "~To"
msgstr "~A"
-#. FOW4
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1316,7 +1184,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. /#Hb
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1326,7 +1193,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Modificar..."
-#. lfp?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1336,7 +1202,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Eliminar..."
-#. SvG$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1346,7 +1211,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. ,3G7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1356,7 +1220,6 @@ msgctxt ""
msgid "Load Gradients List"
msgstr "Cargar lista de degradados"
-#. MPW6
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1366,7 +1229,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. SA6:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1376,7 +1238,6 @@ msgctxt ""
msgid "Save Gradients List"
msgstr "Guardar lista de degradados"
-#. K?S@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1386,7 +1247,6 @@ msgctxt ""
msgid "Embed"
msgstr "Incrustar"
-#. $8p?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1395,7 +1255,6 @@ msgctxt ""
msgid "Gradients"
msgstr "Degradados"
-#. 5[[J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1405,7 +1264,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. FZaU
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1415,7 +1273,6 @@ msgctxt ""
msgid "~Name"
msgstr "~Nombre"
-#. TT^+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1425,7 +1282,6 @@ msgctxt ""
msgid "C~olor"
msgstr "C~olor"
-#. 8`d!
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1435,7 +1291,6 @@ msgctxt ""
msgid "Color table"
msgstr "Tabla de color"
-#. \W{j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1445,7 +1300,6 @@ msgctxt ""
msgid "RGB"
msgstr "RGB"
-#. G}#?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1455,7 +1309,6 @@ msgctxt ""
msgid "CMYK"
msgstr "CMYK"
-#. GE?.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1465,7 +1318,6 @@ msgctxt ""
msgid "~C"
msgstr "~C"
-#. jUr~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1475,7 +1327,6 @@ msgctxt ""
msgid "~M"
msgstr "~M"
-#. L^6j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1485,7 +1336,6 @@ msgctxt ""
msgid "~Y"
msgstr "~A"
-#. h^y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1495,7 +1345,6 @@ msgctxt ""
msgid "~K"
msgstr "~K"
-#. f/(;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1505,7 +1354,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. b5}y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1515,7 +1363,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~Editar..."
-#. woZ.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1525,7 +1372,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Eliminar..."
-#. cvY+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1535,7 +1381,6 @@ msgctxt ""
msgid "~Modify"
msgstr "~Modificar"
-#. 2YLY
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1545,7 +1390,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. m.ZS
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1555,7 +1399,6 @@ msgctxt ""
msgid "Load Color List"
msgstr "Carga la lista de colores"
-#. w\/b
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1565,7 +1408,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 66ST
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1575,7 +1417,6 @@ msgctxt ""
msgid "Save Color List"
msgstr "Guarda la lista de colores"
-#. JOkv
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1585,7 +1426,6 @@ msgctxt ""
msgid "Embed"
msgstr "Incrustar"
-#. ~R10
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1594,7 +1434,6 @@ msgctxt ""
msgid "Colors"
msgstr "Colores"
-#. X(7%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1604,7 +1443,6 @@ msgctxt ""
msgid "Area"
msgstr "Área"
-#. ZJUM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1614,7 +1452,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Sombra"
-#. AEY7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1624,7 +1461,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Transparencia"
-#. Ea4k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1634,7 +1470,6 @@ msgctxt ""
msgid "Colors"
msgstr "Colores"
-#. /IA}
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1644,7 +1479,6 @@ msgctxt ""
msgid "Gradients"
msgstr "Degradados"
-#. m_0J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1654,7 +1488,6 @@ msgctxt ""
msgid "Hatching"
msgstr "Trama"
-#. ).j=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1664,7 +1497,6 @@ msgctxt ""
msgid "Bitmaps"
msgstr "Mapas de bits"
-#. uUYp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1673,7 +1505,6 @@ msgctxt ""
msgid "Area"
msgstr "Área"
-#. 5-,:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1682,7 +1513,6 @@ msgctxt ""
msgid "Hatching Style"
msgstr "Estilo de entramado"
-#. OTe)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1691,7 +1521,6 @@ msgctxt ""
msgid "Color Mode"
msgstr "Modo de color"
-#. 8F/d
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1701,7 +1530,6 @@ msgctxt ""
msgid "Text animation effects"
msgstr "Efectos de animación de texto"
-#. 9$j#
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1711,7 +1539,6 @@ msgctxt ""
msgid "E~ffect"
msgstr "E~fecto"
-#. I1@4
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1721,7 +1548,6 @@ msgctxt ""
msgid "No Effect"
msgstr "Sin efecto"
-#. Q/bR
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1731,7 +1557,6 @@ msgctxt ""
msgid "Blink"
msgstr "Intermitente"
-#. mOFp
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1741,7 +1566,6 @@ msgctxt ""
msgid "Scroll Through"
msgstr "Continuo"
-#. 3Xr.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1751,7 +1575,6 @@ msgctxt ""
msgid "Scroll Back and Forth"
msgstr "De un lado al otro"
-#. ZBvW
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1761,7 +1584,6 @@ msgctxt ""
msgid "Scroll In"
msgstr "Entrar"
-#. j}%!
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1771,7 +1593,6 @@ msgctxt ""
msgid "Direction"
msgstr "Orientación"
-#. pKrx
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1781,7 +1602,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. $e:_
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1791,7 +1611,6 @@ msgctxt ""
msgid "To Top"
msgstr "Hacia arriba"
-#. c.)+
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1801,7 +1620,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. (Z1c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1811,7 +1629,6 @@ msgctxt ""
msgid "To Left"
msgstr "Hacia la izquierda"
-#. K/;v
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1821,7 +1638,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. #3*%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1831,7 +1647,6 @@ msgctxt ""
msgid "To Right"
msgstr "Hacia la derecha"
-#. MaZP
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1841,7 +1656,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. L/2}
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1851,7 +1665,6 @@ msgctxt ""
msgid "To Bottom"
msgstr "Hacia abajo"
-#. Qf4O
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1861,7 +1674,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. Y1^m
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1871,7 +1683,6 @@ msgctxt ""
msgid "S~tart inside"
msgstr "Texto visible al ~iniciar"
-#. rX=2
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1881,7 +1692,6 @@ msgctxt ""
msgid "Text visible when exiting"
msgstr "Texto visible al finalizar"
-#. l7}%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1891,7 +1701,6 @@ msgctxt ""
msgid "Animation cycles"
msgstr "Ciclos de animación"
-#. /=]y
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1901,7 +1710,6 @@ msgctxt ""
msgid "~Continuous"
msgstr "~Continuo"
-#. eKi%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1911,7 +1719,6 @@ msgctxt ""
msgid "Increment"
msgstr "Incremento"
-#. m$A[
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1921,7 +1728,6 @@ msgctxt ""
msgid "~Pixels"
msgstr "~Píxeles"
-#. 4,Ns
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1931,7 +1737,6 @@ msgctxt ""
msgid " Pixel"
msgstr " Píxel"
-#. %=`c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1941,7 +1746,6 @@ msgctxt ""
msgid "Delay"
msgstr "Retardo"
-#. m.K)
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1951,7 +1755,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. i#+n
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1961,7 +1764,6 @@ msgctxt ""
msgid " ms"
msgstr " ms"
-#. R8X,
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1970,7 +1772,6 @@ msgctxt ""
msgid "Animation"
msgstr "Animación de texto"
-#. 1bOU
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1980,7 +1781,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. en:.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1990,7 +1790,6 @@ msgctxt ""
msgid "Text Animation"
msgstr "Animación de texto"
-#. %v0k
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1999,7 +1798,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. 1APd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2009,7 +1807,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. ?Zl?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2019,7 +1816,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. }oR6
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2029,7 +1825,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. MQPK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2039,7 +1834,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. +Chl
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2049,7 +1843,6 @@ msgctxt ""
msgid "~Link graphics"
msgstr "~Vincular imágenes"
-#. \#XZ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2059,7 +1852,6 @@ msgctxt ""
msgid "The Gallery theme 'Bullets' is empty (no graphics)."
msgstr "No hay imágenes en el tema 'Bullets' de la Gallery."
-#. $4M{
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2069,7 +1861,6 @@ msgctxt ""
msgid "Level"
msgstr "Nivel"
-#. RoU!
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2079,7 +1870,6 @@ msgctxt ""
msgid "Format"
msgstr "Formato"
-#. #,^G
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2089,7 +1879,6 @@ msgctxt ""
msgid "~Numbering"
msgstr "Nu~meración"
-#. DH6,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2099,7 +1888,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
-#. _*+A
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2109,7 +1897,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
-#. ON7Y
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2119,7 +1906,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
-#. Qw([
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2129,7 +1915,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
-#. `hUW
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2139,9 +1924,7 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
-#. eomF
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2150,9 +1933,7 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
-#. WMiE
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2161,7 +1942,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
-#. X{Ye
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2171,7 +1951,6 @@ msgctxt ""
msgid "Bullet"
msgstr "Viñeta"
-#. E-|@
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2181,7 +1960,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Imagen"
-#. hzrG
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2191,7 +1969,6 @@ msgctxt ""
msgid "Linked graphics"
msgstr "Imagen vinculada"
-#. V7o1
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2201,9 +1978,7 @@ msgctxt ""
msgid "None"
msgstr "Ninguna"
-#. rn]D
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2212,9 +1987,7 @@ msgctxt ""
msgid "Native Numbering"
msgstr "Numeración nativa"
-#. -]Mp
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2223,9 +1996,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (Búlgaro)"
-#. mL.j
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2234,9 +2005,7 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (Búlgaro)"
-#. 3/2X
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2245,9 +2014,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (Búlgaro)"
-#. 5.T5
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2256,9 +2023,7 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (Búlgaro)"
-#. )`w7
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2267,9 +2032,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (Ruso)"
-#. JOTg
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2278,9 +2041,7 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (Ruso)"
-#. Tj,h
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2289,9 +2050,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (Ruso)"
-#. )i{D
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2300,9 +2059,7 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (Ruso)"
-#. lhOs
#: numpages.src
-#, fuzzy
msgctxt ""
"numpages.src\n"
"RID_SVXPAGE_NUM_OPTIONS.LB_FMT\n"
@@ -2311,7 +2068,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (Serbio)"
-#. qUXC
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2322,7 +2078,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (Serbio)"
-#. ?t4n
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2333,7 +2088,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (Serbio)"
-#. uo6K
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2344,7 +2098,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (Serbio)"
-#. Vm+Z
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2355,7 +2108,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr "Α, Β, Γ, ... (Letras griegas mayúsculas)"
-#. _k/t
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2366,7 +2118,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr "α, β, γ, ... (Letras griegas minúsculas)"
-#. 4[Yd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2376,7 +2127,6 @@ msgctxt ""
msgid "Before"
msgstr "Delante"
-#. g@IR
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2386,7 +2136,6 @@ msgctxt ""
msgid "After"
msgstr "Detrás"
-#. lJ6F
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2396,7 +2145,6 @@ msgctxt ""
msgid "~Character Style"
msgstr "Es~tilo de carácter:"
-#. QOYj
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2406,7 +2154,6 @@ msgctxt ""
msgid "Color"
msgstr "Color"
-#. qb8X
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2416,7 +2163,6 @@ msgctxt ""
msgid "~Relative size"
msgstr "~Tamaño relativo"
-#. +kJ]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2426,7 +2172,6 @@ msgctxt ""
msgid "Show sublevels"
msgstr "Mostrar subniveles"
-#. r+h:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2436,7 +2181,6 @@ msgctxt ""
msgid "Start at"
msgstr "Empezar en"
-#. 8-=M
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2446,7 +2190,6 @@ msgctxt ""
msgid "~Alignment"
msgstr "~Alineación"
-#. VWr;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2456,7 +2199,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierda"
-#. fDE$
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2466,7 +2208,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centrado"
-#. 9qqd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2476,7 +2217,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecha"
-#. :6,,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2486,7 +2226,6 @@ msgctxt ""
msgid "Character"
msgstr "Carácter"
-#. .Sbe
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2496,7 +2235,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Imagen"
-#. ol:5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2506,7 +2244,6 @@ msgctxt ""
msgid "From file..."
msgstr "De archivo..."
-#. 5k%P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2516,7 +2253,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Gallery"
-#. .Z./
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2526,7 +2262,6 @@ msgctxt ""
msgid "Select..."
msgstr "Selección..."
-#. 4y@W
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2536,7 +2271,6 @@ msgctxt ""
msgid "Width"
msgstr "Ancho"
-#. :A!o
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2546,7 +2280,6 @@ msgctxt ""
msgid "Height"
msgstr "Altura"
-#. q!R}
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2556,7 +2289,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "Sincronización"
-#. h0e|
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2566,7 +2298,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. :8T2
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2576,7 +2307,6 @@ msgctxt ""
msgid "Top of baseline"
msgstr "Encima de línea de refefencia"
-#. ^$%:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2586,7 +2316,6 @@ msgctxt ""
msgid "Center of baseline"
msgstr "Centro de línea de referencia"
-#. M,3T
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2596,7 +2325,6 @@ msgctxt ""
msgid "Bottom of baseline"
msgstr "Debajo de línea de referencia"
-#. _ZGA
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2606,7 +2334,6 @@ msgctxt ""
msgid "Top of character"
msgstr "Carácter arriba"
-#. o^XK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2616,7 +2343,6 @@ msgctxt ""
msgid "Center of character"
msgstr "Carácter centrado"
-#. IB](
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2626,7 +2352,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr "Carácter abajo"
-#. XP9L
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2636,7 +2361,6 @@ msgctxt ""
msgid "Top of line"
msgstr "Línea superior"
-#. (E:?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2646,7 +2370,6 @@ msgctxt ""
msgid "Center of line"
msgstr "Línea centro"
-#. 53yX
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2656,7 +2379,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr "Línea inferior"
-#. =AXg
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2666,7 +2388,6 @@ msgctxt ""
msgid "All levels"
msgstr "Todos los niveles"
-#. F{=P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2676,7 +2397,6 @@ msgctxt ""
msgid "~Consecutive numbering"
msgstr "Numeración ~consecutiva"
-#. [6w]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2686,7 +2406,6 @@ msgctxt ""
msgid "There are no graphics in the 'Bullets' Gallery theme."
msgstr "No existen imágenes en el tema 'Viñetas' de la Galería."
-#. xh=-
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2696,7 +2415,6 @@ msgctxt ""
msgid "Level"
msgstr "Nivel"
-#. s`m~
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2706,7 +2424,6 @@ msgctxt ""
msgid "Position and spacing"
msgstr "Posición y espacio"
-#. jsIc
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2716,7 +2433,6 @@ msgctxt ""
msgid "Indent"
msgstr "Sangría"
-#. L![.
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2726,7 +2442,6 @@ msgctxt ""
msgid "Relati~ve"
msgstr "Relati~vo"
-#. 9I/5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2736,7 +2451,6 @@ msgctxt ""
msgid "Width of numbering"
msgstr "Ancho de numeraciones"
-#. z.1r
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2746,7 +2460,6 @@ msgctxt ""
msgid "Minimum space numbering <-> text"
msgstr "Distancia mínima número <-> texto"
-#. ubAm
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2756,7 +2469,6 @@ msgctxt ""
msgid "N~umbering alignment"
msgstr "~Alineación de numeración"
-#. SGd5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2766,7 +2478,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierda"
-#. ]8wE
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2776,7 +2487,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centrado"
-#. :mbi
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2786,7 +2496,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecha"
-#. `H}q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2796,7 +2505,6 @@ msgctxt ""
msgid "Numbering followed by"
msgstr "Numeración seguida por"
-#. H*vP
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2806,7 +2514,6 @@ msgctxt ""
msgid "Tab stop"
msgstr "Tabulación"
-#. @t]i
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2816,7 +2523,6 @@ msgctxt ""
msgid "Space"
msgstr "Espacio"
-#. #X\q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2826,7 +2532,6 @@ msgctxt ""
msgid "Nothing"
msgstr "Nada"
-#. 7/:h
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2836,7 +2541,6 @@ msgctxt ""
msgid "at"
msgstr "en"
-#. 5bSr
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2846,7 +2550,6 @@ msgctxt ""
msgid "Aligned at"
msgstr "Alineado a"
-#. q=6;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2856,7 +2559,6 @@ msgctxt ""
msgid "Indent at"
msgstr "Sangrar en"
-#. d%#9
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2866,7 +2568,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. B@RJ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2875,7 +2576,6 @@ msgctxt ""
msgid "Link"
msgstr "Vincular"
-#. 3p9J
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2885,7 +2585,6 @@ msgctxt ""
msgid "Before text"
msgstr "Antes del texto"
-#. :(BD
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2895,7 +2594,6 @@ msgctxt ""
msgid "After text"
msgstr "Después del texto"
-#. -ps@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2905,7 +2603,6 @@ msgctxt ""
msgid "~First line"
msgstr "~Primera línea"
-#. M_X8
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2915,7 +2612,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. ?cX^
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2925,7 +2621,6 @@ msgctxt ""
msgid "Indent"
msgstr "Sangría"
-#. dU]0
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2935,7 +2630,6 @@ msgctxt ""
msgid "Ab~ove paragraph"
msgstr "En~cima del párrafo"
-#. AV_o
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2945,7 +2639,6 @@ msgctxt ""
msgid "Below paragraph"
msgstr "Debajo del párrafo"
-#. Yqe@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2955,7 +2648,6 @@ msgctxt ""
msgid "Don't add space between paragraphs of the same style"
msgstr "No añadir espacio entre párrafos del mismo estilo"
-#. g:KA
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -2966,7 +2658,6 @@ msgctxt ""
msgid "Spacing"
msgstr "Espaciado"
-#. -}wG
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2976,7 +2667,6 @@ msgctxt ""
msgid "Single"
msgstr "Sencillo"
-#. 5Z0G
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2986,7 +2676,6 @@ msgctxt ""
msgid "1.5 lines"
msgstr "1,5 líneas"
-#. :wIT
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -2997,7 +2686,6 @@ msgctxt ""
msgid "Double"
msgstr "Doble"
-#. m4Q1
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3007,7 +2695,6 @@ msgctxt ""
msgid "Proportional"
msgstr "Proporcional"
-#. p$9A
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3017,7 +2704,6 @@ msgctxt ""
msgid "At least"
msgstr "Al menos"
-#. ~WXN
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3027,7 +2713,6 @@ msgctxt ""
msgid "Leading"
msgstr "Inicial"
-#. SKqc
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3037,7 +2722,6 @@ msgctxt ""
msgid "Fixed"
msgstr "Fijo"
-#. 2YK;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3047,7 +2731,6 @@ msgctxt ""
msgid "of"
msgstr "de"
-#. $47@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3057,7 +2740,6 @@ msgctxt ""
msgid "Line spacing"
msgstr "Interlineado"
-#. DF^-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3067,7 +2749,6 @@ msgctxt ""
msgid "A~ctivate"
msgstr "A~ctivar"
-#. pPeY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3077,7 +2758,6 @@ msgctxt ""
msgid "Register-true"
msgstr "Conformidad de registro"
-#. p\2w
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3086,7 +2766,6 @@ msgctxt ""
msgid "Indents and Spacing"
msgstr "Sangrías y espaciado"
-#. +iVb
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3096,7 +2775,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. rn^?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3106,7 +2784,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierda"
-#. S+nO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3116,7 +2793,6 @@ msgctxt ""
msgid "Righ~t"
msgstr "~Derecha"
-#. \\qF
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3126,7 +2802,6 @@ msgctxt ""
msgid "~Center"
msgstr "~Centrado"
-#. ^eP~
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3136,7 +2811,6 @@ msgctxt ""
msgid "Justified"
msgstr "Justificado"
-#. -%1v
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3146,7 +2820,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr "~A la izquierda/Arriba"
-#. QM-q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3156,7 +2829,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr "~A la derecha/Abajo"
-#. e,mA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3166,7 +2838,6 @@ msgctxt ""
msgid "~Last line"
msgstr "Ú~ltima línea"
-#. K+u#
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3176,7 +2847,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. ls1d
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3186,7 +2856,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierda"
-#. BkV=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3196,7 +2865,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centro"
-#. v4iU
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3206,7 +2874,6 @@ msgctxt ""
msgid "Justified"
msgstr "Justificado"
-#. #g3s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3216,7 +2883,6 @@ msgctxt ""
msgid "~Expand single word"
msgstr "E~xpandir una palabra"
-#. S(\L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3226,7 +2892,6 @@ msgctxt ""
msgid "Snap to text grid (if active)"
msgstr "Usar cuadrícula (si activada)"
-#. X(rr
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3236,7 +2901,6 @@ msgctxt ""
msgid "Text-to-text"
msgstr "Texto a texto"
-#. jT)2
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3246,7 +2910,6 @@ msgctxt ""
msgid "~Alignment"
msgstr "~Alineación"
-#. S+0s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3256,7 +2919,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. U#tn
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3266,7 +2928,6 @@ msgctxt ""
msgid "Base line"
msgstr "Línea de base"
-#. pHU+
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3276,7 +2937,6 @@ msgctxt ""
msgid "Top"
msgstr "Arriba"
-#. pHHI
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3286,7 +2946,6 @@ msgctxt ""
msgid "Middle"
msgstr "Centrado"
-#. i|[!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3296,7 +2955,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Abajo"
-#. T1vl
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3306,7 +2964,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. ;pI?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3316,7 +2973,6 @@ msgctxt ""
msgid "Text ~direction"
msgstr "~Dirección de escritura"
-#. Sl0L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3325,7 +2981,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. O6\q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3335,7 +2990,6 @@ msgctxt ""
msgid "A~utomatically"
msgstr "A~utomáticamente"
-#. s4qf
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3345,7 +2999,6 @@ msgctxt ""
msgid "C~haracters at line end"
msgstr "C~aracteres al final de la línea"
-#. %kqA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3355,7 +3008,6 @@ msgctxt ""
msgid "Cha~racters at line begin"
msgstr "Cara~cteres al principio de la línea"
-#. ;PO.
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3365,7 +3017,6 @@ msgctxt ""
msgid "~Maximum number of consecutive hyphens"
msgstr "~Cantidad máxima de guiones consecutivos"
-#. Omad
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3375,7 +3026,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Separación silábica"
-#. ]Sp@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3385,7 +3035,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. E1i\
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3395,7 +3044,6 @@ msgctxt ""
msgid "Breaks"
msgstr "Saltos"
-#. rU:)
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3405,7 +3053,6 @@ msgctxt ""
msgid "Insert"
msgstr "Insertar"
-#. ^[8,
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3415,7 +3062,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Tipo"
-#. +2m-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3425,7 +3071,6 @@ msgctxt ""
msgid "Page"
msgstr "Página"
-#. (v\9
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3435,7 +3080,6 @@ msgctxt ""
msgid "Column"
msgstr "Columna"
-#. 8C1!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3445,7 +3089,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. VMnE
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3455,7 +3098,6 @@ msgctxt ""
msgid "Before"
msgstr "Delante"
-#. G;4q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3465,7 +3107,6 @@ msgctxt ""
msgid "After"
msgstr "Después"
-#. Qx[/
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3475,7 +3116,6 @@ msgctxt ""
msgid "With Page St~yle"
msgstr "C~on estilo de página"
-#. A||6
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3485,7 +3125,6 @@ msgctxt ""
msgid "Page ~number"
msgstr "Nú~mero página"
-#. 6B?@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3495,7 +3134,6 @@ msgctxt ""
msgid "~Do not split paragraph"
msgstr "~No dividir párrafo"
-#. \/51
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3505,7 +3143,6 @@ msgctxt ""
msgid "~Keep with next paragraph"
msgstr "Mantener párra~fos juntos"
-#. [q5c
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3515,7 +3152,6 @@ msgctxt ""
msgid "~Orphan control"
msgstr "Ajuste de ~huérfanas"
-#. ;)R[
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3525,7 +3161,6 @@ msgctxt ""
msgid "Lines"
msgstr "Líneas"
-#. s_uO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3535,7 +3170,6 @@ msgctxt ""
msgid "~Widow control"
msgstr "Ajuste de ~viudas"
-#. =LpZ
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3545,7 +3179,6 @@ msgctxt ""
msgid "Lines"
msgstr "Líneas"
-#. n9mP
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3554,7 +3187,6 @@ msgctxt ""
msgid "Text Flow"
msgstr "Flujo del texto"
-#. (Z.s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3564,7 +3196,6 @@ msgctxt ""
msgid "Line change"
msgstr "Cambio de fila"
-#. OaEY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3574,7 +3205,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to the beginning and end of lines"
msgstr "Considerar lista de caracteres no aceptables a comienzo y fin de línea"
-#. -ajB
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3584,7 +3214,6 @@ msgctxt ""
msgid "Allow hanging punctuation"
msgstr "Permitir puntuación libre"
-#. _OC;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3594,7 +3223,6 @@ msgctxt ""
msgid "Apply spacing between Asian, Latin and Complex text"
msgstr "Aplicar espacio entre texto asiático, latino y complejo"
-#. Wkuv
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3603,7 +3231,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "Tipografía asiática"
-#. Z|=E
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3613,7 +3240,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ]/7=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3622,7 +3248,6 @@ msgctxt ""
msgid "Page Style"
msgstr "Estilo de página"
-#. lJ(k
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3632,7 +3257,6 @@ msgctxt ""
msgid "Event"
msgstr "Evento"
-#. i0E2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3642,7 +3266,6 @@ msgctxt ""
msgid "Assigned macro"
msgstr "Macro asignada"
-#. qfu2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3652,7 +3275,6 @@ msgctxt ""
msgid "~Existing macros\n"
msgstr "Macros ~existentes\n"
-#. ts5_
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3662,7 +3284,6 @@ msgctxt ""
msgid "~Assign"
msgstr "~Asignar"
-#. Jft1
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3672,7 +3293,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Quitar"
-#. \1di
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3682,7 +3302,6 @@ msgctxt ""
msgid "Macros"
msgstr "Macros"
-#. mt7o
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3691,7 +3310,6 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Asignar macro"
-#. $-R1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3701,7 +3319,6 @@ msgctxt ""
msgid "Replace"
msgstr "Reemplazar"
-#. %iDN
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3711,7 +3328,6 @@ msgctxt ""
msgid "Exceptions"
msgstr "Excepciones"
-#. r$zB
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3721,7 +3337,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. ]?@*
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3731,7 +3346,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. h#j_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3741,7 +3355,6 @@ msgctxt ""
msgid "Localized Options"
msgstr "Opciones regionales"
-#. (O)t
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3751,7 +3364,6 @@ msgctxt ""
msgid "Word Completion"
msgstr "Completado de palabras"
-#. K({T
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3761,7 +3373,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr "Etiquetas Inteligentes"
-#. d@N`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3771,7 +3382,6 @@ msgctxt ""
msgid "Replacements and exceptions for language:"
msgstr "Sustituciones y excepciones para el idioma:"
-#. `jKj
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3780,7 +3390,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "Autocorrección"
-#. mv.C
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3790,7 +3399,6 @@ msgctxt ""
msgid "Use replacement table"
msgstr "Usar la tabla de sustituciones"
-#. 0X7D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3800,7 +3408,6 @@ msgctxt ""
msgid "Correct TWo INitial CApitals"
msgstr "Corregir DOs MAyúsculas SEguidas"
-#. FMV4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3810,7 +3417,6 @@ msgctxt ""
msgid "Capitalize first letter of every sentence"
msgstr "Iniciar todas las frases con mayúsculas"
-#. |L6G
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3820,7 +3426,6 @@ msgctxt ""
msgid "Automatic *bold* and _underline_"
msgstr "En *negrita* y _subrayado_ automáticamente."
-#. H[+g
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3830,7 +3435,6 @@ msgctxt ""
msgid "Ignore double spaces"
msgstr "Ignorar espacios dobles"
-#. X,n4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3840,7 +3444,6 @@ msgctxt ""
msgid "URL Recognition"
msgstr "Reconocer URL"
-#. S+Mv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3850,7 +3453,6 @@ msgctxt ""
msgid "Replace dashes"
msgstr "Reemplazar guiones"
-#. B`19
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3860,7 +3462,6 @@ msgctxt ""
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Corregir el uso accidental de la tecla Bloq Mayús"
-#. ukmo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3869,7 +3470,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. kXDp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3879,7 +3479,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~Editar..."
-#. _iVG
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3889,7 +3488,6 @@ msgctxt ""
msgid "[M]"
msgstr "[M]"
-#. E\g,
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3899,7 +3497,6 @@ msgctxt ""
msgid "[T]"
msgstr "[E]"
-#. pT*_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3909,7 +3506,6 @@ msgctxt ""
msgid "[M]: Replace while modifying existing text"
msgstr "[M]: Reemplazar al modificar el texto existente"
-#. 0Qc8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3919,7 +3515,6 @@ msgctxt ""
msgid "[T]: AutoFormat/AutoCorrect while typing"
msgstr "[E]: Autoformato y autocorrección al escribir"
-#. M.gd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3929,7 +3524,6 @@ msgctxt ""
msgid "Remove blank paragraphs"
msgstr "Eliminar los párrafos vacíos"
-#. `1g0
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3939,7 +3533,6 @@ msgctxt ""
msgid "Replace Custom Styles"
msgstr "Reemplazar los estilos personalizados"
-#. 3.Pp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3949,7 +3542,6 @@ msgctxt ""
msgid "Replace bullets with: "
msgstr "Reemplazar viñetas por: "
-#. -j6z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3959,7 +3551,6 @@ msgctxt ""
msgid "Combine single line paragraphs if length greater than"
msgstr "Combinar los párrafos de una sóla línea si la longitud es mayor al"
-#. ag=D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3969,7 +3560,6 @@ msgctxt ""
msgid "Apply numbering - symbol: "
msgstr "Aplicar numeración - símbolo: "
-#. G_2y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3979,7 +3569,6 @@ msgctxt ""
msgid "Apply border"
msgstr "Aplicar borde"
-#. 0]MR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3989,7 +3578,6 @@ msgctxt ""
msgid "Create table"
msgstr "Crear tabla"
-#. 8kir
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3999,7 +3587,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr "Aplicar estilos"
-#. +[L8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4009,7 +3596,6 @@ msgctxt ""
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Eliminar espacios y tabuladores al principio y al final de los párrafos"
-#. ]UYr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4019,7 +3605,6 @@ msgctxt ""
msgid "Delete spaces and tabs at end and start of line"
msgstr "Eliminar espacios y tabuladores al final y al principio de las líneas"
-#. ^1|!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4029,7 +3614,6 @@ msgctxt ""
msgid "Minimum size"
msgstr "Tamaño mínimo"
-#. 6\kd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4038,7 +3622,6 @@ msgctxt ""
msgid "Combine"
msgstr "Combinar"
-#. Md6)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4048,7 +3631,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr "Reempla~zar"
-#. v=7;
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4058,7 +3640,6 @@ msgctxt ""
msgid "~With:"
msgstr "~Por:"
-#. j!Eh
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4068,7 +3649,6 @@ msgctxt ""
msgid "~Text only"
msgstr "~Solo texto"
-#. ~H{[
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4078,7 +3658,6 @@ msgctxt ""
msgid "~New"
msgstr "~Nuevo"
-#. FeJZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4088,7 +3667,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. 5=_`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4098,7 +3676,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~Reemplazar"
-#. ECB7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4108,7 +3685,6 @@ msgctxt ""
msgid "Abbreviations (no subsequent capital)"
msgstr "Abreviaturas (a las que no siguen mayúsculas)"
-#. qJB2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4118,7 +3694,6 @@ msgctxt ""
msgid "~New"
msgstr "~Nuevo"
-#. )H[d
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4128,7 +3703,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. )n=I
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4138,7 +3712,6 @@ msgctxt ""
msgid "~AutoInclude"
msgstr "~Incluir automáticamente"
-#. qji9
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4148,7 +3721,6 @@ msgctxt ""
msgid "Words with TWo INitial CApitals"
msgstr "Palabras que COmienzan COn DOs MAyúsculas"
-#. E{Gr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4158,7 +3730,6 @@ msgctxt ""
msgid "Ne~w"
msgstr "Nue~vo"
-#. Jd!_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4168,7 +3739,6 @@ msgctxt ""
msgid "Dele~te"
msgstr "E~liminar"
-#. a7:W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4178,7 +3748,6 @@ msgctxt ""
msgid "A~utoInclude"
msgstr "Incl~uir automáticamente"
-#. ^}`W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4188,7 +3757,6 @@ msgctxt ""
msgid "New abbreviations"
msgstr "Nuevas abreviaturas"
-#. RSVZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4198,7 +3766,6 @@ msgctxt ""
msgid "Delete abbreviations"
msgstr "Eliminar abreviaturas"
-#. auO@
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4208,7 +3775,6 @@ msgctxt ""
msgid "New words with two initial capitals"
msgstr "Palabras nuevas con dos mayúsculas iniciales"
-#. A.R2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4218,7 +3784,6 @@ msgctxt ""
msgid "Delete words with two initial capitals"
msgstr "Eliminar palabras con dos mayúsculas iniciales"
-#. JFG?
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4228,7 +3793,6 @@ msgctxt ""
msgid "[M]"
msgstr "[M]"
-#. dc!2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4238,7 +3802,6 @@ msgctxt ""
msgid "[T]"
msgstr "[E]"
-#. C+Ug
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4248,7 +3811,6 @@ msgctxt ""
msgid "Add non breaking space before specific punctuation marks in french text"
msgstr "Añadir un espacio de no separación antes de ciertos signos de puntuación en textos franceses"
-#. ]2VJ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4258,7 +3820,6 @@ msgctxt ""
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Formatear los sufijos de números ordinales (1ro -> 1^ro)"
-#. -A%1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4268,7 +3829,6 @@ msgctxt ""
msgid "Single quotes"
msgstr "Comillas simples"
-#. 2ie3
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4278,7 +3838,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr "Reempla~zar"
-#. B74f
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4288,7 +3847,6 @@ msgctxt ""
msgid "~Start quote:"
msgstr "Comilla de ~apertura:"
-#. p/_n
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4298,7 +3856,6 @@ msgctxt ""
msgid "~End quote:"
msgstr "Comilla de ~cierre:"
-#. EX/O
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4308,7 +3865,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Predeterminado"
-#. [iUT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4318,7 +3874,6 @@ msgctxt ""
msgid "Double quotes"
msgstr "Comillas dobles"
-#. )t3#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4328,7 +3883,6 @@ msgctxt ""
msgid "Repl~ace"
msgstr "Reemp~lazar"
-#. DrFf
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4338,7 +3892,6 @@ msgctxt ""
msgid "Start q~uote:"
msgstr "C~omilla de apertura:"
-#. :3`Z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4348,7 +3901,6 @@ msgctxt ""
msgid "E~nd quote:"
msgstr "Comilla de cie~rre:"
-#. !7g6
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4358,7 +3910,6 @@ msgctxt ""
msgid "De~fault"
msgstr "~Predeterminado"
-#. GPLo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4368,7 +3919,6 @@ msgctxt ""
msgid "Start quote"
msgstr "Comilla de apertura"
-#. ).eR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4378,7 +3928,6 @@ msgctxt ""
msgid "End quote"
msgstr "Comilla de cierre"
-#. N@eH
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4388,7 +3937,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. ^)Z|
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4398,7 +3946,6 @@ msgctxt ""
msgid "Single quotes default"
msgstr "Comillas simples en forma predeterminada"
-#. |kXi
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4408,7 +3955,6 @@ msgctxt ""
msgid "Double quotes default"
msgstr "Comillas dobles en forma predeterminada"
-#. 5X,b
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4418,7 +3964,6 @@ msgctxt ""
msgid "Start quote of single quotes"
msgstr "Comilla inicial para las comillas simples"
-#. ]QB^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4428,7 +3973,6 @@ msgctxt ""
msgid "Start quote of double quotes"
msgstr "Comilla inicial para las comillas dobles"
-#. $HU7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4438,7 +3982,6 @@ msgctxt ""
msgid "End quote of single quotes"
msgstr "Comilla final para las comillas simples"
-#. SjPl
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4448,7 +3991,6 @@ msgctxt ""
msgid "End quote of double quotes"
msgstr "Comilla final para las comillas dobles"
-#. LQ^p
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4457,7 +3999,6 @@ msgctxt ""
msgid "Localized Options"
msgstr "Opciones regionales"
-#. bb2+
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4467,7 +4008,6 @@ msgctxt ""
msgid "Enable word ~completion"
msgstr "Activar el ~completado de palabras"
-#. ~kT\
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4477,7 +4017,6 @@ msgctxt ""
msgid "~Append space"
msgstr "~Anexar un espacio"
-#. 5Ilv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4487,7 +4026,6 @@ msgctxt ""
msgid "~Show as tip"
msgstr "~Mostrar como consejo emergente"
-#. )rBV
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4497,7 +4035,6 @@ msgctxt ""
msgid "C~ollect words"
msgstr "Rec~olectar palabras"
-#. Ox(#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4507,7 +4044,6 @@ msgctxt ""
msgid "~When closing a document, remove the words collected from it from the list"
msgstr "~Al cerrar el documento, eliminar de la lista las palabras que fueron recolectadas del mismo"
-#. k-1!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4517,7 +4053,6 @@ msgctxt ""
msgid "Acc~ept with"
msgstr "Ac~eptar con"
-#. eogE
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4527,7 +4062,6 @@ msgctxt ""
msgid "Mi~n. word length"
msgstr "Longitud de palabra mí~n."
-#. %)vT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4537,7 +4071,6 @@ msgctxt ""
msgid "~Max. entries"
msgstr "~Máxima cantidad de elementos"
-#. 7RkL
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4547,7 +4080,6 @@ msgctxt ""
msgid "~Delete Entry"
msgstr "~Eliminar elemento"
-#. zT|y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4556,7 +4088,6 @@ msgctxt ""
msgid "Word Completion"
msgstr "Completado de palabras"
-#. OGA)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4566,7 +4097,6 @@ msgctxt ""
msgid "Label text with smart tags"
msgstr "Etiquetar el texto con etiquetas inteligentes"
-#. O4k5
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4576,7 +4106,6 @@ msgctxt ""
msgid "Currently installed smart tags"
msgstr "Etiquetas inteligentes instaladas actualmente"
-#. Czo^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4586,7 +4115,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Propiedades..."
-#. ME8-
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4595,7 +4123,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr "Etiquetas inteligentes"
-#. C%az
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4605,7 +4132,6 @@ msgctxt ""
msgid "Line properties"
msgstr "Propiedades de Línea"
-#. 2RU!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4615,7 +4141,6 @@ msgctxt ""
msgid "~Style"
msgstr "E~stilo"
-#. @6!$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4625,7 +4150,6 @@ msgctxt ""
msgid "Colo~r"
msgstr "Colo~r"
-#. \D?-
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4635,7 +4159,6 @@ msgctxt ""
msgid "~Width"
msgstr "An~cho"
-#. -@}2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4645,7 +4168,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~Transparencia"
-#. Hpp[
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4655,7 +4177,6 @@ msgctxt ""
msgid "Arrow styles"
msgstr "Estilos de flecha"
-#. 3OsL
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4665,7 +4186,6 @@ msgctxt ""
msgid "St~yle"
msgstr "Est~ilo"
-#. O7$H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4675,7 +4195,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "An~cho"
-#. 6d+_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4685,7 +4204,6 @@ msgctxt ""
msgid "Ce~nter"
msgstr "Ce~ntro"
-#. (r[L
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4695,7 +4213,6 @@ msgctxt ""
msgid "C~enter"
msgstr "C~entro"
-#. ~=o$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4705,7 +4222,6 @@ msgctxt ""
msgid "Synchroni~ze ends"
msgstr "Sincroni~zar finales"
-#. KoFj
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4715,7 +4231,6 @@ msgctxt ""
msgid "Corner and cap styles"
msgstr ""
-#. \lyH
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4726,7 +4241,6 @@ msgctxt ""
msgid "~Corner style"
msgstr "Estilo de esquina"
-#. (bCn
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4736,7 +4250,6 @@ msgctxt ""
msgid "Rounded"
msgstr "Redondeado"
-#. s4nS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4746,7 +4259,6 @@ msgctxt ""
msgid "- none -"
msgstr "- sin -"
-#. A[nJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4756,7 +4268,6 @@ msgctxt ""
msgid "Mitered"
msgstr "Doblado"
-#. XHol
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4766,7 +4277,6 @@ msgctxt ""
msgid "Beveled"
msgstr "Biselado"
-#. `e16
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4776,7 +4286,6 @@ msgctxt ""
msgid "Ca~p style"
msgstr ""
-#. /vXe
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4786,7 +4295,6 @@ msgctxt ""
msgid "Flat"
msgstr "Plano"
-#. \%w@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4796,7 +4304,6 @@ msgctxt ""
msgid "Round"
msgstr "R~edondear"
-#. L}p.
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4807,7 +4314,6 @@ msgctxt ""
msgid "Square"
msgstr "Cuadrado"
-#. q.CD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4817,7 +4323,6 @@ msgctxt ""
msgid "Icon"
msgstr "Icono"
-#. @bEf
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4827,7 +4332,6 @@ msgctxt ""
msgid "No Symbol"
msgstr "Sin símbolo"
-#. [HWA
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4837,7 +4341,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. wNoJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4847,7 +4350,6 @@ msgctxt ""
msgid "From file..."
msgstr "Desde documento..."
-#. /_t{
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4857,7 +4359,6 @@ msgctxt ""
msgid "Gallery"
msgstr "Galería"
-#. Rrei
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4867,7 +4368,6 @@ msgctxt ""
msgid "Symbols"
msgstr "Símbolos"
-#. e=WC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4877,7 +4377,6 @@ msgctxt ""
msgid "Select..."
msgstr "Seleccionar..."
-#. ,L[E
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4887,7 +4386,6 @@ msgctxt ""
msgid "Width"
msgstr "Ancho"
-#. faep
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4897,7 +4395,6 @@ msgctxt ""
msgid "Height"
msgstr "Altura"
-#. O*%]
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4907,7 +4404,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "Mantener razón"
-#. Y[la
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4917,7 +4413,6 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. lB[j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4927,7 +4422,6 @@ msgctxt ""
msgid "Start style"
msgstr "Estilo inicial"
-#. d8%,
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4937,7 +4431,6 @@ msgctxt ""
msgid "End style"
msgstr "Estilo final"
-#. kcar
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4947,7 +4440,6 @@ msgctxt ""
msgid "Start width"
msgstr "Ancho inicial"
-#. pM`y
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4957,7 +4449,6 @@ msgctxt ""
msgid "End width"
msgstr "Ancho final"
-#. %an!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4967,7 +4458,6 @@ msgctxt ""
msgid "Start with center"
msgstr "Iniciar al centro"
-#. V-Kg
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4977,7 +4467,6 @@ msgctxt ""
msgid "End with center"
msgstr "Terminar al centro"
-#. Y[a%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4986,7 +4475,6 @@ msgctxt ""
msgid "Lines"
msgstr "Líneas"
-#. R?]H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4996,7 +4484,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. ;rab
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5006,7 +4493,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Tipo"
-#. RU*2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5016,7 +4502,6 @@ msgctxt ""
msgid "Dot"
msgstr "Punto"
-#. )_!j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5026,7 +4511,6 @@ msgctxt ""
msgid "Dash"
msgstr "Guión"
-#. 7O2m
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5036,7 +4520,6 @@ msgctxt ""
msgid "Dot"
msgstr "Punto"
-#. ^F}_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5046,7 +4529,6 @@ msgctxt ""
msgid "Dash"
msgstr "Guión"
-#. @,:%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5056,7 +4538,6 @@ msgctxt ""
msgid "~Number"
msgstr "~Número"
-#. 9wnD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5066,7 +4547,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Longitud"
-#. W%eJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5076,7 +4556,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "Es~pacio"
-#. #-OS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5086,7 +4565,6 @@ msgctxt ""
msgid "~Fit to line width"
msgstr "~Ajustar al ancho de la línea"
-#. S^Zl
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5096,7 +4574,6 @@ msgctxt ""
msgid "Line style"
msgstr "Estilo de línea"
-#. 4ov8
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5106,7 +4583,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. }T1#
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5116,7 +4592,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Modificar..."
-#. ?=2c
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5126,7 +4601,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Eliminar..."
-#. BF%@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5136,7 +4610,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 4Cd.
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5146,7 +4619,6 @@ msgctxt ""
msgid "Load Line Styles"
msgstr "Cargar estilos de línea"
-#. igk%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5156,7 +4628,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 7.fE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5166,7 +4637,6 @@ msgctxt ""
msgid "Save Line Styles"
msgstr "Guardar estilos de línea"
-#. n%Vq
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5176,7 +4646,6 @@ msgctxt ""
msgid "Start type"
msgstr "Tipo inicial"
-#. p}ZC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5186,7 +4655,6 @@ msgctxt ""
msgid "End type"
msgstr "Tipo final"
-#. vcqy
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5196,7 +4664,6 @@ msgctxt ""
msgid "Start number"
msgstr "Número inicial"
-#. h3AC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5206,7 +4673,6 @@ msgctxt ""
msgid "End number"
msgstr "Número final"
-#. QtEh
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5216,7 +4682,6 @@ msgctxt ""
msgid "Start length"
msgstr "Longitud inicial"
-#. ?3ke
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5226,7 +4691,6 @@ msgctxt ""
msgid "End length"
msgstr "Longitud final"
-#. +}V3
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5235,7 +4699,6 @@ msgctxt ""
msgid "Define line styles"
msgstr "Define los estilos de línea"
-#. eF$x
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5245,7 +4708,6 @@ msgctxt ""
msgid "Organize arrow styles"
msgstr "Organizar estilos de flecha"
-#. dexG
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5255,7 +4717,6 @@ msgctxt ""
msgid "Add a selected object to create new arrow styles."
msgstr "Agrega un objeto seleccionado para crear nuevos estilos de flecha"
-#. pN,$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5265,7 +4726,6 @@ msgctxt ""
msgid "Arrow style"
msgstr "Estilo de flecha"
-#. ~Vj/
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5275,7 +4735,6 @@ msgctxt ""
msgid "~Title"
msgstr "~Título"
-#. ~-~j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5285,7 +4744,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~Añadir..."
-#. *5X^
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5295,7 +4753,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "~Modificar..."
-#. gab$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5305,7 +4762,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "~Eliminar..."
-#. =aen
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5315,7 +4771,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. JGf;
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5325,7 +4780,6 @@ msgctxt ""
msgid "Load Arrow Styles"
msgstr "Cargar estilos de flecha"
-#. mdqE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5335,7 +4789,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. ,)vS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5345,7 +4798,6 @@ msgctxt ""
msgid "Save Arrow Styles"
msgstr "Guardar estilos de flecha"
-#. g*JP
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5354,7 +4806,6 @@ msgctxt ""
msgid "Arrowheads"
msgstr "Punta de línea"
-#. ciPm
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5364,7 +4815,6 @@ msgctxt ""
msgid "Line"
msgstr "Línea"
-#. i$sT
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5374,7 +4824,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Sombra"
-#. #0Y4
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5384,7 +4833,6 @@ msgctxt ""
msgid "Line Styles"
msgstr "Estilos de líneas"
-#. +,@9
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5394,7 +4842,6 @@ msgctxt ""
msgid "Arrow Styles"
msgstr "Estilos de flechas"
-#. H-#b
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5403,7 +4850,6 @@ msgctxt ""
msgid "Line"
msgstr "Línea"
-#. /|U|
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5413,7 +4859,6 @@ msgctxt ""
msgid "~Category"
msgstr "~Categoría"
-#. !Z5N
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5423,7 +4868,6 @@ msgctxt ""
msgid "All"
msgstr "Todo"
-#. QQOp
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5433,7 +4877,6 @@ msgctxt ""
msgid "User-defined"
msgstr "Definido por el usuario"
-#. :I\4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5443,7 +4886,6 @@ msgctxt ""
msgid "Number"
msgstr "Número"
-#. ^cP:
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5453,7 +4895,6 @@ msgctxt ""
msgid "Percent"
msgstr "Porcentaje"
-#. Q*F8
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5463,7 +4904,6 @@ msgctxt ""
msgid "Currency"
msgstr "Moneda"
-#. )s1O
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5473,7 +4913,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. sG:@
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5483,7 +4922,6 @@ msgctxt ""
msgid "Time"
msgstr "Tiempo"
-#. fj6?
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5493,7 +4931,6 @@ msgctxt ""
msgid "Scientific"
msgstr "Científico"
-#. ^A8z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5503,7 +4940,6 @@ msgctxt ""
msgid "Fraction"
msgstr "Fracción"
-#. (iMc
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5513,7 +4949,6 @@ msgctxt ""
msgid "Boolean Value"
msgstr "Valor buleano"
-#. cqPK
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5523,7 +4958,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. |4Oa
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5533,7 +4967,6 @@ msgctxt ""
msgid "~Format code"
msgstr "~Formato de código"
-#. H[8Z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5543,7 +4976,6 @@ msgctxt ""
msgid "F~ormat"
msgstr "F~ormato"
-#. sq*T
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5553,7 +4985,6 @@ msgctxt ""
msgid "Automatically"
msgstr "Automático"
-#. ,8.k
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5563,7 +4994,6 @@ msgctxt ""
msgid "~Decimal places"
msgstr "~Decimales"
-#. !1fL
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5573,7 +5003,6 @@ msgctxt ""
msgid "Leading ~zeroes"
msgstr "Ceros princi~pales"
-#. QV;e
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5583,7 +5012,6 @@ msgctxt ""
msgid "~Negative numbers red"
msgstr "~Número negativos en rojo"
-#. {Ro/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5593,7 +5021,6 @@ msgctxt ""
msgid "~Thousands separator"
msgstr "Separador de ~miles"
-#. %3E4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5603,7 +5030,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. [O\)
#: numfmt.src
#, fuzzy
msgctxt ""
@@ -5614,7 +5040,6 @@ msgctxt ""
msgid "~Language"
msgstr "~Lenguaje"
-#. X@}M
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5624,7 +5049,6 @@ msgctxt ""
msgid "So~urce format"
msgstr "Formato fuen~te"
-#. qG\P
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5634,7 +5058,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. G[Q(
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5644,7 +5067,6 @@ msgctxt ""
msgid "Add"
msgstr "Añadir"
-#. K,^/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5654,7 +5076,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. *BMt
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5664,7 +5085,6 @@ msgctxt ""
msgid "Remove"
msgstr "Eliminar"
-#. A/zQ
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5674,7 +5094,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. Q5D7
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5684,7 +5103,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr "Editar comentario"
-#. bH#n
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5694,7 +5112,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. DUv#
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5703,7 +5120,6 @@ msgctxt ""
msgid "Number Format"
msgstr "Formato de número"
-#. EWij
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5713,7 +5129,6 @@ msgctxt ""
msgid "Borders"
msgstr "Bordes"
-#. ?^{_
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5723,7 +5138,6 @@ msgctxt ""
msgid "Background"
msgstr "Fondo"
-#. b4iR
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5732,7 +5146,6 @@ msgctxt ""
msgid "Border / Background"
msgstr "Bordes / Fondo"
-#. NkV_
#: page.src
msgctxt ""
"page.src\n"
@@ -5742,7 +5155,6 @@ msgctxt ""
msgid "Paper format"
msgstr "Formato de papel"
-#. jQ+m
#: page.src
msgctxt ""
"page.src\n"
@@ -5752,7 +5164,6 @@ msgctxt ""
msgid "~Format"
msgstr "~Formato"
-#. *cE#
#: page.src
msgctxt ""
"page.src\n"
@@ -5762,7 +5173,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Ancho"
-#. 9a{M
#: page.src
msgctxt ""
"page.src\n"
@@ -5772,7 +5182,6 @@ msgctxt ""
msgid "~Height"
msgstr "A~ltura"
-#. .8Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -5782,7 +5191,6 @@ msgctxt ""
msgid "Orientation"
msgstr "Orientación"
-#. +Q$L
#: page.src
msgctxt ""
"page.src\n"
@@ -5792,7 +5200,6 @@ msgctxt ""
msgid "~Portrait"
msgstr "~Vertical"
-#. \y3M
#: page.src
msgctxt ""
"page.src\n"
@@ -5802,7 +5209,6 @@ msgctxt ""
msgid "L~andscape"
msgstr "~Apaisada"
-#. x|e8
#: page.src
msgctxt ""
"page.src\n"
@@ -5812,7 +5218,6 @@ msgctxt ""
msgid "~Text direction"
msgstr "Dirección del ~texto"
-#. B,2B
#: page.src
msgctxt ""
"page.src\n"
@@ -5822,7 +5227,6 @@ msgctxt ""
msgid "Paper ~tray"
msgstr "~Alimentación del papel"
-#. -2`o
#: page.src
msgctxt ""
"page.src\n"
@@ -5832,7 +5236,6 @@ msgctxt ""
msgid "Margins"
msgstr "Márgenes"
-#. Y/qs
#: page.src
msgctxt ""
"page.src\n"
@@ -5842,7 +5245,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierdo"
-#. xn-)
#: page.src
msgctxt ""
"page.src\n"
@@ -5852,7 +5254,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Derecho"
-#. dmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -5862,7 +5263,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Superior"
-#. TXd3
#: page.src
msgctxt ""
"page.src\n"
@@ -5872,7 +5272,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~Inferior"
-#. ;YeP
#: page.src
msgctxt ""
"page.src\n"
@@ -5882,7 +5281,6 @@ msgctxt ""
msgid "Layout settings"
msgstr "Configuración del diseño"
-#. \/\B
#: page.src
msgctxt ""
"page.src\n"
@@ -5892,7 +5290,6 @@ msgctxt ""
msgid "Page layout"
msgstr "Diseño de página"
-#. OKAX
#: page.src
msgctxt ""
"page.src\n"
@@ -5902,7 +5299,6 @@ msgctxt ""
msgid "Right and left"
msgstr "Derecha e izquierda"
-#. d$K5
#: page.src
msgctxt ""
"page.src\n"
@@ -5912,7 +5308,6 @@ msgctxt ""
msgid "Mirrored"
msgstr "Reflejado"
-#. zkb9
#: page.src
msgctxt ""
"page.src\n"
@@ -5922,7 +5317,6 @@ msgctxt ""
msgid "Only right"
msgstr "Solo derecha"
-#. ;*O#
#: page.src
msgctxt ""
"page.src\n"
@@ -5932,7 +5326,6 @@ msgctxt ""
msgid "Only left"
msgstr "Solo izquierda"
-#. S_Tj
#: page.src
msgctxt ""
"page.src\n"
@@ -5942,7 +5335,6 @@ msgctxt ""
msgid "For~mat"
msgstr "For~mato"
-#. G%B}
#: page.src
#, fuzzy
msgctxt ""
@@ -5953,7 +5345,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
-#. *E(=
#: page.src
#, fuzzy
msgctxt ""
@@ -5964,7 +5355,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
-#. :qQZ
#: page.src
#, fuzzy
msgctxt ""
@@ -5975,7 +5365,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
-#. +kV=
#: page.src
#, fuzzy
msgctxt ""
@@ -5986,7 +5375,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
-#. T|%B
#: page.src
#, fuzzy
msgctxt ""
@@ -5997,7 +5385,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
-#. m\b/
#: page.src
msgctxt ""
"page.src\n"
@@ -6007,7 +5394,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. Z_dU
#: page.src
#, fuzzy
msgctxt ""
@@ -6018,7 +5404,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
-#. A[8%
#: page.src
#, fuzzy
msgctxt ""
@@ -6029,7 +5414,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
-#. [e-7
#: page.src
#, fuzzy
msgctxt ""
@@ -6040,9 +5424,7 @@ msgctxt ""
msgid "Native Numbering"
msgstr "Numeración nativa"
-#. PpFS
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6051,9 +5433,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (Búlgaro)"
-#. 7P:)
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6062,9 +5442,7 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (Búlgaro)"
-#. Z1l@
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6073,9 +5451,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (Búlgaro)"
-#. Ql$!
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6084,9 +5460,7 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (Búlgaro)"
-#. *eo*
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6095,9 +5469,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (Ruso)"
-#. :C\_
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6106,9 +5478,7 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (Ruso)"
-#. [NVz
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6117,9 +5487,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (Ruso)"
-#. VPcI
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6128,9 +5496,7 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (Ruso)"
-#. ;K\[
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6139,9 +5505,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (Serbio)"
-#. 2Ii3
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6150,9 +5514,7 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (Serbio)"
-#. C/`.
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6161,9 +5523,7 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (Serbio)"
-#. no[X
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6172,9 +5532,7 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (Serbio)"
-#. #/VS
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6183,9 +5541,7 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr "Α, Β, Γ, ... (Letras griegas mayúsculas)"
-#. GQ[7
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT\n"
@@ -6194,7 +5550,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr "α, β, γ, ... (Letras griegas minúsculas)"
-#. +;j#
#: page.src
msgctxt ""
"page.src\n"
@@ -6204,7 +5559,6 @@ msgctxt ""
msgid "Table alignment"
msgstr "Alineación de tabla"
-#. #0G_
#: page.src
msgctxt ""
"page.src\n"
@@ -6214,7 +5568,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "Hori~zontal"
-#. $ki7
#: page.src
msgctxt ""
"page.src\n"
@@ -6224,7 +5577,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "Ver~tical"
-#. H#|a
#: page.src
msgctxt ""
"page.src\n"
@@ -6234,7 +5586,6 @@ msgctxt ""
msgid "~Fit object to paper format"
msgstr "~Ajustar el objeto al formato del papel"
-#. #)#b
#: page.src
msgctxt ""
"page.src\n"
@@ -6244,7 +5595,6 @@ msgctxt ""
msgid "Register-true"
msgstr "Conformidad de registro"
-#. [5ro
#: page.src
msgctxt ""
"page.src\n"
@@ -6254,7 +5604,6 @@ msgctxt ""
msgid "Reference ~Style"
msgstr "E~stilo de referencia"
-#. j1Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -6264,7 +5613,6 @@ msgctxt ""
msgid "I~nner"
msgstr "Int~erior"
-#. M]|d
#: page.src
msgctxt ""
"page.src\n"
@@ -6274,7 +5622,6 @@ msgctxt ""
msgid "O~uter"
msgstr "E~xterior"
-#. 8-Fc
#: page.src
msgctxt ""
"page.src\n"
@@ -6290,7 +5637,6 @@ msgstr ""
"\n"
"¿Quiere aplicar esta configuración de todos modos?"
-#. 0fkz
#: page.src
msgctxt ""
"page.src\n"
@@ -6300,7 +5646,6 @@ msgctxt ""
msgid "A6"
msgstr "A6"
-#. X`J2
#: page.src
msgctxt ""
"page.src\n"
@@ -6310,7 +5655,6 @@ msgctxt ""
msgid "A5"
msgstr "A5"
-#. [3Dd
#: page.src
msgctxt ""
"page.src\n"
@@ -6320,7 +5664,6 @@ msgctxt ""
msgid "A4"
msgstr "A4"
-#. 3NNO
#: page.src
msgctxt ""
"page.src\n"
@@ -6330,7 +5673,6 @@ msgctxt ""
msgid "A3"
msgstr "A3"
-#. r;+o
#: page.src
msgctxt ""
"page.src\n"
@@ -6340,7 +5682,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
-#. )^.Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6350,7 +5691,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
-#. d/2L
#: page.src
msgctxt ""
"page.src\n"
@@ -6360,7 +5700,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
-#. |G=H
#: page.src
msgctxt ""
"page.src\n"
@@ -6370,7 +5709,6 @@ msgctxt ""
msgid "Letter"
msgstr "Carta"
-#. \.[f
#: page.src
msgctxt ""
"page.src\n"
@@ -6380,7 +5718,6 @@ msgctxt ""
msgid "Legal"
msgstr "Legal"
-#. \(K)
#: page.src
msgctxt ""
"page.src\n"
@@ -6390,7 +5727,6 @@ msgctxt ""
msgid "Long Bond"
msgstr "Oficio"
-#. X{,.
#: page.src
msgctxt ""
"page.src\n"
@@ -6400,7 +5736,6 @@ msgctxt ""
msgid "Tabloid"
msgstr "Tabloide"
-#. q.!A
#: page.src
msgctxt ""
"page.src\n"
@@ -6410,7 +5745,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
-#. $nO2
#: page.src
msgctxt ""
"page.src\n"
@@ -6420,7 +5754,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
-#. =4[)
#: page.src
msgctxt ""
"page.src\n"
@@ -6430,7 +5763,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
-#. XOb`
#: page.src
msgctxt ""
"page.src\n"
@@ -6440,7 +5772,6 @@ msgctxt ""
msgid "16 Kai"
msgstr "Kai 16"
-#. py5m
#: page.src
msgctxt ""
"page.src\n"
@@ -6450,7 +5781,6 @@ msgctxt ""
msgid "32 Kai"
msgstr "Kai 32"
-#. z:bV
#: page.src
msgctxt ""
"page.src\n"
@@ -6460,7 +5790,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr "Kai 32 grande"
-#. l**]
#: page.src
msgctxt ""
"page.src\n"
@@ -6470,7 +5799,6 @@ msgctxt ""
msgid "User"
msgstr "Usuario"
-#. .*!q
#: page.src
msgctxt ""
"page.src\n"
@@ -6480,7 +5808,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr "Sobre DL"
-#. Vmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -6490,7 +5817,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr "Sobre C6"
-#. @*@R
#: page.src
msgctxt ""
"page.src\n"
@@ -6500,7 +5826,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr "Sobre C6/5"
-#. %vH`
#: page.src
msgctxt ""
"page.src\n"
@@ -6510,7 +5835,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr "Sobre C5"
-#. ij/h
#: page.src
msgctxt ""
"page.src\n"
@@ -6520,7 +5844,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr "Sobre C4"
-#. 5aab
#: page.src
msgctxt ""
"page.src\n"
@@ -6530,7 +5853,6 @@ msgctxt ""
msgid "#6 3/4 (Personal) Envelope"
msgstr "Sobre #6 3/4 (Personal)"
-#. 1k)*
#: page.src
msgctxt ""
"page.src\n"
@@ -6540,7 +5862,6 @@ msgctxt ""
msgid "#8 (Monarch) Envelope"
msgstr "Sobre #8 (Monarca)"
-#. Z}ug
#: page.src
msgctxt ""
"page.src\n"
@@ -6550,7 +5871,6 @@ msgctxt ""
msgid "#9 Envelope"
msgstr "Sobre #9"
-#. $WZ,
#: page.src
msgctxt ""
"page.src\n"
@@ -6560,7 +5880,6 @@ msgctxt ""
msgid "#10 Envelope"
msgstr "Sobre #10"
-#. V==k
#: page.src
msgctxt ""
"page.src\n"
@@ -6570,7 +5889,6 @@ msgctxt ""
msgid "#11 Envelope"
msgstr "Sobre #11"
-#. ?EpA
#: page.src
msgctxt ""
"page.src\n"
@@ -6580,7 +5898,6 @@ msgctxt ""
msgid "#12 Envelope"
msgstr "Sobre #12"
-#. Rb3s
#: page.src
msgctxt ""
"page.src\n"
@@ -6590,7 +5907,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr "Tarjeta postal japonesa"
-#. Z}X4
#: page.src
msgctxt ""
"page.src\n"
@@ -6600,7 +5916,6 @@ msgctxt ""
msgid "A6"
msgstr "A6"
-#. .(D,
#: page.src
msgctxt ""
"page.src\n"
@@ -6610,7 +5925,6 @@ msgctxt ""
msgid "A5"
msgstr "A5"
-#. SsJl
#: page.src
msgctxt ""
"page.src\n"
@@ -6620,7 +5934,6 @@ msgctxt ""
msgid "A4"
msgstr "A4"
-#. ]uFl
#: page.src
msgctxt ""
"page.src\n"
@@ -6630,7 +5943,6 @@ msgctxt ""
msgid "A3"
msgstr "A3"
-#. V$N(
#: page.src
msgctxt ""
"page.src\n"
@@ -6640,7 +5952,6 @@ msgctxt ""
msgid "A2"
msgstr "A2"
-#. P06I
#: page.src
msgctxt ""
"page.src\n"
@@ -6650,7 +5961,6 @@ msgctxt ""
msgid "A1"
msgstr "A1"
-#. -k#Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6660,7 +5970,6 @@ msgctxt ""
msgid "A0"
msgstr "A0"
-#. eT3W
#: page.src
msgctxt ""
"page.src\n"
@@ -6670,7 +5979,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
-#. E4#h
#: page.src
msgctxt ""
"page.src\n"
@@ -6680,7 +5988,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
-#. BMq@
#: page.src
msgctxt ""
"page.src\n"
@@ -6690,7 +5997,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
-#. ;gT~
#: page.src
msgctxt ""
"page.src\n"
@@ -6700,7 +6006,6 @@ msgctxt ""
msgid "Letter"
msgstr "Carta"
-#. `sBE
#: page.src
msgctxt ""
"page.src\n"
@@ -6710,7 +6015,6 @@ msgctxt ""
msgid "Legal"
msgstr "Legal"
-#. -In)
#: page.src
msgctxt ""
"page.src\n"
@@ -6720,7 +6024,6 @@ msgctxt ""
msgid "Long Bond"
msgstr "Oficio"
-#. IP*F
#: page.src
msgctxt ""
"page.src\n"
@@ -6730,7 +6033,6 @@ msgctxt ""
msgid "Tabloid"
msgstr "Tabloide"
-#. 2}2K
#: page.src
msgctxt ""
"page.src\n"
@@ -6740,7 +6042,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
-#. 9A5-
#: page.src
msgctxt ""
"page.src\n"
@@ -6750,7 +6051,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
-#. tb9*
#: page.src
msgctxt ""
"page.src\n"
@@ -6760,7 +6060,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
-#. bZe|
#: page.src
msgctxt ""
"page.src\n"
@@ -6770,7 +6069,6 @@ msgctxt ""
msgid "16 Kai"
msgstr "Kai 16"
-#. 2-.U
#: page.src
msgctxt ""
"page.src\n"
@@ -6780,7 +6078,6 @@ msgctxt ""
msgid "32 Kai"
msgstr "Kai 32"
-#. 2RO}
#: page.src
msgctxt ""
"page.src\n"
@@ -6790,7 +6087,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr "Kai 32 grande"
-#. =/Ol
#: page.src
msgctxt ""
"page.src\n"
@@ -6800,7 +6096,6 @@ msgctxt ""
msgid "User"
msgstr "Usuario"
-#. RPXm
#: page.src
msgctxt ""
"page.src\n"
@@ -6810,7 +6105,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr "Sobre DL"
-#. 2Y8\
#: page.src
msgctxt ""
"page.src\n"
@@ -6820,7 +6114,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr "Sobre C6"
-#. 024q
#: page.src
msgctxt ""
"page.src\n"
@@ -6830,7 +6123,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr "Sobre C6/5"
-#. ?^U$
#: page.src
msgctxt ""
"page.src\n"
@@ -6840,7 +6132,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr "Sobre C5"
-#. $7,l
#: page.src
msgctxt ""
"page.src\n"
@@ -6850,7 +6141,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr "Sobre C4"
-#. A0o)
#: page.src
msgctxt ""
"page.src\n"
@@ -6860,7 +6150,6 @@ msgctxt ""
msgid "Dia Slide"
msgstr "Diapositiva Dia"
-#. W++{
#: page.src
msgctxt ""
"page.src\n"
@@ -6870,7 +6159,6 @@ msgctxt ""
msgid "Screen 4:3"
msgstr "Pantalla 4:3"
-#. }77H
#: page.src
msgctxt ""
"page.src\n"
@@ -6880,20 +6168,16 @@ msgctxt ""
msgid "Screen 16:9"
msgstr "Pantalla 16:9"
-#. -A-/
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXSTRARY_PAPERSIZE_DRAW\n"
"30\n"
"itemlist.text"
msgid "Screen 16:10"
-msgstr "Pantalla 16:9"
+msgstr "Pantalla 16:10"
-#. ;mpl
#: page.src
-#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXSTRARY_PAPERSIZE_DRAW\n"
@@ -6902,7 +6186,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr "Tarjeta postal japonesa"
-#. v3v3
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6911,7 +6194,6 @@ msgctxt ""
msgid "Unlinked graphic"
msgstr "Imagen no vinculada"
-#. ,V~k
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6921,7 +6203,6 @@ msgctxt ""
msgid "A~s"
msgstr "~Como"
-#. e!QI
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6931,7 +6212,6 @@ msgctxt ""
msgid "Color"
msgstr "Color"
-#. H[3@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6941,7 +6221,6 @@ msgctxt ""
msgid "Graphic"
msgstr "Imagen"
-#. n7T@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6951,7 +6230,6 @@ msgctxt ""
msgid "F~or"
msgstr "Pa~ra"
-#. /X$p
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6961,7 +6239,6 @@ msgctxt ""
msgid "Cell"
msgstr "Celda"
-#. 7d`s
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6971,7 +6248,6 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. 1yIP
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6981,7 +6257,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. Jp7R
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6991,7 +6266,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "Párrafo"
-#. W_af
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7001,7 +6275,6 @@ msgctxt ""
msgid "Character"
msgstr "Carácter"
-#. e]|x
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7011,7 +6284,6 @@ msgctxt ""
msgid "Background color"
msgstr "Color de fondo"
-#. a+(q
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7021,7 +6293,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~Transparencia"
-#. dqI8
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7031,7 +6302,6 @@ msgctxt ""
msgid "File"
msgstr "Archivo"
-#. [-%/
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7041,7 +6311,6 @@ msgctxt ""
msgid "~Browse..."
msgstr "Seleccio~nar..."
-#. s+{F
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7051,7 +6320,6 @@ msgctxt ""
msgid "~Link"
msgstr "~Vincular"
-#. 4p/T
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7061,7 +6329,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. hN!D
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7071,7 +6338,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Posición"
-#. vIpk
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7081,7 +6347,6 @@ msgctxt ""
msgid "Ar~ea"
msgstr "Ár~ea"
-#. ,ln_
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7091,7 +6356,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~Mosaico"
-#. qp^.
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7101,7 +6365,6 @@ msgctxt ""
msgid "Transparency"
msgstr "Transparencia"
-#. J[oD
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7111,7 +6374,6 @@ msgctxt ""
msgid "Pre~view"
msgstr "Previsuali~zación"
-#. m({C
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7121,7 +6383,6 @@ msgctxt ""
msgid "Find graphics"
msgstr "Buscar imagen"
-#. d92{
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7130,7 +6391,6 @@ msgctxt ""
msgid "Background"
msgstr "Fondo"
-#. n^lK
#: border.src
msgctxt ""
"border.src\n"
@@ -7140,7 +6400,6 @@ msgctxt ""
msgid "Line arrangement"
msgstr "Disposición de líneas"
-#. ]/%T
#: border.src
msgctxt ""
"border.src\n"
@@ -7150,7 +6409,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Predeterminado"
-#. ~#B*
#: border.src
msgctxt ""
"border.src\n"
@@ -7160,7 +6418,6 @@ msgctxt ""
msgid "~User-defined"
msgstr "Definido por el ~usuario"
-#. cJ_Y
#: border.src
msgctxt ""
"border.src\n"
@@ -7170,7 +6427,6 @@ msgctxt ""
msgid "Line"
msgstr "Línea"
-#. 08X/
#: border.src
msgctxt ""
"border.src\n"
@@ -7180,7 +6436,6 @@ msgctxt ""
msgid "St~yle"
msgstr "~Estilo"
-#. 25#7
#: border.src
msgctxt ""
"border.src\n"
@@ -7190,7 +6445,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Ancho"
-#. TpdV
#: border.src
msgctxt ""
"border.src\n"
@@ -7200,7 +6454,6 @@ msgctxt ""
msgid "~Color"
msgstr "~Color"
-#. +@J2
#: border.src
msgctxt ""
"border.src\n"
@@ -7210,7 +6463,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierda"
-#. :=*:
#: border.src
msgctxt ""
"border.src\n"
@@ -7220,7 +6472,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecha"
-#. !J6X
#: border.src
msgctxt ""
"border.src\n"
@@ -7230,7 +6481,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Arriba"
-#. Ecpy
#: border.src
msgctxt ""
"border.src\n"
@@ -7240,7 +6490,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "A~bajo"
-#. _;;X
#: border.src
msgctxt ""
"border.src\n"
@@ -7250,7 +6499,6 @@ msgctxt ""
msgid "Synchronize"
msgstr "Sincronizar"
-#. ($FG
#: border.src
msgctxt ""
"border.src\n"
@@ -7260,7 +6508,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr "Distancia al texto"
-#. b#%R
#: border.src
msgctxt ""
"border.src\n"
@@ -7270,7 +6517,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Posición"
-#. m7lu
#: border.src
msgctxt ""
"border.src\n"
@@ -7280,7 +6526,6 @@ msgctxt ""
msgid "Distan~ce"
msgstr "Distan~cia"
-#. Ysn3
#: border.src
msgctxt ""
"border.src\n"
@@ -7290,7 +6535,6 @@ msgctxt ""
msgid "C~olor"
msgstr "C~olor"
-#. X3X[
#: border.src
msgctxt ""
"border.src\n"
@@ -7300,7 +6544,6 @@ msgctxt ""
msgid "Shadow style"
msgstr "Estilo de sombra"
-#. d/!4
#: border.src
msgctxt ""
"border.src\n"
@@ -7310,7 +6553,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. 2^:K
#: border.src
msgctxt ""
"border.src\n"
@@ -7320,7 +6562,6 @@ msgctxt ""
msgid "~Merge with next paragraph"
msgstr "~Combinar con siguiente párrafo"
-#. =\k{
#: border.src
msgctxt ""
"border.src\n"
@@ -7330,7 +6571,6 @@ msgctxt ""
msgid "~Merge adjacent line styles"
msgstr "~Fusionar estilos de línea contiguos"
-#. DHQ^
#: border.src
msgctxt ""
"border.src\n"
@@ -7339,7 +6579,6 @@ msgctxt ""
msgid "Borders"
msgstr "Borde"
-#. DhrX
#: border.src
msgctxt ""
"border.src\n"
@@ -7348,7 +6587,6 @@ msgctxt ""
msgid "Set No Borders"
msgstr "Sin bordes"
-#. z[PB
#: border.src
msgctxt ""
"border.src\n"
@@ -7357,7 +6595,6 @@ msgctxt ""
msgid "Set Outer Border Only"
msgstr "Sólo borde exterior"
-#. #bvo
#: border.src
msgctxt ""
"border.src\n"
@@ -7366,7 +6603,6 @@ msgctxt ""
msgid "Set Outer Border and Horizontal Lines"
msgstr "Borde exterior y líneas horizontales"
-#. d,4j
#: border.src
msgctxt ""
"border.src\n"
@@ -7375,7 +6611,6 @@ msgctxt ""
msgid "Set Outer Border and All Inner Lines"
msgstr "Borde exterior y todas las líneas interiores"
-#. |I`P
#: border.src
msgctxt ""
"border.src\n"
@@ -7384,7 +6619,6 @@ msgctxt ""
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Borde exterior sin modificación de las líneas interiores"
-#. q5Ra
#: border.src
msgctxt ""
"border.src\n"
@@ -7393,7 +6627,6 @@ msgctxt ""
msgid "Set Diagonal Lines Only"
msgstr "Definir sólo líneas verticales"
-#. @r`[
#: border.src
msgctxt ""
"border.src\n"
@@ -7402,7 +6635,6 @@ msgctxt ""
msgid "Set All Four Borders"
msgstr "Los cuatro bordes"
-#. J=C/
#: border.src
msgctxt ""
"border.src\n"
@@ -7411,7 +6643,6 @@ msgctxt ""
msgid "Set Left and Right Borders Only"
msgstr "Sólo borde derecho e izquierdo"
-#. 6WwJ
#: border.src
msgctxt ""
"border.src\n"
@@ -7420,7 +6651,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders Only"
msgstr "Sólo borde inferior y superior"
-#. *BB2
#: border.src
msgctxt ""
"border.src\n"
@@ -7429,7 +6659,6 @@ msgctxt ""
msgid "Set Left Border Only"
msgstr "Sólo borde izquierdo"
-#. [qV2
#: border.src
msgctxt ""
"border.src\n"
@@ -7438,7 +6667,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Definir borde inferior y superior y todas las líneas interiores"
-#. ~x/;
#: border.src
msgctxt ""
"border.src\n"
@@ -7447,7 +6675,6 @@ msgctxt ""
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Definir borde izquierdo y derecho y todas las líneas interiores"
-#. J{ud
#: border.src
msgctxt ""
"border.src\n"
@@ -7456,7 +6683,6 @@ msgctxt ""
msgid "No Shadow"
msgstr "Sin sombra"
-#. PbcA
#: border.src
msgctxt ""
"border.src\n"
@@ -7465,7 +6691,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Right"
msgstr "Proyectar sombra hacia abajo y a la derecha"
-#. fiV;
#: border.src
msgctxt ""
"border.src\n"
@@ -7474,7 +6699,6 @@ msgctxt ""
msgid "Cast Shadow to Top Right"
msgstr "Proyectar sombra hacia arriba y a la derecha"
-#. Q!Ng
#: border.src
msgctxt ""
"border.src\n"
@@ -7483,7 +6707,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Left"
msgstr "Proyectar sombra hacia abajo y a la izquierda"
-#. _n^j
#: border.src
msgctxt ""
"border.src\n"
@@ -7492,7 +6715,6 @@ msgctxt ""
msgid "Cast Shadow to Top Left"
msgstr "Proyectar sombra hacia arriba y a la izquierda"
-#. n`vD
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7502,7 +6724,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. -~ZG
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7512,7 +6733,6 @@ msgctxt ""
msgid "Position ~X"
msgstr "Posición ~X"
-#. R@*.
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7522,7 +6742,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr "Posición ~Y"
-#. wfoH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7532,7 +6751,6 @@ msgctxt ""
msgid "Base point"
msgstr "Punto base"
-#. Es_c
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7542,7 +6760,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. :.As
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7552,7 +6769,6 @@ msgctxt ""
msgid "Base point"
msgstr "Punto base"
-#. Xt|8
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7562,7 +6778,6 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. q^/k
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7572,7 +6787,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "An~cho"
-#. j^`5
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7582,7 +6796,6 @@ msgctxt ""
msgid "H~eight"
msgstr "Al~tura"
-#. O2k/
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7592,7 +6805,6 @@ msgctxt ""
msgid "Base point"
msgstr "Punto base"
-#. |`{p
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7602,7 +6814,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. j{C(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7612,7 +6823,6 @@ msgctxt ""
msgid "Base point"
msgstr "Punto base"
-#. ^MPq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7622,7 +6832,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr "~Mantener proporción"
-#. XQKj
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7632,7 +6841,6 @@ msgctxt ""
msgid "Protect"
msgstr "Protección"
-#. LDZh
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7642,7 +6850,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. Qr=j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7652,7 +6859,6 @@ msgctxt ""
msgid "~Size"
msgstr "~Tamaño"
-#. ,)fg
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7662,7 +6868,6 @@ msgctxt ""
msgid "Adapt"
msgstr "Adaptación"
-#. 18bt
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7672,7 +6877,6 @@ msgctxt ""
msgid "~Fit width to text"
msgstr "Ajustar a~ncho al texto"
-#. _6pH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7682,7 +6886,6 @@ msgctxt ""
msgid "Fit ~height to text"
msgstr "Ajustar ~altura al texto"
-#. NcZW
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7692,7 +6895,6 @@ msgctxt ""
msgid "Anchor"
msgstr "Anclaje"
-#. p@Sq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7702,7 +6904,6 @@ msgctxt ""
msgid "~Anchor"
msgstr "~Ancla"
-#. gzF1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7712,7 +6913,6 @@ msgctxt ""
msgid "To paragraph"
msgstr "Al párrafo"
-#. hHJC
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7722,7 +6922,6 @@ msgctxt ""
msgid "As character"
msgstr "Como el carácter"
-#. PSai
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7732,7 +6931,6 @@ msgctxt ""
msgid "To page"
msgstr "A la página"
-#. yIcZ
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7742,7 +6940,6 @@ msgctxt ""
msgid "To frame"
msgstr "Al marco"
-#. Ue[1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7752,7 +6949,6 @@ msgctxt ""
msgid "P~osition"
msgstr "P~osición"
-#. !FM]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7762,7 +6958,6 @@ msgctxt ""
msgid "From top"
msgstr "Desde arriba"
-#. e{\b
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7772,7 +6967,6 @@ msgctxt ""
msgid "Above"
msgstr "Encima"
-#. b/n(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7782,7 +6976,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centrado"
-#. ED^R
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7792,7 +6985,6 @@ msgctxt ""
msgid "Below"
msgstr "Debajo"
-#. (l^+
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7802,7 +6994,6 @@ msgctxt ""
msgid "Top of character"
msgstr "Carácter arriba"
-#. arW=
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7812,7 +7003,6 @@ msgctxt ""
msgid "Center of character"
msgstr "Carácter centrado"
-#. +T?`
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7822,7 +7012,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr "Carácter abajo"
-#. ^e}}
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7832,7 +7021,6 @@ msgctxt ""
msgid "Top of line"
msgstr "Principio de línea"
-#. $8m,
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7842,7 +7030,6 @@ msgctxt ""
msgid "Center of line"
msgstr "Centro de línea"
-#. s2aP
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7852,7 +7039,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr "Línea inferior"
-#. nS.J
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7861,7 +7047,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamaño"
-#. )IQS
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7871,7 +7056,6 @@ msgctxt ""
msgid "Pivot point"
msgstr "Punto de giro"
-#. +77j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7881,7 +7065,6 @@ msgctxt ""
msgid "Position ~X"
msgstr "Posición ~X"
-#. )mec
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7891,7 +7074,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr "Posición ~Y"
-#. u`\N
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7901,7 +7083,6 @@ msgctxt ""
msgid "Default settings"
msgstr "Configuración predeterminada"
-#. YF-T
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7911,7 +7092,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. UME]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7921,7 +7101,6 @@ msgctxt ""
msgid "Rotation point"
msgstr "Punto de rotación"
-#. j#M[
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7931,7 +7110,6 @@ msgctxt ""
msgid "Rotation angle"
msgstr "Ángulo de rotación"
-#. jrEA
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7941,7 +7119,6 @@ msgctxt ""
msgid "~Angle"
msgstr "Á~ngulo"
-#. O^KI
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7951,7 +7128,6 @@ msgctxt ""
msgid "Default settings"
msgstr "Configuración predeterminada"
-#. /j7F
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7961,7 +7137,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. )zS$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7971,7 +7146,6 @@ msgctxt ""
msgid "Rotation Angle"
msgstr "Ángulo de rotación"
-#. 3k$u
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7980,7 +7154,6 @@ msgctxt ""
msgid "Angle"
msgstr "Ángulo"
-#. XXwz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7990,7 +7163,6 @@ msgctxt ""
msgid "Corner radius"
msgstr "Radio de esquina"
-#. 3dk$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8000,7 +7172,6 @@ msgctxt ""
msgid "~Radius"
msgstr "~Radio"
-#. #1R@
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8010,7 +7181,6 @@ msgctxt ""
msgid "Slant"
msgstr "Inclinar"
-#. raS]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8020,7 +7190,6 @@ msgctxt ""
msgid "~Angle"
msgstr "Á~ngulo"
-#. ZwNz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8030,7 +7199,6 @@ msgctxt ""
msgid " degrees"
msgstr " grados"
-#. (tq)
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8039,7 +7207,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "Inclinar y radio de esquina"
-#. @R?d
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8048,7 +7215,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamaño"
-#. m+f:
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8058,7 +7224,6 @@ msgctxt ""
msgid "Rotation"
msgstr "Rotación"
-#. 9TS\
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8068,7 +7233,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "Inclinar y radio de esquina"
-#. (C)n
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8077,7 +7241,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamaño"
-#. F4#l
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8087,7 +7250,6 @@ msgctxt ""
msgid "Crop"
msgstr "Recortar"
-#. 18dG
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8097,7 +7259,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierda"
-#. mvqk
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8107,7 +7268,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Derecha"
-#. oa]v
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8117,7 +7277,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Arriba"
-#. CA$2
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8127,7 +7286,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "A~bajo"
-#. Xl2o
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8137,7 +7295,6 @@ msgctxt ""
msgid "Keep image si~ze"
msgstr "~Mantener el tamaño"
-#. L?Pb
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8147,7 +7304,6 @@ msgctxt ""
msgid "Keep ~scale"
msgstr "Mantener la ~escala"
-#. FQ3(
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8157,7 +7313,6 @@ msgctxt ""
msgid "Scale"
msgstr "Escala"
-#. T,g[
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8167,7 +7322,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Anchura"
-#. [Rjf
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8177,7 +7331,6 @@ msgctxt ""
msgid "H~eight"
msgstr "A~ltura"
-#. ruSg
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8187,7 +7340,6 @@ msgctxt ""
msgid "Image size"
msgstr "Tamaño de la imagen"
-#. A-[r
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8197,7 +7349,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Anchura"
-#. s72f
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8207,7 +7358,6 @@ msgctxt ""
msgid "H~eight"
msgstr "A~ltura"
-#. UX0u
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8218,7 +7368,6 @@ msgid "~Original Size"
msgstr "Tamaño ori~ginal"
#. PPI is pixel per inch, %1 is a number
-#. *HN@
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8227,7 +7376,6 @@ msgctxt ""
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
-#. L~e:
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8237,7 +7385,6 @@ msgctxt ""
msgid "Line"
msgstr "Línea"
-#. T/=p
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8247,7 +7394,6 @@ msgctxt ""
msgid "Line ~distance"
msgstr "D~istancia entre líneas"
-#. HuP%
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8257,7 +7403,6 @@ msgctxt ""
msgid "Guide ~overhang"
msgstr "Guías ~sobresalientes"
-#. 4@kv
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8267,7 +7412,6 @@ msgctxt ""
msgid "~Guide distance"
msgstr "~Distancia entre guías"
-#. ^Y\3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8277,7 +7421,6 @@ msgctxt ""
msgid "~Left guide"
msgstr "Línea auxiliar i~zquierda"
-#. Z/d!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8287,7 +7430,6 @@ msgctxt ""
msgid "~Right guide"
msgstr "Línea au~xiliar derecha"
-#. J%hw
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8297,7 +7439,6 @@ msgctxt ""
msgid "Measure ~below object"
msgstr "Medida de~bajo del objeto"
-#. \?3I
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8307,7 +7448,6 @@ msgctxt ""
msgid "Decimal places"
msgstr "Decimales"
-#. pO,3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8317,7 +7457,6 @@ msgctxt ""
msgid "Legend"
msgstr "Etiqueta"
-#. Mhm!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8327,7 +7466,6 @@ msgctxt ""
msgid "~Text position"
msgstr "~Posición del texto"
-#. 9M%e
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8337,7 +7475,6 @@ msgctxt ""
msgid "~AutoVertical"
msgstr "~Vertical autom."
-#. U,m6
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8347,7 +7484,6 @@ msgctxt ""
msgid "A~utoHorizontal"
msgstr "~Horizontal autom."
-#. sASP
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8357,7 +7493,6 @@ msgctxt ""
msgid "~Parallel to line"
msgstr "~Paralela a la línea"
-#. $Di1
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8367,7 +7502,6 @@ msgctxt ""
msgid "Show ~meas. units"
msgstr "~Mostrar unidades de medida"
-#. 6DJ8
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8377,7 +7511,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. HT!4
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8386,7 +7519,6 @@ msgctxt ""
msgid "Dimensioning"
msgstr "Dimensiones"
-#. ;b7$
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8396,7 +7528,6 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. Bf8G
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8406,7 +7537,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Ancho"
-#. FLTc
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8416,7 +7546,6 @@ msgctxt ""
msgid "H~eight"
msgstr "A~lto"
-#. c??#
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8426,7 +7555,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr "~Mantener proporciones"
-#. lJ{^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8436,7 +7564,6 @@ msgctxt ""
msgid "Anchor"
msgstr "Anclar"
-#. $s[M
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8446,7 +7573,6 @@ msgctxt ""
msgid "To ~page"
msgstr "A pág~ina"
-#. Ogur
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8456,7 +7582,6 @@ msgctxt ""
msgid "To paragrap~h"
msgstr "A párra~fo"
-#. (6,q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8466,7 +7591,6 @@ msgctxt ""
msgid "To cha~racter"
msgstr "A ~carácter"
-#. Z#V^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8476,7 +7600,6 @@ msgctxt ""
msgid "~As character"
msgstr "C~omo carácter"
-#. kPsZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8486,7 +7609,6 @@ msgctxt ""
msgid "To ~frame"
msgstr "A ~marco"
-#. E!fZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8496,7 +7618,6 @@ msgctxt ""
msgid "Protect"
msgstr "Proteger"
-#. .4T7
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8506,7 +7627,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. N6}0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8516,7 +7636,6 @@ msgctxt ""
msgid "~Size"
msgstr "~Tamaño"
-#. )8~0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8526,7 +7645,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. F/Xo
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8536,18 +7654,15 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "Hori~zontal"
-#. f.o[
#: swpossizetabpage.src
-#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
"FT_HORIBY\n"
"fixedtext.text"
msgid "b~y"
-msgstr "~distancia"
+msgstr "~por"
-#. H-[L
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8557,7 +7672,6 @@ msgctxt ""
msgid "~to"
msgstr "~hasta"
-#. YCRC
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8567,7 +7681,6 @@ msgctxt ""
msgid "~Mirror on even pages"
msgstr "~Reflejar en páginas pares"
-#. NI9r
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8577,7 +7690,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "~Vertical"
-#. FA+q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8587,7 +7699,6 @@ msgctxt ""
msgid "by"
msgstr "por"
-#. Q60h
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8597,7 +7708,6 @@ msgctxt ""
msgid "t~o"
msgstr "h~asta"
-#. nTd)
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8607,7 +7717,6 @@ msgctxt ""
msgid "Follow text flow"
msgstr "Seguir distribución del texto"
-#. j~Hw
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8616,7 +7725,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamaño"
-#. \~Gz
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8626,7 +7734,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Horizontal"
-#. ,KGs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8636,7 +7743,6 @@ msgctxt ""
msgid "~None"
msgstr "~Ninguno"
-#. 0]qv
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8646,7 +7752,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierda"
-#. n_6%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8656,7 +7761,6 @@ msgctxt ""
msgid "~Center"
msgstr "~Centrado"
-#. sfIs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8666,7 +7770,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~Espaciado"
-#. EB2X
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8676,7 +7779,6 @@ msgctxt ""
msgid "~Right"
msgstr "~Derecha"
-#. _@wT
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8686,7 +7788,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Vertical"
-#. jGF%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8696,7 +7797,6 @@ msgctxt ""
msgid "N~one"
msgstr "N~inguno"
-#. 1/;R
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8706,7 +7806,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Arriba"
-#. 4_W6
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8716,7 +7815,6 @@ msgctxt ""
msgid "C~enter"
msgstr "C~entrado"
-#. aMx.
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8726,7 +7824,6 @@ msgctxt ""
msgid "S~pacing"
msgstr "Es~paciado"
-#. U-A9
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8736,7 +7833,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "A~bajo"
-#. 2Lu}
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8745,7 +7841,6 @@ msgctxt ""
msgid "Distribution"
msgstr "Distribución"
-#. 8@$\
#: align.src
msgctxt ""
"align.src\n"
@@ -8755,7 +7850,6 @@ msgctxt ""
msgid "Text alignment"
msgstr "Alineación de texto"
-#. C+eC
#: align.src
msgctxt ""
"align.src\n"
@@ -8765,7 +7859,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "Hori~zontal"
-#. XZp4
#: align.src
msgctxt ""
"align.src\n"
@@ -8775,7 +7868,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. c(al
#: align.src
msgctxt ""
"align.src\n"
@@ -8785,7 +7877,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierda"
-#. SqI!
#: align.src
msgctxt ""
"align.src\n"
@@ -8795,7 +7886,6 @@ msgctxt ""
msgid "Center"
msgstr "Centrado"
-#. 0J*Q
#: align.src
msgctxt ""
"align.src\n"
@@ -8805,7 +7895,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecha"
-#. v04T
#: align.src
msgctxt ""
"align.src\n"
@@ -8815,7 +7904,6 @@ msgctxt ""
msgid "Justified"
msgstr "Justificado"
-#. ^gMh
#: align.src
msgctxt ""
"align.src\n"
@@ -8825,7 +7913,6 @@ msgctxt ""
msgid "Filled"
msgstr "Relleno"
-#. oh4s
#: align.src
msgctxt ""
"align.src\n"
@@ -8835,7 +7922,6 @@ msgctxt ""
msgid "Distributed"
msgstr "Distribuida"
-#. zgG^
#: align.src
msgctxt ""
"align.src\n"
@@ -8845,7 +7931,6 @@ msgctxt ""
msgid "I~ndent"
msgstr "Sa~ngría"
-#. eOO.
#: align.src
msgctxt ""
"align.src\n"
@@ -8855,7 +7940,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "~Vertical"
-#. Xag:
#: align.src
msgctxt ""
"align.src\n"
@@ -8865,7 +7949,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. ;#Aq
#: align.src
msgctxt ""
"align.src\n"
@@ -8875,7 +7958,6 @@ msgctxt ""
msgid "Top"
msgstr "Arriba"
-#. i+n%
#: align.src
msgctxt ""
"align.src\n"
@@ -8885,7 +7967,6 @@ msgctxt ""
msgid "Middle"
msgstr "Centrado"
-#. !]9-
#: align.src
msgctxt ""
"align.src\n"
@@ -8895,7 +7976,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Abajo"
-#. -01E
#: align.src
msgctxt ""
"align.src\n"
@@ -8905,7 +7985,6 @@ msgctxt ""
msgid "Justified"
msgstr "Justificada"
-#. mTAR
#: align.src
msgctxt ""
"align.src\n"
@@ -8915,7 +7994,6 @@ msgctxt ""
msgid "Distributed"
msgstr "Distribuida"
-#. VUn^
#: align.src
msgctxt ""
"align.src\n"
@@ -8925,7 +8003,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "Orientación del texto"
-#. {9pT
#: align.src
msgctxt ""
"align.src\n"
@@ -8935,7 +8012,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "Disposición ve~rtical"
-#. Mj;\
#: align.src
msgctxt ""
"align.src\n"
@@ -8945,7 +8021,6 @@ msgctxt ""
msgid "De~grees"
msgstr "Án~gulo"
-#. -bmx
#: align.src
msgctxt ""
"align.src\n"
@@ -8955,7 +8030,6 @@ msgctxt ""
msgid "Re~ference edge"
msgstr "~Aristas de referencia"
-#. G-fc
#: align.src
msgctxt ""
"align.src\n"
@@ -8965,7 +8039,6 @@ msgctxt ""
msgid "Asian layout ~mode"
msgstr "Modo de diseño ~asiático"
-#. Q$PC
#: align.src
msgctxt ""
"align.src\n"
@@ -8975,7 +8048,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. eiS^
#: align.src
msgctxt ""
"align.src\n"
@@ -8985,7 +8057,6 @@ msgctxt ""
msgid "~Wrap text automatically"
msgstr "Ajustar ~texto automáticamente"
-#. ~58)
#: align.src
msgctxt ""
"align.src\n"
@@ -8995,7 +8066,6 @@ msgctxt ""
msgid "Hyphenation ~active"
msgstr "División de palabras ~activa"
-#. rJ[X
#: align.src
msgctxt ""
"align.src\n"
@@ -9005,7 +8075,6 @@ msgctxt ""
msgid "~Shrink to fit cell size"
msgstr "~Reducir para ajustar al tamaño de celda"
-#. jKGh
#: align.src
msgctxt ""
"align.src\n"
@@ -9015,7 +8084,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "Dirección del te~xto"
-#. $RvI
#: align.src
msgctxt ""
"align.src\n"
@@ -9025,7 +8093,6 @@ msgctxt ""
msgid "Text Extension From Lower Cell Border"
msgstr "Expansión del texto a partir del borde inferior de la celda."
-#. Bsa~
#: align.src
msgctxt ""
"align.src\n"
@@ -9035,7 +8102,6 @@ msgctxt ""
msgid "Text Extension From Upper Cell Border"
msgstr "Expansión del texto a partir del borde superior de la celda."
-#. ?pg9
#: align.src
msgctxt ""
"align.src\n"
@@ -9045,7 +8111,6 @@ msgctxt ""
msgid "Text Extension Inside Cell"
msgstr "Expansión del texto solo dentro de la celda."
-#. G63q
#: align.src
msgctxt ""
"align.src\n"
@@ -9054,7 +8119,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. 1XZu
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9063,7 +8127,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "De izquierda a derecha"
-#. @.,U
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9072,7 +8135,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "De derecha a izquierda"
-#. B3w1
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9081,7 +8143,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "Utilizar la configuración del objeto superior"
-#. y_lb
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9090,7 +8151,6 @@ msgctxt ""
msgid "Left-to-right (horizontal)"
msgstr "De izquierda a derecha (horizontal)"
-#. f6OC
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9099,7 +8159,6 @@ msgctxt ""
msgid "Right-to-left (horizontal)"
msgstr "De derecha a izquierda (horizontal)"
-#. 0Bn*
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9108,7 +8167,6 @@ msgctxt ""
msgid "Right-to-left (vertical)"
msgstr "De derecha a izquierda (vertical)"
-#. s3_Q
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9117,7 +8175,6 @@ msgctxt ""
msgid "Left-to-right (vertical)"
msgstr "De izquierda a derecha (vertical)"
-#. 0!5}
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9127,7 +8184,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. s:zK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9137,7 +8193,6 @@ msgctxt ""
msgid "Fit wi~dth to text"
msgstr "Encajar den~tro del texto"
-#. ;m5h
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9147,7 +8202,6 @@ msgctxt ""
msgid "Fit h~eight to text"
msgstr "Ajustar alt~ura al texto"
-#. D.[+
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9157,7 +8211,6 @@ msgctxt ""
msgid "~Fit to frame"
msgstr "~Ajustar al marco"
-#. 1{_R
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9167,7 +8220,6 @@ msgctxt ""
msgid "~Adjust to contour"
msgstr "~Ajustar al contorno"
-#. yw5g
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9177,7 +8229,6 @@ msgctxt ""
msgid "~Word wrap text in shape"
msgstr "~Ajustar texto a la forma"
-#. J1[T
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9187,7 +8238,6 @@ msgctxt ""
msgid "~Resize shape to fit text"
msgstr "~Redimensionar forma para ajustarse al texto"
-#. GKRS
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9197,7 +8247,6 @@ msgctxt ""
msgid "Spacing to borders"
msgstr "Espaciado a los bordes"
-#. /Vk7
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9207,7 +8256,6 @@ msgctxt ""
msgid "~Left"
msgstr "I~zquierda"
-#. XPNI
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9217,7 +8265,6 @@ msgctxt ""
msgid "~Right"
msgstr "Derec~ha"
-#. pQk#
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9227,7 +8274,6 @@ msgctxt ""
msgid "~Top"
msgstr "~Arriba"
-#. Bj$F
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9237,7 +8283,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "A~bajo"
-#. 1*/l
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9247,7 +8292,6 @@ msgctxt ""
msgid "Text anchor"
msgstr "Ancla de texto"
-#. j;7?
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9257,7 +8301,6 @@ msgctxt ""
msgid "Full ~width"
msgstr "Ancho ~completo"
-#. %oGK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9266,7 +8309,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. h^Y0
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9276,7 +8318,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Tipo"
-#. ^*_l
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9286,7 +8327,6 @@ msgctxt ""
msgid "Line skew"
msgstr "Desplazamiento de Línea"
-#. p^,B
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9296,7 +8336,6 @@ msgctxt ""
msgid "Line ~1"
msgstr "Línea ~1"
-#. HmZG
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9306,7 +8345,6 @@ msgctxt ""
msgid "Line ~2"
msgstr "Línea ~2"
-#. _ImA
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9316,7 +8354,6 @@ msgctxt ""
msgid "Line ~3"
msgstr "Línea ~3"
-#. +?hF
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9326,7 +8363,6 @@ msgctxt ""
msgid "Line spacing"
msgstr "Espaciado de linea"
-#. Qk%$
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9336,7 +8372,6 @@ msgctxt ""
msgid "~Begin horizontal"
msgstr "Comenz~ando horizontal"
-#. 9;sg
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9346,7 +8381,6 @@ msgctxt ""
msgid "End ~horizontal"
msgstr "Final ~horizontal"
-#. H?@d
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9356,7 +8390,6 @@ msgctxt ""
msgid "Begin ~vertical"
msgstr "Comenzar ~vertical"
-#. B8~L
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9366,7 +8399,6 @@ msgctxt ""
msgid "~End vertical"
msgstr "~Fin vertical"
-#. rg\6
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9376,7 +8408,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. G./+
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9386,7 +8417,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista previa"
-#. EiaR
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9395,7 +8425,6 @@ msgctxt ""
msgid "Connector"
msgstr "Conector"
-#. Ib+e
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9405,7 +8434,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "Espa~cio"
-#. K`^?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9415,7 +8443,6 @@ msgctxt ""
msgid "~Angle"
msgstr "Á~ngulo"
-#. ~^@J
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9425,7 +8452,6 @@ msgctxt ""
msgid "Free"
msgstr "Cualquiera"
-#. ;$)X
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9435,7 +8461,6 @@ msgctxt ""
msgid "30 Degrees"
msgstr "30 grados"
-#. +mfh
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9445,7 +8470,6 @@ msgctxt ""
msgid "45 Degrees"
msgstr "45 grados"
-#. gaT3
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9455,7 +8479,6 @@ msgctxt ""
msgid "60 Degrees"
msgstr "60 grados"
-#. eHvk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9465,7 +8488,6 @@ msgctxt ""
msgid "90 Degrees"
msgstr "90 grados"
-#. W.Q7
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9475,7 +8497,6 @@ msgctxt ""
msgid "~Extension"
msgstr "~Salida"
-#. Jc5Q
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9485,7 +8506,6 @@ msgctxt ""
msgid "Optimal"
msgstr "Óptimo"
-#. BM[a
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9495,7 +8515,6 @@ msgctxt ""
msgid "From top"
msgstr "Desde arriba"
-#. L,ff
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9505,7 +8524,6 @@ msgctxt ""
msgid "From left"
msgstr "De izquierda"
-#. ;rcV
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9515,7 +8533,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Horizontal"
-#. ^NyI
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9525,7 +8542,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Vertical"
-#. 3ZTk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9535,7 +8551,6 @@ msgctxt ""
msgid "~By"
msgstr "~De"
-#. y_yp
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9545,7 +8560,6 @@ msgctxt ""
msgid "~Position"
msgstr "~Posición"
-#. Hz4o
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9555,7 +8569,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Longitud"
-#. `[\;
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9565,7 +8578,6 @@ msgctxt ""
msgid "~Optimal"
msgstr "Óptim~o"
-#. =%x?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9575,7 +8587,6 @@ msgctxt ""
msgid "Straight Line"
msgstr "Línea recta"
-#. kW,`
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9585,7 +8596,6 @@ msgctxt ""
msgid "Angled Line"
msgstr "Línea acodada"
-#. %V_/
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9595,7 +8605,6 @@ msgctxt ""
msgid "Angled Connector Line"
msgstr "Línea acodada con un sólo ángulo"
-#. V,^$
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9605,7 +8614,6 @@ msgctxt ""
msgid "Double-angled line"
msgstr "Línea acodada con dos ángulos"
-#. Bc\h
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9615,7 +8623,6 @@ msgctxt ""
msgid "Top;Middle;Bottom"
msgstr "Arriba;centro;abajo"
-#. xt/V
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9625,7 +8632,6 @@ msgctxt ""
msgid "Left;Middle;Right"
msgstr "Izquierda;centrado;derecha"
-#. #;mU
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9634,7 +8640,6 @@ msgctxt ""
msgid "Callouts"
msgstr "Llamadas"
-#. Y|g\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9643,7 +8648,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamaño"
-#. VrQo
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9653,7 +8657,6 @@ msgctxt ""
msgid "Callout"
msgstr "Llamada"
-#. Wia\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9662,7 +8665,6 @@ msgctxt ""
msgid "Callouts"
msgstr "Llamadas"
-#. ;}xQ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9672,7 +8674,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. h~0G
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9682,7 +8683,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. ^+n6
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9692,7 +8692,6 @@ msgctxt ""
msgid "~Left"
msgstr "~Izquierda"
-#. 1h{,
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9702,7 +8701,6 @@ msgctxt ""
msgid "Righ~t"
msgstr "~Derecha"
-#. J.@7
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9712,7 +8710,6 @@ msgctxt ""
msgid "C~entered"
msgstr "C~entrado"
-#. fA1r
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9722,7 +8719,6 @@ msgctxt ""
msgid "Deci~mal"
msgstr "Deci~mal"
-#. MFNj
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9732,7 +8728,6 @@ msgctxt ""
msgid "~Character"
msgstr "~Carácter"
-#. 0KSL
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9742,7 +8737,6 @@ msgctxt ""
msgid "Fill character"
msgstr "Carácter de relleno"
-#. Hn3e
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9752,7 +8746,6 @@ msgctxt ""
msgid "N~one"
msgstr "Nin~guno"
-#. LLSZ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9762,7 +8755,6 @@ msgctxt ""
msgid "Character"
msgstr "Carácter"
-#. E]XT
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9772,7 +8764,6 @@ msgctxt ""
msgid "~New"
msgstr "~Nuevo"
-#. v5s\
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9782,7 +8773,6 @@ msgctxt ""
msgid "Delete ~All"
msgstr "E~liminar todas"
-#. ls9o
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9792,7 +8782,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~Eliminar"
-#. ~Q-s
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9802,7 +8791,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr "~Izquierda/Arriba"
-#. c~t_
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9812,7 +8800,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr "~Derecha/Abajo"
-#. w-%8
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9822,7 +8809,6 @@ msgctxt ""
msgid "Character"
msgstr "Carácter"
-#. 94_f
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index 45eabd7a6a7..a4470776e8d 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/ui.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 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-21 13:16+0000\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353503807.0\n"
-#. fzF8
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -25,29 +25,24 @@ msgctxt ""
msgid "Insert OLE Object"
msgstr "Insertar objetos OLE"
-#. ^M4J
#: insertoleobject.ui
-#, fuzzy
msgctxt ""
"insertoleobject.ui\n"
"createnew\n"
"label\n"
"string.text"
msgid "Create new"
-msgstr "~Crear nuevo"
+msgstr "Crear nuevo"
-#. bOEw
#: insertoleobject.ui
-#, fuzzy
msgctxt ""
"insertoleobject.ui\n"
"createfromfile\n"
"label\n"
"string.text"
msgid "Create from file"
-msgstr "Crear desde ~archivo"
+msgstr "Crear desde archivo"
-#. \KD3
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -57,18 +52,15 @@ msgctxt ""
msgid "Object type"
msgstr "Tipo de objeto"
-#. phV%
#: insertoleobject.ui
-#, fuzzy
msgctxt ""
"insertoleobject.ui\n"
"urlbtn\n"
"label\n"
"string.text"
msgid "Search ..."
-msgstr "Búsqueda..."
+msgstr "Buscar..."
-#. jAF*
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -79,7 +71,6 @@ msgctxt ""
msgid "Link to file"
msgstr "~Vinculo a archivo"
-#. w:,;
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -89,7 +80,6 @@ msgctxt ""
msgid "File"
msgstr "Archivo"
-#. HX-2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -99,7 +89,6 @@ msgctxt ""
msgid "Superscript"
msgstr "Superíndice"
-#. 9rL|
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -109,7 +98,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normal"
-#. 3IJk
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -119,7 +107,6 @@ msgctxt ""
msgid "Subscript"
msgstr "Subíndice"
-#. pp6o
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -130,7 +117,6 @@ msgctxt ""
msgid "Raise/lower by"
msgstr "~Subir/bajar por"
-#. 45,!
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Relative font size"
msgstr "Tamaño relativo de fuente"
-#. 5Vhf
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -151,7 +136,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. H~EV
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -162,7 +146,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. _c{-
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "0 degrees"
msgstr "0 grados"
-#. bp*2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "90 degrees"
msgstr "90 grados"
-#. =%Q*
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -192,7 +173,6 @@ msgctxt ""
msgid "270 degrees"
msgstr "270 grados"
-#. CKMx
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -203,7 +183,6 @@ msgctxt ""
msgid "Fit to line"
msgstr "Ajustar al tamaño"
-#. W.Y0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Scale width"
msgstr "Escalar ~ancho"
-#. 20.0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -225,7 +203,6 @@ msgctxt ""
msgid "Rotation / Scaling"
msgstr "Rotación / escalado"
-#. j5E0
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "Rotation"
msgstr "Rotación"
-#. 1|Si
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "by"
msgstr ""
-#. @lw^
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -256,7 +231,6 @@ msgctxt ""
msgid "Pair kerning"
msgstr "~Interletraje de pares"
-#. 8hG)
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -266,7 +240,6 @@ msgctxt ""
msgid "Spacing"
msgstr "Espacio"
-#. mRP9
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -277,7 +250,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista previa"
-#. x2;W
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -288,7 +260,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. YKj+
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Expanded"
msgstr "Expandido"
-#. GJ83
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "Condensed"
msgstr "Condensado"
-#. T{W/
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -319,7 +288,6 @@ msgctxt ""
msgid "Write in double lines"
msgstr "~Escribir en doble línea"
-#. Fdn%
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -330,7 +298,6 @@ msgctxt ""
msgid "Double-lined"
msgstr "Doble faz"
-#. IO4p
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -341,7 +308,6 @@ msgctxt ""
msgid "Initial character"
msgstr "Carácter i~nicial"
-#. |fLC
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -352,7 +318,6 @@ msgctxt ""
msgid "Final character"
msgstr "Caráct~er final"
-#. QAfs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -362,7 +327,6 @@ msgctxt ""
msgid "Enclosing character"
msgstr "Caracteres de inclusión"
-#. wYR*
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -373,7 +337,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista previa"
-#. ;Y8`
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -384,7 +347,6 @@ msgctxt ""
msgid "(None)"
msgstr "(Ninguno)"
-#. =eLM
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -394,7 +356,6 @@ msgctxt ""
msgid "("
msgstr ""
-#. T4x(
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "["
msgstr ""
-#. ZMJ^
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "<"
msgstr ""
-#. .)fW
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -422,22 +381,18 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
-#. 8{1%
#: twolinespage.ui
-#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"5\n"
"stringlist.text"
msgid "Other Characters..."
-msgstr "Otros carácteres..."
+msgstr "Otros caracteres..."
-#. IRms
#: twolinespage.ui
-#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
@@ -446,7 +401,6 @@ msgctxt ""
msgid "(None)"
msgstr "(Ninguno)"
-#. chCs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -454,9 +408,8 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
-#. EPeh
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -464,9 +417,8 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
-#. Fy=F
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -474,9 +426,8 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
-#. i(WD
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -484,20 +435,17 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
-#. @{Yt
#: twolinespage.ui
-#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"5\n"
"stringlist.text"
msgid "Other Characters..."
-msgstr "Otros carácteres..."
+msgstr "Otros caracteres..."
-#. 0LTV
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -507,7 +455,6 @@ msgctxt ""
msgid "%MACROLANG Macros"
msgstr "Macros de %MACROLANG"
-#. 3NqI
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -517,7 +464,6 @@ msgctxt ""
msgid "Macros"
msgstr "Macros"
-#. Lo_D
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -527,7 +473,6 @@ msgctxt ""
msgid "Zoom & View Layout"
msgstr "Diseño de vista y escala"
-#. Q!;e
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -537,29 +482,24 @@ msgctxt ""
msgid "Optimal"
msgstr "Óptimo"
-#. 9q=w
#: zoomdialog.ui
-#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"fitwandh\n"
"label\n"
"string.text"
msgid "Fit width and height"
-msgstr "A~justa de ancho y alto"
+msgstr "Ajustar anchura y altura"
-#. ]~JW
#: zoomdialog.ui
-#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"fitw\n"
"label\n"
"string.text"
msgid "Fit width"
-msgstr "Ajustar a a~ncho"
+msgstr "Ajustar a anchura"
-#. _H?+
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -569,7 +509,6 @@ msgctxt ""
msgid "100%"
msgstr "100%"
-#. Xg#s
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -579,7 +518,6 @@ msgctxt ""
msgid "Variable"
msgstr "Variable"
-#. s\dE
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -589,9 +527,7 @@ msgctxt ""
msgid "Zoom factor"
msgstr "Factor de escala"
-#. fMR4
#: zoomdialog.ui
-#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"automatic\n"
@@ -600,7 +536,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. k$e(
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -608,9 +543,8 @@ msgctxt ""
"label\n"
"string.text"
msgid "Single page"
-msgstr ""
+msgstr "Página sencilla"
-#. )rgt
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -620,18 +554,15 @@ msgctxt ""
msgid "Columns"
msgstr "Columnas"
-#. @~{`
#: zoomdialog.ui
-#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"bookmode\n"
"label\n"
"string.text"
msgid "Book mode"
-msgstr "~Modo libro"
+msgstr "Modo libro"
-#. l30c
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -641,7 +572,6 @@ msgctxt ""
msgid "View layout"
msgstr "Vista de diseño"
-#. ]e:q
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -651,7 +581,6 @@ msgctxt ""
msgid "Macro Selector"
msgstr "Selector de macro"
-#. hM|8
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -661,7 +590,6 @@ msgctxt ""
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "Seleccione la biblioteca que contenga la macro que desea. A continuación, seleccione la macro dentro de 'Nombre de macro'."
-#. ^VMl
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -671,7 +599,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 "Para añadir un comando a una barra de herramientas, seleccione la categoría y luego el comando. Después, arrastre el comando a la lista Comandos de la pestaña Barras de herramientas en el diálogo Personalizar."
-#. l-*E
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -681,7 +608,6 @@ msgctxt ""
msgid "Library"
msgstr "Biblioteca"
-#. Xd;?
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -691,7 +617,6 @@ msgctxt ""
msgid "Category"
msgstr "Categoría"
-#. (.AE
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -701,7 +626,6 @@ msgctxt ""
msgid "Macro name"
msgstr "Nombre de macro"
-#. hft9
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -711,7 +635,6 @@ msgctxt ""
msgid "Commands"
msgstr "Comandos"
-#. P\TL
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -721,7 +644,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. ONGJ
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -729,53 +651,44 @@ msgctxt ""
"title\n"
"string.text"
msgid "Thesaurus"
-msgstr ""
+msgstr "Diccionario de sinónimos"
-#. ijR5
#: thesaurus.ui
-#, fuzzy
msgctxt ""
"thesaurus.ui\n"
"replace\n"
"label\n"
"string.text"
msgid "Replace"
-msgstr "~Reemplazar"
+msgstr "Reemplazar"
-#. 8$!3
#: thesaurus.ui
-#, fuzzy
msgctxt ""
"thesaurus.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Current word"
-msgstr "La palabra ~actual"
+msgstr "Palabra actual"
-#. #AXW
#: thesaurus.ui
-#, fuzzy
msgctxt ""
"thesaurus.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Alternatives"
-msgstr "~Alternativas"
+msgstr "Alternativas"
-#. Q+)g
#: thesaurus.ui
-#, fuzzy
msgctxt ""
"thesaurus.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Replace with"
-msgstr "Reemplazar por..."
+msgstr "Reemplazar con"
-#. q#i6
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -783,9 +696,8 @@ msgctxt ""
"label\n"
"string.text"
msgid "label"
-msgstr ""
+msgstr "etiqueta"
-#. `7#G
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -795,7 +707,6 @@ msgctxt ""
msgid "Font color"
msgstr "Color de fuente"
-#. 5W_D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -805,18 +716,15 @@ msgctxt ""
msgid "Effects"
msgstr "Efectos"
-#. iE1D
#: effectspage.ui
-#, fuzzy
msgctxt ""
"effectspage.ui\n"
"reliefft\n"
"label\n"
"string.text"
msgid "Relief"
-msgstr "~Relieve"
+msgstr "Relieve"
-#. dKiS
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -827,7 +735,6 @@ msgctxt ""
msgid "Overlining"
msgstr "S~obrelineado"
-#. nB`/
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -837,7 +744,6 @@ msgctxt ""
msgid "Strikethrough"
msgstr "Tachado"
-#. VjM$
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -848,7 +754,6 @@ msgctxt ""
msgid "Underlining"
msgstr "~Subrayando"
-#. 6O?$
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -859,7 +764,6 @@ msgctxt ""
msgid "Overline color"
msgstr "Color de s~obrelinea"
-#. aUBk
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -870,7 +774,6 @@ msgctxt ""
msgid "Underline Color"
msgstr "Color sobre la lí~nea"
-#. ;H;`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -880,7 +783,6 @@ msgctxt ""
msgid "Outline"
msgstr "Esquema"
-#. dhPb
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -890,7 +792,6 @@ msgctxt ""
msgid "Shadow"
msgstr "Sombra"
-#. X29q
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -900,7 +801,6 @@ msgctxt ""
msgid "Blinking"
msgstr "Intermitente"
-#. Kwf+
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -910,7 +810,6 @@ msgctxt ""
msgid "Hidden"
msgstr "Oculto"
-#. ~\DY
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -921,7 +820,6 @@ msgctxt ""
msgid "Individual words"
msgstr "~Palabras individuales"
-#. Go^Z
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -932,7 +830,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. v:D]
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -942,7 +839,6 @@ msgctxt ""
msgid "Emphasis mark"
msgstr "Caracteres de acentuación"
-#. Mo4/
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -953,7 +849,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. 0@E?
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -964,7 +859,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista previa"
-#. +fQ_
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -975,7 +869,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(Sin)"
-#. )1Tc
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -985,7 +878,6 @@ msgctxt ""
msgid "Capitals"
msgstr "Mayúsculas"
-#. bPMC
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -995,7 +887,6 @@ msgctxt ""
msgid "Lowercase"
msgstr "Minúsculas"
-#. #KbY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1005,7 +896,6 @@ msgctxt ""
msgid "Title"
msgstr "Título"
-#. 45Au
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1015,7 +905,6 @@ msgctxt ""
msgid "Small capitals"
msgstr "Versalitas"
-#. Fk%]
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1026,7 +915,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(Sin)"
-#. k/N[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1036,7 +924,6 @@ msgctxt ""
msgid "Embossed"
msgstr "Repujado"
-#. U}V)
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1046,7 +933,6 @@ msgctxt ""
msgid "Engraved"
msgstr ""
-#. c.(\
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1057,7 +943,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(Sin)"
-#. M+l@
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1067,7 +952,6 @@ msgctxt ""
msgid "Dot"
msgstr "Punto"
-#. +Q/}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1077,7 +961,6 @@ msgctxt ""
msgid "Circle"
msgstr "Círculo"
-#. {3?|
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1087,7 +970,6 @@ msgctxt ""
msgid "Disc"
msgstr "Disco"
-#. wbE-
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1097,7 +979,6 @@ msgctxt ""
msgid "Accent"
msgstr "Acento"
-#. l)a}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1107,7 +988,6 @@ msgctxt ""
msgid "Above text"
msgstr "Sobre el texto"
-#. G%TQ
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1117,7 +997,6 @@ msgctxt ""
msgid "Below text"
msgstr "Debajo del texto"
-#. @8.a
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1128,7 +1007,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(Sin)"
-#. hbpz
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1139,7 +1017,6 @@ msgctxt ""
msgid "Single"
msgstr "Simple"
-#. VDcX
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1150,7 +1027,6 @@ msgctxt ""
msgid "Double"
msgstr "Doble"
-#. T/+;
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1161,7 +1037,6 @@ msgctxt ""
msgid "Bold"
msgstr "Negrita"
-#. x8;w
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1171,7 +1046,6 @@ msgctxt ""
msgid "With /"
msgstr "Con /"
-#. ?.Os
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1181,7 +1055,6 @@ msgctxt ""
msgid "With X"
msgstr "Con X"
-#. z5Hc
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1192,7 +1065,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(Sin)"
-#. 5Wt,
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1203,7 +1075,6 @@ msgctxt ""
msgid "Single"
msgstr "Simple"
-#. N1$+
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1214,7 +1085,6 @@ msgctxt ""
msgid "Double"
msgstr "Doble"
-#. ,XR1
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1225,7 +1095,6 @@ msgctxt ""
msgid "Bold"
msgstr "Negrita"
-#. LM@`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1235,7 +1104,6 @@ msgctxt ""
msgid "Dotted"
msgstr "Punteado"
-#. o.wf
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1245,7 +1113,6 @@ msgctxt ""
msgid "Dotted (Bold)"
msgstr "Punteado negrita"
-#. pR1M
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1255,7 +1122,6 @@ msgctxt ""
msgid "Dash"
msgstr "Guión"
-#. i:6S
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1265,7 +1131,6 @@ msgctxt ""
msgid "Dash (Bold)"
msgstr "Trazo negrita"
-#. ]l,[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1275,7 +1140,6 @@ msgctxt ""
msgid "Long Dash"
msgstr "Trazo largo"
-#. bGo_
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1285,7 +1149,6 @@ msgctxt ""
msgid "Long Dash (Bold)"
msgstr "Trazo negrita largo"
-#. 4uf2
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1295,7 +1158,6 @@ msgctxt ""
msgid "Dot Dash"
msgstr "Punto trazo"
-#. JN,A
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1305,7 +1167,6 @@ msgctxt ""
msgid "Dot Dash (Bold)"
msgstr "Punto trazo negrita"
-#. [$g.
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1315,7 +1176,6 @@ msgctxt ""
msgid "Dot Dot Dash"
msgstr "Punto punto trazo"
-#. cccV
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1325,7 +1185,6 @@ msgctxt ""
msgid "Dot Dot Dash (Bold)"
msgstr "Punto punto trazo negrita"
-#. FPu3
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1335,7 +1194,6 @@ msgctxt ""
msgid "Wave"
msgstr "Onda"
-#. h8:*
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1345,7 +1203,6 @@ msgctxt ""
msgid "Wave (Bold)"
msgstr "Ondulada negrita"
-#. ME7o
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1355,7 +1212,6 @@ msgctxt ""
msgid "Double Wave"
msgstr "Ondulada doble"
-#. @.{F
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1365,18 +1221,15 @@ msgctxt ""
msgid "Insert Row"
msgstr "Insertar fila"
-#. se3Q
#: insertrowcolumn.ui
-#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Number"
-msgstr "Núm_de_serie"
+msgstr "_Número"
-#. I_7r
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1386,31 +1239,25 @@ msgctxt ""
msgid "Insert"
msgstr "Insertar"
-#. +H}G
#: insertrowcolumn.ui
-#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"insert_before\n"
"label\n"
"string.text"
msgid "_Before"
-msgstr "Antes"
+msgstr "_Antes"
-#. maCG
#: insertrowcolumn.ui
-#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"insert_after\n"
"label\n"
"string.text"
msgid "A_fter"
-msgstr "Después"
+msgstr "_Después"
-#. Z97Q
#: insertrowcolumn.ui
-#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"label2\n"
@@ -1419,7 +1266,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. K5U8
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1429,64 +1275,52 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Separación silábica"
-#. byra
#: hyphenate.ui
-#, fuzzy
msgctxt ""
"hyphenate.ui\n"
"hyphall\n"
"label\n"
"string.text"
msgid "Hyphenate All"
-msgstr "Separar en sílabas ~todo"
+msgstr "Separar todo en sílabas"
-#. QJ{Y
#: hyphenate.ui
-#, fuzzy
msgctxt ""
"hyphenate.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Word"
-msgstr "Palabras"
+msgstr "Palabra"
-#. PnrN
#: hyphenate.ui
-#, fuzzy
msgctxt ""
"hyphenate.ui\n"
"ok\n"
"label\n"
"string.text"
msgid "Hyphenate"
-msgstr "~Separar en sílabas"
+msgstr "Separar en sílabas"
-#. :p?D
#: hyphenate.ui
-#, fuzzy
msgctxt ""
"hyphenate.ui\n"
"continue\n"
"label\n"
"string.text"
msgid "Skip"
-msgstr "~Omitir"
+msgstr "Omitir"
-#. zGJ.
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westfontnameft-nocjk\n"
"label\n"
"string.text"
msgid "Family "
-msgstr "Familia"
+msgstr "Familia "
-#. @^8,
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"weststyleft-nocjk\n"
@@ -1495,9 +1329,7 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. cjw{
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westsizeft-nocjk\n"
@@ -1506,9 +1338,7 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. fz$6
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westlangft-nocjk\n"
@@ -1517,31 +1347,25 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. _6aN
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"label21\n"
"label\n"
"string.text"
msgid "Font"
-msgstr "Fuente"
+msgstr "Tipo de letra"
-#. bkLe
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westfontnameft-cjk\n"
"label\n"
"string.text"
msgid "Family "
-msgstr "Familia"
+msgstr "Familia "
-#. `Hcq
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"weststyleft-cjk\n"
@@ -1550,9 +1374,7 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. tDAb
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westsizeft-cjk\n"
@@ -1561,9 +1383,7 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. cQ#i
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westlangft-cjk\n"
@@ -1572,7 +1392,6 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. eI/w
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1582,20 +1401,16 @@ msgctxt ""
msgid "Western text font"
msgstr "Fuente de texto occidental"
-#. f?%c
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"eastfontnameft\n"
"label\n"
"string.text"
msgid "Family "
-msgstr "Familia"
+msgstr "Familia "
-#. ![e0
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"eaststyleft\n"
@@ -1604,9 +1419,7 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. [96A
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"eastsizeft\n"
@@ -1615,7 +1428,6 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. `AqW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1626,7 +1438,6 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. A%/9
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1636,7 +1447,6 @@ msgctxt ""
msgid "Asian text font"
msgstr "Fuente de texto asiática"
-#. nP!Z
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1647,7 +1457,6 @@ msgctxt ""
msgid "Family "
msgstr "Familia"
-#. 9[0`
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1658,7 +1467,6 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. efyW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1669,7 +1477,6 @@ msgctxt ""
msgid "Size"
msgstr "Tamaño"
-#. q[V0
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1680,7 +1487,6 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. DoEn
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1690,7 +1496,6 @@ msgctxt ""
msgid "CTL font"
msgstr "Fuente CTL"
-#. MZZM
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1701,7 +1506,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista previa"
-#. M2ds
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1711,7 +1515,6 @@ msgctxt ""
msgid "Floating Frame Properties"
msgstr "Propiedades de marcos flotantes"
-#. x_rI
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1721,7 +1524,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. 9cbs
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1731,7 +1533,6 @@ msgctxt ""
msgid "Contents"
msgstr "Contenido"
-#. 1,k{
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1742,7 +1543,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Examinar..."
-#. Fdl9
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1752,7 +1552,6 @@ msgctxt ""
msgid "On"
msgstr ""
-#. aMs|
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1763,7 +1562,6 @@ msgctxt ""
msgid "Off"
msgstr "Desactivado"
-#. P,tS
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1774,7 +1572,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. Va^(
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1784,7 +1581,6 @@ msgctxt ""
msgid "Scroll bar"
msgstr "Barra de desplazamiento"
-#. Zd7=
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1794,7 +1590,6 @@ msgctxt ""
msgid "On"
msgstr ""
-#. 6;Lm
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1805,7 +1600,6 @@ msgctxt ""
msgid "Off"
msgstr "Desactivado"
-#. TiIq
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1815,7 +1609,6 @@ msgctxt ""
msgid "Border"
msgstr "~Borde"
-#. Neq]
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1825,7 +1618,6 @@ msgctxt ""
msgid "Width"
msgstr "Ancho"
-#. QVdm
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1835,7 +1627,6 @@ msgctxt ""
msgid "Height"
msgstr "Altura"
-#. ^+2e
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1846,7 +1637,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. r7lA
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1857,7 +1647,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. eJ[8
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1867,7 +1656,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr ""
-#. 3;XK
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1877,7 +1665,6 @@ msgctxt ""
msgid "Insert Plug-in"
msgstr "Insertar plug-in"
-#. ]O7?
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1888,7 +1675,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Examinar..."
-#. !+?B
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1899,7 +1685,6 @@ msgctxt ""
msgid "File/URL"
msgstr "Archivo / URL"
-#. ^)sT
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1910,7 +1695,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. e^,=
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1920,7 +1704,6 @@ msgctxt ""
msgid "Special Characters"
msgstr "Caracteres especiales"
-#. (EUz
#: specialcharacters.ui
#, fuzzy
msgctxt ""
@@ -1931,7 +1714,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. UkPh
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1941,7 +1723,6 @@ msgctxt ""
msgid "Subset"
msgstr "Subconjunto"
-#. ?@d/
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1951,7 +1732,6 @@ msgctxt ""
msgid "U+0020(32)"
msgstr ""
-#. b4V[
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
diff --git a/source/es/dbaccess/source/core/resource.po b/source/es/dbaccess/source/core/resource.po
index d362d98b4d7..1220956a1f4 100644
--- a/source/es/dbaccess/source/core/resource.po
+++ b/source/es/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: 2012-07-13 09:46+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Se intentó abrir la tabla $name$."
-#. tr!y
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "No connection could be established."
msgstr "No se pudo establecer una conexión."
-#. 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 "La tabla $name$ ya existe. No es visible porque ha sido filtrada."
-#. 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 "No es posible el acceso a los datos de configuración para escribir."
-#. 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 "No se pudo realizar la conexión a la fuente de datos externa. Ha ocurrido un error desconocido. Es posible que el controlador esté defectuoso."
-#. 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 "No se pudo realizar la conexión a la fuente de datos externa porque no se encontró ningún controlador SDBC para la URL indicada."
-#. %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 "No se pudo realizar la conexión a la fuente de datos externa porque no se pudo cargar el gestor de controladores SDBC."
-#. C0.?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Form"
msgstr "Formulario"
-#. 8u\$
#: strings.src
msgctxt ""
"strings.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Report"
msgstr "Informe"
-#. 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 "No se ha guardado el origen de datos. Utilice la interfaz de XStorable para guardar el origen de datos."
-#. B3.M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -118,7 +107,6 @@ msgstr ""
"El comando proporcionado no es una instrucción SELECT.\n"
"Sólo se permiten consultas."
-#. gkPZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -127,7 +115,6 @@ msgctxt ""
msgid "No values were modified."
msgstr "No se ha modificado ningún valor."
-#. 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 "No se han podido insertar valores. ResultSet no admite la interfaz de XRowUpdate."
-#. =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 "No se han podido insertar valores. ResultSet no admite la interfaz de XResultSetUpdate."
-#. 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 "No se han podido modificar los valores debido a que falta una instrucción de condición."
-#. dJMS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "The adding of columns is not supported."
msgstr "No se permite agregar columnas."
-#. `dr(
#: strings.src
msgctxt ""
"strings.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "The dropping of columns is not supported."
msgstr "No se permite colocar columnas."
-#. !\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 "No se ha podido crear la condición WHERE para la clave principal."
-#. DmYo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -190,7 +171,6 @@ msgctxt ""
msgid "The column does not support the property '%value'."
msgstr "La columna no admite la propiedad '%value'."
-#. hROM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -199,7 +179,6 @@ msgctxt ""
msgid "The column is not searchable!"
msgstr "No se pueden efectuar búsquedas en la columna."
-#. 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 "El valor de las columnas no es del tipo Secuencia<sal_Int8>."
-#. dmJ^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -217,7 +195,6 @@ msgctxt ""
msgid "The column is not valid."
msgstr "La columna no es válida."
-#. GKQn
#: strings.src
msgctxt ""
"strings.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "The column '%name' must be visible as a column."
msgstr "La columna '%name' debe aparecer como columna."
-#. ChFg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -235,7 +211,6 @@ msgctxt ""
msgid "The interface XQueriesSupplier is not available."
msgstr "La interfaz de XQueriesSupplier no está disponible."
-#. `Vl,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -244,7 +219,6 @@ msgctxt ""
msgid "The driver does not support this function."
msgstr "El controlador no admite esta función."
-#. b9mq
#: strings.src
msgctxt ""
"strings.src\n"
@@ -253,7 +227,6 @@ msgctxt ""
msgid "An 'absolute(0)' call is not allowed."
msgstr "No se admiten llamadas 'absolute(0)'."
-#. #7.J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -262,7 +235,6 @@ msgctxt ""
msgid "Relative positioning is not allowed in this state."
msgstr "No se admite la posición relativa en este estado."
-#. 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 "No se pueden actualizar las filas cuando ResultSet está detrás de la última fila."
-#. 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 "No se puede insertar una fila nueva si no se mueve antes ResultSet a la fila de inserción."
-#. w:c%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -289,7 +259,6 @@ msgctxt ""
msgid "A row cannot be modified in this state"
msgstr "No se puede modificar una fila en este estado"
-#. 2.*I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -298,7 +267,6 @@ msgctxt ""
msgid "A row cannot be deleted in this state."
msgstr "No se puede eliminar una fila en este estado."
-#. E(eo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -307,7 +275,6 @@ msgctxt ""
msgid "The driver does not support table renaming."
msgstr "El controlador no permite cambiar el nombre de la tabla."
-#. s7Q2
#: strings.src
msgctxt ""
"strings.src\n"
@@ -316,7 +283,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions."
msgstr "El controlador no permite modificar descripciones de columnas."
-#. #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 "El controlador no permite modificar descripciones de columnas cambiando el nombre."
-#. 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 "El controlador no permite modificar descripciones de columnas cambiando el índice."
-#. dSi`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -343,7 +307,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr "El archivo \"$file$\" no existe."
-#. fMB5
#: strings.src
msgctxt ""
"strings.src\n"
@@ -352,7 +315,6 @@ msgctxt ""
msgid "There exists no table named \"$table$\"."
msgstr "No hay ninguna tabla llamada \"$table$\"."
-#. x6hr
#: strings.src
msgctxt ""
"strings.src\n"
@@ -361,7 +323,6 @@ msgctxt ""
msgid "There exists no query named \"$table$\"."
msgstr "No hay ninguna consulta llamada \"$table$\"."
-#. 6*vj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -370,7 +331,6 @@ msgctxt ""
msgid "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names."
msgstr "Hay tablas de la base de datos cuyos nombres entran en conflicto con los de las consultas. Para poder utilizar al máximo todas las consultas y las tablas, cada cual debe tener su propio nombre."
-#. +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 "El comando SQL no describe un conjunto de resultados."
-#. 1um:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -403,7 +361,6 @@ msgctxt ""
msgid "The name must not be empty."
msgstr "El campo nombre no puede estar vacío."
-#. aW[i
#: strings.src
msgctxt ""
"strings.src\n"
@@ -412,7 +369,6 @@ msgctxt ""
msgid "The container cannot contain NULL objects."
msgstr "El contenedor no puede contener objetos NULL."
-#. aG.\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -421,7 +377,6 @@ msgctxt ""
msgid "There already is an object with the given name."
msgstr "Ya existe un objeto con el nombre dado."
-#. WVfc
#: strings.src
msgctxt ""
"strings.src\n"
@@ -430,7 +385,6 @@ msgctxt ""
msgid "This object cannot be part of this container."
msgstr "El objeto no puede ser parte de este contenedor."
-#. $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 "El objeto ya es, con un nombre diferente, parte del contenedor."
-#. L^Ws
#: strings.src
msgctxt ""
"strings.src\n"
@@ -448,7 +401,6 @@ msgctxt ""
msgid "Unable to find the document '$name$'."
msgstr "No es posible encontrar el documento '$name$'."
-#. UTT6
#: strings.src
msgctxt ""
"strings.src\n"
@@ -461,7 +413,6 @@ msgstr ""
"No se pudo guardar el documento en $location$:\n"
"$message$"
-#. WcZo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -472,7 +423,6 @@ msgid ""
"$error$"
msgstr "Error al acceder a la fuente de datos '$name$':$error$"
-#. c/c)
#: strings.src
msgctxt ""
"strings.src\n"
@@ -481,7 +431,6 @@ msgctxt ""
msgid "There exists no folder named \"$folder$\"."
msgstr "No existe ningún directorio llamado \"$folder$\"."
-#. p6+_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -490,7 +439,6 @@ msgctxt ""
msgid "Cannot delete the before-first or after-last row."
msgstr "No se puede eliminar la fila anterior a la primera ni la posterior a la última."
-#. 3S;+
#: strings.src
msgctxt ""
"strings.src\n"
@@ -499,7 +447,6 @@ msgctxt ""
msgid "Cannot delete the insert-row."
msgstr "No se puede eliminar la fila de inserción."
-#. ncD}
#: strings.src
msgctxt ""
"strings.src\n"
@@ -508,7 +455,6 @@ msgctxt ""
msgid "Result set is read only."
msgstr "El conjunto de resultados es de sólo lectura."
-#. {d*:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -517,7 +463,6 @@ msgctxt ""
msgid "DELETE privilege not available."
msgstr "No está disponible el privilegio para eliminación DELETE."
-#. AaXP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -526,7 +471,6 @@ msgctxt ""
msgid "Current row is already deleted."
msgstr "La fila actual ya fue eliminada."
-#. T}{9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -535,7 +479,6 @@ msgctxt ""
msgid "Current row could not be updated."
msgstr "No se pudo actualizar la fila actual."
-#. p--J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -544,7 +487,6 @@ msgctxt ""
msgid "INSERT privilege not available."
msgstr "No está disponible el privilegio para inserción INSERT."
-#. IbfB
#: strings.src
msgctxt ""
"strings.src\n"
@@ -553,7 +495,6 @@ msgctxt ""
msgid "Internal error: no statement object provided by the database driver."
msgstr "Se produjo un error interno: el controlador de la base de datos no proporcionó ningún objeto de tipo instrucción."
-#. YpbE
#: strings.src
msgctxt ""
"strings.src\n"
@@ -562,7 +503,6 @@ msgctxt ""
msgid "Expression1"
msgstr "Expresión1"
-#. ~6oS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -571,7 +511,6 @@ msgctxt ""
msgid "No SQL command was provided."
msgstr "No se proporcionó ningún comando SQL."
-#. ,*fj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -580,7 +519,6 @@ msgctxt ""
msgid "Invalid column index."
msgstr "Índice de columna inválido."
-#. */,\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -589,7 +527,6 @@ msgctxt ""
msgid "Invalid cursor state."
msgstr "Estado del cursor inválido."
-#. xfeZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -598,7 +535,6 @@ msgctxt ""
msgid "The cursor points to before the first or after the last row."
msgstr "El cursor apunta antes de la primera fila, o después de la última."
-#. /|WO
#: strings.src
msgctxt ""
"strings.src\n"
@@ -607,7 +543,6 @@ msgctxt ""
msgid "The rows before the first and after the last row don't have a bookmark."
msgstr "La fila anterior a la primera y la posterior a la última no poseen marcadores."
-#. nl.%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -616,7 +551,6 @@ msgctxt ""
msgid "The current row is deleted, and thus doesn't have a bookmark."
msgstr "La fila actual fue eliminada, por lo cual no posee un marcador."
-#. st[S
#: strings.src
msgctxt ""
"strings.src\n"
@@ -625,7 +559,6 @@ msgctxt ""
msgid "Embedding of database documents is not supported."
msgstr "No es posible incrustar documentos de base de datos."
-#. D257
#: strings.src
msgctxt ""
"strings.src\n"
@@ -634,7 +567,6 @@ msgctxt ""
msgid "A connection for the following URL was requested \"$name$\"."
msgstr "Se solicitó una conexión para el siguiente URL \"$name$\"."
-#. UZxP
#: strings.src
msgctxt ""
"strings.src\n"
diff --git a/source/es/dbaccess/source/ext/macromigration.po b/source/es/dbaccess/source/ext/macromigration.po
index f18abacdc80..78b318dcf00 100644
--- a/source/es/dbaccess/source/ext/macromigration.po
+++ b/source/es/dbaccess/source/ext/macromigration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-08-14 05:19+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. /*XT
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Prepare"
msgstr "Preparar"
-#. ;GCY
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Backup Document"
msgstr "Respaldar documento"
-#. wO:K
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Migrate"
msgstr "Migrar"
-#. x3s]
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Summary"
msgstr "Resumen"
-#. O8E~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Database Document Macro Migration"
msgstr "Migración para macros de documentos de base de datos"
-#. URJi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Welcome to the Database Macro Migration Wizard"
msgstr "Bienvenido/a al Asistente para la migración de macros de bases de datos"
-#. rNob
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -98,7 +91,6 @@ msgstr ""
"\n"
"Antes de poder iniciar la migración deben cerrarse todos los formularios, informes, consultas y tablas que pertenezcan a este documento. Pulse «Siguiente» para cerrarlos."
-#. [*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 "No se pudieron cerrar todos los objetos. Ciérrelos manualmente, y reinicie el asistente."
-#. ys;s
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -118,7 +109,6 @@ msgctxt ""
msgid "Backup your Document"
msgstr "Respalde su documento"
-#. 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 "Para permitirle regresar al estado anterior a la migración, el documento de la base de datos será respaldado en la ubicación que usted elija. Los cambios hechos por el asistente se aplicarán al documento original, y la copia de respaldo no será modificada."
-#. /T7e
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -138,7 +127,6 @@ msgctxt ""
msgid "Save To:"
msgstr "Guardar a:"
-#. k[Sg
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -148,7 +136,6 @@ msgctxt ""
msgid "Browse ..."
msgstr "Examinar..."
-#. 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 "Pulse «Siguiente» para guardar una copia de su documento, y para comenzar la migración."
-#. BCGi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -168,7 +154,6 @@ msgctxt ""
msgid "Migration Progress"
msgstr "Progreso de la migración"
-#. 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 "El documento de la base de datos contiene $forms$ formulario(s) y $reports$ informe(s), que se están procesando en este momento:"
-#. Tp]j
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -188,7 +172,6 @@ msgctxt ""
msgid "Current object:"
msgstr "Objeto actual:"
-#. P5HM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -198,7 +181,6 @@ msgctxt ""
msgid "Current progress:"
msgstr "Progreso actual:"
-#. zf(u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -208,7 +190,6 @@ msgctxt ""
msgid "Overall progress:"
msgstr "Progreso total:"
-#. =+\*
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -218,7 +199,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr "documento $current$ de $overall$"
-#. 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 "Todos los documentos se han procesado satisfactoriamente. Presione 'Siguiente' para ver un resumen detallado."
-#. IGos
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -238,7 +217,6 @@ msgctxt ""
msgid "Summary"
msgstr "Resumen"
-#. 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 "La migración fue exitosa. Debajo se encuentra un registro de las acciones que fueron ejecutadas en su documento."
-#. 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 "La migración no fue exitosa. Examine el registro de migración que se encuentra debajo, para los detalles."
#. 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 "Formulario '$name$'"
#. 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 "Informe '$name$'"
-#. adV]
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -287,7 +261,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr "documento $current$ de $overall$"
-#. dS]Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -296,7 +269,6 @@ msgctxt ""
msgid "Database Document"
msgstr "Documento de la base de datos"
-#. x,#Z
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -305,7 +277,6 @@ msgctxt ""
msgid "saved copy to $location$"
msgstr "se guardó una copia en $location$"
-#. ONwp
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -314,7 +285,6 @@ msgctxt ""
msgid "migrated $type$ library '$old$' to '$new$'"
msgstr "se movió la biblioteca $type$ de '$old$' a '$new$'"
-#. (x0u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -323,7 +293,6 @@ msgctxt ""
msgid "$type$ library '$library$'"
msgstr "$type$ biblioteca '$library$'"
-#. ro*Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -332,7 +301,6 @@ msgctxt ""
msgid "migrating libraries ..."
msgstr "moviendo bibliotecas..."
-#. 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 "diálogo"
-#. {huM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "Error(s)"
msgstr "Error(es)"
-#. lP[k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "Warnings"
msgstr "Advertencias"
-#. RJnt
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -413,7 +373,6 @@ msgctxt ""
msgid "caught exception:"
msgstr "capturada excepción:"
-#. 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 "Para la copia de seguridad necesita elegir una ubicación diferente a la ubicación del documento."
-#. `o=?
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -431,7 +389,6 @@ msgctxt ""
msgid "Invalid number of initialization arguments. Expected 1."
msgstr "La cantidad de argumentos de inicialización es incorrecta. Se esperaba 1."
-#. Q7eK
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -440,7 +397,6 @@ msgctxt ""
msgid "No database document found in the initialization arguments."
msgstr "No se encontró un documento de base de datos en los argumentos de inicialización."
-#. SZ+3
#: macromigration.src
msgctxt ""
"macromigration.src\n"
diff --git a/source/es/dbaccess/source/sdbtools/resource.po b/source/es/dbaccess/source/sdbtools/resource.po
index 4550fc5ab26..216684defc3 100644
--- a/source/es/dbaccess/source/sdbtools/resource.po
+++ b/source/es/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: 2012-08-14 05:19+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "No puede asignar el mismo nombre a una tabla y una consulta. Utilice un nombre que no esté asignado a una consulta o tabla."
-#. gyh%
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. /LI:
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Query"
msgstr "Consulta"
-#. 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 "La conexión proporcionada no corresponde a una consulta y/o tabla existente."
-#. mGK#
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The given object is no table object."
msgstr "El objeto proporcionado no es una tabla."
-#. 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 "Tipo de composición inválido - se necesita un valor de com.sun.star.sdb.tools.CompositionType."
-#. _8X^
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
diff --git a/source/es/dbaccess/source/ui/app.po b/source/es/dbaccess/source/ui/app.po
index 84c92cf8e22..4bc362ee681 100644
--- a/source/es/dbaccess/source/ui/app.po
+++ b/source/es/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: 2012-08-14 05:06+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Crear un formulario en modo de diseño..."
-#. 5}mf
#: app.src
msgctxt ""
"app.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Use Wizard to Create Form..."
msgstr "Usar el asistente para crear un formulario..."
-#. ^I:2
#: app.src
msgctxt ""
"app.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Use Wizard to Create Report..."
msgstr "Usar el asistente para crear un informe..."
-#. 5%!)
#: app.src
msgctxt ""
"app.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Create Report in Design View..."
msgstr "Crear un informe en modo de diseño..."
-#. QMc.
#: app.src
msgctxt ""
"app.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Create Query in Design View..."
msgstr "Crear una consulta en modo de diseño..."
-#. wQLG
#: app.src
msgctxt ""
"app.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Create Query in SQL View..."
msgstr "Crear una consulta en modo SQL..."
-#. 0j=5
#: app.src
msgctxt ""
"app.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Use Wizard to Create Query..."
msgstr "Usar el asistente para crear una consulta..."
-#. c+m^
#: app.src
msgctxt ""
"app.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Create Table in Design View..."
msgstr "Crear una tabla en modo de diseño..."
-#. 8_x!
#: app.src
msgctxt ""
"app.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Use Wizard to Create Table..."
msgstr "Usar el asistente para crear una tabla..."
-#. U-|Y
#: app.src
msgctxt ""
"app.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Create View..."
msgstr "Crear una vista..."
-#. 52Z[
#: app.src
msgctxt ""
"app.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Forms"
msgstr "Formularios"
-#. il@k
#: app.src
msgctxt ""
"app.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Reports"
msgstr "Informes"
-#. gSSQ
#: app.src
msgctxt ""
"app.src\n"
@@ -133,7 +120,6 @@ msgctxt ""
msgid "Form..."
msgstr "Formulario..."
-#. #,}Q
#: app.src
msgctxt ""
"app.src\n"
@@ -143,7 +129,6 @@ msgctxt ""
msgid "Report..."
msgstr "Informe..."
-#. ]kPd
#: app.src
msgctxt ""
"app.src\n"
@@ -153,7 +138,6 @@ msgctxt ""
msgid "View (Simple)..."
msgstr "Vista (Simple)..."
-#. =nyK
#: app.src
msgctxt ""
"app.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "Paste Special..."
msgstr "Pegado especial..."
-#. qc.B
#: app.src
msgctxt ""
"app.src\n"
@@ -173,7 +156,6 @@ msgctxt ""
msgid "Delete"
msgstr "Eliminar"
-#. TJf$
#: app.src
msgctxt ""
"app.src\n"
@@ -183,7 +165,6 @@ msgctxt ""
msgid "Rename"
msgstr "Renombrar"
-#. M[`t
#: app.src
msgctxt ""
"app.src\n"
@@ -193,7 +174,6 @@ msgctxt ""
msgid "Edit"
msgstr "Editar"
-#. Dxkr
#: app.src
msgctxt ""
"app.src\n"
@@ -203,7 +183,6 @@ msgctxt ""
msgid "Edit in SQL View..."
msgstr "Editar en vista SQL..."
-#. O)+e
#: app.src
msgctxt ""
"app.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Open"
msgstr "Abrir"
-#. p;88
#: app.src
msgctxt ""
"app.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Create as View"
msgstr "Crear como vista"
-#. Ci\=
#: app.src
msgctxt ""
"app.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "Form Wizard..."
msgstr "Asistente para formularios..."
-#. 5qX\
#: app.src
msgctxt ""
"app.src\n"
@@ -243,7 +219,6 @@ msgctxt ""
msgid "Report..."
msgstr "Informe..."
-#. iu:i
#: app.src
msgctxt ""
"app.src\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr "Asistente para informes..."
-#. 0Q3,
#: app.src
msgctxt ""
"app.src\n"
@@ -263,7 +237,6 @@ msgctxt ""
msgid "Select All"
msgstr "Seleccionar todo"
-#. #W3E
#: app.src
msgctxt ""
"app.src\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "Properties..."
msgstr "Propiedades..."
-#. l*B:
#: app.src
msgctxt ""
"app.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Connection Type..."
msgstr "Tipo de conexión..."
-#. 1Avo
#: app.src
msgctxt ""
"app.src\n"
@@ -293,7 +264,6 @@ msgctxt ""
msgid "Advanced Settings..."
msgstr "Configuración avanzada..."
-#. i3v)
#: app.src
msgctxt ""
"app.src\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "~Database"
msgstr "~Base de datos"
-#. /bmi
#: app.src
msgctxt ""
"app.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "Do you want to delete the data source '%1'?"
msgstr "¿Desea eliminar el origen de datos '%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 "El asistente le guía por los pasos necesarios para crear un informe."
-#. 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 "Cree un formulario especificando el origen de datos, los controles y las propiedades de control."
-#. /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 "Crear un informe que especifique la fuente de registro, los controles y las propiedades de control."
-#. /#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 "El asistente le guía por los pasos necesarios para crear un formulario."
-#. #+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 "Cree una consulta especificando los filtros, las tablas de entrada, los nombres de campo y las propiedades para ordenar o agrupar."
-#. `P.h
#: app.src
msgctxt ""
"app.src\n"
@@ -375,7 +337,6 @@ msgctxt ""
msgid "Create a query entering an SQL statement directly."
msgstr "Cree una consulta escribiendo directamente una instrucción SQL."
-#. 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 "El asistente le guía por los pasos necesarios para crear una consulta."
-#. 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 "Cree una tabla especificando los nombres de campo y las propiedades, así como los tipos de datos."
-#. ,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 "Elija en una selección de muestras de tablas personales y comerciales, que se pueden personalizar para crear una tabla."
-#. 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 "Cree una vista especificando las tablas y los nombres de campo que desee ver."
-#. uecI
#: app.src
msgctxt ""
"app.src\n"
@@ -420,7 +377,6 @@ msgctxt ""
msgid "Opens the view wizard"
msgstr "Abre el asistente para vistas"
-#. 8!I9
#: app.src
msgctxt ""
"app.src\n"
@@ -429,7 +385,6 @@ msgctxt ""
msgid "Database"
msgstr "Base de datos"
-#. +oK?
#: app.src
msgctxt ""
"app.src\n"
@@ -438,7 +393,6 @@ msgctxt ""
msgid "Tasks"
msgstr "Tareas"
-#. ]#8r
#: app.src
msgctxt ""
"app.src\n"
@@ -447,7 +401,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. QP~x
#: app.src
msgctxt ""
"app.src\n"
@@ -456,7 +409,6 @@ msgctxt ""
msgid "Preview"
msgstr "Vista previa"
-#. 4Q8\
#: app.src
msgctxt ""
"app.src\n"
@@ -465,7 +417,6 @@ msgctxt ""
msgid "Disable Preview"
msgstr "Desactivar vista previa"
-#. IV?f
#: app.src
msgctxt ""
"app.src\n"
@@ -478,7 +429,6 @@ msgstr ""
"La base de datos se ha modificado.\n"
"¿Desea guardar los cambios?"
-#. E6t=
#: app.src
msgctxt ""
"app.src\n"
@@ -495,7 +445,6 @@ msgstr ""
"\n"
"¿Desea cerrar todos los documentos ahora?"
-#. -xWK
#: app.src
msgctxt ""
"app.src\n"
@@ -505,7 +454,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. r.2f
#: app.src
msgctxt ""
"app.src\n"
@@ -515,7 +463,6 @@ msgctxt ""
msgid "Document Information"
msgstr "Información del documento"
-#. 8rn:
#: app.src
msgctxt ""
"app.src\n"
@@ -525,7 +472,6 @@ msgctxt ""
msgid "Document"
msgstr "Documento"
-#. \5_4
#: app.src
msgctxt ""
"app.src\n"
@@ -534,7 +480,6 @@ msgctxt ""
msgid "Form"
msgstr "Formulario"
-#. Bc1t
#: app.src
msgctxt ""
"app.src\n"
@@ -543,7 +488,6 @@ msgctxt ""
msgid "Report"
msgstr "Informe"
-#. .j2e
#: app.src
msgctxt ""
"app.src\n"
@@ -552,7 +496,6 @@ msgctxt ""
msgid "F~orm name"
msgstr "Nombre del f~ormulario"
-#. ,lje
#: app.src
msgctxt ""
"app.src\n"
@@ -561,7 +504,6 @@ msgctxt ""
msgid "~Report name"
msgstr "Nombre del ~informe"
-#. g:.c
#: app.src
msgctxt ""
"app.src\n"
@@ -570,7 +512,6 @@ msgctxt ""
msgid "F~older name"
msgstr "Nombre de la c~arpeta"
-#. LM}N
#: app.src
msgctxt ""
"app.src\n"
@@ -579,7 +520,6 @@ msgctxt ""
msgid "The document contains forms or reports with embedded macros."
msgstr "El documento contiene formularios o reportes con macros incrustadas."
-#. *a0E
#: app.src
msgctxt ""
"app.src\n"
@@ -598,7 +538,6 @@ msgstr ""
"\n"
"Tenga en cuenta que no podrá incrustar macros en el documento de la base de datos hasta que lleve a cabo esta migración. "
-#. IG;w
#: app.src
msgctxt ""
"app.src\n"
@@ -607,7 +546,6 @@ msgctxt ""
msgid "Embedded database"
msgstr "Base de datos incrustada"
-#. 9PgD
#: app.src
msgctxt ""
"app.src\n"
@@ -616,7 +554,6 @@ msgctxt ""
msgid "You cannot select different categories."
msgstr "No puede seleccionar categorías distintas."
-#. !1~2
#: app.src
msgctxt ""
"app.src\n"
diff --git a/source/es/dbaccess/source/ui/browser.po b/source/es/dbaccess/source/ui/browser.po
index 3040c762151..2398090e14c 100644
--- a/source/es/dbaccess/source/ui/browser.po
+++ b/source/es/dbaccess/source/ui/browser.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-08-14 05:19+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:16+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353503812.0\n"
-#. Yg61
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "Column ~Format..."
msgstr "Formateado de ~columnas..."
-#. S*3^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -35,7 +34,6 @@ msgctxt ""
msgid "Copy Column D~escription"
msgstr "Copiar descripción de colu~mna"
-#. OrWW
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -45,7 +43,6 @@ msgctxt ""
msgid "Table Format..."
msgstr "Formateado de tabla..."
-#. _*Kp
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -55,7 +52,6 @@ msgctxt ""
msgid "Row Height..."
msgstr "Altura de fila..."
-#. tU(+
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -64,7 +60,6 @@ msgctxt ""
msgid "Undo: Data Input"
msgstr "Deshacer: Introducción de datos"
-#. -/O(
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -73,7 +68,6 @@ msgctxt ""
msgid "Save current record"
msgstr "Guardar registro actual"
-#. P*@v
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -82,9 +76,7 @@ msgctxt ""
msgid "Query #"
msgstr "Consulta #"
-#. 0*?p
#: sbagrid.src
-#, fuzzy
msgctxt ""
"sbagrid.src\n"
"STR_TBL_TITLE\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Table #"
msgstr "Tabla #"
-#. }ltF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "View #"
msgstr "Ver #"
-#. G~7/
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "The name \"#\" already exists."
msgstr "El nombre \"#\" ya existe."
-#. 9=7^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "No matching column names were found."
msgstr "No se encontraron nombres de columna idénticos."
-#. bg|4
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "An error occurred. Do you want to continue copying?"
msgstr "Ocurrió un error. ¿Quiere continuar con la copia?"
-#. jJ/o
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "Data source table view"
msgstr "Vista de tabla de la fuente de datos"
-#. ^TTF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "Shows the selected table or query."
msgstr "Muestra la tabla o consulta seleccionada."
-#. Y2P,
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -159,7 +144,6 @@ msgstr ""
"El registro actual ha sido modificado.\n"
"¿Desea guardar las modificaciones?"
-#. kn*1
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Do you want to delete the selected data?"
msgstr "¿Desea eliminar los datos seleccionados?"
-#. =Rsz
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "(filtered)"
msgstr "(filtrado)"
-#. rB\v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr "Error al definir los criterios de ordenación"
-#. Pp/v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr "Error al definir los criterios de filtro"
-#. rQ1R
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "Connection lost"
msgstr "Se perdió la conexión"
-#. H6bx
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Queries"
msgstr "Consultas"
-#. MA(8
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "Tables"
msgstr "Tablas"
-#. =r`]
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Edit ~Database File..."
msgstr "Editar archivo de la base de ~datos..."
-#. REP(
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Registered databases ..."
msgstr "Bases de datos registradas..."
-#. HoF`
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "Disco~nnect"
msgstr "Desco~nectar"
-#. )aE+
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr "Confirmar eliminación"
-#. T!@5
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Do you want to delete the table '%1'?"
msgstr "¿Quiere eliminar la tabla «%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 "La consulta ya existe. ¿Quiere eliminarla?"
-#. 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 "Se ha perdido la conexión a la base de datos. ¿Quiere reconectar?"
-#. huTN
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "Warnings encountered"
msgstr "Se han encontrado advertencias"
-#. 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 "La conexión a la base de datos ha enviado advertencias durante la determinación de las tablas."
-#. ,R(F
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "Connecting to \"$name$\" ..."
msgstr "Conectando a «$name$» ..."
-#. VeAp
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -321,7 +288,6 @@ msgctxt ""
msgid "Loading query $name$ ..."
msgstr "Cargando consulta $name$ ..."
-#. %?6?
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -330,7 +296,6 @@ msgctxt ""
msgid "Loading table $name$ ..."
msgstr "Cargando tabla $name$ ..."
-#. J,jS
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -339,7 +304,6 @@ msgctxt ""
msgid "No table format could be found."
msgstr "No se ha podido encontrar ningún formato de hoja de cálculo."
-#. 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 "No se ha podido establecer la conexión al origen de datos «$name$»."
-#. 3J7q
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
diff --git a/source/es/dbaccess/source/ui/control.po b/source/es/dbaccess/source/ui/control.po
index eb091a3da7a..2a00021ca28 100644
--- a/source/es/dbaccess/source/ui/control.po
+++ b/source/es/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: 2012-07-13 11:47+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Nombre de la tabla"
-#. NWcr
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert data"
msgstr "Insertar datos"
-#. #X=!
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Delete data"
msgstr "Eliminar datos"
-#. Eu.9
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Modify data"
msgstr "Modificar datos"
-#. 4KTe
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Alter structure"
msgstr "Modificar estructura"
-#. 0L=`
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Read data"
msgstr "Leer datos"
-#. IwWY
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Modify references"
msgstr "Modificar referencias"
-#. %!#X
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Drop structure"
msgstr "Eliminar estructura"
-#. ^[If
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -97,7 +88,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "Orden ascendente"
-#. rER,
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -107,7 +97,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr "Orden descendente"
-#. P!#:
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "Cannot connect to the SDBC driver manager (#servicename#)."
msgstr "No se pudo establecer una conexión al administrador de controladores SDBC (#servicename#)."
-#. !+g!
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -125,7 +113,6 @@ msgctxt ""
msgid "A driver is not registered for the URL #connurl#."
msgstr "No existe un controlador registrado para la URL #connurl#"
-#. qbiS
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "No connection could be established for the URL #connurl#."
msgstr "No se pudo realizar ninguna conexión para la URL #connurl#."
-#. _5\K
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -143,7 +129,6 @@ msgctxt ""
msgid "Please check the current settings, for example user name and password."
msgstr "Compruebe la configuración actual, como el nombre de usuario y la contraseña."
-#. Y5.=
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -152,7 +137,6 @@ msgctxt ""
msgid "Successfully connected, but information about database tables is not available."
msgstr "Se ha realizado una conexión satisfactoriamente, pero no se ha conseguido ninguna información sobre tablas en la base de datos."
-#. GZ_O
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -161,7 +145,6 @@ msgctxt ""
msgid "All tables"
msgstr "Todas las tablas"
-#. :hM%
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -170,7 +153,6 @@ msgctxt ""
msgid "All views"
msgstr "Todas las visualizaciones de tablas"
-#. bYB*
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "All tables and views"
msgstr "Todas las tablas y visualizaciones de tablas"
-#. W[Ho
#: undosqledit.src
msgctxt ""
"undosqledit.src\n"
diff --git a/source/es/dbaccess/source/ui/dlg.po b/source/es/dbaccess/source/ui/dlg.po
index 201998db2c2..a78652429b2 100644
--- a/source/es/dbaccess/source/ui/dlg.po
+++ b/source/es/dbaccess/source/ui/dlg.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
-"PO-Revision-Date: 2012-10-08 09:47+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:17+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353503849.0\n"
-#. ffSl
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. A5*3
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -35,7 +34,6 @@ msgctxt ""
msgid "Create New Directory"
msgstr "Crear nuevo directorio"
-#. |r[Z
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -45,7 +43,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. U?Au
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -55,7 +52,6 @@ msgctxt ""
msgid "Up One Level"
msgstr "Subir un nivel"
-#. ^CAh
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -65,7 +61,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "~Nombre del archivo:"
-#. j)yZ
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -75,7 +70,6 @@ msgctxt ""
msgid "Save"
msgstr "Guardar"
-#. dLcd
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -85,7 +79,6 @@ msgctxt ""
msgid "~Path:"
msgstr "~Ruta:"
-#. lEAb
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -94,7 +87,6 @@ msgctxt ""
msgid "Save"
msgstr "Guardar"
-#. fSV0
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -103,7 +95,6 @@ msgctxt ""
msgid "Folder"
msgstr "Carpeta"
-#. c4eo
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -112,7 +103,6 @@ msgctxt ""
msgid "The file already exists. Overwrite?"
msgstr "El archivo ya existe. ¿Sobreescribirlo?"
-#. .O;!
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -121,7 +111,6 @@ msgctxt ""
msgid "A password is needed to connect to the data source \"$name$\"."
msgstr "Debe introducir una contraseña para la conexión a la fuente de datos \"$name$\"."
-#. RD7L
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -140,7 +129,6 @@ msgstr ""
"\n"
"¿Desea crearlo?"
-#. m0z/
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -149,7 +137,6 @@ msgctxt ""
msgid "The directory $name$ could not be created."
msgstr "No se pudo crear el directorio $name$."
-#. ?SeD
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -159,7 +146,6 @@ msgctxt ""
msgid "Please enter the ~password for the user 'DOMAIN'."
msgstr "Introduzca la ~contraseña para el usuario 'DOMAIN'."
-#. b~o^
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -168,7 +154,6 @@ msgctxt ""
msgid "Convert Database"
msgstr "Conversión de la base de datos"
-#. :ieU
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -178,7 +163,6 @@ msgctxt ""
msgid "Tables and table filter"
msgstr "Tablas y filtro de tablas"
-#. X-?g
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -188,7 +172,6 @@ msgctxt ""
msgid "Mark the tables that should be visible for the applications."
msgstr "Marcar las tablas que deben estar visibles para las aplicaciones."
-#. \!,2
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -197,7 +180,6 @@ msgctxt ""
msgid "Tables Filter"
msgstr "Filtro de tablas"
-#. ;m0#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -207,7 +189,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr "Asistente para bases de datos"
-#. RNn.
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -217,7 +198,6 @@ msgctxt ""
msgid "Select database"
msgstr "Seleccionar base de datos"
-#. PC[R
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -227,7 +207,6 @@ msgctxt ""
msgid "Set up dBASE connection"
msgstr "Configurar conexión de dBASE"
-#. =#2V
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -237,7 +216,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr "Configure una conexión con archivos de texto"
-#. C:B\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -247,7 +225,6 @@ msgctxt ""
msgid "Set up Microsoft Access connection"
msgstr "Configurar conexión de Microsoft Access"
-#. 8]3W
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -257,7 +234,6 @@ msgctxt ""
msgid "Set up LDAP connection"
msgstr "Configurar conexión de LDAP"
-#. ton+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -267,7 +243,6 @@ msgctxt ""
msgid "Set up ADO connection"
msgstr "Configurar conexión de ADO"
-#. l:9b
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -277,7 +252,6 @@ msgctxt ""
msgid "Set up JDBC connection"
msgstr "Configurar conexión de JDBC"
-#. 4SO_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -287,7 +261,6 @@ msgctxt ""
msgid "Set up Oracle database connection"
msgstr "Configurar conexión de base de datos de Oracle"
-#. Z9!@
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -297,7 +270,6 @@ msgctxt ""
msgid "Set up MySQL connection"
msgstr "Configurar conexión de MySQL"
-#. /EEM
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -307,7 +279,6 @@ msgctxt ""
msgid "Set up ODBC connection"
msgstr "Configurar conexión de ODBC"
-#. ^H)z
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -317,7 +288,6 @@ msgctxt ""
msgid "Set up Spreadsheet connection"
msgstr "Configurar conexión de Spreadsheet"
-#. I(,a
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -327,7 +297,6 @@ msgctxt ""
msgid "Set up user authentication"
msgstr "Configurar autenticación del usuario"
-#. 4)zw
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -337,7 +306,6 @@ msgctxt ""
msgid "Set up MySQL server data"
msgstr "Configurar el servidor de datos de MySQL"
-#. lQF(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -347,7 +315,6 @@ msgctxt ""
msgid "Save and proceed"
msgstr "Guardar y continuar"
-#. RFmE
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -356,7 +323,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr "Asistente para bases de datos"
-#. .5,A
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "New Database"
msgstr "Nueva base de datos"
-#. 13CT
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -375,7 +340,6 @@ msgctxt ""
msgid "Set up a connection to a MySQL database"
msgstr "Configure una conexión con una base de datos MySQL"
-#. HRD[
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -389,7 +353,6 @@ msgstr ""
"Puede realizar la conexión con una base de datos MySQL utilizando ODBC o JDBC.\n"
"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
-#. [4^C
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -399,7 +362,6 @@ msgctxt ""
msgid "How do you want to connect to your MySQL database?"
msgstr "¿Cómo desea conectarse a la base de datos MySQL?"
-#. K6aj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -409,7 +371,6 @@ msgctxt ""
msgid "Connect using ODBC (Open Database Connectivity)"
msgstr "Conectar utilizando ODBC (Open Database Connectivity)"
-#. %NHc
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -419,7 +380,6 @@ msgctxt ""
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "Conectar utilizando JDBC (Java Database Connectivity)"
-#. ,#aB
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -429,7 +389,6 @@ msgctxt ""
msgid "Connect directly"
msgstr "Conectar directamente"
-#. MflO
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -439,7 +398,6 @@ msgctxt ""
msgid "Set up the user authentication"
msgstr "Configure la autenticación del usuario"
-#. b~Fi
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -449,7 +407,6 @@ msgctxt ""
msgid "Some databases require you to enter a user name."
msgstr "Algunas bases de datos requieren que especifique un nombre de usuario."
-#. CvQU
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -459,7 +416,6 @@ msgctxt ""
msgid "~User name"
msgstr "~Nombre de usuario"
-#. wx1d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -469,7 +425,6 @@ msgctxt ""
msgid "Password re~quired"
msgstr "Se re~quiere una contraseña"
-#. =y9*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -479,7 +434,6 @@ msgctxt ""
msgid "~Test Connection"
msgstr "Conexión ~de prueba"
-#. _WJF
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -489,7 +443,6 @@ msgctxt ""
msgid "Decide how to proceed after saving the database"
msgstr "Decida cómo proceder después de guardar la base de datos"
-#. $34|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -499,7 +452,6 @@ msgctxt ""
msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
msgstr "¿Quiere que el asistente registre la base de datos en %PRODUCTNAME?"
-#. 5BE]
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -509,7 +461,6 @@ msgctxt ""
msgid "~Yes, register the database for me"
msgstr "~Sí, registrar la base de datos"
-#. .nMS
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -519,7 +470,6 @@ msgctxt ""
msgid "N~o, do not register the database"
msgstr "N~o, no registrar la base de datos"
-#. ?(A\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -529,7 +479,6 @@ msgctxt ""
msgid "After the database file has been saved, what do you want to do?"
msgstr "Después de guardar el archivo de base de datos, ¿qué quiere hacer?"
-#. ?P6L
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -539,7 +488,6 @@ msgctxt ""
msgid "Open the database for editing"
msgstr "Abrir la base de datos para editar"
-#. ni)v
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -549,7 +497,6 @@ msgctxt ""
msgid "Create tables using the table wizard"
msgstr "Crear tablas usando el Asistente para tablas"
-#. UJ/7
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -559,7 +506,6 @@ msgctxt ""
msgid "Click 'Finish' to save the database."
msgstr "Pulse en «Finalizar» para guardar la base de datos."
-#. [%Ae
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -569,7 +515,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database using JDBC"
msgstr "Configurar conexión con una base de datos MySQL utilizando JDBC"
-#. dL?|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -583,7 +528,6 @@ msgstr ""
"Escriba la información necesaria para realizar la conexión con una base de datos MySQL utilizando JDBC. Tenga en cuenta que el sistema debe tener una clase de controlador JDBC instalada y registrada con %PRODUCTNAME.\n"
"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
-#. Oq2=
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -593,7 +537,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class:"
msgstr "Cla~se de controlador MySQL JDBC:"
-#. 4O*+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -603,7 +546,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr "Predeterminado: 3306"
-#. b|Hj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -613,7 +555,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database"
msgstr "Configurar la conexión a una base de datos de MySQL"
-#. bc+h
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -623,7 +564,6 @@ msgctxt ""
msgid "Please enter the required information to connect to a MySQL database."
msgstr "Por favor introduzca la información requerida para conectar a una base de datos MySQL."
-#. 8Lf+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -633,7 +573,6 @@ msgctxt ""
msgid "Set up a connection to dBASE files"
msgstr "Configure una conexión con archivos dBASE"
-#. *K-H
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -643,7 +582,6 @@ msgctxt ""
msgid "Select the folder where the dBASE files are stored."
msgstr "Seleccione la carpeta donde guardar los archivos dBASE."
-#. ZP#(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -653,7 +591,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr "Configure una conexión con archivos de texto"
-#. w]t#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -663,7 +600,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 "Seleccione la carpeta donde guardar los archivos de texto CSV (Comma Separated Values o valores separados por comas). %PRODUCTNAME Base abrirá estos archivos en modo de sólo lectura."
-#. (G{Q
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -673,7 +609,6 @@ msgctxt ""
msgid "Path to text files"
msgstr "Ruta de los archivos de texto"
-#. f(p8
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -683,7 +618,6 @@ msgctxt ""
msgid "Set up a connection to a Microsoft Access database"
msgstr "Configure una conexión con una base de datos de Microsoft Access"
-#. Ci:K
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -693,7 +627,6 @@ msgctxt ""
msgid "Please select the Microsoft Access file you want to access."
msgstr "Seleccione el archivo de Microsoft Access al que desee acceder."
-#. =EPv
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -703,7 +636,6 @@ msgctxt ""
msgid "Set up a connection to an LDAP directory"
msgstr "Configure una conexión con un directorio LDAP"
-#. =iWu
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -717,7 +649,6 @@ msgstr ""
"Escriba la información necesaria para realizar la conexión con un directorio LDAP.\n"
"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
-#. \,ib
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -727,7 +658,6 @@ msgctxt ""
msgid "Default: 389"
msgstr "Predeterminado: 389"
-#. `5LH
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -737,7 +667,6 @@ msgctxt ""
msgid "Use ~secure connection (SSL)"
msgstr "Usar ~conexión segura (SSL)"
-#. AqsX
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -747,7 +676,6 @@ msgctxt ""
msgid "Set up a connection to an ADO database"
msgstr "Configure una conexión con una base de datos ADO"
-#. rC+d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -763,7 +691,6 @@ msgstr ""
"Haga clic en 'Examinar' para configurar los parámetros del proveedor.\n"
"Consulte al administrador del sistema si tiene dudas respecto a los parámetros siguientes."
-#. dXJ_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -773,7 +700,6 @@ msgctxt ""
msgid "Set up a connection to an ODBC database"
msgstr "Configure una conexión con una base de datos ODBC"
-#. J6(6
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -789,7 +715,6 @@ msgstr ""
"Haga clic en 'Examinar...' para seleccionar una base de datos ODBC ya registrada en %PRODUCTNAME.\n"
"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
-#. `jQA
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -799,7 +724,6 @@ msgctxt ""
msgid "Set up a connection to a JDBC database"
msgstr "Configure una conexión con una base de datos JDBC"
-#. sv51
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -813,7 +737,6 @@ msgstr ""
"Escriba la información necesaria para realizar la conexión con una base de datos JDBC.\n"
"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
-#. ~Z0B
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -823,7 +746,6 @@ msgctxt ""
msgid "Set up a connection to an Oracle database"
msgstr "Configure una conexión con una base de datos Oracle"
-#. bQ#G
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -833,7 +755,6 @@ msgctxt ""
msgid "Default: 1521"
msgstr "Predeterminado: 1521"
-#. uMc*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -843,7 +764,6 @@ msgctxt ""
msgid "Oracle JDBC ~driver class"
msgstr "~Clase de controlador Oracle JDBC"
-#. gRsG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -857,7 +777,6 @@ msgstr ""
"Proporcione los datos pertinentes para conectarse con una base de datos Oracle. Tenga en cuenta que en el sistema se debe instalar una clase de controlador JDBC y registrarse con %PRODUCTNAME.\n"
"Consulte al administrador del sistema si tiene dudas respecto a los parámetros siguientes."
-#. ?lvf
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -867,7 +786,6 @@ msgctxt ""
msgid "Set up a connection to spreadsheets"
msgstr "Configure una conexión con hojas de cálculo"
-#. Lg{}
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -881,7 +799,6 @@ msgstr ""
"Haga clic en 'Examinar...' para seleccionar una hoja de cálculo de %PRODUCTNAME o un libro de Microsoft Excel.\n"
"%PRODUCTNAME abrirá este archivo en modo de sólo lectura."
-#. (oKh
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -891,7 +808,6 @@ msgctxt ""
msgid "~Location and file name"
msgstr "~Ubicación y nombre del archivo"
-#. ;#lG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -901,7 +817,6 @@ msgctxt ""
msgid "~Password required"
msgstr "Se requiere ~una contraseña"
-#. _^lO
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -911,7 +826,6 @@ msgctxt ""
msgid "~Database name"
msgstr "~Nombre de la base de datos"
-#. ;U^I
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -921,7 +835,6 @@ msgctxt ""
msgid "Se~rver / Port"
msgstr "Se~rvidor / Puerto"
-#. 4Z}n
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -931,7 +844,6 @@ msgctxt ""
msgid "~Server"
msgstr "~Servidor"
-#. w|ti
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -941,7 +853,6 @@ msgctxt ""
msgid "~Port"
msgstr "~Puerto"
-#. $ae)
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -951,7 +862,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr "Predeterminado: 3306"
-#. e38~
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -961,7 +871,6 @@ msgctxt ""
msgid "So~cket"
msgstr "So~cket"
-#. S`c+
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -971,7 +880,6 @@ msgctxt ""
msgid "Named p~ipe"
msgstr "Nombre p~ipa"
-#. :-A#
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -981,7 +889,6 @@ msgctxt ""
msgid "Browse"
msgstr "Examinar"
-#. 6x\s
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -991,7 +898,6 @@ msgctxt ""
msgid "Database name"
msgstr "Nombre de base de datos"
-#. HgJa
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1001,7 +907,6 @@ msgctxt ""
msgid "Server"
msgstr "Servidor"
-#. p6EL
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1011,7 +916,6 @@ msgctxt ""
msgid "Base ~DN"
msgstr "~Base DN"
-#. A%st
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1021,7 +925,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~Número de puerto"
-#. gm+d
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1031,7 +934,6 @@ msgctxt ""
msgid "Data conversion"
msgstr "Conversión de datos"
-#. ~bs:
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1041,7 +943,6 @@ msgctxt ""
msgid "~Character set"
msgstr "Juego de ~caracteres"
-#. `H!z
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1051,7 +952,6 @@ msgctxt ""
msgid "Specify the type of files you want to access"
msgstr "Especifique el tipo de archivos a los que quiere acceder"
-#. xRp+
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1061,7 +961,6 @@ msgctxt ""
msgid "Plain text files (*.txt)"
msgstr "Archivos de texto sin formato (*.txt)"
-#. CWPo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1071,7 +970,6 @@ msgctxt ""
msgid "'Comma separated value' files (*.csv)"
msgstr "Archivos de 'texto separado con comas' (*.csv)"
-#. 1C2B
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1081,7 +979,6 @@ msgctxt ""
msgid "Custom:"
msgstr "Personalizado:"
-#. 1STv
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1091,7 +988,6 @@ msgctxt ""
msgid "Custom: *.abc"
msgstr "Personalizado: *.abc"
-#. \?;M
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1101,7 +997,6 @@ msgctxt ""
msgid "Row Format"
msgstr "Formato de fila"
-#. [9b?
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1111,7 +1006,6 @@ msgctxt ""
msgid "Field separator"
msgstr "Separador de campo"
-#. +,P3
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1121,7 +1015,6 @@ msgctxt ""
msgid "Text separator"
msgstr "Separador de texto"
-#. ^yUz
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1131,7 +1024,6 @@ msgctxt ""
msgid "Decimal separator"
msgstr "Separador decimal"
-#. XGXf
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1140,7 +1032,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr "Separador de miles"
-#. 1oA.
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1149,7 +1040,6 @@ msgctxt ""
msgid "~Text contains headers"
msgstr "El ~texto contiene encabezados"
-#. J~Fh
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1159,7 +1049,6 @@ msgid "{None}"
msgstr "{Ninguno}"
#. 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 +1057,6 @@ msgctxt ""
msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Espacio}\t32"
-#. 3m#(
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1177,7 +1065,6 @@ msgctxt ""
msgid "#1 must be set."
msgstr "Debe definirse el número 1."
-#. +We1
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1186,7 +1073,6 @@ msgctxt ""
msgid "#1 and #2 must be different."
msgstr "El número 1 y el número 2 deben ser diferentes."
-#. {1mo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1195,7 +1081,6 @@ msgctxt ""
msgid "Wildcards such as ?,* are not allowed in #1."
msgstr "No se pueden utilizar los caracteres ?,* en el número 1."
-#. jeZ\
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1205,7 +1090,6 @@ msgctxt ""
msgid "JDBC d~river class"
msgstr "Cla~se de controlador JDBC"
-#. LceU
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1215,7 +1099,6 @@ msgctxt ""
msgid "Test class"
msgstr "Clase de prueba"
-#. sA+g
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1225,7 +1108,6 @@ msgctxt ""
msgid "Socket"
msgstr "Socket"
-#. YDRn
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1235,7 +1117,6 @@ msgctxt ""
msgid "Tables"
msgstr "Tablas"
-#. T9F\
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1245,7 +1126,6 @@ msgctxt ""
msgid "Queries"
msgstr "Consultas"
-#. ;GDK
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1255,7 +1135,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. }OFr
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1265,7 +1144,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. :@gb
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1275,7 +1153,6 @@ msgctxt ""
msgid "Add Tables"
msgstr "Añadir tablas"
-#. MQVE
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1285,7 +1162,6 @@ msgctxt ""
msgid "Add Table or Query"
msgstr "Añadir tabla o consulta"
-#. ;2;l
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1295,7 +1171,6 @@ msgctxt ""
msgid "User selection"
msgstr "Selección de usuario"
-#. 7F_B
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1305,7 +1180,6 @@ msgctxt ""
msgid "Us~er:"
msgstr "Usuari~o:"
-#. bvaS
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1315,7 +1189,6 @@ msgctxt ""
msgid "~Add User..."
msgstr "~Nuevo usuario..."
-#. 0p(6
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1325,7 +1198,6 @@ msgctxt ""
msgid "Change ~Password..."
msgstr "Cambiar ~contraseña..."
-#. ET(d
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1335,7 +1207,6 @@ msgctxt ""
msgid "~Delete User..."
msgstr "~Eliminar usuario..."
-#. .fB!
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1345,7 +1216,6 @@ msgctxt ""
msgid "Access rights for selected user"
msgstr "Derechos de usuario para usuarios seleccionados"
-#. -JJP
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1354,7 +1224,6 @@ msgctxt ""
msgid "Do you really want to delete the user?"
msgstr "¿Desea realmente eliminar el usuario?"
-#. UN`:
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1363,7 +1232,6 @@ msgctxt ""
msgid "The database does not support user administration."
msgstr "La base de datos no admite la administración de usuarios."
-#. pamf
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1373,7 +1241,6 @@ msgctxt ""
msgid "User \"$name$: $\""
msgstr "Usuario \"$name$: $\""
-#. fD9T
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1383,7 +1250,6 @@ msgctxt ""
msgid "Old p~assword"
msgstr "Contraseña an~terior"
-#. SinN
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1393,7 +1259,6 @@ msgctxt ""
msgid "~Password"
msgstr "~Contraseña"
-#. Qj;-
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1403,7 +1268,6 @@ msgctxt ""
msgid "~Confirm password"
msgstr "~Confirmar contraseña"
-#. irnY
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1412,7 +1276,6 @@ msgctxt ""
msgid "Change Password"
msgstr "Modificar contraseña"
-#. ]7nT
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1421,7 +1284,6 @@ msgctxt ""
msgid "The passwords do not match. Please enter the password again."
msgstr "Las contraseñas no coinciden. Introdúzcalas otra vez."
-#. @`Wp
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1431,7 +1293,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. 5BSd
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1441,7 +1302,6 @@ msgctxt ""
msgid "~Host name"
msgstr "Nombre del ~servidor"
-#. O?pb
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1451,7 +1311,6 @@ msgctxt ""
msgid "User authentication"
msgstr "Autenticación del usuario"
-#. 8n{0
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1461,7 +1320,6 @@ msgctxt ""
msgid "~User name"
msgstr "Nombre de ~usuario"
-#. d)K?
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1471,7 +1329,6 @@ msgctxt ""
msgid "Password required"
msgstr "Se requiere una contraseña"
-#. w6dh
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1481,7 +1338,6 @@ msgctxt ""
msgid "JDBC properties"
msgstr "Propiedades de JDBC"
-#. d=^3
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1491,7 +1347,6 @@ msgctxt ""
msgid "~JDBC driver class"
msgstr "Clase de controlador ~JDBC"
-#. oO(K
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1501,7 +1356,6 @@ msgctxt ""
msgid "Test Class"
msgstr "Clase de prueba"
-#. @#%8
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1511,7 +1365,6 @@ msgctxt ""
msgid "Test Connection"
msgstr "Conexión de prueba"
-#. Vc?;
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1520,7 +1373,6 @@ msgctxt ""
msgid "Connection Test"
msgstr "Prueba de conexión"
-#. IL]+
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1529,7 +1381,6 @@ msgctxt ""
msgid "The connection was established successfully."
msgstr "La conexión se ha establecido correctamente."
-#. \tud
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1538,7 +1389,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr "No se ha podido establecer la conexión."
-#. Az|t
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1547,7 +1397,6 @@ msgctxt ""
msgid "The JDBC driver was loaded successfully."
msgstr "El controlador JDBC se cargó correctamente."
-#. iPjC
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1556,7 +1405,6 @@ msgctxt ""
msgid "The JDBC driver could not be loaded."
msgstr "No se ha podido cargar el controlador JDBC."
-#. /-LM
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1565,7 +1413,6 @@ msgctxt ""
msgid "MS Access file"
msgstr "Archivo de MS Access"
-#. ZbpT
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1574,7 +1421,6 @@ msgctxt ""
msgid "MS Access 2007 file"
msgstr "Archivo de MS Access 2007"
-#. D36C
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1584,7 +1430,6 @@ msgctxt ""
msgid "New Index"
msgstr "Índice nuevo"
-#. 8l#U
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1594,7 +1439,6 @@ msgctxt ""
msgid "Delete Current Index"
msgstr "Eliminar índice actual"
-#. 9MlT
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1604,7 +1448,6 @@ msgctxt ""
msgid "Rename Current Index"
msgstr "Renombrar índice actual"
-#. R6,[
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1614,7 +1457,6 @@ msgctxt ""
msgid "Save Current Index"
msgstr "Guardar índice actual"
-#. iUa]
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1624,7 +1466,6 @@ msgctxt ""
msgid "Reset Current Index"
msgstr "Restablecer índice actual"
-#. 7RS/
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1634,7 +1475,6 @@ msgctxt ""
msgid "Index details"
msgstr "Detalles del índice"
-#. w$KI
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1644,7 +1484,6 @@ msgctxt ""
msgid "Index identifier:"
msgstr "Identificador de índice:"
-#. ZQl)
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1654,7 +1493,6 @@ msgctxt ""
msgid "~Unique"
msgstr "Ú~nico"
-#. /.[`
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1664,7 +1502,6 @@ msgctxt ""
msgid "Fields"
msgstr "Campos"
-#. rvRK
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1674,7 +1511,6 @@ msgctxt ""
msgid "~Close"
msgstr "~Cerrar"
-#. SSe{
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1683,7 +1519,6 @@ msgctxt ""
msgid "Indexes"
msgstr "Índices"
-#. @J((
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1692,7 +1527,6 @@ msgctxt ""
msgid "Sort order"
msgstr "Orden de clasificación"
-#. +20R
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1701,7 +1535,6 @@ msgctxt ""
msgid "Index field"
msgstr "Campo del índice"
-#. 2[30
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1710,7 +1543,6 @@ msgctxt ""
msgid "Ascending"
msgstr "Ascendente"
-#. ;o^d
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1719,7 +1551,6 @@ msgctxt ""
msgid "Descending"
msgstr "Descendente"
-#. 3*]#
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1728,7 +1559,6 @@ msgctxt ""
msgid "Do you really want to delete the index '$name$'?"
msgstr "¿Desea eliminar realmente el índice '$name$'?"
-#. yAOm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1737,7 +1567,6 @@ msgctxt ""
msgid "index"
msgstr "índice"
-#. ^shB
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1746,7 +1575,6 @@ msgctxt ""
msgid "The index must contain at least one field."
msgstr "El índice debe contener por lo menos un campo."
-#. rLRc
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1755,7 +1583,6 @@ msgctxt ""
msgid "Save Index"
msgstr "Guardar índice"
-#. SgJ^
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1764,7 +1591,6 @@ msgctxt ""
msgid "Do you want to save the changes made to the current index?"
msgstr "¿Desea guardar las modificaciones realizadas en el índice?"
-#. WPnm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1773,7 +1599,6 @@ msgctxt ""
msgid "Exit Index Design"
msgstr "Cerrar diseño de índice"
-#. T/54
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1782,7 +1607,6 @@ msgctxt ""
msgid "There is already another index named \"$name$\"."
msgstr "Ya existe otro índice con el nombre \"$name$\"."
-#. 4,G}
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1791,7 +1615,6 @@ msgctxt ""
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "En una definición de índice, ninguna columna de tabla puede ocurrir más de una vez. Sin embargo, ha escrito la columna «$name$» dos veces."
-#. YvCP
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1801,7 +1624,6 @@ msgctxt ""
msgid "Tables involved"
msgstr "Tablas implicadas"
-#. !kk6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1811,7 +1633,6 @@ msgctxt ""
msgid "Fields involved"
msgstr "Campos implicados"
-#. $5V0
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1821,7 +1642,6 @@ msgctxt ""
msgid "Update options"
msgstr "Opciones de actualización"
-#. hWIU
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1831,7 +1651,6 @@ msgctxt ""
msgid "~No action"
msgstr "~Ninguna acción"
-#. 1%#_
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1841,7 +1660,6 @@ msgctxt ""
msgid "~Update cascade"
msgstr "Actualizar ~cascada"
-#. FA!m
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1851,7 +1669,6 @@ msgctxt ""
msgid "~Set null"
msgstr "Poner ~null"
-#. TL$:
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1861,7 +1678,6 @@ msgctxt ""
msgid "Set ~default"
msgstr "~Predeterminar"
-#. P/w[
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1871,7 +1687,6 @@ msgctxt ""
msgid "Delete options"
msgstr "Opciones de eliminación"
-#. VVn6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1881,7 +1696,6 @@ msgctxt ""
msgid "~No action"
msgstr "Ninguna a~cción"
-#. CRXV
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1891,7 +1705,6 @@ msgctxt ""
msgid "Delete ~cascade"
msgstr "Eliminar c~ascada"
-#. k,W^
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1901,7 +1714,6 @@ msgctxt ""
msgid "~Set null"
msgstr "Poner ~null"
-#. $ewE
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1911,7 +1723,6 @@ msgctxt ""
msgid "Set ~default"
msgstr "Pre~determinar"
-#. C+##
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1920,7 +1731,6 @@ msgctxt ""
msgid "Relations"
msgstr "Relaciones"
-#. WM_x
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1930,7 +1740,6 @@ msgctxt ""
msgid "Choose a data source:"
msgstr "Seleccione una fuente de datos:"
-#. %K`o
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1940,7 +1749,6 @@ msgctxt ""
msgid "Organize..."
msgstr "Administrar..."
-#. LmJ3
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1950,7 +1758,6 @@ msgctxt ""
msgid "Create..."
msgstr "Crear..."
-#. g59A
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1960,7 +1767,6 @@ msgctxt ""
msgid "Local Databases"
msgstr "Bases de datos locales"
-#. EOo,
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1970,7 +1776,6 @@ msgctxt ""
msgid "Choose a database"
msgstr "Seleccione una base de datos"
-#. |,ZV
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1979,7 +1784,6 @@ msgctxt ""
msgid "Data Source"
msgstr "Fuente de datos"
-#. /kst
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1989,7 +1793,6 @@ msgctxt ""
msgid "~Parameters"
msgstr "~Parámetros"
-#. pRnb
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1999,7 +1802,6 @@ msgctxt ""
msgid "~Value"
msgstr "~Valor"
-#. NA%L
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2009,7 +1811,6 @@ msgctxt ""
msgid "~Next"
msgstr "~Siguiente"
-#. qDEP
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2019,7 +1820,6 @@ msgctxt ""
msgid "The entry could not be converted to a valid value for the \"$name$\"column"
msgstr "La entrada no se pudo convertir en un valor válido para la columna \"$name$\"."
-#. B}3N
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2028,7 +1828,6 @@ msgctxt ""
msgid "Parameter Input"
msgstr "Entrada de parámetro"
-#. ;zAN
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2038,7 +1837,6 @@ msgctxt ""
msgid "~Height"
msgstr "~Altura"
-#. -y\s
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2048,7 +1846,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. %^F0
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2057,7 +1854,6 @@ msgctxt ""
msgid "Row Height"
msgstr "Altura de fila"
-#. ?GHK
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2067,7 +1863,6 @@ msgctxt ""
msgid "~Width"
msgstr "~Anchura"
-#. VE;(
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2077,7 +1872,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~Automático"
-#. U3F2
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2086,7 +1880,6 @@ msgctxt ""
msgid "Column Width"
msgstr "Ancho de columna"
-#. %@Zj
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2096,7 +1889,6 @@ msgctxt ""
msgid "User Settings"
msgstr "Configuración de usuario"
-#. [n;|
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2105,7 +1897,6 @@ msgctxt ""
msgid "User administration"
msgstr "Administración de usuarios"
-#. ,IC5
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2115,7 +1906,6 @@ msgctxt ""
msgid "AND"
msgstr "Y"
-#. A8/!
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2125,7 +1915,6 @@ msgctxt ""
msgid "OR"
msgstr "O"
-#. nm[J
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2135,7 +1924,6 @@ msgctxt ""
msgid "AND"
msgstr "Y"
-#. Rd28
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2145,7 +1933,6 @@ msgctxt ""
msgid "OR"
msgstr "O"
-#. (k^l
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2155,7 +1942,6 @@ msgctxt ""
msgid "Field name"
msgstr "Nombre del campo"
-#. yu4j
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2165,7 +1951,6 @@ msgctxt ""
msgid "Condition"
msgstr "Condición"
-#. hI8?
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2175,7 +1960,6 @@ msgctxt ""
msgid "Value"
msgstr "Valor"
-#. WE?/
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2185,7 +1969,6 @@ msgctxt ""
msgid "Operator"
msgstr "Vínculo"
-#. +,T)
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2195,7 +1978,6 @@ msgctxt ""
msgid "Criteria"
msgstr "Criterios"
-#. =p+m
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2205,7 +1987,6 @@ msgctxt ""
msgid "- none -"
msgstr "- ninguno -"
-#. FQ8-
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2215,7 +1996,6 @@ msgctxt ""
msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
msgstr "=;<>;<;<=;>;>=;como;no como;vacío;no vacío"
-#. wMcy
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2224,7 +2004,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr "Filtro estándar"
-#. ~R+m
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2234,7 +2013,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. B{1#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2244,7 +2022,6 @@ msgctxt ""
msgid "Use SQL92 naming constraints"
msgstr "Utilizar las restricciones del nombre SQL92"
-#. j77S
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2254,7 +2031,6 @@ msgctxt ""
msgid "Append the table alias name on SELECT statements"
msgstr "Adjuntar alias en instrucciones SELECT"
-#. %-b#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2264,7 +2040,6 @@ msgctxt ""
msgid "Use keyword AS before table alias names"
msgstr "Usar palabra clave AS antes de nombres de alias de tabla"
-#. g*$x
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2274,7 +2049,6 @@ msgctxt ""
msgid "Use Outer Join syntax '{OJ }'"
msgstr "Usar sintaxis de unión externa '{OJ }'"
-#. 6AM.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2284,7 +2058,6 @@ msgctxt ""
msgid "Ignore the privileges from the database driver"
msgstr "Ignorar los privilegios del controlador de la base de datos"
-#. 3u}1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2294,7 +2067,6 @@ msgctxt ""
msgid "Replace named parameters with '?'"
msgstr "Sustituir parámetros con nombre por '?'"
-#. 5d?c
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2304,7 +2076,6 @@ msgctxt ""
msgid "Display version columns (when available)"
msgstr "Mostrar las columnas de versión (si están disponibles)"
-#. {~yG
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2314,7 +2085,6 @@ msgctxt ""
msgid "Use catalog name in SELECT statements"
msgstr "Usar nombre de catálogo en instrucciones SELECT"
-#. aF\2
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2324,7 +2094,6 @@ msgctxt ""
msgid "Use schema name in SELECT statements"
msgstr "Usar nombre de esquema en instrucciones SELECT"
-#. hQP1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2334,7 +2103,6 @@ msgctxt ""
msgid "Create index with ASC or DESC statement"
msgstr "Crear índice con instrucciones ASC o DESC"
-#. }Li9
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2344,7 +2112,6 @@ msgctxt ""
msgid "End text lines with CR+LF"
msgstr "Finalizar líneas de texto con CR+LF"
-#. \h1o
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2354,7 +2121,6 @@ msgctxt ""
msgid "Ignore currency field information"
msgstr "Ignorar información del campo de moneda"
-#. xb9,
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2364,7 +2130,6 @@ msgctxt ""
msgid "Form data input checks for required fields"
msgstr "Verificación de datos ingresado a la forma para campos requeridos"
-#. ^L^J
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2374,7 +2139,6 @@ msgctxt ""
msgid "Use ODBC conformant date/time literals"
msgstr "Usar formato de fecha/hora ODBC"
-#. rH;A
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2384,7 +2148,6 @@ msgctxt ""
msgid "Supports primary keys"
msgstr "Admite claves primarias"
-#. el(|
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2394,7 +2157,6 @@ msgctxt ""
msgid "Respect the result set type from the database driver"
msgstr "Respecto al resultado ajuste el tipo desde el controlador de base de datos"
-#. RaMX
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2404,7 +2166,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. j(P5
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2414,7 +2175,6 @@ msgctxt ""
msgid "SQL"
msgstr "SQL"
-#. E[lr
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2424,7 +2184,6 @@ msgctxt ""
msgid "Mixed"
msgstr "Mixto"
-#. ;-|W
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2434,7 +2193,6 @@ msgctxt ""
msgid "MS Access"
msgstr "MS Access"
-#. V%%y
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2444,7 +2202,6 @@ msgctxt ""
msgid "Comparison of Boolean values"
msgstr "Comparación de valores booleanos"
-#. .4_P
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2454,7 +2211,6 @@ msgctxt ""
msgid "Rows to scan column types"
msgstr "Filas a analizar para detectar el tipo de las columnas"
-#. Hgyf
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2464,7 +2220,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. V.?p
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2474,7 +2229,6 @@ msgctxt ""
msgid "Re~trieve generated values"
msgstr "~Considerar los valores generados"
-#. ?q57
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2484,7 +2238,6 @@ msgctxt ""
msgid "~Auto-increment statement"
msgstr "~Expresión incremento automático"
-#. jUJD
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2494,7 +2247,6 @@ msgctxt ""
msgid "~Query of generated values"
msgstr "~Consulta de los valores generados"
-#. L`U^
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2504,7 +2256,6 @@ msgctxt ""
msgid "Generated Values"
msgstr "Valores generados"
-#. _B5}
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2514,7 +2265,6 @@ msgctxt ""
msgid "Special Settings"
msgstr "Configuración especial"
-#. 2D^.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2523,7 +2273,6 @@ msgctxt ""
msgid "Advanced Settings"
msgstr "Configuración avanzada"
-#. ^ujX
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2533,7 +2282,6 @@ msgctxt ""
msgid "Details"
msgstr "Detalles"
-#. U.*d
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2543,7 +2291,6 @@ msgctxt ""
msgid "Error ~list:"
msgstr "Lista de ~errores:"
-#. ]9\m
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2553,7 +2300,6 @@ msgctxt ""
msgid "~Description:"
msgstr "~Descripción:"
-#. {C_X
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2563,7 +2309,6 @@ msgctxt ""
msgid "SQL Status"
msgstr "Estado SQL"
-#. 28;^
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2573,7 +2318,6 @@ msgctxt ""
msgid "Error code"
msgstr "Código de error"
-#. sZn`
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2582,7 +2326,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
-#. u$#$
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2591,7 +2334,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 "Un motivo frecuente de este error es una configuración inadecuada de tipos de letra para el idioma de la base de datos. Compruebe la configuración. Para ello, elija Editar - Base de datos - Propiedades."
-#. mh$.
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2600,7 +2342,6 @@ msgctxt ""
msgid "Error"
msgstr "Error"
-#. k-g!
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2609,7 +2350,6 @@ msgctxt ""
msgid "Warning"
msgstr "Advertencia"
-#. =`Tc
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2618,7 +2358,6 @@ msgctxt ""
msgid "Information"
msgstr "Información"
-#. x=e|
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2627,7 +2366,6 @@ msgctxt ""
msgid "Details"
msgstr "Detalles"
-#. KI/V
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2636,7 +2374,6 @@ msgctxt ""
msgid "Path to the dBASE files"
msgstr "Ruta de los archivos dBASE"
-#. 1C(o
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2645,7 +2382,6 @@ msgctxt ""
msgid "Path to the text files"
msgstr "Ruta de los archivos de texto"
-#. )_e!
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2654,7 +2390,6 @@ msgctxt ""
msgid "Path to the spreadsheet document"
msgstr "Ruta del documento de hoja de cálculo"
-#. 5UGP
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2663,7 +2398,6 @@ msgctxt ""
msgid "Name of the ODBC data source on your system"
msgstr "Nombre del origen de datos ODBC en el sistema"
-#. 4Gf-
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2672,7 +2406,6 @@ msgctxt ""
msgid "Name of the MySQL database"
msgstr "Nombre de la base de datos MySQL"
-#. QdI$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2681,7 +2414,6 @@ msgctxt ""
msgid "Name of the Oracle database"
msgstr "Nombre de la base de datos Oracle"
-#. b%J#
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2690,7 +2422,6 @@ msgctxt ""
msgid "Microsoft Access database file"
msgstr "Archivo de base de datos de Microsoft Access"
-#. vdjy
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2699,7 +2430,6 @@ msgctxt ""
msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
msgstr "No se necesita más configuración. Para verificar que funcione la conexión, haga clic en el botón '%test'."
-#. C^HW
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2708,7 +2438,6 @@ msgctxt ""
msgid "Datasource URL"
msgstr "URL de origen de datos"
-#. Lbcq
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2717,7 +2446,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~Nombre del anfitrión"
-#. SrR0
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2726,7 +2454,6 @@ msgctxt ""
msgid "~Mozilla profile name"
msgstr "~Nombre de perfil de Mozilla"
-#. Rd0$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2735,7 +2462,6 @@ msgctxt ""
msgid "~Thunderbird profile name"
msgstr "~Nombre de perfil de Thunderbird"
-#. P#xG
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2745,7 +2471,6 @@ msgctxt ""
msgid "~Table"
msgstr "~Tabla"
-#. qTrl
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2755,7 +2480,6 @@ msgctxt ""
msgid "Assignment"
msgstr "Asignación"
-#. _=:Y
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2765,7 +2489,6 @@ msgctxt ""
msgid "T~able indexes"
msgstr "Índices de ta~bla"
-#. ,HVL
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2775,7 +2498,6 @@ msgctxt ""
msgid "~Free indexes"
msgstr "Índices lib~res"
-#. =VnW
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2784,7 +2506,6 @@ msgctxt ""
msgid "Indexes"
msgstr "Índices"
-#. lwB5
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2794,7 +2515,6 @@ msgctxt ""
msgid "SQL command"
msgstr "Comando SQL"
-#. R@PQ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2804,7 +2524,6 @@ msgctxt ""
msgid "Command to execute"
msgstr "Comando a ejecutar"
-#. #bq3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2812,9 +2531,8 @@ msgctxt ""
"CB_SHOWOUTPUT\n"
"checkbox.text"
msgid "Show output of \"select\" statements"
-msgstr ""
+msgstr "Mostrar salida de declaraciones «select»"
-#. QoyE
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2824,7 +2542,6 @@ msgctxt ""
msgid "Execute"
msgstr "Ejecutar"
-#. Hqn@
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2834,7 +2551,6 @@ msgctxt ""
msgid "Previous commands"
msgstr "Comandos anteriores"
-#. SP#3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2844,7 +2560,6 @@ msgctxt ""
msgid "Status"
msgstr "Estado"
-#. H(_C
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2854,7 +2569,6 @@ msgctxt ""
msgid "Output"
msgstr "Destino"
-#. opUu
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2864,7 +2578,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. 2b!X
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2873,7 +2586,6 @@ msgctxt ""
msgid "Execute SQL Statement"
msgstr "Ejecutar comando SQL"
-#. .qQZ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2882,7 +2594,6 @@ msgctxt ""
msgid "Command successfully executed."
msgstr "Comando ejecutado satisfactoriamente."
-#. ^@na
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2891,7 +2602,6 @@ msgctxt ""
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "Se perdió la conexión a la base de datos. Este diálogo se cerrará."
-#. Vu5}
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2901,7 +2611,6 @@ msgctxt ""
msgid "ascending"
msgstr "ascendente"
-#. 7KG$
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2911,7 +2620,6 @@ msgctxt ""
msgid "descending"
msgstr "descendente"
-#. ;|C!
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2921,7 +2629,6 @@ msgctxt ""
msgid "ascending"
msgstr "ascendente"
-#. !9O5
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2931,7 +2638,6 @@ msgctxt ""
msgid "descending"
msgstr "descendente"
-#. .xG#
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2941,7 +2647,6 @@ msgctxt ""
msgid "ascending"
msgstr "ascendente"
-#. J@T?
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2951,7 +2656,6 @@ msgctxt ""
msgid "descending"
msgstr "descendente"
-#. Ci!@
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2961,7 +2665,6 @@ msgctxt ""
msgid "Field name"
msgstr "Nombre del campo"
-#. /sG1
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2971,7 +2674,6 @@ msgctxt ""
msgid "and then"
msgstr "después"
-#. I3/[
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2981,7 +2683,6 @@ msgctxt ""
msgid "and then"
msgstr "después"
-#. Cy)e
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2991,7 +2692,6 @@ msgctxt ""
msgid "Operator"
msgstr "Vínculo"
-#. Sd%+
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3001,7 +2701,6 @@ msgctxt ""
msgid "Order"
msgstr "Orden"
-#. Qyn7
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3011,7 +2710,6 @@ msgctxt ""
msgid "Sort order"
msgstr "Orden"
-#. pN.P
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3021,7 +2719,6 @@ msgctxt ""
msgid "<none>"
msgstr "<ninguno>"
-#. 2Cd\
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3030,7 +2727,6 @@ msgctxt ""
msgid "Sort Order"
msgstr "Orden"
-#. 3k+d
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3040,7 +2736,6 @@ msgctxt ""
msgid "Bac~k"
msgstr "A~trás"
-#. b?cs
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3050,7 +2745,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. 2OM{
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3060,7 +2754,6 @@ msgctxt ""
msgid "Format"
msgstr "Formato"
-#. 2pg9
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3070,7 +2763,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. Ph37
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3080,7 +2772,6 @@ msgctxt ""
msgid "Table Format"
msgstr "Formato de tabla"
-#. rxJX
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3089,7 +2780,6 @@ msgctxt ""
msgid "Field Format"
msgstr "Formato de campo"
-#. c@0H
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3099,7 +2789,6 @@ msgctxt ""
msgid "Use catalog for file-based databases"
msgstr "Usar catálogo con bases de datos basadas en archivo"
-#. ^ZGR
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3109,7 +2798,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "Configuración de conexión"
-#. ejW]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3119,7 +2807,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~Nombre del host"
-#. DX0)
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3129,7 +2816,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~Número de puerto"
-#. E=m_
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3139,7 +2825,6 @@ msgctxt ""
msgid "Advanced Properties"
msgstr "Propiedades avanzadas"
-#. XEmD
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3149,7 +2834,6 @@ msgctxt ""
msgid "Additional Settings"
msgstr "Configuración adicional"
-#. L=D~
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3159,7 +2843,6 @@ msgctxt ""
msgid "Connection settings"
msgstr "Configuración de conexión"
-#. ]q!n
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3168,7 +2851,6 @@ msgctxt ""
msgid "Database properties"
msgstr "Propiedades de la base de datos"
-#. pRGW
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3177,7 +2859,6 @@ msgctxt ""
msgid "Database properties"
msgstr "Propiedades de la base de datos"
-#. =Pu^
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3187,7 +2868,6 @@ msgctxt ""
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr "Bienvenido/a al Asistente para bases de datos de %PRODUCTNAME"
-#. })5x
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3197,7 +2877,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 "Utilice el Asistente para bases de datos para crear una base de datos, abrir un archivo de base de datos existente o conectarse a una base de datos de un servidor."
-#. /f4U
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3207,7 +2886,6 @@ msgctxt ""
msgid "What do you want to do?"
msgstr "¿Qué quiere hacer?"
-#. ^h6]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3217,7 +2895,6 @@ msgctxt ""
msgid "Create a n~ew database"
msgstr "Crear una base de datos nu~eva"
-#. ,hb*
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3227,7 +2904,6 @@ msgctxt ""
msgid "Open an existing database ~file"
msgstr "Abrir un ~archivo de base de datos existente"
-#. `Xr@
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3237,7 +2913,6 @@ msgctxt ""
msgid "Recently used"
msgstr "Usado recientemente"
-#. R-kZ
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3247,7 +2922,6 @@ msgctxt ""
msgid "Connect to an e~xisting database"
msgstr "Conectar con una base de datos e~xistente"
-#. 9=#0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3257,7 +2931,6 @@ msgctxt ""
msgid "Select the type of database to which you want to establish a connection."
msgstr "Seleccione el tipo de base de datos con el que desea establecer conexión."
-#. N@Z\
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3267,7 +2940,6 @@ msgctxt ""
msgid "Database ~type "
msgstr "~Tipo de base de datos "
-#. 0:5]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3277,7 +2949,6 @@ msgctxt ""
msgid "Database"
msgstr "Base de datos"
-#. kO@$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3293,7 +2964,6 @@ msgstr ""
"\n"
"La nueva configuración sustituirá a la existente."
-#. e~n0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3303,7 +2973,6 @@ msgctxt ""
msgid "MySQL"
msgstr "MySQL"
-#. *it,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3313,7 +2982,6 @@ msgctxt ""
msgid "Data Source Properties: #"
msgstr "Propiedades del origen de datos: #"
-#. w0gU
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3323,7 +2991,6 @@ msgctxt ""
msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
msgstr "No se pudo cargar la biblioteca de programa #lib#, quizás esté dañada. La selección de fuente de datos ODBC no está disponible."
-#. f^dK
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3337,7 +3004,6 @@ msgstr ""
"Esta plataforma no es compatible este tipo de origen de datos.\n"
"Puede modificar la configuración, pero seguramente no podrá conectarse con la base de datos."
-#. C*#+
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3346,7 +3012,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. 0NKa
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3356,7 +3021,6 @@ msgctxt ""
msgid "Optional settings"
msgstr "Configuración opcional"
-#. 3aG,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3366,7 +3030,6 @@ msgctxt ""
msgid "Display deleted records as well"
msgstr "Mostrar también registros eliminados"
-#. 5ERl
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3376,7 +3039,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 "Nota: Cuando se muestran registros eliminados y, como consecuencia, inactivos, no es posible eliminar registros del origen de datos."
-#. b$A0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3386,7 +3048,6 @@ msgctxt ""
msgid "Indexes..."
msgstr "Índices..."
-#. #o]#
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3396,7 +3057,6 @@ msgctxt ""
msgid "Optional Settings"
msgstr "Parámetros opcionales"
-#. F{_:
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3406,7 +3066,6 @@ msgctxt ""
msgid "ODBC ~options"
msgstr "~Opciones de ODBC"
-#. %()v
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3416,7 +3075,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class"
msgstr "Clase de cont~rolador MySQL JDBC"
-#. ~|U$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3426,7 +3084,6 @@ msgctxt ""
msgid "Test class"
msgstr "Clase de prueba"
-#. hahS
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3436,7 +3093,6 @@ msgctxt ""
msgid "User authentication"
msgstr "Autenticación de usuario"
-#. Pbb,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3446,7 +3102,6 @@ msgctxt ""
msgid "~User name"
msgstr "~Nombre de usuario"
-#. ~Txm
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3456,7 +3111,6 @@ msgctxt ""
msgid "Password required"
msgstr "Se requiere una contraseña"
-#. (Av;
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3466,7 +3120,6 @@ msgctxt ""
msgid "Oracle JDBC d~river class"
msgstr "Clase de cont~rolador Oracle JDBC"
-#. !fXk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3476,7 +3129,6 @@ msgctxt ""
msgid "Test class"
msgstr "Clase de prueba"
-#. g!\o
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3486,7 +3138,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "Parámetros de conexión"
-#. =r!-
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3496,7 +3147,6 @@ msgctxt ""
msgid "~Base DN"
msgstr "~Base DN"
-#. B\Ag
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3506,7 +3156,6 @@ msgctxt ""
msgid "Use secure connection (SSL)"
msgstr "Usar conexión segura (SSL)"
-#. WpTf
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3516,7 +3165,6 @@ msgctxt ""
msgid "~Port number"
msgstr "Número de ~puerto"
-#. GQcj
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3526,7 +3174,6 @@ msgctxt ""
msgid "Maximum number of ~records"
msgstr "Número máximo de ~registros"
-#. =`Pn
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3536,7 +3183,6 @@ msgctxt ""
msgid "~Hostname"
msgstr "Nombre del ~host"
-#. 5!kk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3546,7 +3192,6 @@ msgctxt ""
msgid "~Port number"
msgstr "Número de ~puerto"
-#. /w7`
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3556,7 +3201,6 @@ msgctxt ""
msgid "~Driver settings"
msgstr "Con~figuración del controlador"
-#. ;`uA
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3565,7 +3209,6 @@ msgctxt ""
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
msgstr "Elija «Conectar con una base de datos existente» para conectarse con una base de datos existente."
-#. v)e%
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3575,7 +3218,6 @@ msgctxt ""
msgid "Please enter a name for the object to be created:"
msgstr "Indique un nombre para el objeto a crear:"
-#. c3eC
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3585,7 +3227,6 @@ msgctxt ""
msgid "~Catalog"
msgstr "~Catálogo"
-#. Z0U.
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3595,7 +3236,6 @@ msgctxt ""
msgid "~Schema"
msgstr "~Esquema"
-#. `D?l
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3605,7 +3245,6 @@ msgctxt ""
msgid "~Table Name"
msgstr "~Nombre de la tabla"
-#. e[Yw
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3615,7 +3254,6 @@ msgctxt ""
msgid "~Name of table view"
msgstr "Nombre del ~modo tabla"
-#. ape!
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3625,7 +3263,6 @@ msgctxt ""
msgid "~Query name"
msgstr "Nombre de la ~consulta"
-#. j1j;
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3635,7 +3272,6 @@ msgctxt ""
msgid "Rename to"
msgstr "Renombrar a"
-#. 7+Kr
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3645,7 +3281,6 @@ msgctxt ""
msgid "Insert as"
msgstr "Pegar como"
-#. sloO
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3654,7 +3289,6 @@ msgctxt ""
msgid "Save As"
msgstr "Guardar como"
-#. n]DW
#: textconnectionsettings.src
msgctxt ""
"textconnectionsettings.src\n"
diff --git a/source/es/dbaccess/source/ui/inc.po b/source/es/dbaccess/source/ui/inc.po
index 0bca782fe83..e416ca5c07a 100644
--- a/source/es/dbaccess/source/ui/inc.po
+++ b/source/es/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: 2012-07-13 11:54+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Actualizar"
-#. .g*Q
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "New ~View Design"
msgstr "Nuevo diseño de ~visualización"
-#. Z39f
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "New ~Table Design"
msgstr "Nuevo diseño de ~tabla"
-#. xZ!m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Query AutoPilot..."
msgstr "Asistente: Consulta..."
-#. gmw^
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "New ~Query (Design View)"
msgstr "Nueva ~consulta (vista de diseño)"
-#. XmK)
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "~Edit Query"
msgstr "Editar cons~ulta"
-#. {Vbo
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "New Query (~SQL View)"
msgstr "Nueva consulta (vista ~SQL)"
-#. hUMy
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Edit..."
msgstr "Editar..."
-#. KH%8
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Column ~Width..."
msgstr "Anc~ho de columna..."
-#. B3ba
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr "Asistente para informes..."
-#. #v:m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
diff --git a/source/es/dbaccess/source/ui/misc.po b/source/es/dbaccess/source/ui/misc.po
index f9a30ab9a67..87ac2484c4d 100644
--- a/source/es/dbaccess/source/ui/misc.po
+++ b/source/es/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: 2012-08-14 06:13+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Aplicar columnas"
-#. OCCW
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Type formatting"
msgstr "Formato de tipos"
-#. 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 "Ya se han definido los siguientes campos como llaves primarias:\n"
-#. ?DZP
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Assign columns"
msgstr "Asignar columnas"
-#. {.7a
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "~Help"
msgstr "Ay~uda"
-#. ?{e|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "~Cancel"
msgstr "~Cancelar"
-#. EJ$?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "< ~Back"
msgstr "< ~Anterior"
-#. XLgB
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -91,7 +83,6 @@ msgctxt ""
msgid "~Next>"
msgstr "~Siguiente>"
-#. !Ss)
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "C~reate"
msgstr "~Crear"
-#. 5}TZ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Copy RTF Table"
msgstr "Copiar tabla RTF"
-#. Nhe\
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Existing columns"
msgstr "Columnas existentes"
-#. E#D^
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Column information"
msgstr "Información sobre columnas"
-#. ,9{H
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "Automatic type recognition"
msgstr "Autoreconocimiento de tipo"
-#. `NE6
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Lines (ma~x)"
msgstr "~Líneas (máx.)"
-#. $+=1
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Primary Key"
msgstr "Clave primaria"
-#. AX+?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Source table: \n"
msgstr "Tabla de origen: \n"
-#. hf?!
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "Destination table: \n"
msgstr "Tabla de destino: \n"
-#. {O8B
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -190,7 +172,6 @@ msgctxt ""
msgid "~All"
msgstr "To~dos"
-#. ZWa*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -200,7 +181,6 @@ msgctxt ""
msgid "Non~e"
msgstr "~Ninguno"
-#. gcfF
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -210,7 +190,6 @@ msgctxt ""
msgid "Ta~ble name"
msgstr "Nombre de la ta~bla"
-#. !JEQ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -220,7 +199,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. QOk;
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -230,7 +208,6 @@ msgctxt ""
msgid "De~finition and data"
msgstr "~Definición y datos"
-#. 6zkh
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "Def~inition"
msgstr "Defi~nición"
-#. VRP*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "A~s table view"
msgstr "Como visualización de t~abla"
-#. M?|_
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "Append ~data"
msgstr "Anexar ~datos"
-#. -au[
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -270,7 +244,6 @@ msgctxt ""
msgid "Use first ~line as column names"
msgstr "Usar la primera ~línea como nombre de columna"
-#. 09rg
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Crea~te primary key"
msgstr "~Crear llave primaria"
-#. =79|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -290,7 +262,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. *`p=
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Copy table"
msgstr "Copiar tabla"
-#. )^(0
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "Copy table"
msgstr "Copiar tabla"
-#. +^3G
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "This table name is not valid in the current database."
msgstr "Este nombre de tabla no es válido en la base de datos actual."
-#. 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 "Seleccione la opción 'Anexar datos' de la primera página para incorporar datos a una tabla."
-#. u#s2
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -335,7 +302,6 @@ msgctxt ""
msgid "Please change the table name. It is too long."
msgstr "Cambie el nombre de la tabla. Es demasiado largo."
-#. Q1z5
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "System"
msgstr "Sistema"
-#. UEPj
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -354,7 +319,6 @@ msgctxt ""
msgid "Error during creation"
msgstr "Error al crear"
-#. 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 "Ha ocurrido un error. No se puede ejecutar la operación."
-#. ?a9N
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "The document \"$file$\" could not be opened."
msgstr "No se pudo abrir el documento \"$file$\"."
-#. 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 "No se puede eliminar la tabla porque la conexión con la base de datos no apoya esta acción."
-#. /vzc
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "~All"
msgstr "~Todos"
-#. ;!wA
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Undo:"
msgstr "Deshacer:"
-#. @QFQ
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Redo:"
msgstr "Restaurar:"
-#. 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 "No se encontró ninguna columna correspondiente al tipo de columna '#1'."
-#. 71C1
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr "El archivo \"$file$\" no existe."
-#. 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 "Se han generado advertencias durante la conexión con el origen de datos. Pulse \"$buttontext$\" para verlas."
-#. Bori
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -448,7 +403,6 @@ msgstr ""
"El nombre '$#$' ya existe.\n"
"Especifique otro nombre."
-#. X@3n
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
diff --git a/source/es/dbaccess/source/ui/querydesign.po b/source/es/dbaccess/source/ui/querydesign.po
index ceba0abd0de..ff0e58d046e 100644
--- a/source/es/dbaccess/source/ui/querydesign.po
+++ b/source/es/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: 2012-08-14 06:10+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Opciones"
-#. =9+%
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Tipo"
-#. \iJy
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Inner join"
msgstr "JOIN interno"
-#. dVrr
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Left join"
msgstr "JOIN izquierdo"
-#. SsFj
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Right join"
msgstr "JOIN derecho"
-#. 5HYb
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Full (outer) join"
msgstr "JOIN (externo) completo"
-#. v7q7
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Cross join"
msgstr "JOIN cruzado"
-#. k**g
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Natural"
msgstr "Natural"
-#. 46q*
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Tables involved"
msgstr "Tablas implicadas"
-#. GK=\
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Fields involved"
msgstr "Campos implicados"
-#. $;xp
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Join Properties"
msgstr "Propiedades de unión"
-#. _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 "Tenga en cuenta que algunas bases de datos pueden ser incompatibles con este tipo de combinación."
-#. [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 "Contiene solo los registros en los que los contenidos de los campos vinculados de ambas tablas con iguales."
-#. 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 "Contiene TODOS los registros de datos de '%1' y solo los registros de '%2' en los que los contenidos de los campos vinculados de ambas tablas son iguales."
-#. 4zbd
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "Contiene TODOS los registros de datos de '%1' y de '%2'"
-#. kpOB
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
msgstr "Contiene el producto cartesiano de todos los registros de '%1' y de '%2'."
-#. 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 "Contiene solo una columna para cada par de columnas llamadas desde '%1' y desde '%2'."
-#. 0-qf
#: query.src
msgctxt ""
"query.src\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "Add Table Window"
msgstr "Añadir ventana de tabla"
-#. uig%
#: query.src
msgctxt ""
"query.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Move table window"
msgstr "Mover ventana de tabla"
-#. 8WpA
#: query.src
msgctxt ""
"query.src\n"
@@ -205,7 +185,6 @@ msgctxt ""
msgid "Insert Join"
msgstr "Insertar conexión"
-#. sG6M
#: query.src
msgctxt ""
"query.src\n"
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Delete Join"
msgstr "Eliminar conexión"
-#. L+^W
#: query.src
msgctxt ""
"query.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Resize table window"
msgstr "Redimensionar ventana de tabla"
-#. D^BY
#: query.src
msgctxt ""
"query.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "Delete Column"
msgstr "Eliminar columna"
-#. AW%^
#: query.src
msgctxt ""
"query.src\n"
@@ -241,7 +217,6 @@ msgctxt ""
msgid "Move column"
msgstr "Mover la columna"
-#. nOk3
#: query.src
msgctxt ""
"query.src\n"
@@ -250,7 +225,6 @@ msgctxt ""
msgid "Add Column"
msgstr "Añadir columna"
-#. )UDE
#: query.src
msgctxt ""
"query.src\n"
@@ -259,7 +233,6 @@ msgctxt ""
msgid "Invalid expression, table '$name$' does not exist."
msgstr "Expresión no válida, la tabla '$name$' no existe."
-#. .W\\
#: query.src
msgctxt ""
"query.src\n"
@@ -268,7 +241,6 @@ msgctxt ""
msgid "Invalid expression, field name '$name$' does not exist."
msgstr "¡La expresión no es válida porque no se puede asignar el nombre de campo '$name$'!"
-#. a1mP
#: query.src
msgctxt ""
"query.src\n"
@@ -277,7 +249,6 @@ msgctxt ""
msgid "The query covers #num# tables. The selected database type, however, can only process a maximum of #maxnum# table(s) per statement."
msgstr "La consulta abarca #num# tablas. Sin embargo, el tipo de base de datos seleccionado sólo puede procesar como máximo #maxnum# tabla(s) por instrucción."
-#. 3I|w
#: query.src
msgctxt ""
"query.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Delete Table Window"
msgstr "Eliminar ventana de tabla"
-#. wI.O
#: query.src
msgctxt ""
"query.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "Edit Column Description"
msgstr "Modificar descripción de columnas"
-#. krXD
#: query.src
msgctxt ""
"query.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "Adjust column width"
msgstr "Modificar ancho de columnas"
-#. /HIh
#: query.src
msgctxt ""
"query.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "(not sorted);ascending;descending"
msgstr "(sin ordenar);ascendente;descendente"
-#. W|zJ
#: query.src
msgctxt ""
"query.src\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "(no function);Group"
msgstr "(sin función);Agrupar"
-#. bG9n
#: query.src
msgctxt ""
"query.src\n"
@@ -331,7 +297,6 @@ msgctxt ""
msgid "(no table)"
msgstr "(ninguna tabla)"
-#. )!;O
#: query.src
msgctxt ""
"query.src\n"
@@ -340,7 +305,6 @@ msgctxt ""
msgid "The database only supports sorting for visible fields."
msgstr "La base de datos apoya la clasificación solo para campos visibles."
-#. Fh8`
#: query.src
msgctxt ""
"query.src\n"
@@ -350,7 +314,6 @@ msgctxt ""
msgid "Functions"
msgstr "Funciones"
-#. 7*N!
#: query.src
msgctxt ""
"query.src\n"
@@ -360,7 +323,6 @@ msgctxt ""
msgid "Table Name"
msgstr "Nombre de la tabla"
-#. 4toX
#: query.src
msgctxt ""
"query.src\n"
@@ -370,7 +332,6 @@ msgctxt ""
msgid "Alias"
msgstr "Alias"
-#. )b[Y
#: query.src
msgctxt ""
"query.src\n"
@@ -380,7 +341,6 @@ msgctxt ""
msgid "Distinct Values"
msgstr "Valores inequívocos"
-#. :]VY
#: query.src
msgctxt ""
"query.src\n"
@@ -389,7 +349,6 @@ msgctxt ""
msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
msgstr "Campo;Alias;Tabla;Orden;Visible;Función;Criterio;o;o"
-#. ukK~
#: query.src
msgctxt ""
"query.src\n"
@@ -398,7 +357,6 @@ msgctxt ""
msgid "There are too many columns."
msgstr "Existen demasiadas columnas."
-#. XKI9
#: query.src
msgctxt ""
"query.src\n"
@@ -407,7 +365,6 @@ msgctxt ""
msgid "A condition cannot be applied to field [*]"
msgstr "No es posible una condición para el campo [*]"
-#. 3f`+
#: query.src
msgctxt ""
"query.src\n"
@@ -416,7 +373,6 @@ msgctxt ""
msgid "The SQL statement created is too long."
msgstr "La expresión SQL creada es demasiado larga."
-#. 4({}
#: query.src
msgctxt ""
"query.src\n"
@@ -425,7 +381,6 @@ msgctxt ""
msgid "Query is too complex"
msgstr "Consulta demasiado compleja"
-#. qiv2
#: query.src
msgctxt ""
"query.src\n"
@@ -434,7 +389,6 @@ msgctxt ""
msgid "Nothing has been selected."
msgstr "No se ha seleccionado nada."
-#. =0zi
#: query.src
msgctxt ""
"query.src\n"
@@ -443,7 +397,6 @@ msgctxt ""
msgid "Too many search criteria"
msgstr "Demasiados criterios de búsqueda"
-#. r~B!
#: query.src
msgctxt ""
"query.src\n"
@@ -452,7 +405,6 @@ msgctxt ""
msgid "SQL syntax error"
msgstr "Error en la sintaxis SQL"
-#. iOY@
#: query.src
msgctxt ""
"query.src\n"
@@ -461,7 +413,6 @@ msgctxt ""
msgid "[*] cannot be used as a sort criterion."
msgstr "No se puede usar [*] como criterio de orden."
-#. ;2~e
#: query.src
msgctxt ""
"query.src\n"
@@ -470,7 +421,6 @@ msgctxt ""
msgid "There are too many tables."
msgstr "Existen demasiadas tablas."
-#. `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 "En caso de consultar en el dialecto SQL de la base de datos, la instrucción no se aceptará."
-#. /)~O
#: query.src
msgctxt ""
"query.src\n"
@@ -488,7 +437,6 @@ msgctxt ""
msgid "Field name not found or not unique"
msgstr "El nombre del campo no se encontró o no es único"
-#. Es13
#: query.src
msgctxt ""
"query.src\n"
@@ -497,7 +445,6 @@ msgctxt ""
msgid "Join could not be processed"
msgstr "No se pudo ejecutar el vínculo."
-#. F{b/
#: query.src
msgctxt ""
"query.src\n"
@@ -506,7 +453,6 @@ msgctxt ""
msgid "Syntax error in SQL statement"
msgstr "Error de sintaxis en la expresión SQL"
-#. #D4O
#: query.src
msgctxt ""
"query.src\n"
@@ -515,7 +461,6 @@ msgctxt ""
msgid "This database does not support table views."
msgstr "Esta base de datos no admite vistas de tablas."
-#. 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 "Esta base de datos no soporta alterar la vista existente de tablas."
-#. Xae+
#: query.src
msgctxt ""
"query.src\n"
@@ -533,7 +477,6 @@ msgctxt ""
msgid "Do you want to create a query instead?"
msgstr "¿Desea crear una consulta en su lugar?"
-#. xN(!
#: query.src
msgctxt ""
"query.src\n"
@@ -542,7 +485,6 @@ msgctxt ""
msgid "No query could be created."
msgstr "¡No se pudo crear ninguna consulta!"
-#. Dg/-
#: query.src
msgctxt ""
"query.src\n"
@@ -551,7 +493,6 @@ msgctxt ""
msgid "No query could be created because no fields were selected."
msgstr "¡No se pudo crear ninguna consulta ya que no se ha seleccionado ningún campo!"
-#. @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 "Se ha eliminado la fuente de datos. No se pueden guardar datos correspondientes a ella."
-#. 8C.r
#: query.src
msgctxt ""
"query.src\n"
@@ -569,7 +509,6 @@ msgctxt ""
msgid "The column '$name$' is unknown."
msgstr "La columna '$name$' se desconoce."
-#. 5SB6
#: query.src
msgctxt ""
"query.src\n"
@@ -578,7 +517,6 @@ msgctxt ""
msgid "Columns can only be compared using '='."
msgstr "Las columnas sólo se pueden comparar con el signo de igual '='."
-#. q-oU
#: query.src
msgctxt ""
"query.src\n"
@@ -587,7 +525,6 @@ msgctxt ""
msgid "You must use a column name before 'LIKE'."
msgstr "Debe usar un nombre de columna antes de 'COMO'."
-#. 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 "No se encontró la columna. Note que la base de datos distingue entre mayúsculas y minúsculas."
-#. 5v?A
#: query.src
msgctxt ""
"query.src\n"
@@ -605,7 +541,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Query Design"
msgstr " - %PRODUCTNAME Base: Diseño de consulta"
-#. %0im
#: query.src
msgctxt ""
"query.src\n"
@@ -615,7 +550,6 @@ msgid " - %PRODUCTNAME Base: View Design"
msgstr " - %PRODUCTNAME Base: Diseño de vista"
#. 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 ""
"¿Desea guardar los cambios?"
#. 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 "$object$ esta basado en un comando SQL que no podría ser analizado."
#. 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 "El $object$ se abrirá en vista SQL."
-#. HAdD
#: query.src
msgctxt ""
"query.src\n"
@@ -658,7 +589,6 @@ msgctxt ""
msgid "The table view"
msgstr "La vista de la tabla"
-#. Nl{E
#: query.src
msgctxt ""
"query.src\n"
@@ -668,7 +598,6 @@ msgctxt ""
msgid "The query"
msgstr "La consulta"
-#. f\zj
#: query.src
msgctxt ""
"query.src\n"
@@ -678,7 +607,6 @@ msgctxt ""
msgid "The SQL statement"
msgstr "La sentencia SQL"
-#. y=%/
#: query.src
msgctxt ""
"query.src\n"
@@ -687,7 +615,6 @@ msgctxt ""
msgid "The query does not create a result set, and thus cannot be part of another query."
msgstr "La consulta no crea un conjunto de resultados, con lo que no puede ser parte de otra consulta."
-#. SIJ`
#: query.src
msgctxt ""
"query.src\n"
diff --git a/source/es/dbaccess/source/ui/relationdesign.po b/source/es/dbaccess/source/ui/relationdesign.po
index dabe14a9640..d0dacb571ec 100644
--- a/source/es/dbaccess/source/ui/relationdesign.po
+++ b/source/es/dbaccess/source/ui/relationdesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-08-14 05:21+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. hOZ_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr "Ésta relación ya existe. Quiere editarla o crear una nueva?"
-#. o];n
#: relation.src
msgctxt ""
"relation.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Edit..."
msgstr "Editar..."
-#. 1c[-
#: relation.src
msgctxt ""
"relation.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Create..."
msgstr "Crear..."
-#. AoH_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME Base: Diseño de relación"
-#. )MM4
#: relation.src
msgctxt ""
"relation.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The database does not support relations."
msgstr "La base de datos no apoya ninguna relación."
-#. NYJF
#: relation.src
msgctxt ""
"relation.src\n"
@@ -73,7 +67,6 @@ msgstr ""
"El diseño de relación ha sido modificado\n"
"¿Desea guardar las modificaciones?"
-#. #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 "Si elimina esta tabla se eliminarán también todas las relaciones correspondientes. ¿Continuar?"
-#. {1NJ
#: relation.src
msgctxt ""
"relation.src\n"
diff --git a/source/es/dbaccess/source/ui/tabledesign.po b/source/es/dbaccess/source/ui/tabledesign.po
index 3ddff585197..4880f588b41 100644
--- a/source/es/dbaccess/source/ui/tabledesign.po
+++ b/source/es/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: 2012-10-08 10:31+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Desconocido;Texto;Número;Fecha/Hora;Fecha;Hora;Sí/No;Moneda;Nota;Contador;Imagen;Texto (fijo);Decimal;Binario(fijo);Binario;Entero grande;Doble precisión;Coma flotante;Real;Entero;Entero pequeño;Entero minúsculo;Valor nulo;Objeto;Distinto;Estructura;Campo;BLOB;CLOB;REF;OTHER (fijo)"
-#. |sU@
#: table.src
msgctxt ""
"table.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr "Insertar/eliminar llave primaria"
-#. UI--
#: table.src
msgctxt ""
"table.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. X9{a
#: table.src
msgctxt ""
"table.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. ..-$
#: table.src
msgctxt ""
"table.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Ascending"
msgstr "Ascendente"
-#. :+)e
#: table.src
msgctxt ""
"table.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Descending"
msgstr "Descendente"
-#. 5(BM
#: table.src
msgctxt ""
"table.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "<none>"
msgstr "<ninguno>"
-#. =2Fw
#: table.src
msgctxt ""
"table.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Field name"
msgstr "Nombre del campo"
-#. b!J7
#: table.src
msgctxt ""
"table.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Field Name"
msgstr "Nombre del campo"
-#. Ke6E
#: table.src
msgctxt ""
"table.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Field ~type"
msgstr "~Tipo de campo"
-#. 3=e_
#: table.src
msgctxt ""
"table.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Field Type"
msgstr "Tipo del campo"
-#. H%CY
#: table.src
msgctxt ""
"table.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Field length"
msgstr "Longitud de campo"
-#. M[,x
#: table.src
msgctxt ""
"table.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. {oh-
#: table.src
msgctxt ""
"table.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Column Description"
msgstr "Descripción de la columna"
-#. #FSY
#: table.src
msgctxt ""
"table.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Input required"
msgstr "Se requiere entrada"
-#. A[jT
#: table.src
msgctxt ""
"table.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "~AutoValue"
msgstr "~Valor automático"
-#. ,izf
#: table.src
msgctxt ""
"table.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Field Properties"
msgstr "Propiedades del campo"
-#. Wp+k
#: table.src
msgctxt ""
"table.src\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. X?RF
#: table.src
msgctxt ""
"table.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Description:"
msgstr "Descripción :"
-#. v]`~
#: table.src
msgctxt ""
"table.src\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Table properties"
msgstr "Propiedades de la tabla"
-#. hCr$
#: table.src
msgctxt ""
"table.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "The text you entered is not a list element. "
msgstr "El texto que introdujo no es un elemento de lista. "
-#. Z~\!
#: table.src
msgctxt ""
"table.src\n"
@@ -214,7 +192,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "Insertar filas"
-#. buHQ
#: table.src
msgctxt ""
"table.src\n"
@@ -224,7 +201,6 @@ msgctxt ""
msgid "Primary Key"
msgstr "Llave primaria"
-#. :tSG
#: table.src
msgctxt ""
"table.src\n"
@@ -233,7 +209,6 @@ msgctxt ""
msgid "Modify cell"
msgstr "Modificar celda"
-#. `87G
#: table.src
msgctxt ""
"table.src\n"
@@ -242,7 +217,6 @@ msgctxt ""
msgid "Delete row"
msgstr "Eliminar fila"
-#. 6PCw
#: table.src
msgctxt ""
"table.src\n"
@@ -251,7 +225,6 @@ msgctxt ""
msgid "Modify field type"
msgstr "Tipo de campo modificado"
-#. of6E
#: table.src
msgctxt ""
"table.src\n"
@@ -260,7 +233,6 @@ msgctxt ""
msgid "Insert row"
msgstr "Insertar fila"
-#. gP#0
#: table.src
msgctxt ""
"table.src\n"
@@ -269,7 +241,6 @@ msgctxt ""
msgid "Insert new row"
msgstr "Insertar una fila nueva"
-#. O90e
#: table.src
msgctxt ""
"table.src\n"
@@ -278,7 +249,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr "Insertar/eliminar llave primaria"
-#. h)Dv
#: table.src
msgctxt ""
"table.src\n"
@@ -287,7 +257,6 @@ msgctxt ""
msgid "~Default value"
msgstr "Valor pre~determinado"
-#. AHx$
#: table.src
msgctxt ""
"table.src\n"
@@ -296,7 +265,6 @@ msgctxt ""
msgid "~Entry required"
msgstr "~Entrada requerida"
-#. IM1C
#: table.src
msgctxt ""
"table.src\n"
@@ -305,7 +273,6 @@ msgctxt ""
msgid "~Length"
msgstr "~Longitud"
-#. UMNU
#: table.src
msgctxt ""
"table.src\n"
@@ -314,7 +281,6 @@ msgctxt ""
msgid "~Type"
msgstr "Tip~o"
-#. +E.l
#: table.src
msgctxt ""
"table.src\n"
@@ -323,7 +289,6 @@ msgctxt ""
msgid "~Length"
msgstr "Ta~maño"
-#. 6)Qn
#: table.src
msgctxt ""
"table.src\n"
@@ -332,7 +297,6 @@ msgctxt ""
msgid "Decimal ~places"
msgstr "~Decimales"
-#. 3W;J
#: table.src
msgctxt ""
"table.src\n"
@@ -341,7 +305,6 @@ msgctxt ""
msgid "Format example"
msgstr "Ejemplo de formato"
-#. pENt
#: table.src
msgctxt ""
"table.src\n"
@@ -354,7 +317,6 @@ msgstr ""
"Elija el valor que deba aparecer como predeterminado en cada registro de datos que se\n"
"inserte de nuevo. Elija la secuencia vacía si el campo no ha de contener tal valor predeterminado."
-#. ;^|H
#: table.src
msgctxt ""
"table.src\n"
@@ -369,7 +331,6 @@ msgstr ""
"\n"
"Si posteriormente introduce datos en la tabla, en cada registro nuevo se usará esta cadena de carecteres para el campo actual. Por esta razón debe corresponder al formato de celda a introducir más abajo."
-#. 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 "Active esta opción si no están permitidos valores null en este campo, es decir, si el usuario debe introducir los datos siempre."
-#. 7mL^
#: table.src
msgctxt ""
"table.src\n"
@@ -387,7 +347,6 @@ msgctxt ""
msgid "Enter the maximum text length permitted."
msgstr "Escriba la longitud máxima de texto permitida."
-#. 7#=!
#: table.src
msgctxt ""
"table.src\n"
@@ -396,7 +355,6 @@ msgctxt ""
msgid "Enter the number format."
msgstr "Especifique aquí el formato numérico."
-#. b1p*
#: table.src
msgctxt ""
"table.src\n"
@@ -413,7 +371,6 @@ msgstr ""
"Para campos decimales será la longitud máxima del número introducido; para campos binarios, la longitud del bloque de datos.\n"
"Si el valor fuera mayor que el máximo permitido para esta base de datos, se corregirá correspondientemente."
-#. -^69
#: table.src
msgctxt ""
"table.src\n"
@@ -422,7 +379,6 @@ msgctxt ""
msgid "Specify the number of decimal places permitted in this field."
msgstr "Especifique el número de decimales que deban contener los números en este campo."
-#. 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 "Aquí puede ver cómo serían formateados los datos de la columna actual con el formato definido actualmente, que puede modificar con el botón que se encuentra al lado."
-#. 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 "Aquí puede determinar el formato de salida para los datos."
-#. [?XS
#: table.src
msgctxt ""
"table.src\n"
@@ -455,7 +409,6 @@ msgstr ""
"\n"
"En este caso no podrá escribir datos directamente, sino que a cada nuevo registro de datos se le asignará automáticamente un valor propio (que resulta del incremento proveniente del registro anterior)."
-#. .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 "No se puede guardar la tabla porque el nombre de columna \"$column$\" ha sido asignado dos veces."
-#. 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 "La columna \"$column$\" pertenece a la llave primaria. En caso de que la elimine, eliminará también la llave primaria. ¿Desea continuar?"
-#. H0za
#: table.src
msgctxt ""
"table.src\n"
@@ -491,7 +441,6 @@ msgctxt ""
msgid "Primary Key Affected"
msgstr "Clave principal afectada"
-#. ^k*0
#: table.src
msgctxt ""
"table.src\n"
@@ -500,7 +449,6 @@ msgctxt ""
msgid "Column"
msgstr "Columna"
-#. o1m@
#: table.src
msgctxt ""
"table.src\n"
@@ -509,7 +457,6 @@ msgctxt ""
msgid "Continue anyway?"
msgstr "¿Continuar de todos modos?"
-#. :}Ea
#: table.src
msgctxt ""
"table.src\n"
@@ -518,7 +465,6 @@ msgctxt ""
msgid "Warning!"
msgstr "¡Advertencia!"
-#. 3U@W
#: table.src
msgctxt ""
"table.src\n"
@@ -531,7 +477,6 @@ msgstr ""
"Se ha modificado esta tabla.\n"
"¿Desea guardar los cambios?"
-#. LHZG
#: table.src
msgctxt ""
"table.src\n"
@@ -544,7 +489,6 @@ msgstr ""
"¡Se ha cancelado la conexión a la base de datos! Sin ella, el diseño de tabla solo se puede usar de forma limitada.\n"
"¿Desea reanudar la conexión?"
-#. 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 "No ha sido posible guardar la tabla porque no se pudo efectuar una conexión a la base de datos."
-#. 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 "No se pudo ajustar el filtro de tablas porque se eliminó la fuente de datos."
-#. w5qJ
#: table.src
msgctxt ""
"table.src\n"
@@ -575,7 +517,6 @@ msgstr ""
"Antes de modificar los índices de una tabla deberá guardarla.\n"
"¿Desea guardar ahora las modificaciones en la estructura de la tabla?"
-#. IT/l
#: table.src
msgctxt ""
"table.src\n"
@@ -584,7 +525,6 @@ msgctxt ""
msgid "No primary key"
msgstr "Ninguna llave primaria"
-#. gnM:
#: table.src
msgctxt ""
"table.src\n"
@@ -601,7 +541,6 @@ msgstr ""
"\n"
"¿Desea crear ahora una llave primaria?"
-#. ds(e
#: table.src
msgctxt ""
"table.src\n"
@@ -610,7 +549,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Table Design"
msgstr " - %PRODUCTNAME Base: Diseño de tabla"
-#. 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 "No se pudo modificar la columna \"$column$\". ¿Prefiere eliminarla y aplicar el nuevo formato?"
-#. 3pC`
#: table.src
msgctxt ""
"table.src\n"
@@ -628,7 +565,6 @@ msgctxt ""
msgid "Error while saving the table design"
msgstr "Error al guardar el diseño de tabla"
-#. s$A0
#: table.src
msgctxt ""
"table.src\n"
@@ -637,7 +573,6 @@ msgctxt ""
msgid "The column $column$ could not be deleted."
msgstr "No se puede eliminar la columna $column$."
-#. 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 "Está intentando eliminar todas las columnas en la tabla. Una tabla no puede existir sin columnas. ¿Quiere eliminar la tabla de la base de datos? Si no, la tabla permanecerá inalterada."
-#. mb.U
#: table.src
msgctxt ""
"table.src\n"
@@ -655,7 +589,6 @@ msgctxt ""
msgid "A~uto-increment statement"
msgstr "Expresión incremento a~utomático"
-#. ZA{U
#: table.src
msgctxt ""
"table.src\n"
@@ -670,7 +603,6 @@ msgstr ""
"\n"
"Esta expresión se importará directamente a la base de datos cuando se cree la tabla."
-#. -CSJ
#: table.src
msgctxt ""
"table.src\n"
@@ -683,7 +615,6 @@ msgstr ""
"No se ha podido extraer información, relativa al tipo, de la base de datos.\n"
"El modo diseño de tabla no está disponible para este origen de datos."
-#. da%i
#: table.src
msgctxt ""
"table.src\n"
@@ -692,7 +623,6 @@ msgctxt ""
msgid "change field name"
msgstr "cambiar nombre del campo"
-#. V6k6
#: table.src
msgctxt ""
"table.src\n"
@@ -701,7 +631,6 @@ msgctxt ""
msgid "change field type"
msgstr "cambiar tipo del campo"
-#. \=gd
#: table.src
msgctxt ""
"table.src\n"
@@ -710,7 +639,6 @@ msgctxt ""
msgid "change field description"
msgstr "cambiar descripción del campo"
-#. AAJ]
#: table.src
msgctxt ""
"table.src\n"
diff --git a/source/es/dbaccess/source/ui/uno.po b/source/es/dbaccess/source/ui/uno.po
index 2f97daa8163..042e2a698e4 100644
--- a/source/es/dbaccess/source/ui/uno.po
+++ b/source/es/dbaccess/source/ui/uno.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "El base de datos de destino no apoyo vistas."
-#. _=Y9
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "The destination database does not support primary keys."
msgstr "El base de datos de destino no apoyo claves primarios."
-#. 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 "ningún descriptor de acceso a datos encontrado, o ningún descriptor capaz de proveer la información necesario."
-#. zV0M
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Only tables and queries are supported at the moment."
msgstr "Solamente tablas y preguntas apoyado en este momento."
-#. ~}tx
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The copy source's result set must support bookmarks."
msgstr "El conjunto de resultados de la fuente de copia debe soportar marcadores."
-#. UCzS
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr "Tipo de columna fuente ($type$) no soportadaen la columna $pos$."
-#. We~`
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Illegal number of initialization parameters."
msgstr "Número ilegal de los parametros de inicialización."
-#. mBwh
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "An error occurred during initialization."
msgstr "Ocurrió un error durante la instalación."
-#. HAbb
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr "No se admite la opción $name$ en el descriptor de origen para copiado."
-#. 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 "Para copiar una consulta, su conexión debe ser capaz de proporcionar consultas."
-#. poOe
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "The given interaction handler is invalid."
msgstr "El manejador de interacción proporcionado es inválido."
-#. D3WL
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "~Remember password until end of session"
msgstr "~Recordar la contraseña hasta el fin de la sesión"
-#. ?:go
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
diff --git a/source/es/desktop/source/app.po b/source/es/desktop/source/app.po
index aa216dbc0d3..6adabacd131 100644
--- a/source/es/desktop/source/app.po
+++ b/source/es/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-08-14 05:23+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "¿Quiere restaurar el archivo «$1»"
-#. ;NJ+
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "File Recovery"
msgstr "Recuperación de archivos"
-#. NS+@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -50,7 +47,6 @@ msgstr ""
"Todos los archivos modificados han sido guardados y\n"
"probablemente se recuperen al reiniciar el programa."
-#. G(.k
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -59,7 +55,6 @@ msgctxt ""
msgid "The application cannot be started. "
msgstr "No se puede iniciar la aplicación. "
-#. `a$P
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -68,7 +63,6 @@ msgctxt ""
msgid "The configuration directory \"$1\" could not be found."
msgstr "No se encontró el directorio de configuración «$1»."
-#. D5B@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -77,7 +71,6 @@ msgctxt ""
msgid "The installation path is invalid."
msgstr "La ruta de instalación no es válida."
-#. 3KSX
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -86,7 +79,6 @@ msgctxt ""
msgid "The installation path is not available."
msgstr "La ruta de instalación no está disponible."
-#. [Rc8
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "An internal error occurred."
msgstr "Ha ocurrido un error interno."
-#. Lp6S
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "The configuration file \"$1\" is corrupt."
msgstr "El archivo de configuración «$1» está dañado."
-#. FI:n
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "The configuration file \"$1\" was not found."
msgstr "No se encontró el archivo de configuración «$1»."
-#. rEGY
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "The configuration file \"$1\" does not support the current version."
msgstr "El archivo de configuración «$1» no es compatible con la versión actual."
-#. 8}+c
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -131,7 +119,6 @@ msgctxt ""
msgid "The user interface language cannot be determined."
msgstr "No se puede determinar el idioma de la interfaz de usuario."
-#. 8M4/
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "The configuration service is not available."
msgstr "El servicio de configuración no está disponible."
-#. 7@8E
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr "Para reparar la instalación, inicie el instalador desde el CD o la carpeta con los paquetes de instalación."
-#. ;Qn6
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -158,7 +143,6 @@ msgctxt ""
msgid "The startup settings for accessing the central configuration are incomplete. "
msgstr "La configuración de inicio para acceder a la configuración central no está completa. "
-#. rd?U
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -167,7 +151,6 @@ msgctxt ""
msgid "A connection to the central configuration could not be established. "
msgstr "No se ha podido establecer ninguna conexión con la configuración central. "
-#. N;}*
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -176,7 +159,6 @@ msgctxt ""
msgid "You cannot access the central configuration because of missing access rights. "
msgstr "No puede acceder a la configuración central por falta de derechos de acceso. "
-#. mb`J
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -185,7 +167,6 @@ msgctxt ""
msgid "A general error occurred while accessing your central configuration. "
msgstr "Se produjo un error general mientras se accedía a la configuración central. "
-#. gXwr
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -194,7 +175,6 @@ msgctxt ""
msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. "
msgstr "Las modificaciones realizadas en la configuración personal no se pueden guardar de manera central por falta de derechos de acceso. "
-#. :j,M
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -209,7 +189,6 @@ msgstr ""
"\n"
"Contacte su administrador de sistema."
-#. Hq*q
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -218,7 +197,6 @@ msgctxt ""
msgid "The following internal error has occurred: "
msgstr "Se ha producido el error interno siguiente: "
-#. ]saI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -235,7 +213,6 @@ msgstr ""
"\n"
"¿Realmente quiere continuar?"
-#. 5c(@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. g1Dd
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Help Message..."
msgstr "Mensaje de ayuda..."
-#. _hMD
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -262,7 +237,6 @@ msgctxt ""
msgid "Printing is disabled. No documents can be printed."
msgstr "La impresión está desactivada. No se pueden imprimir documentos."
-#. l%BI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -271,7 +245,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. @L?:
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "The path manager is not available.\n"
msgstr "El administrador de rutas no está disponible.\n"
-#. X:/Z
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -293,7 +265,6 @@ msgstr ""
"No se ha podido completar la instalación del usuario de %PRODUCTNAME debido a que no hay suficiente espacio libre en el disco. Libere más espacio en el disco en la ubicación que se indica y reinicie %PRODUCTNAME:\n"
"\n"
-#. r2c(
#: desktop.src
msgctxt ""
"desktop.src\n"
diff --git a/source/es/desktop/source/deployment/gui.po b/source/es/desktop/source/deployment/gui.po
index ce1ed6ae7bc..68dc520c54d 100644
--- a/source/es/desktop/source/deployment/gui.po
+++ b/source/es/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-10-08 10:31+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. )g4a
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Add Extension(s)"
msgstr "Añadir extensión(es)"
-#. qUw1
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~Eliminar"
-#. /yLf
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "~Enable"
msgstr "~Activar"
-#. nB=b
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Disable"
msgstr "~Desactivar"
-#. UpY+
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Update..."
msgstr "~Actualizar..."
-#. 6pLh
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "~Options..."
msgstr "~Opciones..."
-#. F3Kz
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr "Añadiendo %EXTENSION_NAME"
-#. H)hJ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Removing %EXTENSION_NAME"
msgstr "Eliminando %EXTENSION_NAME"
-#. -w-g
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Enabling %EXTENSION_NAME"
msgstr "Activando %EXTENSION_NAME"
-#. m^rx
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Disabling %EXTENSION_NAME"
msgstr "Desactivando %EXTENSION_NAME"
-#. sH1[
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Accept license for %EXTENSION_NAME"
msgstr "Aceptar la licencia para %EXTENSION_NAME"
-#. UeQm
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "~For all users"
msgstr "~Para todos los usuarios"
-#. F49M
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "~Only for me"
msgstr "~Solamente para mí"
-#. #_~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 "Error: El estado de esta extensión es desconocido"
-#. :D9%
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. TuR@
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Quit"
msgstr "Salir"
-#. `^)5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -174,7 +157,6 @@ msgstr ""
"\n"
"Se necesitan privilegios administrativos para actualizar las extensiones compartidas. Contacte a su administrador de sistemas para actualizar las siguientes extensiones compartidas"
-#. 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 "La extensión no se puede activar porque las siguientes dependencias del sistema no se cumplen:"
-#. 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 "Esta extensión está desactivada porque aún no ha aceptado la licencia.\n"
-#. dig5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -201,7 +181,6 @@ msgctxt ""
msgid "Show license"
msgstr "Mostrar la licencia"
-#. 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 "Siga los pasos que se indican a continuación para proseguir con el proceso de instalación de la extensión:"
-#. ?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 "Lea el contrato de licencia en su totalidad. Mediante la barra desplazamiento o el botón \\'Bajar\\', lea todo el texto de la licencia."
-#. 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 "Acepte el contrato de licencia de la extensión. Para ello, pulse el botón \\'Aceptar\\'."
-#. pW8s
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -261,7 +235,6 @@ msgctxt ""
msgid "~Scroll Down"
msgstr "~Bajar"
-#. )$3l
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -271,7 +244,6 @@ msgctxt ""
msgid "Accept"
msgstr "Aceptar"
-#. h7-`
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -281,7 +253,6 @@ msgctxt ""
msgid "Decline"
msgstr "Rechazar"
-#. ?Bqn
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -290,7 +261,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr "Acuerdo de licencia de software para la extensión"
-#. T!U?
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -300,7 +270,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. D\Lp
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -309,7 +278,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr "Acuerdo de licencia de software para la extensión"
-#. r:LX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -324,7 +292,6 @@ msgstr ""
"Pulse «Aceptar» para proceder con la instalación.\n"
"Pulse «Cancelar» para cancelar la instalación."
-#. .AYw
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -339,7 +306,6 @@ msgstr ""
"Pulse «Aceptar» para eliminar la extensión.\n"
"Pulse «Cancelar» para detener la eliminación."
-#. D_!C
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -354,7 +320,6 @@ msgstr ""
"Pulse «Aceptar» para eliminar la extensión.\n"
"Pulse «Cancelar» para detener la eliminación."
-#. BUHX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -369,7 +334,6 @@ msgstr ""
"Pulse «Aceptar» para activar la extensión.\n"
"Pulse «Cancelar» para detener la activación."
-#. ,`QG
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -384,7 +348,6 @@ msgstr ""
"Pulse «Aceptar» para desactivar la extensión.\n"
"Pulse «Cancelar» para detener la desactivación."
-#. %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 "La extensión «%Name» no funciona en este equipo."
-#. `a+p
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -403,7 +365,6 @@ msgctxt ""
msgid "Checking..."
msgstr "Buscando..."
-#. hka,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -413,7 +374,6 @@ msgctxt ""
msgid "~Available extension updates"
msgstr "~Actualizaciones de extensiones disponibles"
-#. vUpW
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -423,7 +383,6 @@ msgctxt ""
msgid "~Show all updates"
msgstr "~Mostrar todas las actualizaciones"
-#. _4Io
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -433,7 +392,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. [wV,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -443,7 +401,6 @@ msgctxt ""
msgid "Publisher:"
msgstr "Editor:"
-#. 6iXl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -453,7 +410,6 @@ msgctxt ""
msgid "What is new:"
msgstr "Qué hay de nuevo:"
-#. KrCa
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -463,7 +419,6 @@ msgctxt ""
msgid "Release Notes"
msgstr "Notas de publicación"
-#. _e-8
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -473,7 +428,6 @@ msgctxt ""
msgid "~Install"
msgstr "~Instalar"
-#. EFhl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -483,7 +437,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. qn?R
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -493,7 +446,6 @@ msgctxt ""
msgid "Error"
msgstr "Error"
-#. OU;g
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -503,7 +455,6 @@ msgctxt ""
msgid "No new updates are available."
msgstr "No hay actualizaciones nuevas disponibles."
-#. 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 "No hay actualizaciones nuevas disponibles que se puedan instalar. Para ver las actualizaciones que se han ignorado o desactivado, marque la casilla «Mostrar todas las actualizaciones»."
-#. Qw.N
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -523,7 +473,6 @@ msgctxt ""
msgid "An error occurred:"
msgstr "Ocurrió un error:"
-#. )des
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -533,7 +482,6 @@ msgctxt ""
msgid "Unknown error."
msgstr "Error desconocido."
-#. ,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 "No hay más detalles disponibles para esta actualización."
-#. Bxze
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -553,7 +500,6 @@ msgctxt ""
msgid "The extension cannot be updated because:"
msgstr "La extensión no se puede instalar debido a:"
-#. 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 "La versión requerida de %PRODUCTNAME no es la indicada:"
-#. HBWQ
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -573,7 +518,6 @@ msgctxt ""
msgid "You have %PRODUCTNAME %VERSION"
msgstr "Tiene instalado %PRODUCTNAME %VERSION"
-#. 0NEU
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -583,7 +527,6 @@ msgctxt ""
msgid "browser based update"
msgstr "actualización desde en el navegador"
-#. I_7{
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -593,7 +536,6 @@ msgctxt ""
msgid "Version"
msgstr "Versión"
-#. uR^i
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -603,7 +545,6 @@ msgctxt ""
msgid "Ignore this Update"
msgstr "Ignorar esta actualización"
-#. -GBE
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -613,7 +554,6 @@ msgctxt ""
msgid "Ignore all Updates"
msgstr "Ignorar todas las actualizaciones"
-#. PR1b
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -623,7 +563,6 @@ msgctxt ""
msgid "Enable Updates"
msgstr "Activar las actualizaciones"
-#. 7Lu#
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -633,7 +572,6 @@ msgctxt ""
msgid "This update will be ignored.\n"
msgstr "Se ignorará esta actualización.\n"
-#. vPxV
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -642,7 +580,6 @@ msgctxt ""
msgid "Extension Update"
msgstr "Actualización de extensión"
-#. O;8G
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -657,7 +594,6 @@ msgstr ""
"Clic \\'Aceptar\\' para actualizar las extensiones.\n"
"Clic \\'Cancelar\\' para detener la actualización de las extensiones."
-#. v0Pp
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -671,7 +607,6 @@ msgstr ""
"La extensión no se puede instalar porque las siguientes\n"
"dependencias del sistema no se cumplen:"
-#. gH@N
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -680,7 +615,6 @@ msgctxt ""
msgid "System dependencies check"
msgstr "Comprobación de dependencias del sistema"
-#. S/I0
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -690,7 +624,6 @@ msgctxt ""
msgid "Downloading extensions..."
msgstr "Descargando extensiones..."
-#. N(AN
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -700,7 +633,6 @@ msgctxt ""
msgid "Result"
msgstr "Resultado"
-#. mNYs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -710,7 +642,6 @@ msgctxt ""
msgid "OK"
msgstr "Aceptar"
-#. (iRd
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -720,7 +651,6 @@ msgctxt ""
msgid "Cancel Update"
msgstr "Cancelar actualización"
-#. ac=/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -730,7 +660,6 @@ msgctxt ""
msgid "Installing extensions..."
msgstr "Instalando extensiones..."
-#. EtdK
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -740,7 +669,6 @@ msgctxt ""
msgid "Installation finished"
msgstr "Instalación finalizada"
-#. Y.qI
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -750,7 +678,6 @@ msgctxt ""
msgid "No errors."
msgstr "No hay errores."
-#. DsXR
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -760,7 +687,6 @@ msgctxt ""
msgid "Error while downloading extension %NAME. "
msgstr "Error al descargar la extensión %NAME. "
-#. s.gj
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -770,7 +696,6 @@ msgctxt ""
msgid "The error message is: "
msgstr "El mensaje de error es: "
-#. [\]=
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -780,7 +705,6 @@ msgctxt ""
msgid "Error while installing extension %NAME. "
msgstr "Error al instalar la extensión %NAME. "
-#. .{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 "Se ha rechazado el acuerdo de licencia de la extensión %NAME. "
-#. SNOs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -800,7 +723,6 @@ msgctxt ""
msgid "The extension will not be installed."
msgstr "La extensión no se instalará."
-#. e$)a
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -809,7 +731,6 @@ msgctxt ""
msgid "Download and Installation"
msgstr "Descarga e instalación"
-#. HBhD
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -826,7 +747,6 @@ msgstr ""
"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
"Pulse «Cancelar» para detener la instalación."
-#. r9;l
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -843,7 +763,6 @@ msgstr ""
"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
"Pulse «Cancelar» para detener la instalación."
-#. :)M6
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -860,7 +779,6 @@ msgstr ""
"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
"Pulse «Cancelar» para detener la instalación."
-#. 5+YJ
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -877,7 +795,6 @@ msgstr ""
"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
"Pulse «Cancelar» para detener la instalación."
-#. hr,;
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -894,7 +811,6 @@ msgstr ""
"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
"Pulse «Cancelar» para detener la instalación."
-#. BQ2$
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -911,7 +827,6 @@ msgstr ""
"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
"Pulse «Cancelar» para detener la instalación."
-#. 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 "%PRODUCTNAME se ha actualizado a una nueva versión. Algunas extensiones de %PRODUCTNAME instaladas no son compatibles con esta nueva versión y necesitan actualizarse antes de poder utilizarse."
-#. `PVo
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -931,7 +845,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr "Añadiendo %EXTENSION_NAME"
-#. 3rgH
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -941,7 +854,6 @@ msgctxt ""
msgid "Check for ~Updates..."
msgstr "~Buscar actualizaciones..."
-#. }LZ[
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -951,7 +863,6 @@ msgctxt ""
msgid "Disable all"
msgstr "Desactivar todo"
-#. p:Gn
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -960,7 +871,6 @@ msgctxt ""
msgid "Extension Update Required"
msgstr "Se necesita actualizar una extensión"
-#. *iQV
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
diff --git a/source/es/desktop/source/deployment/manager.po b/source/es/desktop/source/deployment/manager.po
index 375fd9b6cce..cd18f810f6f 100644
--- a/source/es/desktop/source/deployment/manager.po
+++ b/source/es/desktop/source/deployment/manager.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Copia: "
-#. L/\_
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Error while adding: "
msgstr "Error al añadir: "
-#. kAc8
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Error while removing: "
msgstr "Error al eliminar: "
-#. -+ai
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Extension has already been added: "
msgstr "La extensión ya se ha añadido: "
-#. UZM;
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "There is no such extension deployed: "
msgstr "No existe esta extensión utilizada: "
-#. W\gZ
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
diff --git a/source/es/desktop/source/deployment/misc.po b/source/es/desktop/source/deployment/misc.po
index 21a2828fd1e..e3cba9c37e2 100644
--- a/source/es/desktop/source/deployment/misc.po
+++ b/source/es/desktop/source/deployment/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-14 01:28+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. e]=d
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Unknown"
msgstr "Desconocido"
-#. 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 "La extension hace referencia a la la ultima version de 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 "La extensión no soporta la referencia a la versión %VERSION o mayor de OpenOffice.org"
-#. qt\U
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
diff --git a/source/es/desktop/source/deployment/registry.po b/source/es/desktop/source/deployment/registry.po
index 8cdf710e581..50cbdfe72ba 100644
--- a/source/es/desktop/source/deployment/registry.po
+++ b/source/es/desktop/source/deployment/registry.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Habilitando: "
-#. G/D(
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Disabling: "
msgstr "Inhabilitando: "
-#. %Y)g
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Cannot detect media-type: "
msgstr "No se puede detectar el tipo de medio: "
-#. VeLI
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "This media-type is not supported: "
msgstr "El tipo de medio no es compatible: "
-#. AMk0
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "An error occurred while enabling: "
msgstr "Se ha producido un error al habilitar: "
-#. bDCE
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
diff --git a/source/es/desktop/source/deployment/registry/component.po b/source/es/desktop/source/deployment/registry/component.po
index 1c53c77ce38..73624ba3b44 100644
--- a/source/es/desktop/source/deployment/registry/component.po
+++ b/source/es/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-13 01:05+0200\n"
"Last-Translator: sbosio <santiago.bosio@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 Dynamic Library Component"
-#. 3QYD
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "UNO Java Component"
msgstr "UNO Java Component"
-#. 2xq{
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "UNO Python Component"
msgstr "UNO Python Component"
-#. ;TgS
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "UNO Components"
msgstr "Componentes UNO"
-#. 8KR6
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "UNO RDB Type Library"
msgstr "UNO RDB Type Library"
-#. rD`-
#: dp_component.src
msgctxt ""
"dp_component.src\n"
diff --git a/source/es/desktop/source/deployment/registry/configuration.po b/source/es/desktop/source/deployment/registry/configuration.po
index 1b4a85cf7fc..983bc5d63ef 100644
--- a/source/es/desktop/source/deployment/registry/configuration.po
+++ b/source/es/desktop/source/deployment/registry/configuration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Esquema de configuración"
-#. A5Gt
#: dp_configuration.src
msgctxt ""
"dp_configuration.src\n"
diff --git a/source/es/desktop/source/deployment/registry/help.po b/source/es/desktop/source/deployment/registry/help.po
index 05eedcbd5c7..a977891d12f 100644
--- a/source/es/desktop/source/deployment/registry/help.po
+++ b/source/es/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: 2012-05-14 02:00+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Ayuda"
-#. .hUu
#: dp_help.src
msgctxt ""
"dp_help.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "The extension cannot be installed because:\n"
msgstr "La extensión no puede instalarse porque:\n"
-#. 4P[r
#: dp_help.src
msgctxt ""
"dp_help.src\n"
diff --git a/source/es/desktop/source/deployment/registry/package.po b/source/es/desktop/source/deployment/registry/package.po
index f5154903b5d..9a36dfbf271 100644
--- a/source/es/desktop/source/deployment/registry/package.po
+++ b/source/es/desktop/source/deployment/registry/package.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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/es/desktop/source/deployment/registry/script.po b/source/es/desktop/source/deployment/registry/script.po
index d3d31be552d..dd0e837a1d1 100644
--- a/source/es/desktop/source/deployment/registry/script.po
+++ b/source/es/desktop/source/deployment/registry/script.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Biblioteca básica de %PRODUCTNAME"
-#. IAA3
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Dialog Library"
msgstr "Biblioteca de diálogo"
-#. C(Vl
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "The library name could not be determined."
msgstr "No se ha podido determinar el nombre de la biblioteca."
-#. G**:
#: dp_script.src
msgctxt ""
"dp_script.src\n"
diff --git a/source/es/desktop/source/deployment/registry/sfwk.po b/source/es/desktop/source/deployment/registry/sfwk.po
index f731bb962fd..784c6939650 100644
--- a/source/es/desktop/source/deployment/registry/sfwk.po
+++ b/source/es/desktop/source/deployment/registry/sfwk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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/es/desktop/source/deployment/unopkg.po b/source/es/desktop/source/deployment/unopkg.po
index e358922c944..2b817bba77a 100644
--- a/source/es/desktop/source/deployment/unopkg.po
+++ b/source/es/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: 2012-08-14 06:11+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Acuerdo de licencia de la extensión de software $NAME:"
-#. 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 "Lea todo el contrato de licencia que se muestra arriba. Acepte el contrato de licencia escribiendo \"sí\" en la consola y pulsado la tecla Intro. Escriba \"no\" para rechazarlo y cancelar la instalación de la extensión."
-#. 805f
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[Escribir \"sí\" o \"no\"]:"
-#. B9~w
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr "La entrada es incorrecta. Escriba \"sí\" o \"no\":"
-#. %T)~
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "YES"
msgstr "SÍ"
-#. XAaL
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Y"
msgstr "S"
-#. [qZ4
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "NO"
msgstr "NO"
-#. !,ds
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "N"
msgstr "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 "No se puede iniciar unopkg. El archivo de bloqueo indica que ya se está ejecutando. Si esto no es así, elimine el archivo de bloqueo ubicado en:"
-#. WrUl
#: unopkg.src
msgctxt ""
"unopkg.src\n"
diff --git a/source/es/desktop/uiconfig/ui.po b/source/es/desktop/uiconfig/ui.po
index e1927c9556f..23a30156e52 100644
--- a/source/es/desktop/uiconfig/ui.po
+++ b/source/es/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-21 13:17+0000\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: none\n"
"Language: es\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: 1353503863.0\n"
-#. :oeY
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"ExtensionManagerDialog\n"
"title\n"
"string.text"
msgid "Extension Manager"
-msgstr "Gestor de extensiones"
+msgstr ""
-#. )+V:
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"add\n"
"label\n"
"string.text"
msgid "Add..."
-msgstr "Agregar..."
+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 "B~uscar actualizaciones..."
+msgstr ""
-#. ;U^(
-#: ExtensionManager.ui
-#, fuzzy
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"shared\n"
"label\n"
"string.text"
msgid "Shared"
-msgstr "~Compartido"
+msgstr ""
-#. .O_p
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"user\n"
"label\n"
"string.text"
msgid "User"
-msgstr "Usuario"
+msgstr ""
-#. o[/Q
-#: ExtensionManager.ui
-#, fuzzy
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"bundled\n"
"label\n"
"string.text"
msgid "Installation"
-msgstr "~Instalación"
+msgstr ""
-#. OkPj
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Type of Extension"
-msgstr "Tipo de extensión"
+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 "Añadiendo %EXTENSION_NAME"
+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 "Obtener más extensiones en línea..."
+msgstr ""
diff --git a/source/es/dictionaries/af_ZA.po b/source/es/dictionaries/af_ZA.po
index af728f9cac4..bc2eaa53ccd 100644
--- a/source/es/dictionaries/af_ZA.po
+++ b/source/es/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: 2012-06-18 20:32+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/an_ES.po b/source/es/dictionaries/an_ES.po
index d4aaf72ddd3..cbe5b98d744 100644
--- a/source/es/dictionaries/an_ES.po
+++ b/source/es/dictionaries/an_ES.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-03-05 12:54+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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/es/dictionaries/ar.po b/source/es/dictionaries/ar.po
index 990e235d149..865860b0ea9 100644
--- a/source/es/dictionaries/ar.po
+++ b/source/es/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: 2012-03-05 12:54+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/be_BY.po b/source/es/dictionaries/be_BY.po
index 030b84f7dfd..b6f210758ab 100644
--- a/source/es/dictionaries/be_BY.po
+++ b/source/es/dictionaries/be_BY.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-03-05 12:54+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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/es/dictionaries/bg_BG.po b/source/es/dictionaries/bg_BG.po
index f5c7196ea8d..f73a9973c1a 100644
--- a/source/es/dictionaries/bg_BG.po
+++ b/source/es/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: 2012-03-05 12:56+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/bn_BD.po b/source/es/dictionaries/bn_BD.po
index b80b75622fc..256ae78741a 100644
--- a/source/es/dictionaries/bn_BD.po
+++ b/source/es/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: 2012-03-05 12:56+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/br_FR.po b/source/es/dictionaries/br_FR.po
index 68871071b81..fd34a07a966 100644
--- a/source/es/dictionaries/br_FR.po
+++ b/source/es/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: 2012-03-05 12:56+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/ca.po b/source/es/dictionaries/ca.po
index 942de1916cb..ef69dbfb384 100644
--- a/source/es/dictionaries/ca.po
+++ b/source/es/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: 2012-03-05 12:57+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/cs_CZ.po b/source/es/dictionaries/cs_CZ.po
index 3b8767bf938..9ea57e957a0 100644
--- a/source/es/dictionaries/cs_CZ.po
+++ b/source/es/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: 2012-03-05 12:57+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/da_DK.po b/source/es/dictionaries/da_DK.po
index 254ae2be986..800dac60b21 100644
--- a/source/es/dictionaries/da_DK.po
+++ b/source/es/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: 2012-03-05 12:57+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/de.po b/source/es/dictionaries/de.po
index 640dbc80c38..7c5ade343b5 100644
--- a/source/es/dictionaries/de.po
+++ b/source/es/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-18 20:31+0200\n"
"Last-Translator: Adolfo <fitoschido@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/es/dictionaries/el_GR.po b/source/es/dictionaries/el_GR.po
index 65b050a6a5f..976e9bf80cb 100644
--- a/source/es/dictionaries/el_GR.po
+++ b/source/es/dictionaries/el_GR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-03-05 12:59+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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/es/dictionaries/en.po b/source/es/dictionaries/en.po
index 48a48db490b..92965e0190e 100644
--- a/source/es/dictionaries/en.po
+++ b/source/es/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: 2012-03-05 13:00+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: none\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/es/dictionaries/en/dialog.po b/source/es/dictionaries/en/dialog.po
index 8af57786e50..2c6cdf3a456 100644
--- a/source/es/dictionaries/en/dialog.po
+++ b/source/es/dictionaries/en/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-07-10 23:59+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 "Comprobación gramatical"
-#. Q@$;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Check more grammar errors."
msgstr "Comprobar más errores gramaticales."
-#. HoPw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr "Errores posibles"
-#. 3rmv
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Check missing capitalization of sentences."
msgstr "Comprobar la falta de capitalización en las frases."
-#. Z3Ni
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Capitalization"
msgstr "Capitalización"
-#. 9l$4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Check repeated words."
msgstr "Buscar palabras repetidas."
-#. M[VX
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Palabras duplicadas"
-#. 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 "Buscar paréntesis y comillas faltantes o duplicados."
-#. 0[^A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Parentheses"
msgstr "Paréntesis"
-#. PpHs
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Punctuation"
msgstr "Puntuación"
-#. ]@g;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Check single spaces between words."
msgstr "Comprobar espacios simples entre palabras."
-#. sq8g
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Word spacing"
msgstr "Espaciado entre palabras"
-#. #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 "Forzar raya sin espacios en lugar de semirraya con espacios."
-#. /0jw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Em dash"
msgstr "Raya"
-#. ]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 "Forzar semirraya con espacios en lugar de raya sin espacios."
-#. (`[R
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "En dash"
msgstr "Semirraya"
-#. H5p]
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Check double quotation marks: \"x\" → “x”"
msgstr "Comprobar comillas dobles: \"x\" → “x”"
-#. ?I09
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr "Comillas"
-#. 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 "Comprobar signos de multiplicación: 5x5 → 5×5"
-#. iHJD
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Multiplication sign"
msgstr "Signo de multiplicación"
-#. ck+~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Check single spaces between sentences."
msgstr "Comprobar espacios sencillos entre cada oración."
-#. 096i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Sentence spacing"
msgstr "Espaciado de oraciones"
-#. 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 "Comprobar más de dos espacios adicionales entre palabras y frases."
-#. HW6K
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "More spaces"
msgstr "Más espacios"
-#. _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 "Cambiar guiones por signos reales de resta."
-#. 6wpz
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Minus sign"
msgstr "Signo de resta"
-#. [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 "Cambiar apóstrofe de máquina de escribir, comillas sencillas y primas dobles."
-#. WGfe
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr "Apóstrofe"
-#. #i/A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Change three dots with ellipsis."
msgstr "Cambiar tres puntos por puntos suspensivos."
-#. x8=~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr "Puntos suspensivos"
-#. BXZ|
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Others"
msgstr "Otros"
-#. 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 "Conversión de medidas desde °F, mph, ft, in, lb, gal y millas."
-#. 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 "Convertir a métricas (°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 "Común (1000000 → 1,000,000) o 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 "Separación de millares en números grandes"
-#. %]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 "Conversión de medidas desde °C; km/h; cm, m, km; kg; l."
-#. h%;X
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
diff --git a/source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index b40ee5c3aa1..319a0149787 100644
--- a/source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/es/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: 2012-10-08 09:38+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Diccionarios"
-#. _5nX
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/es/dictionaries/es.po b/source/es/dictionaries/es.po
index e4abd2dda14..c4045870e3f 100644
--- a/source/es/dictionaries/es.po
+++ b/source/es/dictionaries/es.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-21 13:22+0000\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,13 +14,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353504140.0\n"
-#. }r*O
#: description.xml
-#, fuzzy
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionario ortográfico, de sinónimos y reglas de separación silábica para el ruso"
+msgstr "Diccionario ortográfico, de sinónimos y reglas de separación silábica para el español"
diff --git a/source/es/dictionaries/et_EE.po b/source/es/dictionaries/et_EE.po
index 27af0c5c361..59622cf7ad7 100644
--- a/source/es/dictionaries/et_EE.po
+++ b/source/es/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: 2012-04-17 16:05+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/fr_FR.po b/source/es/dictionaries/fr_FR.po
index 3cf65cc6d90..1f5b433ee6f 100644
--- a/source/es/dictionaries/fr_FR.po
+++ b/source/es/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: 2012-04-17 16:54+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/gd_GB.po b/source/es/dictionaries/gd_GB.po
index 21091adc336..4daed242584 100644
--- a/source/es/dictionaries/gd_GB.po
+++ b/source/es/dictionaries/gd_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-04-17 16:54+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
"Language-Team: LANGUAGE <LL@li.org>\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/es/dictionaries/gl.po b/source/es/dictionaries/gl.po
index 5283d4a4aa6..0db59d81bff 100644
--- a/source/es/dictionaries/gl.po
+++ b/source/es/dictionaries/gl.po
@@ -3,9 +3,9 @@ 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"
-"PO-Revision-Date: 2012-04-17 16:55+0200\n"
-"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:22+0000\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,13 +14,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353504150.0\n"
-#. Um]a
#: description.xml
-#, fuzzy
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
msgid "Galician spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionario ortográfico, de sinónimos y reglas de separación silábica para el ruso"
+msgstr "Diccionario ortográfico, de sinónimos y reglas de separación silábica para el gallego"
diff --git a/source/es/dictionaries/gu_IN.po b/source/es/dictionaries/gu_IN.po
index 6f2742b3f55..999965cd673 100644
--- a/source/es/dictionaries/gu_IN.po
+++ b/source/es/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: 2012-04-17 16:55+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/he_IL.po b/source/es/dictionaries/he_IL.po
index e31583c8eaa..92a517efa83 100644
--- a/source/es/dictionaries/he_IL.po
+++ b/source/es/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: 2012-04-17 16:56+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/hi_IN.po b/source/es/dictionaries/hi_IN.po
index 84f09ee4ece..345e2882d21 100644
--- a/source/es/dictionaries/hi_IN.po
+++ b/source/es/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: 2012-04-17 16:56+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/hr_HR.po b/source/es/dictionaries/hr_HR.po
index 799ca0b0a42..c9f4a350d44 100644
--- a/source/es/dictionaries/hr_HR.po
+++ b/source/es/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: 2012-04-17 16:57+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/hu_HU.po b/source/es/dictionaries/hu_HU.po
index ad9780d5123..8be943c6470 100644
--- a/source/es/dictionaries/hu_HU.po
+++ b/source/es/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: 2012-04-17 16:58+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
"Language-Team: none\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/es/dictionaries/hu_HU/dialog.po b/source/es/dictionaries/hu_HU/dialog.po
index 1aa6814c6ac..c1d175bcc0e 100644
--- a/source/es/dictionaries/hu_HU/dialog.po
+++ b/source/es/dictionaries/hu_HU/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-10-08 10:32+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.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 "Ortografía"
-#. tD_{
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Capitalization"
msgstr "Capitalización"
-#. 9QT2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Parentheses"
msgstr "Paréntesis"
-#. WnVo
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Word parts of compounds"
msgstr "Partes de palabras compuestas"
-#. +*+#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Comma usage"
msgstr "Uso de comas"
-#. PErZ
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Proofreading"
msgstr "Revisión"
-#. T.I:
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Style checking"
msgstr "Corrección de estilo"
-#. 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 "Subrayar palabras compuestas que parezcan errores"
-#. 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 "Subrayar todas las palabras compuestas generadas"
-#. 6+J\
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr "Errores posibles"
-#. 53F}
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Consistency of money amounts"
msgstr "Consistencia de cantidades de dinero"
-#. X~\N
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Duplicación de palabras"
-#. #NB5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Duplicación de palabras"
-#. .b*#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Duplication within clauses"
msgstr "Duplicación con cláusulas"
-#. 3z2o
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Duplication within sentences"
msgstr "Duplicación dentro de las frases"
-#. =^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 "Permitir comprobaciones previas con afijos"
-#. `xRF
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Thousand separation of numbers"
msgstr "Separación de millares en números"
-#. kZht
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Typography"
msgstr "Tipografía"
-#. YD{P
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr "Comillas"
-#. 7x;$
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr "Apóstrofe"
-#. !.--
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "En dash"
msgstr "Semirraya"
-#. J;9p
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr "Puntos suspensivos"
-#. sEY|
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Ligature suggestion"
msgstr "Sugerencia de ligadura"
-#. VEY2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "Underline ligatures"
msgstr "Subrayar ligaduras"
-#. V%oS
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Fractions"
msgstr "Fracciones"
-#. .WP!
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Thin space"
msgstr "Espacio fino"
-#. ^7+^
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "Double spaces"
msgstr "Espacios dobles"
-#. Au8_
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "More spaces"
msgstr "Más espacios"
-#. $g\3
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Indices"
msgstr "Índices"
-#. Rhh5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Minus"
msgstr "Menos"
-#. (bpf
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Measurements"
msgstr "Mediciones"
-#. 8dyI
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
diff --git a/source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index ca3347fb2d0..f41eeabdd0d 100644
--- a/source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/es/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: 2012-10-08 09:38+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Diccionarios"
-#. (=QA
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/es/dictionaries/it_IT.po b/source/es/dictionaries/it_IT.po
index bb77feba67e..9e1451c2a1a 100644
--- a/source/es/dictionaries/it_IT.po
+++ b/source/es/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: 2012-04-17 17:01+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/ku_TR.po b/source/es/dictionaries/ku_TR.po
index c216b4b21f9..f8a61868072 100644
--- a/source/es/dictionaries/ku_TR.po
+++ b/source/es/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: 2012-04-17 16:18+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/lt_LT.po b/source/es/dictionaries/lt_LT.po
index b1170411a7f..ee423fde1d1 100644
--- a/source/es/dictionaries/lt_LT.po
+++ b/source/es/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: 2012-04-17 16:19+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/lv_LV.po b/source/es/dictionaries/lv_LV.po
index 8f107bfecad..76d2087684d 100644
--- a/source/es/dictionaries/lv_LV.po
+++ b/source/es/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: 2012-04-17 16:19+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/ne_NP.po b/source/es/dictionaries/ne_NP.po
index b50e5273077..d19440dbe57 100644
--- a/source/es/dictionaries/ne_NP.po
+++ b/source/es/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: 2012-04-17 16:27+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/nl_NL.po b/source/es/dictionaries/nl_NL.po
index 726cfb79fe0..59737675483 100644
--- a/source/es/dictionaries/nl_NL.po
+++ b/source/es/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: 2012-04-17 16:21+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/no.po b/source/es/dictionaries/no.po
index 5665e6ba97c..0f4e1d70b98 100644
--- a/source/es/dictionaries/no.po
+++ b/source/es/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: 2012-04-17 16:22+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/oc_FR.po b/source/es/dictionaries/oc_FR.po
index 24eb347948f..9c724e0cce3 100644
--- a/source/es/dictionaries/oc_FR.po
+++ b/source/es/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: 2012-04-17 16:22+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/pl_PL.po b/source/es/dictionaries/pl_PL.po
index 5d47ff30182..d86c7fc5b76 100644
--- a/source/es/dictionaries/pl_PL.po
+++ b/source/es/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: 2012-04-17 16:26+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/pt_BR.po b/source/es/dictionaries/pt_BR.po
index 4dd2ec50150..b266307a656 100644
--- a/source/es/dictionaries/pt_BR.po
+++ b/source/es/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: 2012-10-08 10:19+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Diccionario ortográfico portugués de Brasil (Acuerdo de Ortografía 1990), y las reglas de separación silábica"
+msgid "Spelling, hyphenation and grammar checking tools for Brazilian Portuguese"
+msgstr ""
diff --git a/source/es/dictionaries/pt_BR/dialog.po b/source/es/dictionaries/pt_BR/dialog.po
new file mode 100644
index 00000000000..11ce08abd68
--- /dev/null
+++ b/source/es/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: es\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/es/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/es/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
new file mode 100644
index 00000000000..5dc45fe5116
--- /dev/null
+++ b/source/es/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: es\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/es/dictionaries/pt_PT.po b/source/es/dictionaries/pt_PT.po
index 8639e276d3d..a8821b2366b 100644
--- a/source/es/dictionaries/pt_PT.po
+++ b/source/es/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: 2012-04-17 16:26+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/ro.po b/source/es/dictionaries/ro.po
index f79d99ff8e0..633944617a7 100644
--- a/source/es/dictionaries/ro.po
+++ b/source/es/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: 2012-04-17 16:25+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\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/es/dictionaries/ru_RU.po b/source/es/dictionaries/ru_RU.po
index 5d94309bea9..be00d2c5100 100644
--- a/source/es/dictionaries/ru_RU.po
+++ b/source/es/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-04-17 16:28+0200\n"
"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
"Language-Team: none\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/es/dictionaries/ru_RU/dialog.po b/source/es/dictionaries/ru_RU/dialog.po
index 87753622400..c450bd00113 100644
--- a/source/es/dictionaries/ru_RU/dialog.po
+++ b/source/es/dictionaries/ru_RU/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-05-08 14:23+0200\n"
"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 "Abreviatura"
-#. y{T{
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Grammar"
msgstr "Gramática"
-#. 7CWi
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Compound words with hyphen"
msgstr "Palabras compuestas con guión"
-#. [nFL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Comma usage"
msgstr "Uso de comas"
-#. .ahk
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "General error"
msgstr "Error general"
-#. 2ZRv
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Multiword expressions"
msgstr "Expresiones multipalabra"
-#. 0gNL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Together/separately"
msgstr "Junto/separado"
-#. Jm1Q
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Proofreading"
msgstr "Corrección de pruebas"
-#. u^sY
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Space mistake"
msgstr "Error de espaciado"
-#. *e_$
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Typographica"
msgstr "Tipográfica"
-#. 0^;9
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Word duplication"
msgstr "Duplicación de palabras"
-#. {_8V
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Others"
msgstr "Otros"
-#. )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 "Separación de números grandes (ISO)"
-#. 1D6y
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
diff --git a/source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index dcbba0a232d..5b2fcb5e638 100644
--- a/source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/es/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: 2012-10-08 09:38+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Diccionarios"
-#. \hWw
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/es/dictionaries/si_LK.po b/source/es/dictionaries/si_LK.po
index a3a0f46de4b..18d492eff85 100644
--- a/source/es/dictionaries/si_LK.po
+++ b/source/es/dictionaries/si_LK.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-04-17 21:33+0200\n"
"Last-Translator: javicatala <javicatala@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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/es/dictionaries/sk_SK.po b/source/es/dictionaries/sk_SK.po
index 779cd180f0e..0d3299870e4 100644
--- a/source/es/dictionaries/sk_SK.po
+++ b/source/es/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: 2012-04-17 21:32+0200\n"
"Last-Translator: javicatala <javicatala@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/es/dictionaries/sl_SI.po b/source/es/dictionaries/sl_SI.po
index 514aaea9b87..e6bb32ce58e 100644
--- a/source/es/dictionaries/sl_SI.po
+++ b/source/es/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: 2012-04-17 21:32+0200\n"
"Last-Translator: javicatala <javicatala@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/es/dictionaries/sr.po b/source/es/dictionaries/sr.po
index 8609e5c61f2..5048f42ceb0 100644
--- a/source/es/dictionaries/sr.po
+++ b/source/es/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: 2012-04-17 21:31+0200\n"
"Last-Translator: javicatala <javicatala@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/es/dictionaries/sv_SE.po b/source/es/dictionaries/sv_SE.po
index 5bedc405746..6ff68535efc 100644
--- a/source/es/dictionaries/sv_SE.po
+++ b/source/es/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: 2012-04-17 21:30+0200\n"
"Last-Translator: javicatala <javicatala@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/es/dictionaries/sw_TZ.po b/source/es/dictionaries/sw_TZ.po
index 280501e91a3..eb9118ea0af 100644
--- a/source/es/dictionaries/sw_TZ.po
+++ b/source/es/dictionaries/sw_TZ.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c6!@
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/es/dictionaries/te_IN.po b/source/es/dictionaries/te_IN.po
index 249e7c12343..00fa0d745e3 100644
--- a/source/es/dictionaries/te_IN.po
+++ b/source/es/dictionaries/te_IN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-10-08 10:32+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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/es/dictionaries/th_TH.po b/source/es/dictionaries/th_TH.po
index cac69230e20..2bb08a4d2a4 100644
--- a/source/es/dictionaries/th_TH.po
+++ b/source/es/dictionaries/th_TH.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oK5)
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/es/dictionaries/uk_UA.po b/source/es/dictionaries/uk_UA.po
index 2ff2998ec99..280588728bf 100644
--- a/source/es/dictionaries/uk_UA.po
+++ b/source/es/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: 2012-04-17 21:28+0200\n"
"Last-Translator: javicatala <javicatala@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/es/dictionaries/vi.po b/source/es/dictionaries/vi.po
index 80432da2959..76ce5fbd145 100644
--- a/source/es/dictionaries/vi.po
+++ b/source/es/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: 2012-04-17 21:23+0200\n"
"Last-Translator: javicatala <javicatala@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/es/dictionaries/zu_ZA.po b/source/es/dictionaries/zu_ZA.po
index 173bb672308..51d89a0bc1a 100644
--- a/source/es/dictionaries/zu_ZA.po
+++ b/source/es/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: 2012-04-17 21:27+0200\n"
"Last-Translator: javicatala <javicatala@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/es/editeng/source/accessibility.po b/source/es/editeng/source/accessibility.po
index d4019e5edcd..bf107e00353 100644
--- a/source/es/editeng/source/accessibility.po
+++ b/source/es/editeng/source/accessibility.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Viñeta de imagen en el párrafo"
-#. 8|X!
#: accessibility.src
msgctxt ""
"accessibility.src\n"
diff --git a/source/es/editeng/source/editeng.po b/source/es/editeng/source/editeng.po
index f3cd27c546a..6b7a1b9348d 100644
--- a/source/es/editeng/source/editeng.po
+++ b/source/es/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-07-13 08:42+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Eliminar"
-#. I3}j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Move"
msgstr "Mover"
-#. I?T;
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Insert"
msgstr "Insertar"
-#. eGK$
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Replace"
msgstr "Reemplazar"
-#. 4/p.
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr "Aplicar los atributos"
-#. uWM0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Reset attributes"
msgstr "Restablecer los atributos"
-#. :oTC
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Indent"
msgstr "Sangría"
-#. B%=0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr "Aplicar los estilos"
-#. H~}+
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "~Change Case"
msgstr "Cambiar capitali~zación"
-#. x`g8
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -106,7 +96,6 @@ msgctxt ""
msgid "~Spellcheck..."
msgstr "~Corrección ortográfica..."
-#. k]@@
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. bR{%
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -126,7 +114,6 @@ msgctxt ""
msgid "~Add"
msgstr "~Añadir"
-#. W}8j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -136,7 +123,6 @@ msgctxt ""
msgid "Ignore All"
msgstr "Ignorar todos"
-#. Z}FQ
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "Autocorrección"
-#. 6huV
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -155,7 +140,6 @@ msgctxt ""
msgid "Word is %x"
msgstr "La palabra es %x"
-#. NpM!
#: editeng.src
msgctxt ""
"editeng.src\n"
diff --git a/source/es/editeng/source/items.po b/source/es/editeng/source/items.po
index ed461561d72..e71f108c120 100644
--- a/source/es/editeng/source/items.po
+++ b/source/es/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-08-14 06:12+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Alimentador de hojas"
-#. `IKX
#: page.src
msgctxt ""
"page.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "[From printer settings]"
msgstr "[Según la configuración de la impresora]"
-#. MppO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "Verdadero"
-#. W*j@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "Falso"
-#. a`*i
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "No break"
msgstr "Sin saltos"
-#. peH?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Break before new column"
msgstr "Salto antes de una nueva columna"
-#. w_,F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Break after new column"
msgstr "Salto después de una nueva columna"
-#. 7Pc(
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Break before and after new column"
msgstr "Saltos antes y después de una nueva columna"
-#. -_lp
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Break before new page"
msgstr "Salto antes de una página nueva"
-#. u/3c
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Break after new page"
msgstr "Salto después de una página nueva"
-#. `{Y?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Break before and after new page"
msgstr "Salto antes y después de una página nueva"
-#. ~ObJ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "No Shadow"
msgstr "Sin sombra"
-#. RgUU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Shadow top left"
msgstr "Sombra superior izquierda"
-#. H0}V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Shadow top right"
msgstr "Sombra superior derecha"
-#. 1mbn
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Shadow bottom left"
msgstr "Sombra inferior izquierda"
-#. ipm;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Shadow bottom right"
msgstr "Sombra inferior derecha"
-#. f5u9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Color "
msgstr "Color "
-#. Gz2%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Black"
msgstr "Negro"
-#. %BRR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Blue"
msgstr "Azul"
-#. ?3E,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Green"
msgstr "Verde"
-#. F:Qc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Cyan"
msgstr "Cian"
-#. xbPR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Red"
msgstr "Rojo"
-#. X*L,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Magenta"
msgstr "Magenta"
-#. 4E^B
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "Brown"
msgstr "Marrón"
-#. T+Tb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Gray"
msgstr "Gris"
-#. [e-U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Light Gray"
msgstr "Gris claro"
-#. =tA|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "Light Blue"
msgstr "Azul claro"
-#. EO_G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "Light Green"
msgstr "Verde claro"
-#. M:z@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Light Cyan"
msgstr "Cian claro"
-#. K8J,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Light Red"
msgstr "Rojo claro"
-#. 4U[n
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Light Magenta"
msgstr "Magenta claro"
-#. @ebO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -303,7 +271,6 @@ msgctxt ""
msgid "Yellow"
msgstr "Amarillo"
-#. aboy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -312,7 +279,6 @@ msgctxt ""
msgid "White"
msgstr "Blanco"
-#. Ko*D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -321,7 +287,6 @@ msgctxt ""
msgid "Not Italic"
msgstr "Sin cursiva"
-#. o{,0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -330,7 +295,6 @@ msgctxt ""
msgid "Oblique italic"
msgstr "Cursiva oblicua"
-#. 3ju/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -339,7 +303,6 @@ msgctxt ""
msgid "Italic"
msgstr "Cursiva"
-#. !5hY
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -348,7 +311,6 @@ msgctxt ""
msgid "thin"
msgstr "fino"
-#. odl:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -357,7 +319,6 @@ msgctxt ""
msgid "ultra thin"
msgstr "ultrafino"
-#. HAPs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -366,7 +327,6 @@ msgctxt ""
msgid "light"
msgstr "delgado"
-#. li?X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -375,7 +335,6 @@ msgctxt ""
msgid "semi light"
msgstr "semidelgado"
-#. );gy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -384,7 +343,6 @@ msgctxt ""
msgid "normal"
msgstr "normal"
-#. cK$~
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -393,7 +351,6 @@ msgctxt ""
msgid "medium"
msgstr "medio"
-#. lHA+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -402,7 +359,6 @@ msgctxt ""
msgid "semi bold"
msgstr "semigrueso"
-#. 35-f
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -411,7 +367,6 @@ msgctxt ""
msgid "bold"
msgstr "grueso"
-#. Q@mS
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -420,7 +375,6 @@ msgctxt ""
msgid "ultra bold"
msgstr "ultragrueso"
-#. EdRE
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -429,7 +383,6 @@ msgctxt ""
msgid "black"
msgstr "negro"
-#. szk;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -438,7 +391,6 @@ msgctxt ""
msgid "No underline"
msgstr "Sin subrayado"
-#. N$`=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -447,7 +399,6 @@ msgctxt ""
msgid "Single underline"
msgstr "Subrayado simple"
-#. e=TH
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -456,7 +407,6 @@ msgctxt ""
msgid "Double underline"
msgstr "Subrayado doble"
-#. 9F#d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -465,7 +415,6 @@ msgctxt ""
msgid "Dotted underline"
msgstr "Subrayado con puntos"
-#. uglo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -474,7 +423,6 @@ msgctxt ""
msgid "Underline"
msgstr "Subrayado"
-#. ^o2G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -483,7 +431,6 @@ msgctxt ""
msgid "Underline (dashes)"
msgstr "Subrayado (guiones)"
-#. LtkP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -492,7 +439,6 @@ msgctxt ""
msgid "Underline (long dashes)"
msgstr "Subrayado (guiones largos)"
-#. c|Oo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -501,7 +447,6 @@ msgctxt ""
msgid "Underline (dot dash)"
msgstr "Subrayado (guiones cortos)"
-#. q:--
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -510,7 +455,6 @@ msgctxt ""
msgid "Underline (dot dot dash)"
msgstr "Subrayado (punto - punto - guión)"
-#. [5A\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -519,7 +463,6 @@ msgctxt ""
msgid "Underline (small wave)"
msgstr "Subrayado (ondas pequeñas)"
-#. JfbI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -528,7 +471,6 @@ msgctxt ""
msgid "Underline (Wave)"
msgstr "Subrayado (ondas)"
-#. HFTP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -537,7 +479,6 @@ msgctxt ""
msgid "Underline (Double wave)"
msgstr "Subrayado (ondas dobles)"
-#. jY!%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -546,7 +487,6 @@ msgctxt ""
msgid "Underlined (Bold)"
msgstr "Subrayado (grueso)"
-#. mG2U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -555,7 +495,6 @@ msgctxt ""
msgid "Dotted underline (Bold)"
msgstr "Subrayado con puntos (grueso)"
-#. ,fcU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -564,7 +503,6 @@ msgctxt ""
msgid "Underline (Dash bold)"
msgstr "Subrayado (guión grueso)"
-#. p^I/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -573,7 +511,6 @@ msgctxt ""
msgid "Underline (long dash, bold)"
msgstr "Subrayado (guión largo, grueso)"
-#. K:|d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -582,7 +519,6 @@ msgctxt ""
msgid "Underline (dot dash, bold)"
msgstr "Subrayado (punto y guión, grueso)"
-#. X}gG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -591,7 +527,6 @@ msgctxt ""
msgid "Underline (dot dot dash, bold)"
msgstr "Subrayado (punto - punto - guión, grueso)"
-#. RX8\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -600,7 +535,6 @@ msgctxt ""
msgid "Underline (wave, bold)"
msgstr "Subrayado (ondas, grueso)"
-#. FTF7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -609,7 +543,6 @@ msgctxt ""
msgid "No overline"
msgstr "Sin subrayado superior"
-#. lf:R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -618,7 +551,6 @@ msgctxt ""
msgid "Single overline"
msgstr "Subrayado superior simple"
-#. Y}-d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -627,7 +559,6 @@ msgctxt ""
msgid "Double overline"
msgstr "Subrayado superior doble"
-#. 1`6|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -636,7 +567,6 @@ msgctxt ""
msgid "Dotted overline"
msgstr "Subrayado superior con puntos"
-#. ^k=5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -645,7 +575,6 @@ msgctxt ""
msgid "Overline"
msgstr "Subrayado superior"
-#. l3!R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -654,7 +583,6 @@ msgctxt ""
msgid "Overline (dashes)"
msgstr "Subrayado superior (guiones)"
-#. rj?D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -663,7 +591,6 @@ msgctxt ""
msgid "Overline (long dashes)"
msgstr "Subrayado superior (guiones largos)"
-#. AXoK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -672,7 +599,6 @@ msgctxt ""
msgid "Overline (dot dash)"
msgstr "Subrayado superior (punto y guión)"
-#. qnHq
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -681,7 +607,6 @@ msgctxt ""
msgid "Overline (dot dot dash)"
msgstr "Subrayado superior (punto - punto -guión)"
-#. F*p|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -690,7 +615,6 @@ msgctxt ""
msgid "Overline (small wave)"
msgstr "Subrayado superior (ondas pequeñas)"
-#. 4iNC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -699,7 +623,6 @@ msgctxt ""
msgid "Overline (Wave)"
msgstr "Subrayado superior (onda)"
-#. c_R/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -708,7 +631,6 @@ msgctxt ""
msgid "Overline (Double wave)"
msgstr "Subrayado superior (ondas dobles)"
-#. q1=d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -717,7 +639,6 @@ msgctxt ""
msgid "Overlined (Bold)"
msgstr "Subrayado superior (grueso)"
-#. N*cM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -726,7 +647,6 @@ msgctxt ""
msgid "Dotted overline (Bold)"
msgstr "Subrayado superior con puntos (grueso)"
-#. (]`L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -735,7 +655,6 @@ msgctxt ""
msgid "Overline (Dash bold)"
msgstr "Subrayado superior (guión grueso)"
-#. FUNs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -744,7 +663,6 @@ msgctxt ""
msgid "Overline (long dash, bold)"
msgstr "Subrayado superior (guión largo, grueso)"
-#. ?GOU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -753,7 +671,6 @@ msgctxt ""
msgid "Overline (dot dash, bold)"
msgstr "Subrayado superior (punto y guión, grueso)"
-#. 9Al%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -762,7 +679,6 @@ msgctxt ""
msgid "Overline (dot dot dash, bold)"
msgstr "Subrayado superior (punto - punto - guión, grueso)"
-#. |.\k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -771,7 +687,6 @@ msgctxt ""
msgid "Overline (wave, bold)"
msgstr "Subrayado superior (ondas, grueso)"
-#. @w7S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -780,7 +695,6 @@ msgctxt ""
msgid "No strikethrough"
msgstr "Sin tachado"
-#. o?fU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -789,7 +703,6 @@ msgctxt ""
msgid "Single strikethrough"
msgstr "Tachado simple"
-#. =QVc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -798,7 +711,6 @@ msgctxt ""
msgid "Double strikethrough"
msgstr "Tachado doble"
-#. CAd5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -807,7 +719,6 @@ msgctxt ""
msgid "Bold strikethrough"
msgstr "Tachado grueso"
-#. zN]L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -816,7 +727,6 @@ msgctxt ""
msgid "Strike through with slash"
msgstr "Tachado con barra diagonal"
-#. *\\Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -825,7 +735,6 @@ msgctxt ""
msgid "Strike through with Xes"
msgstr "Tachado con equis"
-#. m3z=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -834,7 +743,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. %t+X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -843,7 +751,6 @@ msgctxt ""
msgid "Caps"
msgstr "Mayúsculas"
-#. obX:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -852,7 +759,6 @@ msgctxt ""
msgid "Lowercase"
msgstr "Minúsculas"
-#. 6z+n
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -861,7 +767,6 @@ msgctxt ""
msgid "Title"
msgstr "Título"
-#. L@(9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -870,7 +775,6 @@ msgctxt ""
msgid "Small caps"
msgstr "Mayúsculas pequeñas"
-#. ?]?J
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -879,7 +783,6 @@ msgctxt ""
msgid "Normal position"
msgstr "Posición normal"
-#. \G84
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -888,7 +791,6 @@ msgctxt ""
msgid "Superscript "
msgstr "Superíndice "
-#. qZ|8
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -897,7 +799,6 @@ msgctxt ""
msgid "Subscript "
msgstr "Subíndice "
-#. P~==
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -906,7 +807,6 @@ msgctxt ""
msgid "automatic"
msgstr "automático"
-#. hf\G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -915,7 +815,6 @@ msgctxt ""
msgid "Align left"
msgstr "Alinear a la izqueirda"
-#. **?b
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -924,7 +823,6 @@ msgctxt ""
msgid "Align right"
msgstr "Alinear a la derecha"
-#. iEy0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -933,7 +831,6 @@ msgctxt ""
msgid "Justify"
msgstr "Justificar"
-#. .*zC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -942,7 +839,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centrado"
-#. H\^F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -951,7 +847,6 @@ msgctxt ""
msgid "Justify"
msgstr "Justificar"
-#. abYQ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -960,7 +855,6 @@ msgctxt ""
msgid "Decimal Symbol:"
msgstr "Símbolo decimal:"
-#. _?Pd
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -969,7 +863,6 @@ msgctxt ""
msgid "Fill character:"
msgstr "Carácter de relleno:"
-#. DdJk
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -978,7 +871,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierdo"
-#. m`AD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -987,7 +879,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecho"
-#. BF!U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -996,7 +887,6 @@ msgctxt ""
msgid "Decimal"
msgstr "Decimal"
-#. Sw@L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1005,7 +895,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centrado"
-#. !ag-
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1014,7 +903,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. FCe]
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1023,7 +911,6 @@ msgctxt ""
msgid "Single, solid"
msgstr "Simple, sólida"
-#. kc`~
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1032,7 +919,6 @@ msgctxt ""
msgid "Single, dotted"
msgstr "Simple, punteada"
-#. ?|Lh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1041,7 +927,6 @@ msgctxt ""
msgid "Single, dashed"
msgstr "Simple, con guiones"
-#. G/WV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1050,7 +935,6 @@ msgctxt ""
msgid "Double"
msgstr "Doble"
-#. eyJ5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1059,7 +943,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: small"
msgstr "Doble, al interior: fina, al exterior: gruesa, espaciado: pequeño"
-#. WXz9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1068,7 +951,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: medium"
msgstr "Doble, al interior: fina, al exterior: gruesa, espaciado: mediano"
-#. CGqI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1077,7 +959,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: large"
msgstr "Doble, al interior: fina, al exterior: gruesa, espaciado: grande"
-#. 6f!m
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1086,7 +967,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: small"
msgstr "Doble, al interior: gruesa, al exterior: fina, espaciado: pequeño"
-#. R7_s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1095,7 +975,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: medium"
msgstr "Doble, al interior: gruesa, al exterior: fina, espaciado: mediano"
-#. b8Mc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1104,7 +983,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: large"
msgstr "Doble, al interior: gruesa, al exterior: fina, espaciado: grande"
-#. mTj=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1113,7 +991,6 @@ msgctxt ""
msgid "3D embossed"
msgstr "Con relieve 3D"
-#. +uB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1122,7 +999,6 @@ msgctxt ""
msgid "3D engraved"
msgstr "Con bajorrelieve en 3D"
-#. @9bK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1131,7 +1007,6 @@ msgctxt ""
msgid "Inset"
msgstr "Recuadro interior"
-#. xK@k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1140,7 +1015,6 @@ msgctxt ""
msgid "Outset"
msgstr "Recuadro exterior"
-#. `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 "pulgada"
-#. 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 "píxel"
-#. L,,X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1203,7 +1071,6 @@ msgctxt ""
msgid "Shadowed"
msgstr "Con sombra"
-#. 3H|c
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1212,7 +1079,6 @@ msgctxt ""
msgid "Not Shadowed"
msgstr "Sin sombra"
-#. Kux+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1221,7 +1087,6 @@ msgctxt ""
msgid "Blinking"
msgstr "Centelleante"
-#. j`^^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1230,7 +1095,6 @@ msgctxt ""
msgid "Not Blinking"
msgstr "Sin centellear"
-#. ![q=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1239,7 +1103,6 @@ msgctxt ""
msgid "Pair Kerning"
msgstr "Ajustar el espacio entre caracteres"
-#. TIB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1248,7 +1111,6 @@ msgctxt ""
msgid "No pair kerning"
msgstr "No ajustar el espacio entre caracteres"
-#. mgJt
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1257,7 +1119,6 @@ msgctxt ""
msgid "Individual words"
msgstr "Palabras individuales"
-#. cYB4
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1266,7 +1127,6 @@ msgctxt ""
msgid "Not Words Only"
msgstr "No sólo las palabras"
-#. F/+g
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1275,7 +1135,6 @@ msgctxt ""
msgid "Outline"
msgstr "Contorno"
-#. =AiM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1284,7 +1143,6 @@ msgctxt ""
msgid "No Outline"
msgstr "Sin contorno"
-#. Sns]
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1293,7 +1151,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. %k)M
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1302,7 +1159,6 @@ msgctxt ""
msgid "Don't print"
msgstr "No imprimir"
-#. 2(i2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1311,7 +1167,6 @@ msgctxt ""
msgid "Opaque"
msgstr "Opaco"
-#. h\3[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1320,7 +1175,6 @@ msgctxt ""
msgid "Not Opaque"
msgstr "No opaco"
-#. n[YX
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1329,7 +1183,6 @@ msgctxt ""
msgid "Keep with next paragraph"
msgstr "Mantener junto al próximo párrafo"
-#. E+PN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1338,7 +1191,6 @@ msgctxt ""
msgid "Don't Keep Paragraphs Together"
msgstr "No mantener los párrafos juntos"
-#. L^La
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1347,7 +1199,6 @@ msgctxt ""
msgid "Split paragraph"
msgstr "Separar el párrafo"
-#. =ft_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1356,7 +1207,6 @@ msgctxt ""
msgid "Don't split paragraph"
msgstr "No separar el párrafo"
-#. HUJg
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1365,7 +1215,6 @@ msgctxt ""
msgid "Contents protected"
msgstr "Proteger el contenido"
-#. S9WM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1374,7 +1223,6 @@ msgctxt ""
msgid "Contents not protected"
msgstr "No proteger el contenido"
-#. WZ:q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1383,7 +1231,6 @@ msgctxt ""
msgid "Size protected"
msgstr "Proteger el tamaño"
-#. H5Z3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1392,7 +1239,6 @@ msgctxt ""
msgid "Size not protected"
msgstr "No proteger el tamaño"
-#. ^?hm
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1401,7 +1247,6 @@ msgctxt ""
msgid "Position protected"
msgstr "Proteger la posición"
-#. [D=9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1410,7 +1255,6 @@ msgctxt ""
msgid "Position not protected"
msgstr "No proteger la posición"
-#. 1V=y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1419,7 +1263,6 @@ msgctxt ""
msgid "Transparent"
msgstr "Transparente"
-#. el]e
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1428,7 +1271,6 @@ msgctxt ""
msgid "Not Transparent"
msgstr "No transparente"
-#. 8-~R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1437,7 +1279,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Separar en sílabas"
-#. :n)[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1446,7 +1287,6 @@ msgctxt ""
msgid "No hyphenation"
msgstr "No separar en sílabas"
-#. l7o|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1455,7 +1295,6 @@ msgctxt ""
msgid "Page End"
msgstr "Fin de página"
-#. Ig0C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1464,7 +1303,6 @@ msgctxt ""
msgid "No Page End"
msgstr "Sin fin de página"
-#. V-)G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1473,7 +1311,6 @@ msgctxt ""
msgid "Width: "
msgstr "Anchura: "
-#. H3%V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1482,7 +1319,6 @@ msgctxt ""
msgid "Height: "
msgstr "Altura: "
-#. IFQW
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1491,7 +1327,6 @@ msgctxt ""
msgid "Indent left "
msgstr "Sangría izquierda "
-#. wPF\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1500,7 +1335,6 @@ msgctxt ""
msgid "First Line "
msgstr "Primera línea "
-#. }=:d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1509,7 +1343,6 @@ msgctxt ""
msgid "Indent right "
msgstr "Sangría derecha "
-#. ]t)3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1518,7 +1351,6 @@ msgctxt ""
msgid "Shadow: "
msgstr "Sombra: "
-#. )owa
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1527,7 +1359,6 @@ msgctxt ""
msgid "Borders "
msgstr "Bordes "
-#. 0/=_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1536,7 +1367,6 @@ msgctxt ""
msgid "No border"
msgstr "Sin bordes"
-#. 5Jwo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1545,7 +1375,6 @@ msgctxt ""
msgid "top "
msgstr "superior "
-#. /e]Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1554,7 +1383,6 @@ msgctxt ""
msgid "bottom "
msgstr "inferior "
-#. ;(mv
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1563,7 +1391,6 @@ msgctxt ""
msgid "left "
msgstr "izquierdo "
-#. ,lN3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1572,7 +1399,6 @@ msgctxt ""
msgid "right "
msgstr "derecho "
-#. JYEV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1581,7 +1407,6 @@ msgctxt ""
msgid "Spacing "
msgstr "Espaciado "
-#. tGk.
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1590,7 +1415,6 @@ msgctxt ""
msgid "From top "
msgstr "Desde arriba "
-#. ]4[1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1600,7 +1424,6 @@ msgid "From bottom "
msgstr "Desde abajo "
#. 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 líneas"
-#. QB%S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1618,7 +1440,6 @@ msgctxt ""
msgid "Widow control"
msgstr "Control de viudas"
-#. ;.?^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1627,7 +1448,6 @@ msgctxt ""
msgid "Orphan control"
msgstr "Control de huérfanas"
-#. -_VD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1636,7 +1456,6 @@ msgctxt ""
msgid "Characters at end of line"
msgstr "Caracteres al final de la línea"
-#. SB9k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1645,7 +1464,6 @@ msgctxt ""
msgid "Characters at beginning of line"
msgstr "Caracteres al principio de la línea"
-#. w8tr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1654,7 +1472,6 @@ msgctxt ""
msgid "Hyphens"
msgstr "Guiones"
-#. *rD3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1663,7 +1480,6 @@ msgctxt ""
msgid "Page Style: "
msgstr "Estilo de página: "
-#. O/gB
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1672,7 +1488,6 @@ msgctxt ""
msgid "Kerning "
msgstr "Espaciado entre caracteres "
-#. 5J^q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1681,7 +1496,6 @@ msgctxt ""
msgid "locked "
msgstr "bloqueado "
-#. ELkw
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1690,7 +1504,6 @@ msgctxt ""
msgid "Condensed "
msgstr "Condensado "
-#. 6FdL
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1699,7 +1512,6 @@ msgctxt ""
msgid "Graphic"
msgstr "Imagen"
-#. Is0j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1708,7 +1520,6 @@ msgctxt ""
msgid "none"
msgstr "ninguno"
-#. x]rG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1717,7 +1528,6 @@ msgctxt ""
msgid "Dots "
msgstr "Puntos "
-#. |@}S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1726,7 +1536,6 @@ msgctxt ""
msgid "Circle "
msgstr "Círculo "
-#. _Z:L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1735,7 +1544,6 @@ msgctxt ""
msgid "Filled circle "
msgstr "Círculo relleno "
-#. ^s+%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1744,7 +1552,6 @@ msgctxt ""
msgid "Accent "
msgstr "Acento "
-#. /fjz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1753,7 +1560,6 @@ msgctxt ""
msgid "Above"
msgstr "Encima"
-#. 7v=/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1762,7 +1568,6 @@ msgctxt ""
msgid "Below"
msgstr "Debajo"
-#. ,81g
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1771,7 +1576,6 @@ msgctxt ""
msgid "Double-lined off"
msgstr "Terminar doble línea"
-#. i/uh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1780,7 +1584,6 @@ msgctxt ""
msgid "Double-lined"
msgstr "Doble línea"
-#. @8IO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1789,7 +1592,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr "Sin espaciado automático de caracteres"
-#. [keR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1798,7 +1600,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr "Sin espaciado automático de caracteres"
-#. Vwk5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1807,7 +1608,6 @@ msgctxt ""
msgid "No hanging punctuation at line end"
msgstr "Sin signos de puntuación fuera del margen al final de la línea"
-#. l[0A
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1816,7 +1616,6 @@ msgctxt ""
msgid "Hanging punctuation at line end"
msgstr "Signos de puntuación fuera del margen al final de la línea"
-#. :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 "Aplicar la lista de caracteres prohibidos al principio o final de las líneas"
-#. 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 "No aplicar la lista de caracteres prohibidos al principio o final de las líneas"
-#. ?|XU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1843,7 +1640,6 @@ msgctxt ""
msgid "No rotated characters"
msgstr "Sin caracteres rotados"
-#. 4tJ;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1852,7 +1648,6 @@ msgctxt ""
msgid "Character rotated by $(ARG1)°"
msgstr "Caracteres rotados por $(ARG1)°"
-#. 8EOh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1861,7 +1656,6 @@ msgctxt ""
msgid "Fit to line"
msgstr "Encajar en la línea"
-#. Dzb7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1870,7 +1664,6 @@ msgctxt ""
msgid "Characters scaled $(ARG1)%"
msgstr "Caracteres escalados al $(ARG1)%"
-#. AbZe
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1879,7 +1672,6 @@ msgctxt ""
msgid "No scaled characters"
msgstr "Sin escalar los caracteres"
-#. 5cf5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1888,7 +1680,6 @@ msgctxt ""
msgid "No relief"
msgstr "Sin relieve"
-#. 02\+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1897,7 +1688,6 @@ msgctxt ""
msgid "Relief"
msgstr "Con relieve"
-#. /MSK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1906,7 +1696,6 @@ msgctxt ""
msgid "Engraved"
msgstr "Bajorrelieve"
-#. s-*X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1915,7 +1704,6 @@ msgctxt ""
msgid "Automatic text alignment"
msgstr "Alineación automática del texto"
-#. B1S1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1924,7 +1712,6 @@ msgctxt ""
msgid "Text aligned to base line"
msgstr "Texto alineado a la línea de base"
-#. )7Zr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1933,7 +1720,6 @@ msgctxt ""
msgid "Text aligned top"
msgstr "Texto alineado arriba"
-#. _J)X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1942,7 +1728,6 @@ msgctxt ""
msgid "Text aligned middle"
msgstr "Texto alineado al medio"
-#. x^OA
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1951,7 +1736,6 @@ msgctxt ""
msgid "Text aligned bottom"
msgstr "Texto alineado abajo"
-#. 7,nz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1960,7 +1744,6 @@ msgctxt ""
msgid "Text direction left-to-right (horizontal)"
msgstr "Dirección del texto de izquierda a derecha (horizontal)"
-#. 5)6s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1969,7 +1752,6 @@ msgctxt ""
msgid "Text direction right-to-left (horizontal)"
msgstr "Dirección del texto de derecha a izquierda (horizontal)"
-#. kof^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1978,7 +1760,6 @@ msgctxt ""
msgid "Text direction right-to-left (vertical)"
msgstr "Dirección del texto de dercha a izquierda (vertical)"
-#. ?T`o
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1987,7 +1768,6 @@ msgctxt ""
msgid "Text direction left-to-right (vertical)"
msgstr "Dirección del texto de izquierda a derecha (vertical)"
-#. JXGc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1996,7 +1776,6 @@ msgctxt ""
msgid "Use superordinate object text direction setting"
msgstr "Usar la configuración de dirección del objeto al que está subordinado"
-#. fM`2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2005,7 +1784,6 @@ msgctxt ""
msgid "Paragraph snaps to text grid (if active)"
msgstr "El párrafo se adhiere a la grilla de texto (si está activa)"
-#. #A/P
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2014,7 +1792,6 @@ msgctxt ""
msgid "Paragraph does not snap to text grid"
msgstr "El párrafo no se adhiere a la grilla de texto"
-#. UKdN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2023,7 +1800,6 @@ msgctxt ""
msgid "Not hidden"
msgstr "Sin ocultar"
-#. YeN,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2032,7 +1808,6 @@ msgctxt ""
msgid "Hidden"
msgstr "Oculto"
-#. G^l9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2041,7 +1816,6 @@ msgctxt ""
msgid "Horizontal alignment default"
msgstr "Alineación horizontal predeterminada"
-#. l`jc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2050,7 +1824,6 @@ msgctxt ""
msgid "Align left"
msgstr "Alinear a la izquierda"
-#. R}h[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2059,7 +1832,6 @@ msgctxt ""
msgid "Centered horizontally"
msgstr "Centrado horizontalmente"
-#. .{Z*
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2068,7 +1840,6 @@ msgctxt ""
msgid "Align right"
msgstr "Alinear a la derecha"
-#. 8RRN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2077,7 +1848,6 @@ msgctxt ""
msgid "Justify"
msgstr "Justificar"
-#. $V)3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2086,7 +1856,6 @@ msgctxt ""
msgid "Repeat alignment"
msgstr "Repetir la alineación"
-#. k;]C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2095,7 +1864,6 @@ msgctxt ""
msgid "Vertical alignment default"
msgstr "Alineación vertical predeterminada"
-#. gsee
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2104,7 +1872,6 @@ msgctxt ""
msgid "Align to top"
msgstr "Alinear arriba"
-#. j)er
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2113,7 +1880,6 @@ msgctxt ""
msgid "Centered vertically"
msgstr "Centrado verticalmente"
-#. !nb,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2122,7 +1888,6 @@ msgctxt ""
msgid "Align to bottom"
msgstr "Alinear abajo"
-#. r}Pq
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2131,7 +1896,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automática"
-#. i89j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
diff --git a/source/es/editeng/source/misc.po b/source/es/editeng/source/misc.po
index 62ca0a583ad..ae3cca67cb6 100644
--- a/source/es/editeng/source/misc.po
+++ b/source/es/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: 2012-07-13 11:39+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "¿Continuar comprobando desde el principio del documento?"
-#. (XiS
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Continue checking at end of document?"
msgstr "¿Continuar revisando al final del documento?"
-#. Dg\]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -46,7 +43,6 @@ msgstr ""
"No hay un tesauro disponible para el idioma seleccionado. \n"
"Por favor revise su instalación tenga el idioma deseado\n"
-#. F]n]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -57,7 +53,6 @@ msgid ""
"due to unknown reason."
msgstr "La palabra no puede ser agregada al diccionariodebido a una razón desconocida."
-#. q)8|
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -66,7 +61,6 @@ msgctxt ""
msgid "The dictionary is already full."
msgstr "El diccionario esta lleno."
-#. 4a]{
#: lingu.src
msgctxt ""
"lingu.src\n"
diff --git a/source/es/editeng/source/outliner.po b/source/es/editeng/source/outliner.po
index 38bc9554f22..4f3d057c270 100644
--- a/source/es/editeng/source/outliner.po
+++ b/source/es/editeng/source/outliner.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Mover"
-#. Wp7d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Indent"
msgstr "Sangría"
-#. 1S}L
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Show subpoints"
msgstr "Mostrar los subpuntos"
-#. 9_,d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Collapse"
msgstr "Colapsar"
-#. {RTY
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr "Aplicar los atributos"
-#. \`,S
#: outliner.src
msgctxt ""
"outliner.src\n"
diff --git a/source/es/extensions/source/abpilot.po b/source/es/extensions/source/abpilot.po
index d1014295c58..3ea77fe9a75 100644
--- a/source/es/extensions/source/abpilot.po
+++ b/source/es/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-05-08 14:25+0200\n"
"Last-Translator: Santiago <santiago.bosio@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 "Tipo de libreta de direcciones"
-#. 8JN?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "Configuración de conexión"
-#. yQ$-
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Table selection"
msgstr "Selección de tabla"
-#. ?#w,
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr "Asignación de campo"
-#. 3KqL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Data Source Title"
msgstr "Título de origen de datos"
-#. ?|S3
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Address Book Data Source Wizard"
msgstr "Asistente: Origen de datos de libreta de direcciones"
-#. mg}~
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -90,7 +83,6 @@ msgstr ""
"\n"
"Este asistente facilita la creación del origen de datos."
-#. IP/A
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -100,7 +92,6 @@ msgctxt ""
msgid "Please select the type of your external address book:"
msgstr "Seleccione el tipo de libreta de direcciones externa:"
-#. [#-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 "Todo el grupo"
-#. fe\.
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -130,7 +119,6 @@ msgctxt ""
msgid "Evolution LDAP"
msgstr "Evolución 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 "Libreta de direcciones de KDE"
-#. V7Xp
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -170,7 +155,6 @@ msgctxt ""
msgid "Mac OS X address book"
msgstr "Libreta de direcciones de Mac OS X"
-#. YD2R
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -180,7 +164,6 @@ msgctxt ""
msgid "LDAP address data"
msgstr "Datos de las direcciones LDAP"
-#. /ZAL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -190,7 +173,6 @@ msgctxt ""
msgid "Outlook address book"
msgstr "Libreta de direcciones de Outlook"
-#. vA$Z
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -200,7 +182,6 @@ msgctxt ""
msgid "Windows system address book"
msgstr "Libreta de direcciones del sistema de Windows"
-#. Zg(X
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -210,7 +191,6 @@ msgctxt ""
msgid "Other external data source"
msgstr "Otras fuentes de datos externas"
-#. WWX%
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -226,7 +206,6 @@ msgstr ""
"\n"
"Para ello, en cuanto pulse sobre el botón que se encuentra abajo se abrirá otro diálogo. Introduzca en él la información requerida."
-#. N(1@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -236,7 +215,6 @@ msgctxt ""
msgid "Settings"
msgstr "Configuración"
-#. !_df
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -250,7 +228,6 @@ msgstr ""
"No se pudo efectuar la conexión a la fuente de datos.\n"
"Antes de continuar, compruebe la configuración realizada o elija (en la ficha anterior) otro tipo para la fuente de datos de direcciones."
-#. 3Vhd
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -264,7 +241,6 @@ msgstr ""
"El origen de datos externos elegido contiene más de una libreta de direcciones.\n"
"Seleccione la que desee utilizar principalmente:"
-#. oTnN
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -284,7 +260,6 @@ msgstr ""
"\n"
"Si pulsa el botón que se encuentra más abajo, se abre otro diálogo en el que podrá configurar la fuente de datos con los nuevos valores."
-#. YNt9
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -294,7 +269,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr "Asignación de campo"
-#. e@G8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -310,7 +284,6 @@ msgstr ""
"\n"
"Indique ahora el nombre con el que desee registrar la fuente de datos en %PRODUCTNAME."
-#. WJF6
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -320,7 +293,6 @@ msgctxt ""
msgid "Location"
msgstr "Ubicación"
-#. a.A8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -330,7 +302,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Examinar..."
-#. kmv1
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -340,7 +311,6 @@ msgctxt ""
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "Hacer que esta libreta de direcciones esté disponible para todos los módulos de %PRODUCTNAME."
-#. y47[
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -350,7 +320,6 @@ msgctxt ""
msgid "Address book name"
msgstr "Nombre de libreta de direcciones"
-#. 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 "Ya existe otra fuente de datos con este nombre. Debe elegir otro ya que el nombre de la fuente de datos debe ser globalmente único."
-#. SDu;
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -369,7 +337,6 @@ msgctxt ""
msgid "Please select a type of address book."
msgstr "Seleccione un tipo de libreta de direcciones"
-#. B=Hq
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -382,7 +349,6 @@ msgstr ""
"La fuente de datos no contiene tablas.\n"
"¿Desea no obstante configurarla como fuente de datos de direcciones?"
-#. I07?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -395,7 +361,6 @@ msgstr ""
"No parece tener una cuenta de GroupWise configurada en Evolution.\n"
"¿Desea configurarla como origen de datos igualmente?"
-#. JX@8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -404,7 +369,6 @@ msgctxt ""
msgid "Addresses"
msgstr "Direcciones"
-#. angg
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -413,7 +377,6 @@ msgctxt ""
msgid "Create Address Data Source"
msgstr "Crear fuente de datos de direcciones"
-#. ?E#@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -422,7 +385,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr "No se pudo realizar la conexión."
-#. 0q1K
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -431,7 +393,6 @@ msgctxt ""
msgid "Please check the settings made for the data source."
msgstr "Compruebe la configuración para la fuente de datos."
-#. GOTt
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -440,7 +401,6 @@ msgctxt ""
msgid "Address Data - Field Assignment"
msgstr "Datos de direcciones - asignación de campo"
-#. 3r2n
#: abspilot.src
msgctxt ""
"abspilot.src\n"
diff --git a/source/es/extensions/source/bibliography.po b/source/es/extensions/source/bibliography.po
index 214ff7741dc..d8f8c76c929 100644
--- a/source/es/extensions/source/bibliography.po
+++ b/source/es/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: 2012-10-08 10:33+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Nombres de columna"
-#. ItOt
#: datman.src
msgctxt ""
"datman.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "<none>"
msgstr "<ninguno>"
-#. 4hv1
#: datman.src
msgctxt ""
"datman.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Column Layout for Table %1"
msgstr "Asignación de columnas para tabla %1"
-#. lzUI
#: datman.src
msgctxt ""
"datman.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Entry"
msgstr "Entrada"
-#. K=~*
#: datman.src
msgctxt ""
"datman.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Choose Data Source"
msgstr "Elegir origen de datos"
-#. H25O
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. mlEM
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Search Key"
msgstr "Expresión de búsqueda"
-#. $WWh
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr "AutoFiltro"
-#. /bA7
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr "Filtro predeterminado"
-#. ^rxA
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Remove Filter"
msgstr "Eliminar filtro"
-#. I7e}
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Column Arrangement"
msgstr "Disposición de columnas"
-#. pr!1
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Data Source"
msgstr "Origen de datos"
-#. Kp#/
#: bib.src
msgctxt ""
"bib.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Field selection:"
msgstr "Selección de campo:"
-#. !{]?
#: bib.src
msgctxt ""
"bib.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Table;Query;Sql;Sql [Native]"
msgstr "Tabla;Consulta;Sql;Sql [Native]"
-#. Npkk
#: bib.src
msgctxt ""
"bib.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Bibliography Database"
msgstr "Base de datos bibliográfica"
-#. 3iZl
#: bib.src
msgctxt ""
"bib.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Do you want to edit the column arrangement?"
msgstr "¿Desea modificar el orden de las columnas?"
-#. _;+#
#: sections.src
msgctxt ""
"sections.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "The following column names could not be assigned:\n"
msgstr "No se pudieron asignar los siguientes nombres de columnas:\n"
-#. ;*(N
#: sections.src
msgctxt ""
"sections.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Article"
msgstr "Artículo"
-#. 1fmq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "Book"
msgstr "Libro"
-#. cD62
#: sections.src
msgctxt ""
"sections.src\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Brochures"
msgstr "Folleto"
-#. [.Aq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "Actas de conferencia"
-#. p*hM
#: sections.src
msgctxt ""
"sections.src\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "Book excerpt"
msgstr "Extracto de libro"
-#. JdB*
#: sections.src
msgctxt ""
"sections.src\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "Book excerpt with title"
msgstr "Extracto de libro con título"
-#. 8y.1
#: sections.src
msgctxt ""
"sections.src\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "Informe de reunión"
-#. JH,h
#: sections.src
msgctxt ""
"sections.src\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Journal"
msgstr "Revista"
-#. Tl@B
#: sections.src
msgctxt ""
"sections.src\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Techn. documentation"
msgstr "Documentación técnica"
-#. =rwC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Thesis"
msgstr "Tesina"
-#. }C\Z
#: sections.src
msgctxt ""
"sections.src\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Diversos"
-#. 8zYB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Dissertation"
msgstr "Tesis doctoral"
-#. wb((
#: sections.src
msgctxt ""
"sections.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "Informe de reunión"
-#. 0G{o
#: sections.src
msgctxt ""
"sections.src\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "Research report"
msgstr "Informe de investigación"
-#. t03R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "Unpublished"
msgstr "Inédito"
-#. bKkA
#: sections.src
msgctxt ""
"sections.src\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "e-mail"
msgstr "Mensaje electrónico"
-#. {\=i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "WWW document"
msgstr "Documento WWW"
-#. lK:k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "User-defined1"
msgstr "Usuario1"
-#. ,fWi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "User-defined2"
msgstr "Usuario2"
-#. -3Q0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "User-defined3"
msgstr "Usuario3"
-#. dUYp
#: sections.src
msgctxt ""
"sections.src\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "User-defined4"
msgstr "Usuario4"
-#. eDcN
#: sections.src
msgctxt ""
"sections.src\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "User-defined5"
msgstr "Usuario5"
-#. ;|`$
#: sections.src
msgctxt ""
"sections.src\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. k4y+
#: sections.src
msgctxt ""
"sections.src\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "Insert Section..."
msgstr "Insertar sección..."
-#. e(F]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -428,7 +386,6 @@ msgctxt ""
msgid "Delete Section..."
msgstr "Eliminar sección..."
-#. v$!9
#: sections.src
msgctxt ""
"sections.src\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "Modify Name..."
msgstr "Modificar nombre..."
-#. Vtq4
#: sections.src
msgctxt ""
"sections.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "~Short name"
msgstr "~Abreviatura"
-#. I3)Y
#: sections.src
msgctxt ""
"sections.src\n"
@@ -456,7 +411,6 @@ msgctxt ""
msgid "~Type"
msgstr "~Tipo"
-#. Y#d(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -465,7 +419,6 @@ msgctxt ""
msgid "~Year"
msgstr "~Año"
-#. DjB2
#: sections.src
msgctxt ""
"sections.src\n"
@@ -474,7 +427,6 @@ msgctxt ""
msgid "Author(s)"
msgstr "Autor(es)"
-#. PHsi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -483,7 +435,6 @@ msgctxt ""
msgid "Tit~le"
msgstr "Títu~lo"
-#. *,8A
#: sections.src
msgctxt ""
"sections.src\n"
@@ -492,7 +443,6 @@ msgctxt ""
msgid "~Publisher"
msgstr "~Editorial"
-#. Z__r
#: sections.src
msgctxt ""
"sections.src\n"
@@ -501,7 +451,6 @@ msgctxt ""
msgid "A~ddress"
msgstr "~Dirección"
-#. ;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 "~Capítulo"
-#. TmGf
#: sections.src
msgctxt ""
"sections.src\n"
@@ -528,7 +475,6 @@ msgctxt ""
msgid "Pa~ge(s)"
msgstr "~Página(s)"
-#. bPZS
#: sections.src
msgctxt ""
"sections.src\n"
@@ -537,7 +483,6 @@ msgctxt ""
msgid "Editor"
msgstr "Editor"
-#. dPQC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -546,7 +491,6 @@ msgctxt ""
msgid "Ed~ition"
msgstr "Ed~ición"
-#. DF`,
#: sections.src
msgctxt ""
"sections.src\n"
@@ -555,7 +499,6 @@ msgctxt ""
msgid "~Book title"
msgstr "Título del li~bro"
-#. 7,dY
#: sections.src
msgctxt ""
"sections.src\n"
@@ -564,7 +507,6 @@ msgctxt ""
msgid "Volume"
msgstr "~Volumen"
-#. @b{R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -573,7 +515,6 @@ msgctxt ""
msgid "Publication t~ype"
msgstr "Tipo de p~ublicación"
-#. X8VI
#: sections.src
msgctxt ""
"sections.src\n"
@@ -582,7 +523,6 @@ msgctxt ""
msgid "Organi~zation"
msgstr "Organi~zación"
-#. *?bv
#: sections.src
msgctxt ""
"sections.src\n"
@@ -591,7 +531,6 @@ msgctxt ""
msgid "Instit~ution"
msgstr "I~nstitución"
-#. 7UuL
#: sections.src
msgctxt ""
"sections.src\n"
@@ -600,7 +539,6 @@ msgctxt ""
msgid "University"
msgstr "Universidad"
-#. [A!K
#: sections.src
msgctxt ""
"sections.src\n"
@@ -609,7 +547,6 @@ msgctxt ""
msgid "Type of re~port"
msgstr "Tipo de in~forme"
-#. Y9}k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -618,7 +555,6 @@ msgctxt ""
msgid "~Month"
msgstr "~Mes"
-#. [1\(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -627,7 +563,6 @@ msgctxt ""
msgid "~Journal"
msgstr "~Revista"
-#. sr\i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -636,7 +571,6 @@ msgctxt ""
msgid "Numb~er"
msgstr "Núm~ero"
-#. r;~e
#: sections.src
msgctxt ""
"sections.src\n"
@@ -645,7 +579,6 @@ msgctxt ""
msgid "Se~ries"
msgstr "Se~rie"
-#. L|jB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -654,7 +587,6 @@ msgctxt ""
msgid "Ann~otation"
msgstr "~Observación"
-#. ]bo0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -663,7 +595,6 @@ msgctxt ""
msgid "~Note"
msgstr "~Nota"
-#. 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 "Campo de usuario ~1"
-#. XKC]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -690,7 +619,6 @@ msgctxt ""
msgid "User-defined field ~2"
msgstr "Campo de usuario ~2"
-#. _Eg/
#: sections.src
msgctxt ""
"sections.src\n"
@@ -699,7 +627,6 @@ msgctxt ""
msgid "User-defined field ~3"
msgstr "Campo de usuario ~3"
-#. #c=)
#: sections.src
msgctxt ""
"sections.src\n"
@@ -708,7 +635,6 @@ msgctxt ""
msgid "User-defined field ~4"
msgstr "Campo de usuario ~4"
-#. 7%j|
#: sections.src
msgctxt ""
"sections.src\n"
diff --git a/source/es/extensions/source/dbpilots.po b/source/es/extensions/source/dbpilots.po
index 506cfcd8ec9..65d88108471 100644
--- a/source/es/extensions/source/dbpilots.po
+++ b/source/es/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: 2012-10-08 10:35+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Elemento de tabla"
-#. :_jY
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Existing fields"
msgstr "Campos existentes"
-#. #:,M
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Selected fields"
msgstr "Campos seleccionados"
-#. 1o.W
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Field Selection"
msgstr "Selección de campo"
-#. YRh3
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid " (Date)"
msgstr " (Fecha)"
-#. f6a;
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid " (Time)"
msgstr " (Hora)"
-#. ssgQ
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "Data"
msgstr "Datos"
-#. (Gpo
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -104,7 +96,6 @@ msgstr ""
"\n"
"No olvide que la configuración que realice en este registro tendrá validez inmediatamente después de que abandone el registro."
-#. NusL
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -114,7 +105,6 @@ msgctxt ""
msgid "~Data source:"
msgstr "~Fuente de datos:"
-#. 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 "~Tabla / Consulta:"
-#. Or?S
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -143,7 +131,6 @@ msgctxt ""
msgid "Data"
msgstr "Datos"
-#. 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 "¿Quiere guardar el valor en un campo de base de datos?"
-#. 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 "~Sí, quiero guardarlo en el siguiente campo:"
-#. 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 "~No, quiero guardar el valor sólo en el formulario."
-#. `:,h
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "Database Field"
msgstr "Campo de base de datos"
-#. %E`E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -192,7 +175,6 @@ msgctxt ""
msgid "Form"
msgstr "Formulario"
-#. f7bX
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -202,7 +184,6 @@ msgctxt ""
msgid "Data source"
msgstr "Fuente de datos"
-#. W+#i
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -212,7 +193,6 @@ msgctxt ""
msgid "Content type"
msgstr "Tipo de contenido"
-#. gz2*
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -222,7 +202,6 @@ msgctxt ""
msgid "Content"
msgstr "Contenido"
-#. +`K`
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -231,7 +210,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. ku*E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -240,7 +218,6 @@ msgctxt ""
msgid "Query"
msgstr "Consulta"
-#. YUJ,
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -249,7 +226,6 @@ msgctxt ""
msgid "SQL command"
msgstr "Comando SQL"
-#. P$*+
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -259,7 +235,6 @@ msgctxt ""
msgid "Control"
msgstr "Campo de control"
-#. BU8b
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -277,7 +252,6 @@ msgstr ""
"\n"
"Seleccione la tabla de la que deban tomarse los datos para el contenido de la lista:"
-#. l`Pq
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -286,7 +260,6 @@ msgctxt ""
msgid "Table Selection"
msgstr "Selección de tabla"
-#. sd!v
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -296,7 +269,6 @@ msgctxt ""
msgid "Existing fields"
msgstr "Campos existentes"
-#. 8nq/
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -306,7 +278,6 @@ msgctxt ""
msgid "Display field"
msgstr "Campo de visualización"
-#. 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 "El contenido del campo seleccionado se mostrará en la lista del campo combinado."
-#. 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 "El contenido del campo seleccionado se mostrará en el listado si coinciden los campos vinculados."
-#. KvoZ
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -335,7 +304,6 @@ msgctxt ""
msgid "Field Selection"
msgstr "Selección de campo"
-#. ,`\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 "Seleccione los campos cuyo contenido debe coincidir para que se muestre el valor en el campo de visualización."
-#. jBo1
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -355,7 +322,6 @@ msgctxt ""
msgid "Field from the ~Value Table"
msgstr "Campo de la tabla de ~valores"
-#. ?dLF
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "Field from the ~List Table"
msgstr "Campo del ~listado"
-#. Lu=F
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -374,7 +339,6 @@ msgctxt ""
msgid "Field Link"
msgstr "Vínculo de campo"
-#. ,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 "Puede guardar el valor del campo combinado en un campo de base de datos o usarlo solo para mostrarlo."
-#. *d$D
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -392,7 +355,6 @@ msgctxt ""
msgid "Group Element Wizard"
msgstr "Asistente: Elemento de grupo"
-#. ^P)8
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -401,7 +363,6 @@ msgctxt ""
msgid "Table Element Wizard"
msgstr "Asistente: Elemento de tabla"
-#. HVB\
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -410,7 +371,6 @@ msgctxt ""
msgid "List Box Wizard"
msgstr "Asistente: Cuadro de lista"
-#. Sf5W
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -419,7 +379,6 @@ msgctxt ""
msgid "Combo Box Wizard"
msgstr "Asistente: Cuadro combinado"
-#. 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 "No se pudo establecer la conexión al origen de datos."
-#. yhZH
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -438,7 +396,6 @@ msgctxt ""
msgid "Which ~names do you want to give the option fields?"
msgstr "¿Qué ~nombres deben contener los campos de opción?"
-#. |m2@
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -448,7 +405,6 @@ msgctxt ""
msgid "~Option fields"
msgstr "~Campos de opción"
-#. RM_V
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -457,7 +413,6 @@ msgctxt ""
msgid "Data"
msgstr "Datos"
-#. q]+)
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -467,7 +422,6 @@ msgctxt ""
msgid "Should one option field be selected as a default?"
msgstr "¿Desea que se seleccione un botón de opción de forma predeterminada?"
-#. ^\h?
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -477,7 +431,6 @@ msgctxt ""
msgid "~Yes, the following:"
msgstr "~Sí, el siguiente:"
-#. 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 "No, no debe ser seleccionado ningún campo."
-#. w!)y
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -496,7 +448,6 @@ msgctxt ""
msgid "Default Field Selection"
msgstr "Selección de campo predeterminado"
-#. 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 "Si elige una opción, se le asignará al grupo de opciones un determinado valor."
-#. S.}}
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -516,7 +466,6 @@ msgctxt ""
msgid "Which ~value do you want to assign to each option?"
msgstr "¿Qué ~valor quiere asignarle a cada opción?"
-#. 36TA
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -526,7 +475,6 @@ msgctxt ""
msgid "~Option fields"
msgstr "~Campos de opción"
-#. n)Xv
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "Field Values"
msgstr "Valores de campo"
-#. 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 "¿Qué ~título debe tener su grupo de opciones?"
-#. Ks;\
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "These were all details needed to create the option group."
msgstr "Ya se dispone de las informaciones necesarias para crear el grupo de opciones."
-#. %B*Q
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -564,7 +509,6 @@ msgctxt ""
msgid "Create Option Group"
msgstr "Crear grupo de opciones"
-#. 8fp0
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
diff --git a/source/es/extensions/source/propctrlr.po b/source/es/extensions/source/propctrlr.po
index 74831d7bab5..fe350d5eec1 100644
--- a/source/es/extensions/source/propctrlr.po
+++ b/source/es/extensions/source/propctrlr.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-08-14 05:25+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
+"PO-Revision-Date: 2012-11-21 13:23+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353504194.0\n"
-#. s^Me
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "Type a name for the new data type:"
msgstr "Escriba un nombre para el nuevo tipo de datos:"
-#. eMQ`
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -34,7 +33,6 @@ msgctxt ""
msgid "New Data Type"
msgstr "Nuevo tipo de datos"
-#. gtRM
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -47,7 +45,6 @@ msgstr ""
"¿Desea eliminar el tipo de datos '#type#' del modelo?\n"
"Tenga en cuenta que esto afectará a todos los campos de control vinculados a este tipo de datos."
-#. rhqo
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -56,7 +53,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. a$g)
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -65,7 +61,6 @@ msgctxt ""
msgid "Option Button"
msgstr "Campo de opción"
-#. ;nYX
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -74,7 +69,6 @@ msgctxt ""
msgid "Check Box"
msgstr "Casilla de verificación"
-#. tPb3
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -83,7 +77,6 @@ msgctxt ""
msgid "Label Field"
msgstr "Campo de etiqueta"
-#. a]FH
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -92,7 +85,6 @@ msgctxt ""
msgid "Group Box"
msgstr "Marco de grupo"
-#. bcKT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -101,7 +93,6 @@ msgctxt ""
msgid "Text Box"
msgstr "Campo de texto"
-#. K2K~
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -110,7 +101,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr "Campo formateado"
-#. BP7h
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -119,7 +109,6 @@ msgctxt ""
msgid "List Box"
msgstr "Listado"
-#. +#b|
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -128,7 +117,6 @@ msgctxt ""
msgid "Combo Box"
msgstr "Campo combinado"
-#. +C`#
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -137,7 +125,6 @@ msgctxt ""
msgid "Image Button"
msgstr "Botón gráfico"
-#. O)BT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -146,7 +133,6 @@ msgctxt ""
msgid "Hidden Control"
msgstr "Campo de control oculto"
-#. jRM[
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Control (unknown type)"
msgstr "Campo de control (tipo desconocido)"
-#. ),$Q
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -164,7 +149,6 @@ msgctxt ""
msgid "Image Control"
msgstr "Control de imagen"
-#. eo0;
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "File Selection"
msgstr "Selección de archivo"
-#. ~|#\
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -182,7 +165,6 @@ msgctxt ""
msgid "Date Field"
msgstr "Campo de fecha"
-#. `qPz
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -191,7 +173,6 @@ msgctxt ""
msgid "Time Field"
msgstr "Campo horario"
-#. -lTu
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -200,7 +181,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr "Campo numérico"
-#. \py,
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Currency Field"
msgstr "Campo de moneda"
-#. FWrU
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -218,7 +197,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr "Campo enmascarado"
-#. J|/E
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -227,7 +205,6 @@ msgctxt ""
msgid "Table Control "
msgstr "Control de tablas "
-#. p$6p
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -237,7 +214,6 @@ msgctxt ""
msgid "Controls"
msgstr "Controles"
-#. a?R:
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -247,7 +223,6 @@ msgctxt ""
msgid "Move Up"
msgstr "Mover hacia arriba"
-#. `.-3
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -257,7 +232,6 @@ msgctxt ""
msgid "Move Down"
msgstr "Mover hacia abajo"
-#. NGJK
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -267,7 +241,6 @@ msgctxt ""
msgid "Automatic Sort"
msgstr "Orden automático"
-#. Y)jO
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -276,7 +249,6 @@ msgctxt ""
msgid "Tab Order"
msgstr "Orden de tabuladores"
-#. 9@:e
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -286,7 +258,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 "Pueden utilizarse subformularios para mostrar los detalles sobre el registro activo del formulario maestro. Para ello, puede especificar las columnas del subformulario que coinciden con las columnas del formulario maestro."
-#. njzO
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -295,7 +266,6 @@ msgctxt ""
msgid "Link fields"
msgstr "Campos de vínculo"
-#. `%6Y
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -304,7 +274,6 @@ msgctxt ""
msgid "Suggest"
msgstr "Sugerir"
-#. l?+o
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -313,7 +282,6 @@ msgctxt ""
msgid "Sub Form"
msgstr "Subformulario"
-#. xdX1
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -323,7 +291,6 @@ msgid "Master Form"
msgstr "Formulario maestro"
#. # will be replace with a name.
-#. VSK=
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "The columns of '#' could not be retrieved."
msgstr "Las columnas de '#' no pueden ser recuperadas."
-#. -4:3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -341,7 +307,6 @@ msgctxt ""
msgid "Edit mask"
msgstr "Máscara de entrada"
-#. _[Y%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -350,7 +315,6 @@ msgctxt ""
msgid "Literal mask"
msgstr "Máscara de caracteres"
-#. C_~0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -359,7 +323,6 @@ msgctxt ""
msgid "Read-only"
msgstr "Sólo lectura"
-#. wp|I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -368,7 +331,6 @@ msgctxt ""
msgid "Enabled"
msgstr "Activado"
-#. ,ML=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -377,7 +339,6 @@ msgctxt ""
msgid "Visible"
msgstr "Visible"
-#. C{q5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -386,7 +347,6 @@ msgctxt ""
msgid "AutoFill"
msgstr "Rellenar automáticamente"
-#. \#!;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -395,7 +355,6 @@ msgctxt ""
msgid "Line count"
msgstr "Número de líneas"
-#. :w)d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -404,7 +363,6 @@ msgctxt ""
msgid "Max. text length"
msgstr "Longitud máx. del texto"
-#. S?#_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -413,7 +371,6 @@ msgctxt ""
msgid "Spin Button"
msgstr "Campo giratorio"
-#. c9H)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -422,7 +379,6 @@ msgctxt ""
msgid "Strict format"
msgstr "Control de formato"
-#. S?Nz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -431,7 +387,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr "Delimitador decimal"
-#. uUsL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -440,7 +395,6 @@ msgctxt ""
msgid "Printable"
msgstr "Imprimible"
-#. 9svO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -449,7 +403,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. =B]w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -458,7 +411,6 @@ msgctxt ""
msgid "Frame"
msgstr "Frame"
-#. \;fA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -467,7 +419,6 @@ msgctxt ""
msgid "Help text"
msgstr "Texto de ayuda"
-#. @[oe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -476,7 +427,6 @@ msgctxt ""
msgid "Help URL"
msgstr "URL de la ayuda"
-#. 5;yD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -485,7 +435,6 @@ msgctxt ""
msgid "Additional information"
msgstr "Información adicional"
-#. 8V1v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -494,7 +443,6 @@ msgctxt ""
msgid "Password character"
msgstr "Carácter de contraseña"
-#. {JkO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -503,7 +451,6 @@ msgctxt ""
msgid "Tristate"
msgstr "Estado triple"
-#. XPsV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -512,7 +459,6 @@ msgctxt ""
msgid "Empty string is NULL"
msgstr "Serie de caracteres vacía es NULL"
-#. gKIe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -521,7 +467,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr "Decimales"
-#. vDV_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -530,7 +475,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Imagen"
-#. Y6h_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -539,7 +483,6 @@ msgctxt ""
msgid "Default selection"
msgstr "Selección predeterminada"
-#. {+kZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -548,7 +491,6 @@ msgctxt ""
msgid "Default button"
msgstr "Botón predeterminado"
-#. e9*B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -557,7 +499,6 @@ msgctxt ""
msgid "Label Field"
msgstr "Campo de etiqueta"
-#. h`vU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -566,7 +507,6 @@ msgctxt ""
msgid "Label"
msgstr "Título"
-#. )3wp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -575,7 +515,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. YPNU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -584,7 +523,6 @@ msgctxt ""
msgid "Vert. Alignment"
msgstr "Alineación vert."
-#. n9SR
#: formres.src
msgctxt ""
"formres.src\n"
@@ -594,7 +532,6 @@ msgctxt ""
msgid "Top"
msgstr "Superior"
-#. L!Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -604,7 +541,6 @@ msgctxt ""
msgid "Middle"
msgstr "Centrado"
-#. r\~P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -614,7 +550,6 @@ msgctxt ""
msgid "Bottom"
msgstr "Abajo"
-#. :K/s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -623,7 +558,6 @@ msgctxt ""
msgid "Graphics alignment"
msgstr "Alineación de gráficos"
-#. S[^Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -632,7 +566,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. Aor5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -641,7 +574,6 @@ msgctxt ""
msgid "Background color"
msgstr "Color de fondo"
-#. r8Bv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -650,7 +582,6 @@ msgctxt ""
msgid "Border"
msgstr "Marco"
-#. H05x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -659,7 +590,6 @@ msgctxt ""
msgid "Icon size"
msgstr "Tamaño del icono"
-#. lJf2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -669,7 +599,6 @@ msgctxt ""
msgid "Small"
msgstr "Pequeño"
-#. v.\*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -679,7 +608,6 @@ msgctxt ""
msgid "Large"
msgstr "Grande"
-#. k@aG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -688,7 +616,6 @@ msgctxt ""
msgid "Positioning"
msgstr "Posición"
-#. r@H`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -697,7 +624,6 @@ msgctxt ""
msgid "Navigation"
msgstr "Navegación"
-#. 6D{T
#: formres.src
msgctxt ""
"formres.src\n"
@@ -706,7 +632,6 @@ msgctxt ""
msgid "Acting on a record"
msgstr "Actuar en un registro"
-#. h{oJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -715,7 +640,6 @@ msgctxt ""
msgid "Filtering / Sorting"
msgstr "Filtrar / Ordenar"
-#. 0of2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -724,7 +648,6 @@ msgctxt ""
msgid "Horizontal scroll bar"
msgstr "Barra de deplazamiento horizontal"
-#. !-Kj
#: formres.src
msgctxt ""
"formres.src\n"
@@ -733,7 +656,6 @@ msgctxt ""
msgid "Vertical scroll bar"
msgstr "Barra de desplazamiento vertical"
-#. .G=Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -742,7 +664,6 @@ msgctxt ""
msgid "Word break"
msgstr "División de palabras"
-#. M@V3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -751,7 +672,6 @@ msgctxt ""
msgid "Multiline input"
msgstr "Varias líneas"
-#. uerX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -760,7 +680,6 @@ msgctxt ""
msgid "Multiselection"
msgstr "Selección múltiple"
-#. N0W=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -769,7 +688,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. *t]/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -778,7 +696,6 @@ msgctxt ""
msgid "Group name"
msgstr "Nombre del grupo"
-#. ?8N/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -787,7 +704,6 @@ msgctxt ""
msgid "Tab order"
msgstr "Orden de tabuladores"
-#. =xa@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -796,7 +712,6 @@ msgctxt ""
msgid "Mouse wheel scroll"
msgstr "Rueda de desplazamiento del Ratón"
-#. i^O.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -805,7 +720,6 @@ msgctxt ""
msgid "Filter"
msgstr "Filtrar"
-#. M^@9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -814,7 +728,6 @@ msgctxt ""
msgid "Sort"
msgstr "Ordenar"
-#. AXX0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -823,7 +736,6 @@ msgctxt ""
msgid "Record marker"
msgstr "Marcador de registros"
-#. r-jp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -832,7 +744,6 @@ msgctxt ""
msgid "Filter proposal"
msgstr "Propuesta de filtro"
-#. #|_O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -841,7 +752,6 @@ msgctxt ""
msgid "Navigation bar"
msgstr "Barra de navegación"
-#. I*I9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -850,7 +760,6 @@ msgctxt ""
msgid "Cycle"
msgstr "Ciclo"
-#. jek%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -859,7 +768,6 @@ msgctxt ""
msgid "Tabstop"
msgstr "Tabstop"
-#. ULD~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -868,7 +776,6 @@ msgctxt ""
msgid "Data field"
msgstr "Campo de datos"
-#. _{S8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -877,7 +784,6 @@ msgctxt ""
msgid "Dropdown"
msgstr "Desplegable"
-#. #|^\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -886,7 +792,6 @@ msgctxt ""
msgid "Bound field"
msgstr "Campo ligado"
-#. 0z+)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -895,7 +800,6 @@ msgctxt ""
msgid "List content"
msgstr "Contenido de lista"
-#. ~b3V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -904,7 +808,6 @@ msgctxt ""
msgid "Type of list contents"
msgstr "Tipo del contenido de lista"
-#. 0T[g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -913,7 +816,6 @@ msgctxt ""
msgid "Content"
msgstr "Contenido"
-#. A/Os
#: formres.src
msgctxt ""
"formres.src\n"
@@ -922,7 +824,6 @@ msgctxt ""
msgid "Content type"
msgstr "Tipo de contenido"
-#. WE*;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -931,7 +832,6 @@ msgctxt ""
msgid "Allow additions"
msgstr "Permitir adiciones"
-#. F@XG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -940,7 +840,6 @@ msgctxt ""
msgid "Allow deletions"
msgstr "Permitir eliminaciones"
-#. -S87
#: formres.src
msgctxt ""
"formres.src\n"
@@ -949,7 +848,6 @@ msgctxt ""
msgid "Allow modifications"
msgstr "Permitir modificaciones"
-#. 4W?_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -958,7 +856,6 @@ msgctxt ""
msgid "Add data only"
msgstr "Solo añadir datos"
-#. X=]v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -967,7 +864,6 @@ msgctxt ""
msgid "Data source"
msgstr "Origen de datos"
-#. moG/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -976,7 +872,6 @@ msgctxt ""
msgid "Link master fields"
msgstr "Enlazar campos maestros"
-#. q@tb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -985,7 +880,6 @@ msgctxt ""
msgid "Link slave fields"
msgstr "Enlazar campos esclavos"
-#. ODr[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -994,7 +888,6 @@ msgctxt ""
msgid "Value min."
msgstr "Valor mín."
-#. bp2?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1003,7 +896,6 @@ msgctxt ""
msgid "Value max."
msgstr "Valor máx."
-#. [eew
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1012,7 +904,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr "Intervalo"
-#. ]e}P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1021,7 +912,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr "Símbolo de moneda"
-#. Jl%q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1030,7 +920,6 @@ msgctxt ""
msgid "Date min."
msgstr "Fecha mín."
-#. iuNO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1039,7 +928,6 @@ msgctxt ""
msgid "Date max."
msgstr "Fecha máx."
-#. dJPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1048,7 +936,6 @@ msgctxt ""
msgid "Date format"
msgstr "Formato de fecha"
-#. 33T]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1057,7 +944,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. z|8+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1066,7 +952,6 @@ msgctxt ""
msgid "Time min."
msgstr "Tiempo mín."
-#. K=!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1075,7 +960,6 @@ msgctxt ""
msgid "Time max."
msgstr "Tiempo máx."
-#. S!5/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1084,7 +968,6 @@ msgctxt ""
msgid "Time format"
msgstr "Formato de hora"
-#. 3pJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1093,7 +976,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr "Situar símbolo delante"
-#. 4sJ}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1102,7 +984,6 @@ msgctxt ""
msgid "Value"
msgstr "Valor"
-#. 9Rdn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1111,7 +992,6 @@ msgctxt ""
msgid "Formatting"
msgstr "Formato"
-#. ?$EN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1120,7 +1000,6 @@ msgctxt ""
msgid "Class ID"
msgstr "Índice de clase"
-#. qAX(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1129,7 +1008,6 @@ msgctxt ""
msgid "Height"
msgstr "Altura"
-#. 7:#s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1138,7 +1016,6 @@ msgctxt ""
msgid "Width"
msgstr "Ancho"
-#. n:B.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1147,7 +1024,6 @@ msgctxt ""
msgid "List index"
msgstr "Indice de listas"
-#. $AcG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1156,7 +1032,6 @@ msgctxt ""
msgid "Row height"
msgstr "Altura de fila"
-#. ?Pek
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1165,7 +1040,6 @@ msgctxt ""
msgid "Fill color"
msgstr "Color de relleno"
-#. ]dkd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1174,7 +1048,6 @@ msgctxt ""
msgid "Line color"
msgstr "Color de línea"
-#. 7*Rh
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1183,7 +1056,6 @@ msgctxt ""
msgid "Reference value (on)"
msgstr "Valor de referencia (activado)"
-#. ndxJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1192,7 +1064,6 @@ msgctxt ""
msgid "Reference value (off)"
msgstr "Valor de referencia (desactivado)"
-#. !d/7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1201,7 +1072,6 @@ msgctxt ""
msgid "List entries"
msgstr "Entradas de la lista"
-#. X#ie
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1210,7 +1080,6 @@ msgctxt ""
msgid "Action"
msgstr "Acción"
-#. 5*J.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1219,7 +1088,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. $,h2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1228,7 +1096,6 @@ msgctxt ""
msgid "Type of submission"
msgstr "Tipo de submit"
-#. )C4Q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1237,7 +1104,6 @@ msgctxt ""
msgid "Default status"
msgstr "Estado predeterminado"
-#. [Y5P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1246,7 +1112,6 @@ msgctxt ""
msgid "Submission encoding"
msgstr "Codificar submit"
-#. bs(D
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1255,7 +1120,6 @@ msgctxt ""
msgid "Default value"
msgstr "Valor predeterminado"
-#. 8V5s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1264,7 +1128,6 @@ msgctxt ""
msgid "Default text"
msgstr "Texto predeterminado"
-#. m:fJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1273,7 +1136,6 @@ msgctxt ""
msgid "Default date"
msgstr "Fecha predeterminada"
-#. =9eF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1282,7 +1144,6 @@ msgctxt ""
msgid "Default time"
msgstr "Hora predeterminada"
-#. 5\n,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1291,7 +1152,6 @@ msgctxt ""
msgid "Frame"
msgstr "Frame"
-#. gvBZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1301,7 +1161,6 @@ msgctxt ""
msgid "Without frame"
msgstr "Sin marco"
-#. `OE4
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1311,7 +1170,6 @@ msgctxt ""
msgid "3D look"
msgstr "Vista 3D"
-#. WER5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1321,7 +1179,6 @@ msgctxt ""
msgid "Flat"
msgstr "Plano"
-#. s!/R
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1331,7 +1188,6 @@ msgctxt ""
msgid "Valuelist"
msgstr "Lista de valores"
-#. .DU=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1341,7 +1197,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. lo]r
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1351,7 +1206,6 @@ msgctxt ""
msgid "Query"
msgstr "Pregunta"
-#. Ymw,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1361,7 +1215,6 @@ msgctxt ""
msgid "Sql"
msgstr "Sql"
-#. ?=gQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1371,7 +1224,6 @@ msgctxt ""
msgid "Sql [Native]"
msgstr "Sql [Native]"
-#. ,S\v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1381,7 +1233,6 @@ msgctxt ""
msgid "Tablefields"
msgstr "Campo tabla"
-#. Pb[-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1391,7 +1242,6 @@ msgctxt ""
msgid "Left"
msgstr "Izquierda"
-#. (^\V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1401,7 +1251,6 @@ msgctxt ""
msgid "Center"
msgstr "Centro"
-#. d71O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1411,7 +1260,6 @@ msgctxt ""
msgid "Right"
msgstr "Derecha"
-#. Qv,_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1421,7 +1269,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. envc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1431,7 +1278,6 @@ msgctxt ""
msgid "Submit form"
msgstr "Enviar formulario"
-#. Ncsk
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1441,7 +1287,6 @@ msgctxt ""
msgid "Reset form"
msgstr "Reiniciar formulario"
-#. zk8i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1451,7 +1296,6 @@ msgctxt ""
msgid "Open document/web page"
msgstr "Abrir documento/página web"
-#. U!^p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1461,7 +1305,6 @@ msgctxt ""
msgid "First record"
msgstr "Primer registro"
-#. `DKS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1471,7 +1314,6 @@ msgctxt ""
msgid "Previous record"
msgstr "Registro anterior"
-#. #tT1
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1481,7 +1323,6 @@ msgctxt ""
msgid "Next record"
msgstr "Registro siguiente"
-#. iQf\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1491,7 +1332,6 @@ msgctxt ""
msgid "Last record"
msgstr "Último registro"
-#. K.a;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1501,7 +1341,6 @@ msgctxt ""
msgid "Save record"
msgstr "Guardar registro"
-#. md:S
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1511,7 +1350,6 @@ msgctxt ""
msgid "Undo data entry"
msgstr "Deshacer entrada de datos"
-#. ;kox
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1521,7 +1359,6 @@ msgctxt ""
msgid "New record"
msgstr "Nuevo registro"
-#. ch,#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1531,7 +1368,6 @@ msgctxt ""
msgid "Delete record"
msgstr "Eliminar registro"
-#. }G3{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1541,7 +1377,6 @@ msgctxt ""
msgid "Refresh form"
msgstr "Refrescar formulario"
-#. 39MD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1551,7 +1386,6 @@ msgctxt ""
msgid "Get"
msgstr "Get"
-#. nup%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1561,7 +1395,6 @@ msgctxt ""
msgid "Post"
msgstr "Enviar"
-#. .:Px
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1571,7 +1404,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. DT?;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1581,7 +1413,6 @@ msgctxt ""
msgid "Multipart"
msgstr "Multipart"
-#. Bght
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1591,7 +1422,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. 5SE#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1601,7 +1431,6 @@ msgctxt ""
msgid "Standard (short)"
msgstr "Estándar (corto)"
-#. w\.d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1611,7 +1440,6 @@ msgctxt ""
msgid "Standard (short YY)"
msgstr "Estándar (corto YY)"
-#. /649
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1621,7 +1449,6 @@ msgctxt ""
msgid "Standard (short YYYY)"
msgstr "Estándar (corto YYYY)"
-#. =^4t
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1631,7 +1458,6 @@ msgctxt ""
msgid "Standard (long)"
msgstr "Estándard (largo)"
-#. !q\M
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1641,7 +1467,6 @@ msgctxt ""
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
-#. x,)s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1651,7 +1476,6 @@ msgctxt ""
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
-#. r`c0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1661,7 +1485,6 @@ msgctxt ""
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
-#. K1Ia
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1671,7 +1494,6 @@ msgctxt ""
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
-#. F)Ta
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1681,7 +1503,6 @@ msgctxt ""
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
-#. 4moL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1691,7 +1512,6 @@ msgctxt ""
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
-#. Jk}k
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1701,7 +1521,6 @@ msgctxt ""
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
-#. iU`H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1711,7 +1530,6 @@ msgctxt ""
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
-#. oN[8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1721,7 +1539,6 @@ msgctxt ""
msgid "13:45"
msgstr "13:45"
-#. 4xjn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1731,7 +1548,6 @@ msgctxt ""
msgid "13:45:00"
msgstr "13:45:00"
-#. 6MyJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1741,7 +1557,6 @@ msgctxt ""
msgid "01:45 PM"
msgstr "01:45 PM"
-#. E#X6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1751,7 +1566,6 @@ msgctxt ""
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
-#. `UFq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1761,7 +1575,6 @@ msgctxt ""
msgid "Not Selected"
msgstr "No seleccionado"
-#. K3uO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1771,7 +1584,6 @@ msgctxt ""
msgid "Selected"
msgstr "Seleccionado"
-#. X_8I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1781,7 +1593,6 @@ msgctxt ""
msgid "Not Defined"
msgstr "No definido"
-#. Xptb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1791,7 +1602,6 @@ msgctxt ""
msgid "All records"
msgstr "Todos los registros"
-#. fY_,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1801,7 +1611,6 @@ msgctxt ""
msgid "Active record"
msgstr "Registro activo"
-#. VwD6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1811,7 +1620,6 @@ msgctxt ""
msgid "Current page"
msgstr "Página actual"
-#. nM7X
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1821,7 +1629,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. qP@v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1831,7 +1638,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. p!5z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1841,7 +1647,6 @@ msgctxt ""
msgid "Parent Form"
msgstr "Formulario superior"
-#. n8)q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1851,7 +1656,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguno"
-#. sS9+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1861,7 +1665,6 @@ msgctxt ""
msgid "Single"
msgstr "Sencillo"
-#. .HAc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1871,7 +1674,6 @@ msgctxt ""
msgid "Multi"
msgstr "Múltiple"
-#. qWrG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1881,7 +1683,6 @@ msgctxt ""
msgid "Range"
msgstr "Rango"
-#. \aOo
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1890,7 +1691,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr "Rellenar parámetros"
-#. z1`m
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1899,7 +1699,6 @@ msgctxt ""
msgid "Execute action"
msgstr "Ejecutar una acción"
-#. c{1]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1908,7 +1707,6 @@ msgctxt ""
msgid "After updating"
msgstr "Después de actualizar"
-#. ^aZ=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1917,7 +1715,6 @@ msgctxt ""
msgid "Before updating"
msgstr "Antes de actualizar"
-#. 0L4,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1926,7 +1723,6 @@ msgctxt ""
msgid "Before record action"
msgstr "Antes de la acción en el registro de datos"
-#. q4W6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1935,7 +1731,6 @@ msgctxt ""
msgid "After record action"
msgstr "Después de la acción en el registro de datos"
-#. o2v`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1944,7 +1739,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "Confirmar eliminación"
-#. M91!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1953,7 +1747,6 @@ msgctxt ""
msgid "Error occurred"
msgstr "Ha ocurrido un error"
-#. :9M2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1962,7 +1755,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr "Recepción de foco"
-#. =o+p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1971,7 +1763,6 @@ msgctxt ""
msgid "When losing focus"
msgstr "Al perder el foco"
-#. [D8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1980,7 +1771,6 @@ msgctxt ""
msgid "Item status changed"
msgstr "Estado modificado"
-#. |8SN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1989,7 +1779,6 @@ msgctxt ""
msgid "Key pressed"
msgstr "Tecla pulsada"
-#. FW$u
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1998,7 +1787,6 @@ msgctxt ""
msgid "Key released"
msgstr "Después de haber pulsado la tecla"
-#. =PkA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2007,7 +1795,6 @@ msgctxt ""
msgid "When loading"
msgstr "Al cargar"
-#. ^Kw+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2016,7 +1803,6 @@ msgctxt ""
msgid "Before reloading"
msgstr "Antes de recargar"
-#. 8H0@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2025,7 +1811,6 @@ msgctxt ""
msgid "When reloading"
msgstr "Al recargar"
-#. WS3:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2034,7 +1819,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr "Mover ratón por medio del teclado"
-#. yr$)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2043,7 +1827,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr "Ratón dentro"
-#. 5,mV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2052,7 +1835,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr "Ratón fuera"
-#. gi#W
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2061,7 +1843,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr "Movimiento de ratón"
-#. si70
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2070,7 +1851,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr "Botón del ratón pulsado"
-#. p!M}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2079,7 +1859,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr "Botón del ratón soltado"
-#. \2se
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2088,7 +1867,6 @@ msgctxt ""
msgid "Before record change"
msgstr "Antes del cambio de registro de datos"
-#. YnB!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2097,7 +1875,6 @@ msgctxt ""
msgid "After record change"
msgstr "Tras el cambio de registro de datos"
-#. 5#jX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2106,7 +1883,6 @@ msgctxt ""
msgid "After resetting"
msgstr "Después de restablecer"
-#. $eXM
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2115,7 +1891,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr "Antes de restablecer"
-#. M14g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2124,7 +1899,6 @@ msgctxt ""
msgid "Approve action"
msgstr "Aprobar acción"
-#. -!|E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2133,7 +1907,6 @@ msgctxt ""
msgid "Before submitting"
msgstr "Antes del envío"
-#. Frn3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2142,7 +1915,6 @@ msgctxt ""
msgid "Text modified"
msgstr "Texto modificado"
-#. uyNm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2151,7 +1923,6 @@ msgctxt ""
msgid "Before unloading"
msgstr "Antes de descargar"
-#. ;HGO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2160,7 +1931,6 @@ msgctxt ""
msgid "When unloading"
msgstr "Al descargar"
-#. (PP(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2169,7 +1939,6 @@ msgctxt ""
msgid "Changed"
msgstr "Modificado"
-#. aKp;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2178,7 +1947,6 @@ msgctxt ""
msgid "Events"
msgstr "Eventos"
-#. @v~z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2187,7 +1955,6 @@ msgctxt ""
msgid "Analyze SQL command"
msgstr "Analizar comando SQL"
-#. W;0g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2196,7 +1963,6 @@ msgctxt ""
msgid "PositionX"
msgstr "PosiciónX"
-#. Pjpn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2205,7 +1971,6 @@ msgctxt ""
msgid "PositionY"
msgstr "PosiciónY"
-#. M6ON
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2214,7 +1979,6 @@ msgctxt ""
msgid "Title"
msgstr "Título"
-#. -87E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2223,7 +1987,6 @@ msgctxt ""
msgid "Page (step)"
msgstr "Página (Step)"
-#. ;kM`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2232,7 +1995,6 @@ msgctxt ""
msgid "Progress value"
msgstr "Valor de progreso"
-#. 1?kb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2241,7 +2003,6 @@ msgctxt ""
msgid "Progress value min."
msgstr "Valor mín. de progreso"
-#. S)Z:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2250,7 +2011,6 @@ msgctxt ""
msgid "Progress value max."
msgstr "Valor máx. de progreso"
-#. qDPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2259,7 +2019,6 @@ msgctxt ""
msgid "Scroll value"
msgstr "Valor"
-#. s0rz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2268,7 +2027,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr "Valor máximo"
-#. @L1:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2277,43 +2035,38 @@ msgctxt ""
msgid "Scroll value min."
msgstr "Valor mín. desplazamiento"
-#. PoU-
#: formres.src
msgctxt ""
"formres.src\n"
"RID_STR_SCROLL_WIDTH\n"
"string.text"
msgid "Scroll width"
-msgstr ""
+msgstr "Anchura del desplazamiento"
-#. TH`U
#: formres.src
msgctxt ""
"formres.src\n"
"RID_STR_SCROLL_HEIGHT\n"
"string.text"
msgid "Scroll height"
-msgstr ""
+msgstr "Altura del desplazamiento"
-#. #/`L
#: formres.src
msgctxt ""
"formres.src\n"
"RID_STR_SCROLL_TOP\n"
"string.text"
msgid "Scroll top"
-msgstr ""
+msgstr "Desplazar hacia arriba"
-#. Y.\3
#: formres.src
msgctxt ""
"formres.src\n"
"RID_STR_SCROLL_LEFT\n"
"string.text"
msgid "Scroll left"
-msgstr ""
+msgstr "Desplazar hacia la izquierda"
-#. dcw%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2322,7 +2075,6 @@ msgctxt ""
msgid "Default scroll value"
msgstr "Valor predeterminado de desplazamiento"
-#. A,nt
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2331,7 +2083,6 @@ msgctxt ""
msgid "Small change"
msgstr "Cambio pequeño"
-#. -NF]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2340,7 +2091,6 @@ msgctxt ""
msgid "Large change"
msgstr "Cambio grande"
-#. XQig
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2349,7 +2099,6 @@ msgctxt ""
msgid "Delay"
msgstr "Retraso"
-#. cdN\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2358,7 +2107,6 @@ msgctxt ""
msgid "Repeat"
msgstr "Repetir"
-#. IT`?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2367,7 +2115,6 @@ msgctxt ""
msgid "Visible size"
msgstr "Tamaño visible"
-#. fr[=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2376,7 +2123,6 @@ msgctxt ""
msgid "Orientation"
msgstr "Orientación"
-#. kOP3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2386,7 +2132,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Horizontal"
-#. @0u#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2396,7 +2141,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Vertical"
-#. @{o^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2405,7 +2149,6 @@ msgctxt ""
msgid "While adjusting"
msgstr "Al ajustar"
-#. \nO8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2414,7 +2157,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. #^c)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2423,7 +2165,6 @@ msgctxt ""
msgid "State"
msgstr "Estado"
-#. %pud
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2432,7 +2173,6 @@ msgctxt ""
msgid "Time"
msgstr "Hora"
-#. IC[|
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2441,7 +2181,6 @@ msgctxt ""
msgid "Scale"
msgstr "Escala"
-#. .=PL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2450,7 +2189,6 @@ msgctxt ""
msgid "Button type"
msgstr "Tipo de botón"
-#. 1Xm3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2460,7 +2198,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. #VJ5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2470,7 +2207,6 @@ msgctxt ""
msgid "OK"
msgstr "Aceptar"
-#. [@v_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2480,7 +2216,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Cancelar"
-#. Xzb_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2490,7 +2225,6 @@ msgctxt ""
msgid "Help"
msgstr "Ayuda"
-#. 6fk?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2499,7 +2233,6 @@ msgctxt ""
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "No se pudo establecer la conexión al origen de datos «$name$»."
-#. E.]F
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2508,7 +2241,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. dE\_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2517,7 +2249,6 @@ msgctxt ""
msgid "Linked cell"
msgstr "Celda vinculada"
-#. i3l-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2526,7 +2257,6 @@ msgctxt ""
msgid "Source cell range"
msgstr "Rango de celdas de origen"
-#. s2s{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2535,7 +2265,6 @@ msgctxt ""
msgid "Contents of the linked cell"
msgstr "Contenido de la celda vinculada"
-#. 3?q/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2545,7 +2274,6 @@ msgctxt ""
msgid "The selected entry"
msgstr "La entrada seleccionada"
-#. F$*\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2555,7 +2283,6 @@ msgctxt ""
msgid "Position of the selected entry"
msgstr "Posición de la entrada seleccionada"
-#. .r5g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2564,7 +2291,6 @@ msgctxt ""
msgid "Scrollbars"
msgstr "Barras de desplazamiento"
-#. Xq.j
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2574,7 +2300,6 @@ msgctxt ""
msgid "Single-line"
msgstr "Una línea"
-#. R0-%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2584,7 +2309,6 @@ msgctxt ""
msgid "Multi-line"
msgstr "Múltiples líneas"
-#. G4gE
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2594,7 +2318,6 @@ msgctxt ""
msgid "Multi-line with formatting"
msgstr "Múltiples líneas con formato"
-#. {:/n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2603,7 +2326,6 @@ msgctxt ""
msgid "Symbol color"
msgstr "Color de símbolo"
-#. +9o9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2612,7 +2334,6 @@ msgctxt ""
msgid "Text lines end with"
msgstr "Las líneas de texto acaban con"
-#. Pn$*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2622,7 +2343,6 @@ msgctxt ""
msgid "LF (Unix)"
msgstr "LF (Unix)"
-#. {JJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2632,7 +2352,6 @@ msgctxt ""
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
-#. chgv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2642,7 +2361,6 @@ msgctxt ""
msgid "None"
msgstr "Ninguna"
-#. qCVL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2652,7 +2370,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "Horizontal"
-#. C~lr
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2662,7 +2379,6 @@ msgctxt ""
msgid "Vertical"
msgstr "Vertical"
-#. /tKF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2672,7 +2388,6 @@ msgctxt ""
msgid "Both"
msgstr "Ambas"
-#. 9-$K
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2682,7 +2397,6 @@ msgctxt ""
msgid "Table"
msgstr "Tabla"
-#. ,bsl
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2692,7 +2406,6 @@ msgctxt ""
msgid "Query"
msgstr "Consulta"
-#. Sfg@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2702,7 +2415,6 @@ msgctxt ""
msgid "SQL command"
msgstr "Comando SQL"
-#. *Xi.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2711,7 +2423,6 @@ msgctxt ""
msgid "Toggle"
msgstr "Alternar"
-#. 137^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2720,7 +2431,6 @@ msgctxt ""
msgid "Take Focus on Click"
msgstr "Activar al hacer clic"
-#. 75:(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2729,7 +2439,6 @@ msgctxt ""
msgid "Hide selection"
msgstr "Ocultar selección"
-#. #K-[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2738,7 +2447,6 @@ msgctxt ""
msgid "Style"
msgstr "Estilo"
-#. S}u\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2748,7 +2456,6 @@ msgctxt ""
msgid "3D"
msgstr "3D"
-#. hfq?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2758,7 +2465,6 @@ msgctxt ""
msgid "Flat"
msgstr "Plano"
-#. #/cN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2767,7 +2473,6 @@ msgctxt ""
msgid "Border color"
msgstr "Color de borde"
-#. $4$`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2777,7 +2482,6 @@ msgctxt ""
msgid "Left top"
msgstr "Superior izquierda"
-#. UuZU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2787,7 +2491,6 @@ msgctxt ""
msgid "Left centered"
msgstr "Centro izquierda"
-#. sn],
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2797,7 +2500,6 @@ msgctxt ""
msgid "Left bottom"
msgstr "Inferior izquierda"
-#. q%p}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2807,7 +2509,6 @@ msgctxt ""
msgid "Right top"
msgstr "Superior derecha"
-#. El?n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2817,7 +2518,6 @@ msgctxt ""
msgid "Right centered"
msgstr "Centro derecha"
-#. sIfy
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2827,7 +2527,6 @@ msgctxt ""
msgid "Right bottom"
msgstr "Inferior derecha"
-#. ]UGJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2837,7 +2536,6 @@ msgctxt ""
msgid "Above left"
msgstr "Encima izquierda"
-#. +[9p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2847,7 +2545,6 @@ msgctxt ""
msgid "Above centered"
msgstr "Encima centro"
-#. dWOS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2857,7 +2554,6 @@ msgctxt ""
msgid "Above right"
msgstr "Encima derecha"
-#. CC~q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2867,7 +2563,6 @@ msgctxt ""
msgid "Below left"
msgstr "Debajo izquierda"
-#. mqC(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2877,7 +2572,6 @@ msgctxt ""
msgid "Below centered"
msgstr "Debajo centro"
-#. v-Fd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2887,7 +2581,6 @@ msgctxt ""
msgid "Below right"
msgstr "Debajo derecha"
-#. +o?.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2897,7 +2590,6 @@ msgctxt ""
msgid "Centered"
msgstr "Centro"
-#. 0;oG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2906,7 +2598,6 @@ msgctxt ""
msgid "Wrap text automatically"
msgstr "Ajustar texto automáticamente"
-#. %+Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2915,7 +2606,6 @@ msgctxt ""
msgid "Text type"
msgstr "Tipo de texto"
-#. S#Q3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2925,7 +2615,6 @@ msgctxt ""
msgid "Hide"
msgstr "Ocultar"
-#. PnDz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2935,7 +2624,6 @@ msgctxt ""
msgid "Show"
msgstr "Mostrar"
-#. u$=i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2944,7 +2632,6 @@ msgctxt ""
msgid "XML data model"
msgstr "Modelo de datos XML"
-#. f\dm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2953,7 +2640,6 @@ msgctxt ""
msgid "Binding expression"
msgstr "Expresión de enlace"
-#. OlmL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2962,7 +2648,6 @@ msgctxt ""
msgid "Required"
msgstr "Requerido"
-#. r!.y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2971,7 +2656,6 @@ msgctxt ""
msgid "List entry source"
msgstr "Origen de entrada de lista"
-#. 2RO$
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2980,7 +2664,6 @@ msgctxt ""
msgid "Relevant"
msgstr "Relevante"
-#. M\XT
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2989,7 +2672,6 @@ msgctxt ""
msgid "Read-only"
msgstr "De sólo lectura"
-#. ~R[H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2998,7 +2680,6 @@ msgctxt ""
msgid "Constraint"
msgstr "Restricción"
-#. w]xA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3007,7 +2688,6 @@ msgctxt ""
msgid "Calculation"
msgstr "Cálculo"
-#. C7!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3016,7 +2696,6 @@ msgctxt ""
msgid "Data type"
msgstr "Tipo de datos"
-#. RTu-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3025,7 +2704,6 @@ msgctxt ""
msgid "Whitespaces"
msgstr "Espacios en blanco"
-#. 2`~}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3035,7 +2713,6 @@ msgctxt ""
msgid "Preserve"
msgstr "Conservar"
-#. DB_^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3045,7 +2722,6 @@ msgctxt ""
msgid "Replace"
msgstr "Reemplazar"
-#. a:1a
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3055,7 +2731,6 @@ msgctxt ""
msgid "Collapse"
msgstr "Contraer"
-#. _:{*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3064,7 +2739,6 @@ msgctxt ""
msgid "Pattern"
msgstr "Trama"
-#. {TC%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3073,7 +2747,6 @@ msgctxt ""
msgid "Length"
msgstr "Longitud"
-#. qNpQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3082,7 +2755,6 @@ msgctxt ""
msgid "Length (at least)"
msgstr "Longitudo (como mínimo)"
-#. UHOq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3091,7 +2763,6 @@ msgctxt ""
msgid "Length (at most)"
msgstr "Longitudo (como máximo)"
-#. 6j97
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3100,7 +2771,6 @@ msgctxt ""
msgid "Digits (total)"
msgstr "Dígitos (total)"
-#. O%8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3109,7 +2779,6 @@ msgctxt ""
msgid "Digits (fraction)"
msgstr "Dígitos (fracción)"
-#. ^fxb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3118,7 +2787,6 @@ msgctxt ""
msgid "Max. (inclusive)"
msgstr "Máx. (incluido)"
-#. rm_.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3127,7 +2795,6 @@ msgctxt ""
msgid "Max. (exclusive)"
msgstr "Máx. (no incluido)"
-#. ]~D~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3136,7 +2803,6 @@ msgctxt ""
msgid "Min. (inclusive)"
msgstr "Mín. (incluido)"
-#. qah+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3145,7 +2811,6 @@ msgctxt ""
msgid "Min. (exclusive)"
msgstr "Mín. (no incluido)"
-#. J\Hf
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3154,7 +2819,6 @@ msgctxt ""
msgid "Submission"
msgstr "Envío"
-#. (Cb(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3163,7 +2827,6 @@ msgctxt ""
msgid "Binding"
msgstr "Enlace"
-#. 0!k2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3172,7 +2835,6 @@ msgctxt ""
msgid "Selection type"
msgstr "Típo de selección"
-#. HlSx
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3181,7 +2843,6 @@ msgctxt ""
msgid "Root displayed"
msgstr "Raíz mostrada"
-#. .+E7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3190,7 +2851,6 @@ msgctxt ""
msgid "Show handles"
msgstr "Mostrar manillas"
-#. @h9_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3199,7 +2859,6 @@ msgctxt ""
msgid "Show root handles"
msgstr "Mostrar manillas raíz"
-#. 2:Pq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3208,7 +2867,6 @@ msgctxt ""
msgid "Editable"
msgstr "Editable"
-#. BCaS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3217,7 +2875,6 @@ msgctxt ""
msgid "Invokes stop node editing"
msgstr "Alto en la edición del nodo"
-#. \S=z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3226,7 +2883,6 @@ msgctxt ""
msgid "With title bar"
msgstr "Con barra de título"
-#. EO4w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3235,7 +2891,6 @@ msgctxt ""
msgid "No Label"
msgstr "Sin etiquetas"
-#. smZT
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3245,7 +2900,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. 1gPb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3255,7 +2909,6 @@ msgctxt ""
msgid "Keep Ratio"
msgstr "Mantener razón"
-#. `Wm.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3265,7 +2918,6 @@ msgctxt ""
msgid "Fit to Size"
msgstr "Ajustar al tamaño"
-#. vJ8;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3274,7 +2926,6 @@ msgctxt ""
msgid "Input required"
msgstr "Entrada requerida"
-#. FJqs
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3283,7 +2934,6 @@ msgctxt ""
msgid "Text direction"
msgstr "Orientación del texto"
-#. E6Mb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3293,7 +2943,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "Izquierda a derecha"
-#. e(6@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3303,7 +2952,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "Derecha a izquierda"
-#. ^{n^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3313,7 +2961,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "De izquierda a derecha"
-#. }q9O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3323,7 +2970,6 @@ msgctxt ""
msgid "Never"
msgstr "Nunca"
-#. Crc\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3333,7 +2979,6 @@ msgctxt ""
msgid "When focused"
msgstr "Al enfocarse"
-#. Sr4`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3343,7 +2988,6 @@ msgctxt ""
msgid "Always"
msgstr "Siempre"
-#. F/k`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3352,7 +2996,6 @@ msgctxt ""
msgid "Anchor"
msgstr "Ancla"
-#. 7r+v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3362,7 +3005,6 @@ msgctxt ""
msgid "To Paragraph"
msgstr "Al párrafo"
-#. Fy8h
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3372,7 +3014,6 @@ msgctxt ""
msgid "As Character"
msgstr "Como caracteres"
-#. ye~-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3382,7 +3023,6 @@ msgctxt ""
msgid "To Page"
msgstr "A página"
-#. MB0^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3392,7 +3032,6 @@ msgctxt ""
msgid "To Frame"
msgstr "Al capítulo"
-#. 3i7.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3402,7 +3041,6 @@ msgctxt ""
msgid "To Character"
msgstr "A caracteres"
-#. |ZcH
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3412,7 +3050,6 @@ msgctxt ""
msgid "To Page"
msgstr "A página"
-#. )n?x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3423,7 +3060,6 @@ msgid "To Cell"
msgstr "A celda"
#. 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 +3069,6 @@ msgid "Regular"
msgstr "Regular"
#. 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 +3078,6 @@ msgid "Bold Italic"
msgstr "Negrita Cursiva"
#. 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 +3087,6 @@ msgid "Italic"
msgstr "Cursiva"
#. 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 +3095,6 @@ msgctxt ""
msgid "Bold"
msgstr "Negrita"
-#. aX]A
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3471,7 +3103,6 @@ msgctxt ""
msgid "(Default)"
msgstr "(Predeterminado)"
-#. d)p)
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3481,7 +3112,6 @@ msgctxt ""
msgid "Font"
msgstr "Fuente"
-#. L{e]
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3491,7 +3121,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "Efectos de fuente"
-#. CnL3
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3500,7 +3129,6 @@ msgctxt ""
msgid "Character"
msgstr "Caracteres"
-#. hzG4
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3510,7 +3138,6 @@ msgctxt ""
msgid "These are control fields that can be used as label fields for the $control_class$ $control_name$."
msgstr "Estos son todos los campos de control que pueden asignarse al $control_class$ $control_name$ como campo de etiqueta."
-#. -0+n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3520,7 +3147,6 @@ msgctxt ""
msgid "~No assignment"
msgstr "~sin asignación"
-#. kV]M
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3529,7 +3155,6 @@ msgctxt ""
msgid "Label Field Selection"
msgstr "Selección campo de etiqueta"
-#. %X$n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3538,7 +3163,6 @@ msgctxt ""
msgid "Forms"
msgstr "Formularios"
-#. gyU6
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3547,7 +3171,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. cx8C
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3556,7 +3179,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. $aE`
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3565,7 +3187,6 @@ msgctxt ""
msgid "Data"
msgstr "Datos"
-#. e^gC
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3575,7 +3196,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. Z;YA
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3585,7 +3205,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. PD5y
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3594,7 +3213,6 @@ msgctxt ""
msgid "Help"
msgstr "Ayuda"
-#. xGE$
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3603,7 +3221,6 @@ msgctxt ""
msgid "<Embedded-Image>"
msgstr "<Imagen-incrustada>"
-#. aOT_
#: propres.src
msgctxt ""
"propres.src\n"
diff --git a/source/es/extensions/source/scanner.po b/source/es/extensions/source/scanner.po
index 92a45a880c4..b0d214ac34e 100644
--- a/source/es/extensions/source/scanner.po
+++ b/source/es/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: 2012-10-08 10:36+0200\n"
"Last-Translator: Adolfo <fitoschido@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 ""
"Información sobre\n"
" ~dispositivo"
-#. nZmm
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -43,7 +41,6 @@ msgstr ""
"Crear\n"
"previsualización"
-#. ,$ZF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -53,7 +50,6 @@ msgctxt ""
msgid "Scan"
msgstr "Escanear"
-#. ESbO
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -63,7 +59,6 @@ msgctxt ""
msgid "Preview"
msgstr "Previsualización"
-#. ,O6b
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -73,7 +68,6 @@ msgctxt ""
msgid "Scan area"
msgstr "Área de escaneado"
-#. apdX
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -83,7 +77,6 @@ msgctxt ""
msgid "Left:"
msgstr "Izquierda:"
-#. ITmF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -93,7 +86,6 @@ msgctxt ""
msgid "Top:"
msgstr "Arriba:"
-#. bmM`
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -103,7 +95,6 @@ msgctxt ""
msgid "Right:"
msgstr "Derecha:"
-#. sNk/
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -113,7 +104,6 @@ msgctxt ""
msgid "Bottom:"
msgstr "Abajo:"
-#. bTWg
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -123,7 +113,6 @@ msgctxt ""
msgid "Device used:"
msgstr "Dispositivo usado:"
-#. f^4O
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -133,7 +122,6 @@ msgctxt ""
msgid "Resolution [~DPI]"
msgstr "Resolución [~PPP]"
-#. Qq$M
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -143,7 +131,6 @@ msgctxt ""
msgid "Show advanced options"
msgstr "Mostrar opciones avanzadas"
-#. NK-a
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -153,7 +140,6 @@ msgctxt ""
msgid "Options:"
msgstr "Opciones:"
-#. J:eK
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -163,7 +149,6 @@ msgctxt ""
msgid "Vector element"
msgstr "Elemento vectorial"
-#. /}\N
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -173,7 +158,6 @@ msgctxt ""
msgid "Set"
msgstr "Definir"
-#. 5]Q7
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "Scanner"
msgstr "Escáner"
-#. h;sG
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -199,7 +182,6 @@ msgstr ""
"Modelo: %s\n"
"Tipo: %s"
-#. Rw80
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -208,7 +190,6 @@ msgctxt ""
msgid "An error occurred while scanning."
msgstr "Se ha producido un error durante el escaneado."
-#. 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 "El dispositivo no está preparado para ofrecer opción de previsualización. En lugar de esta se utilizará un escaneado normal, que puede tardar considerablemente más."
-#. 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 "La interfaz SANE no se pudo inicializar. No se puede realizar ningún proceso de digitalización."
-#. PgQe
#: grid.src
msgctxt ""
"grid.src\n"
@@ -236,7 +215,6 @@ msgctxt ""
msgid "Set"
msgstr "Definir"
-#. d)D;
#: grid.src
msgctxt ""
"grid.src\n"
@@ -246,7 +224,6 @@ msgctxt ""
msgid "Linear ascending"
msgstr "Lineal ascendente"
-#. HyhL
#: grid.src
msgctxt ""
"grid.src\n"
@@ -256,7 +233,6 @@ msgctxt ""
msgid "Linear descending"
msgstr "Lineal descendente"
-#. ]{CR
#: grid.src
msgctxt ""
"grid.src\n"
@@ -266,7 +242,6 @@ msgctxt ""
msgid "Original values"
msgstr "Valores originales"
-#. (](f
#: grid.src
msgctxt ""
"grid.src\n"
diff --git a/source/es/extensions/source/update/check.po b/source/es/extensions/source/update/check.po
index 24834d21076..2eb0ecb1713 100644
--- a/source/es/extensions/source/update/check.po
+++ b/source/es/extensions/source/update/check.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2012-10-08 10:36+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. g*Z4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Checking..."
msgstr "Buscando..."
-#. Xj;\
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Checking for an update failed."
msgstr "Falló la búsqueda de una actualización."
-#. 7^\Y
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
msgstr "%PRODUCTNAME %PRODUCTVERSION está actualizado."
-#. dxD7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -63,7 +59,6 @@ msgstr ""
"Nota: Antes de descargar una actualización, asegúrese que tiene los permisos de acceso necesarios para instalarla.\n"
"Puede ser necesario ingresar una contraseña, usualmente del administrador del sistema o del usuario root."
-#. wfY$
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -72,7 +67,6 @@ msgctxt ""
msgid "Check for Updates"
msgstr "Buscar actualizaciones"
-#. kH/w
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -81,7 +75,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
msgstr "La descarga de %PRODUCTNAME %NEXTVERSION está pausada en..."
-#. 7.2#
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -90,7 +83,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
msgstr "La descarga de %PRODUCTNAME %NEXTVERSION está detenida en"
-#. ~11K
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -105,7 +97,6 @@ msgstr ""
"\n"
"En Herramientas – Opciones... - %PRODUCTNAME – Actualización en línea, se puede cambiar la ubicación de la descarga."
-#. tkv_
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -114,7 +105,6 @@ msgctxt ""
msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
msgstr "%FILE_NAME ha sido descargado a %DOWNLOAD_PATH."
-#. g+Lt
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -129,7 +119,6 @@ msgstr ""
"\n"
"Haga clic en 'Descargar...' para descargar %PRODUCTNAME %NEXTVERSION manualmente de la página web."
-#. RJN8
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -138,7 +127,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
msgstr "Descargando %PRODUCTNAME %NEXTVERSION..."
-#. 3Dm9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -147,7 +135,6 @@ msgctxt ""
msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
msgstr "La descarga de %PRODUCTNAME %NEXTVERSION ha completado. Listo para la instalación."
-#. `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 "¿Realmente desea cancelar la descarga?"
-#. 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 "Para instalar las actualizaciones, %PRODUCTNAME %PRODUCTVERSION necesita cerrarse. Quieres instalar las actualizaciones ahora?"
-#. v:FP
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -183,7 +167,6 @@ msgctxt ""
msgid "Install ~now"
msgstr "Instalar ~ahora"
-#. QN)o
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -192,7 +175,6 @@ msgctxt ""
msgid "Install ~later"
msgstr "Instalar ~después"
-#. 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 "No se pudo correr el instalador de la aplicación, favor de correr manualmente %FILE_NAME dentro de %DOWNLOAD_PATH."
-#. 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 "Ya existe un archivo con ese nombre. ¿Quiere sobreescribir el archivo existente?"
-#. 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 "¡Ya existe en '%DOWNLOAD_PATH' un archivo llamado '%FILENAME'! ¿Desea continuar la descarga o eliminar y volver a descargar el archivo?"
-#. 7N7V
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -228,7 +207,6 @@ msgctxt ""
msgid "Reload File"
msgstr "Recargar archivo"
-#. 8qG,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -237,7 +215,6 @@ msgctxt ""
msgid "Continue"
msgstr "Continuar"
-#. 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 "Estado"
-#. /hQk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. CqPi
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Close"
msgstr "Cerrar"
-#. Wb-C
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -282,7 +255,6 @@ msgctxt ""
msgid "~Download"
msgstr "~Descargar"
-#. ^ZR3
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -291,7 +263,6 @@ msgctxt ""
msgid "~Install"
msgstr "~Instalar"
-#. `svJ
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -300,7 +271,6 @@ msgctxt ""
msgid "~Pause"
msgstr "~Pausar"
-#. Fypk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "~Resume"
msgstr "~Continuar"
-#. }D@S
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -318,7 +287,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Cancelar"
-#. -L!;
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -327,7 +295,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr "Actualización disponible de %PRODUCTNAME"
-#. 0#nw
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -336,7 +303,6 @@ msgctxt ""
msgid "Click the icon to start the download."
msgstr "Pulse en el icono para iniciar la descarga."
-#. 7D`X
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr "Actualización disponible de %PRODUCTNAME"
-#. M?%A
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -354,7 +319,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr "Pulse en el icono para más información."
-#. +?c+
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -363,7 +327,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr "Actualización disponible de %PRODUCTNAME"
-#. 5xVs
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Download of update begins."
msgstr "Comienza la descarga de la actualización."
-#. S:I4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -381,7 +343,6 @@ msgctxt ""
msgid "Download of update in progress"
msgstr "Descarga de actualización en progreso"
-#. vX:u
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "Download of update paused"
msgstr "Descarga de la actualización en pausa"
-#. Vi?J
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Click the icon to resume."
msgstr "Pulse en el icono para continuar."
-#. aWS!
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Download of update stalled"
msgstr "Descarga de la actualización en espera"
-#. y4,B
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -417,7 +375,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr "Pulse en el icono para más información."
-#. wpWK
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "Download of update completed"
msgstr "Descarga de la actualización completa"
-#. 8NG0
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -435,7 +391,6 @@ msgctxt ""
msgid "Click the icon to start the installation."
msgstr "Pulse en el icono para comenzar la instalación."
-#. U-cB
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -444,7 +399,6 @@ msgctxt ""
msgid "Updates for extensions available"
msgstr "Actualizaciones para extensiones disponibles"
-#. oo*[
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
diff --git a/source/es/extensions/source/update/check/org/openoffice/Office.po b/source/es/extensions/source/update/check/org/openoffice/Office.po
index 6702ae237b3..ff1efa970c2 100644
--- a/source/es/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/es/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-06-13 19:07+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\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/es/filter/source/config/fragments/filters.po b/source/es/filter/source/config/fragments/filters.po
index 7ffb9215613..7e96c897e0d 100644
--- a/source/es/filter/source/config/fragments/filters.po
+++ b/source/es/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-13 19:11+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. tluj
#: StarOffice_XML__Draw__ui.xcu
msgctxt ""
"StarOffice_XML__Draw__ui.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing"
msgstr "Dibujo de %productname% %formatversion%"
-#. FSla
#: Text__encoded__ui.xcu
msgctxt ""
"Text__encoded__ui.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Text Encoded"
msgstr "Texto codificado"
-#. 1jf\
#: UOF_presentation_ui.xcu
msgctxt ""
"UOF_presentation_ui.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Unified Office Format presentation"
msgstr "Presentación en Formato de Ofimática Unificado"
-#. ``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 "Texto codificado (Writer/Web)"
-#. WZVM
#: HTML__StarCalc__ui.xcu
msgctxt ""
"HTML__StarCalc__ui.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "HTML Document (Calc)"
msgstr "Documento HTML (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 "Texto codificado (documento maestro)"
-#. 90^8
#: HTML__StarWriter__ui.xcu
msgctxt ""
"HTML__StarWriter__ui.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "HTML Document (Writer)"
msgstr "Documento HTML (Writer)"
-#. eje)
#: UOF_text_ui.xcu
msgctxt ""
"UOF_text_ui.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Unified Office Format text"
msgstr "texto en Formato de Ofimática Unificado"
-#. 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 "Plantilla de Microsoft Excel 4.0"
-#. 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 (reproducción automática)"
-#. 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 "Plantilla de Microsoft Word 2007 XML"
-#. 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 "Plantilla de Microsoft Excel 95"
-#. EEc%
#: calc8_template_ui.xcu
msgctxt ""
"calc8_template_ui.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "ODF Spreadsheet Template"
msgstr "Plantilla de Hoja de cálculo ODF"
-#. MVN`
#: impress8_template_ui.xcu
msgctxt ""
"impress8_template_ui.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "ODF Presentation Template"
msgstr "Plantilla de presentación ODF"
-#. |H*2
#: chart8_ui.xcu
msgctxt ""
"chart8_ui.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "ODF Chart"
msgstr "Gráficos ODF"
-#. 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 Binary"
-#. 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 "Plantilla de Microsoft PowerPoint 2007/2010 XML"
-#. ?Kb,
#: impress_OOXML_ui.xcu
msgctxt ""
"impress_OOXML_ui.xcu\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Office Open XML Presentation"
msgstr "Presentación Office Open XML"
-#. %(ni
#: draw8_template_ui.xcu
msgctxt ""
"draw8_template_ui.xcu\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "ODF Drawing Template"
msgstr "Plantillas de dibujo ODF"
-#. Y5_V
#: StarOffice_XML__Math__ui.xcu
msgctxt ""
"StarOffice_XML__Math__ui.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "%productname% %formatversion% Formula"
msgstr "Fórmula de %productname% %formatversion%"
-#. 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 "Plantilla de Microsoft Word 97/2000/XP/2003"
-#. #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 "Dibujo de %productname% %formatversion% (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 "Plantilla de Microsoft Word 2007/2010 XML"
-#. 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 "Plantilla de presentación Office Open XML"
-#. 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 "Plantilla de hoja de cálculo Office Open XML"
-#. 7,nr
#: UOF_spreadsheet_ui.xcu
msgctxt ""
"UOF_spreadsheet_ui.xcu\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "Unified Office Format spreadsheet"
msgstr "hoja de cálculo en Formato de Ofimática Unificado"
-#. 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 "Plantilla HTML de %productname% %formatversion%"
-#. qT6D
#: writerweb8_writer_template_ui.xcu
msgctxt ""
"writerweb8_writer_template_ui.xcu\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "HTML Document Template"
msgstr "Plantilla de documento HTML"
-#. yL/+
#: StarOffice_XML__Calc__ui.xcu
msgctxt ""
"StarOffice_XML__Calc__ui.xcu\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet"
msgstr "Hoja de cálculo de %productname% %formatversion%"
-#. 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 "Plantilla de texto Office Open XML"
-#. $+;N
#: draw8_ui.xcu
msgctxt ""
"draw8_ui.xcu\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "ODF Drawing"
msgstr "Dibujo ODF"
-#. 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 "Plantilla de Microsoft Excel 2007/2010 XML"
-#. H9?2
#: impress8_ui.xcu
msgctxt ""
"impress8_ui.xcu\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "ODF Presentation"
msgstr "Presentación ODF"
-#. 6HHU
#: Text__StarWriter_Web__ui.xcu
msgctxt ""
"Text__StarWriter_Web__ui.xcu\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Text (Writer/Web)"
msgstr "Texto (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 "Hoja de cálculo ODF"
-#. ,MlL
#: calc_HTML_WebQuery_ui.xcu
msgctxt ""
"calc_HTML_WebQuery_ui.xcu\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "Web Page Query (Calc)"
msgstr "Consulta de página web (Calc)"
-#. `Atl
#: HTML_MasterDoc_ui.xcu
msgctxt ""
"HTML_MasterDoc_ui.xcu\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "HTML Document (Master Document)"
msgstr "Documento HTML (documento maestro)"
-#. AJSF
#: writerweb8_writer_ui.xcu
msgctxt ""
"writerweb8_writer_ui.xcu\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "%productname% Text (Writer/Web)"
msgstr "Texto de %productname% (Writer/Web)"
-#. }t(*
#: Text_ui.xcu
msgctxt ""
"Text_ui.xcu\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "Text"
msgstr "Texto"
-#. ,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 "Plantilla de hoja de cálculo de %productname% %formatversion%"
-#. 7sAm
#: OOXML_Text_ui.xcu
msgctxt ""
"OOXML_Text_ui.xcu\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "Office Open XML Text"
msgstr "Texto Office Open XML"
-#. @IUQ
#: HTML_ui.xcu
msgctxt ""
"HTML_ui.xcu\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "Documento HTML"
-#. ][6X
#: impress_html_Export_ui.xcu
msgctxt ""
"impress_html_Export_ui.xcu\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "HTML Document (Impress)"
msgstr "Documento HTML (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 "Plantilla de documento de texto de %productname% %formatversion%"
-#. 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 "Plantilla de Microsoft Excel 97/2000/XP/2003"
-#. clCD
#: StarOffice_XML__Writer__ui.xcu
msgctxt ""
"StarOffice_XML__Writer__ui.xcu\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr "Documento de texto de %productname% %formatversion%"
-#. ZOC6
#: StarOffice_XML__Impress__ui.xcu
msgctxt ""
"StarOffice_XML__Impress__ui.xcu\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation"
msgstr "Presentación de %productname% %formatversion%"
-#. ^jXH
#: writerglobal8_ui.xcu
msgctxt ""
"writerglobal8_ui.xcu\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "ODF Master Document"
msgstr "Documento maestro ODF"
-#. 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 "Plantilla de Microsoft Excel 5.0"
-#. 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 "Plantilla de presentación de %productname% %formatversion%"
-#. 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 "Documento de texto de %productname% %formatversion%"
-#. ,(b:
#: impress8_draw_ui.xcu
msgctxt ""
"impress8_draw_ui.xcu\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "ODF Drawing (Impress)"
msgstr "Dibujo ODF (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 "Documento de texto de %productname% %formatversion% (Writer/Web)"
-#. ?H1Y
#: calc_OOXML_ui.xcu
msgctxt ""
"calc_OOXML_ui.xcu\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet"
msgstr "Hoja de cálculo Office Open XML"
-#. 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 "Plantilla de Microsoft PowerPoint 2007/2010 XML"
-#. tb):
#: Text___txt___csv__StarCalc__ui.xcu
msgctxt ""
"Text___txt___csv__StarCalc__ui.xcu\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Text CSV"
msgstr "Texto 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 "Documento maestro de %productname% %formatversion%"
-#. W^dl
#: writer8_ui.xcu
msgctxt ""
"writer8_ui.xcu\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr "Documento de texto ODF"
-#. 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 "Plantilla de Microsoft Word 95"
-#. l,@_
#: writer8_template_ui.xcu
msgctxt ""
"writer8_template_ui.xcu\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "ODF Text Document Template"
msgstr "Plantilla de documento de texto ODF"
-#. #3,N
#: draw_html_Export_ui.xcu
msgctxt ""
"draw_html_Export_ui.xcu\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "HTML Document (Draw)"
msgstr "Documento HTML (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 "Plantilla de dibujo de %productname% %formatversion%"
-#. H=YU
#: writerglobal8_writer_ui.xcu
msgctxt ""
"writerglobal8_writer_ui.xcu\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr "Documento de texto ODF"
-#. 2[!X
#: StarOffice_XML__Base__ui.xcu
msgctxt ""
"StarOffice_XML__Base__ui.xcu\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "ODF Database"
msgstr "Base de datos ODF"
-#. ]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 "Plantilla de Microsoft PowerPoint 97/2000/XP/2003"
-#. _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% Chart"
-#. 8O3T
#: math8_ui.xcu
msgctxt ""
"math8_ui.xcu\n"
diff --git a/source/es/filter/source/config/fragments/internalgraphicfilters.po b/source/es/filter/source/config/fragments/internalgraphicfilters.po
index fbb9243e5b2..1a125b50ba1 100644
--- a/source/es/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/es/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: 2012-07-18 10:14+0200\n"
"Last-Translator: Adolfo <fitoschido@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 - Imagen vectorial escalable"
-#. 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 - Formato de intercambio de AutoCAD"
-#. !1co
#: bmp_Import.xcu
msgctxt ""
"bmp_Import.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr "BMP - Mapa de bits de Windows"
-#. kltH
#: tif_Import.xcu
msgctxt ""
"tif_Import.xcu\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Formato de archivo de imagen etiquetada"
-#. cK7s
#: xpm_Export.xcu
msgctxt ""
"xpm_Export.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr "XPM - Mapa de píxeles X"
-#. LBZQ
#: pcd_Import_Base16.xcu
msgctxt ""
"pcd_Import_Base16.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (192x128)"
msgstr "PCD - CD de fotos de Kodak (192x128)"
-#. Qb,j
#: ras_Import.xcu
msgctxt ""
"ras_Import.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Imagen de Sun Raster"
-#. Co!+
#: ppm_Import.xcu
msgctxt ""
"ppm_Import.xcu\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr "PPM - Mapa de píxeles portátil"
-#. MoeF
#: png_Export.xcu
msgctxt ""
"png_Export.xcu\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Gráfico de red portátil"
-#. :=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 - Metarchivo de Windows"
-#. ]?[k
#: pcx_Import.xcu
msgctxt ""
"pcx_Import.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Pincel de Zsoft"
-#. $(nB
#: sgf_Import.xcu
msgctxt ""
"sgf_Import.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "SGF - StarWriter Graphics Format"
msgstr "SGF - Formato de gráficos de StarWriter"
-#. M]4B
#: met_Export.xcu
msgctxt ""
"met_Export.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr "MET - Metarchivo de OS/2"
-#. 6o+b
#: eps_Import.xcu
msgctxt ""
"eps_Import.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - PostScript encapsulado"
-#. @ZOn
#: bmp_Export.xcu
msgctxt ""
"bmp_Export.xcu\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr "BMP - Mapa de bits de Windows"
-#. 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 - Mapa de píxeles portátil"
-#. )`ND
#: pbm_Export.xcu
msgctxt ""
"pbm_Export.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr "PBM - Mapa de bits portátil"
-#. aA?q
#: gif_Export.xcu
msgctxt ""
"gif_Export.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr "GIF - Formato de Intercambio de Gráficos"
-#. :zU2
#: ras_Export.xcu
msgctxt ""
"ras_Export.xcu\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Imagen de Sun Raster"
-#. Ga7:
#: tif_Export.xcu
msgctxt ""
"tif_Export.xcu\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Formato de archivo de imagen etiquetada"
-#. VNR8
#: pct_Import.xcu
msgctxt ""
"pct_Import.xcu\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr "PCT - Imagen de Mac"
-#. B`\~
#: xbm_Import.xcu
msgctxt ""
"xbm_Import.xcu\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - Mapa de bits X"
-#. %Z(;
#: emf_Export.xcu
msgctxt ""
"emf_Export.xcu\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr "EMF - Metarchivo mejorado"
-#. ]\SO
#: svm_Import.xcu
msgctxt ""
"svm_Import.xcu\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr "SVM - Metarchivo de StarView"
-#. llig
#: svg_Export.xcu
msgctxt ""
"svg_Export.xcu\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr "SVG - Gráficos vectoriales escalables"
-#. :[\\
#: xpm_Import.xcu
msgctxt ""
"xpm_Import.xcu\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr "XPM - Mapa de píxeles X"
-#. IJmO
#: pcd_Import_Base4.xcu
msgctxt ""
"pcd_Import_Base4.xcu\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (384x256)"
msgstr "PCD - CD de fotos de Kodak (384×256)"
-#. JU6T
#: pcd_Import_Base.xcu
msgctxt ""
"pcd_Import_Base.xcu\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (768x512)"
msgstr "PCD - CD de fotos de Kodak (768x512)"
-#. y+w+
#: pgm_Import.xcu
msgctxt ""
"pgm_Import.xcu\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Mapa de grises portátil"
-#. UlYg
#: svm_Export.xcu
msgctxt ""
"svm_Export.xcu\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr "SVM - Metarchivo de StarView"
-#. 9+j;
#: met_Import.xcu
msgctxt ""
"met_Import.xcu\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr "MET - Metarchivo de OS/2"
-#. ;~S:
#: pct_Export.xcu
msgctxt ""
"pct_Export.xcu\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr "PCT - Imagen de Mac"
-#. @A~4
#: png_Import.xcu
msgctxt ""
"png_Import.xcu\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Gráfico de red portátil"
-#. WB2s
#: gif_Import.xcu
msgctxt ""
"gif_Import.xcu\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr "GIF - Formato de Intercambio de Gráficos"
-#. sIoS
#: pbm_Import.xcu
msgctxt ""
"pbm_Import.xcu\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr "PBM - Mapa de bits portátil"
-#. }4lG
#: eps_Export.xcu
msgctxt ""
"eps_Export.xcu\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - PostScript encapsulado"
-#. 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 - Metarchivo mejorado"
-#. N-6v
#: wmf_Export.xcu
msgctxt ""
"wmf_Export.xcu\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr "WMF - Metarchivo de Windows"
-#. \c6#
#: pgm_Export.xcu
msgctxt ""
"pgm_Export.xcu\n"
diff --git a/source/es/filter/source/config/fragments/types.po b/source/es/filter/source/config/fragments/types.po
index 282c4de3979..7d81bccd96f 100644
--- a/source/es/filter/source/config/fragments/types.po
+++ b/source/es/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: 2012-05-08 14:29+0200\n"
"Last-Translator: Santiago <santiago.bosio@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 "Plantilla de Writer 8"
-#. 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 "Base de datos de OpenDocument"
-#. {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 "Plantilla de Microsoft PowerPoint 2007/2010 XML"
-#. jQ8A
#: impress8_template.xcu
msgctxt ""
"impress8_template.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Impress 8 Template"
msgstr "Plantilla de Impress 8"
-#. $TR?
#: calc8_template.xcu
msgctxt ""
"calc8_template.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Calc 8 Template"
msgstr "Plantilla de Calc 8"
-#. 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 Binary"
-#. 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 "Plantilla de Microsoft Excel 2007/2010 XML"
-#. ;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 "Plantilla de Writer/Web 8"
-#. x9Oe
#: draw8_template.xcu
msgctxt ""
"draw8_template.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Draw 8 Template"
msgstr "Plantilla de Draw 8"
-#. 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 "Plantilla de Microsoft Word 2007/2010 XML"
-#. 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 "Documento maestro de Writer 8"
-#. .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/es/filter/source/flash.po b/source/es/filter/source/flash.po
index 34a793745e1..af9d439dcf7 100644
--- a/source/es/filter/source/flash.po
+++ b/source/es/filter/source/flash.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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: calidad mín.\n"
"100: calidad máx."
-#. \Qfh
#: impswfdialog.src
msgctxt ""
"impswfdialog.src\n"
diff --git a/source/es/filter/source/graphicfilter/eps.po b/source/es/filter/source/graphicfilter/eps.po
index 40f11b4e2fd..680b59334cf 100644
--- a/source/es/filter/source/graphicfilter/eps.po
+++ b/source/es/filter/source/graphicfilter/eps.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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/es/filter/source/pdf.po b/source/es/filter/source/pdf.po
index 429ebb32f34..6e25e5c17e6 100644
--- a/source/es/filter/source/pdf.po
+++ b/source/es/filter/source/pdf.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-08-17 07:51+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:24+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353504260.0\n"
-#. LY5v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -24,7 +24,6 @@ msgctxt ""
msgid "E~xport"
msgstr "E~xportar"
-#. AQU:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -33,7 +32,6 @@ msgctxt ""
msgid "Set open password"
msgstr "Establecer la contraseña para abrir"
-#. Z2)V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -42,7 +40,6 @@ msgctxt ""
msgid "Set permission password"
msgstr "Establecer la contraseña de permisos"
-#. 4S[C
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -52,7 +49,6 @@ msgctxt ""
msgid "Range"
msgstr "Intervalo"
-#. W0[B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -62,7 +58,6 @@ msgctxt ""
msgid "~All"
msgstr "~Todo"
-#. 0#QB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -72,7 +67,6 @@ msgctxt ""
msgid "~Pages"
msgstr "~Páginas"
-#. (QN6
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -82,7 +76,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~Selección"
-#. TDTP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -92,7 +85,6 @@ msgctxt ""
msgid "Images"
msgstr "Imágenes"
-#. W0pN
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -102,7 +94,6 @@ msgctxt ""
msgid "~Lossless compression"
msgstr "~Compresión sin pérdida"
-#. (reK
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -112,7 +103,6 @@ msgctxt ""
msgid "~JPEG compression"
msgstr "~Compresión JPEG"
-#. !YT5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -122,7 +112,6 @@ msgctxt ""
msgid "~Quality"
msgstr "~Calidad"
-#. w1Y:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -132,7 +121,6 @@ msgctxt ""
msgid "~Reduce image resolution"
msgstr "~Reducir resolución de imagen"
-#. wK|)
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -141,7 +129,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. O__/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -150,7 +137,6 @@ msgctxt ""
msgid "Watermark"
msgstr "Marca de agua"
-#. m%~K
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -159,7 +145,6 @@ msgctxt ""
msgid "Sign with Watermark"
msgstr "Firmar con marca de agua"
-#. Z:i#
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "Watermark Text"
msgstr "Texto de marca de agua"
-#. ]h9H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -177,7 +161,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. znbP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -186,7 +169,6 @@ msgctxt ""
msgid "Em~bed OpenDocument file"
msgstr "~Incrustar archivo OpenDocument"
-#. }Y+-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Makes this PDF easily editable in %PRODUCTNAME"
msgstr "Hace que este PDF se pueda editar fácilmente en %PRODUCTNAME"
-#. .Dg$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "P~DF/A-1a"
msgstr "P~DF/A-1"
-#. :CRm
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "~Tagged PDF"
msgstr "PDF con ~etiquetas"
-#. t8Q0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -222,7 +201,6 @@ msgctxt ""
msgid "~Create PDF form"
msgstr "~Crear formulario PDF"
-#. Om4N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -231,7 +209,6 @@ msgctxt ""
msgid "Submit ~format"
msgstr "Enviar ~formato"
-#. -R[=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "Allow duplicate field ~names"
msgstr "Permitir ~nombres de campos duplicados"
-#. K~#|
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Export ~bookmarks"
msgstr "Exportar ~marcadores"
-#. o}Se
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -258,7 +233,6 @@ msgctxt ""
msgid "~Export comments"
msgstr "~Exportar comentarios"
-#. {wNC
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -267,7 +241,6 @@ msgctxt ""
msgid "Export ~notes pages"
msgstr "Exportar página de ~notas"
-#. al{^
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -276,7 +249,6 @@ msgctxt ""
msgid "Export ~hidden pages"
msgstr "Exportar páginas ~ocultas"
-#. p-BB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -285,7 +257,6 @@ msgctxt ""
msgid "Exp~ort automatically inserted blank pages"
msgstr "Exp~ortar automáticamente páginas en blanco insertadas"
-#. V{m/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -294,7 +265,6 @@ msgctxt ""
msgid "E~mbed standard fonts"
msgstr "E~mbedir fuentes estandar"
-#. cfF8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
msgstr "El formato PDF/A no admite el cifrado. El archivo PDF exportado no estará protegido por contraseña."
-#. LT;O
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "PDF/A Export"
msgstr "Exportar a PDF/A"
-#. S8jQ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Panes"
msgstr "Paneles"
-#. -\#!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "~Page only"
msgstr "~Sólo página"
-#. w.:v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "~Bookmarks and page"
msgstr "~Marcadores y página"
-#. 2l@$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid "~Thumbnails and page"
msgstr "~Miniaturas y página"
-#. $I2H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "Open on page"
msgstr "Abrir en página"
-#. W[ik
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Magnification"
msgstr "Ampliación"
-#. 6D(S
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -382,7 +344,6 @@ msgctxt ""
msgid "~Default"
msgstr "~Predeterminado"
-#. teE,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -392,7 +353,6 @@ msgctxt ""
msgid "~Fit in window"
msgstr "~Ajustar a ventana"
-#. K\UE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -402,7 +362,6 @@ msgctxt ""
msgid "Fit ~width"
msgstr "Ajustar a a~ncho"
-#. Xr2t
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -412,7 +371,6 @@ msgctxt ""
msgid "Fit ~visible"
msgstr "Ajustar ~visible"
-#. {USU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -422,7 +380,6 @@ msgctxt ""
msgid "~Zoom factor"
msgstr "~Factor de zoom"
-#. Fz2T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -432,7 +389,6 @@ msgctxt ""
msgid "Page layout"
msgstr "Diseño de página"
-#. _DAp
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -442,7 +398,6 @@ msgctxt ""
msgid "D~efault"
msgstr "Pr~edeterminado"
-#. PZ);
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -452,7 +407,6 @@ msgctxt ""
msgid "~Single page"
msgstr "~Una página"
-#. -^sP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -462,7 +416,6 @@ msgctxt ""
msgid "~Continuous"
msgstr "~Continuo"
-#. Nt(1
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -472,7 +425,6 @@ msgctxt ""
msgid "C~ontinuous facing"
msgstr "Páginas a~biertas"
-#. {3So
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -482,7 +434,6 @@ msgctxt ""
msgid "First page is ~left"
msgstr "Primera página a la ~izquierda"
-#. CoFE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -491,7 +442,6 @@ msgctxt ""
msgid "Initial View"
msgstr "Vista inicial"
-#. s|1u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -501,7 +451,6 @@ msgctxt ""
msgid "Window options"
msgstr "Opciones de ventana"
-#. %(k;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -511,7 +460,6 @@ msgctxt ""
msgid "~Resize window to initial page"
msgstr "~Redimensionar ventana a la página inicial"
-#. u,vy
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -521,7 +469,6 @@ msgctxt ""
msgid "~Center window on screen"
msgstr "~Centrar ventana en la pantalla"
-#. y,,T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -531,7 +478,6 @@ msgctxt ""
msgid "~Open in full screen mode"
msgstr "~Abrir en modo de pantalla completa"
-#. NuCV
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -541,7 +487,6 @@ msgctxt ""
msgid "~Display document title"
msgstr "~Mostrar título del documento"
-#. nOuk
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -551,7 +496,6 @@ msgctxt ""
msgid "User interface options"
msgstr "Opciones de la interfaz del usuario"
-#. kNB;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -561,7 +505,6 @@ msgctxt ""
msgid "Hide ~menubar"
msgstr "Ocultar barra de ~menús"
-#. I/hA
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -571,7 +514,6 @@ msgctxt ""
msgid "Hide ~toolbar"
msgstr "Ocultar barra de ~herramientas"
-#. HX(V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -581,7 +523,6 @@ msgctxt ""
msgid "Hide ~window controls"
msgstr "Ocultar controles de ~ventana"
-#. 9H/u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -591,7 +532,6 @@ msgctxt ""
msgid "Transitions"
msgstr "Transiciones"
-#. ccsb
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -601,7 +541,6 @@ msgctxt ""
msgid "~Use transition effects"
msgstr "~Usar efectos de transición"
-#. ={F=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -611,7 +550,6 @@ msgctxt ""
msgid "Bookmarks"
msgstr "Marcadores"
-#. OKp0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -621,7 +559,6 @@ msgctxt ""
msgid "All bookmark levels"
msgstr "Todos los niveles de marcadores"
-#. SKf5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -631,7 +568,6 @@ msgctxt ""
msgid "Visible bookmark levels"
msgstr "Niveles de marcadores visibles"
-#. fE4=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -640,7 +576,6 @@ msgctxt ""
msgid "User Interface"
msgstr "Interfaz del usuario"
-#. RxVa
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -650,7 +585,6 @@ msgctxt ""
msgid "File encryption and permission"
msgstr "Cifrado y permisos del archivo"
-#. 8O\m
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -660,7 +594,6 @@ msgctxt ""
msgid "Set ~passwords..."
msgstr "Establecer ~contraseñas..."
-#. C5/P
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -670,7 +603,6 @@ msgctxt ""
msgid "Set passwords"
msgstr "Establecer contraseñas"
-#. 7#Y[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -680,7 +612,6 @@ msgctxt ""
msgid "Open password set"
msgstr "Contraseña abierta configurada"
-#. {Y5j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -690,7 +621,6 @@ msgctxt ""
msgid "PDF document will be encrypted"
msgstr "Se cifrará el documento PDF"
-#. ^5F;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -700,7 +630,6 @@ msgctxt ""
msgid "No open password set"
msgstr "Sin contraseña abierta configurada"
-#. _,dq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -710,7 +639,6 @@ msgctxt ""
msgid "PDF document will not be encrypted"
msgstr "No se cifrará el documento PDF"
-#. Vl%G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -720,7 +648,6 @@ msgctxt ""
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr "El documento PDF no se cifrará debido a la exportación como PDF/A."
-#. 6eL*
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -730,7 +657,6 @@ msgctxt ""
msgid "Permission password set"
msgstr "Permisos de contraseña configurados"
-#. EOgG
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -740,7 +666,6 @@ msgctxt ""
msgid "PDF document will be restricted"
msgstr "El documento PDF estará restringido"
-#. :#af
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -750,7 +675,6 @@ msgctxt ""
msgid "No permission password set"
msgstr "Permisos de contraseña no configurados"
-#. uyXD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -760,7 +684,6 @@ msgctxt ""
msgid "PDF document will be unrestricted"
msgstr "El documento PDF no estará restringido"
-#. ]v4}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -770,7 +693,6 @@ msgctxt ""
msgid "PDF document will not be restricted due to PDF/A export."
msgstr "El documento PDF no se restringirá debido a la exportación como PDF/A."
-#. 7B4x
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -780,7 +702,6 @@ msgctxt ""
msgid "Printing"
msgstr "Imprimiendo"
-#. SQO\
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -790,7 +711,6 @@ msgctxt ""
msgid "~Not permitted"
msgstr "~No permitido"
-#. 5JyD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -800,7 +720,6 @@ msgctxt ""
msgid "~Low resolution (150 dpi)"
msgstr "~Baja resolución (150 ppp)"
-#. !_.;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -810,7 +729,6 @@ msgctxt ""
msgid "~High resolution"
msgstr "~Alta resolución"
-#. ;S*M
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -820,7 +738,6 @@ msgctxt ""
msgid "Changes"
msgstr "Cambios"
-#. K9`=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -830,7 +747,6 @@ msgctxt ""
msgid "No~t permitted"
msgstr "No ~permitido"
-#. 1C6j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -840,7 +756,6 @@ msgctxt ""
msgid "~Inserting, deleting, and rotating pages"
msgstr "~Insertar, eliminar y girar páginas"
-#. rN$F
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -850,7 +765,6 @@ msgctxt ""
msgid "~Filling in form fields"
msgstr "~Rellenar campos de formulario"
-#. k~9D
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -860,7 +774,6 @@ msgctxt ""
msgid "~Commenting, filling in form fields"
msgstr "~Comentar, rellenar campos de formulario"
-#. i#x!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -870,7 +783,6 @@ msgctxt ""
msgid "~Any except extracting pages"
msgstr "~Cualquiera excepto páginas extraíbles"
-#. SM5,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -880,7 +792,6 @@ msgctxt ""
msgid "Ena~ble copying of content"
msgstr "~Habilitar copia de contenido"
-#. 2,%}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -890,7 +801,6 @@ msgctxt ""
msgid "Enable text access for acce~ssibility tools"
msgstr "Habilitar acceso de texto para herramientas de acce~sibilidad"
-#. ?H~_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -899,7 +809,6 @@ msgctxt ""
msgid "Security"
msgstr "Seguridad"
-#. Z6B?
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -907,9 +816,8 @@ msgctxt ""
"FT_SIGN_CERT_TEXT\n"
"fixedtext.text"
msgid "Use this certificate to digitally sign PDF documents:"
-msgstr ""
+msgstr "Usar este certificado para firmar digitalmente documentos PDF:"
-#. *h@_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -919,7 +827,6 @@ msgctxt ""
msgid "~Select..."
msgstr "~Seleccionar..."
-#. I6O/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -927,9 +834,8 @@ msgctxt ""
"BTN_SIGN_CERT_CLEAR\n"
"pushbutton.text"
msgid "Clear"
-msgstr ""
+msgstr "Limpiar"
-#. (ErU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -937,9 +843,8 @@ msgctxt ""
"FT_SIGN_PASSWORD\n"
"fixedtext.text"
msgid "Certificate Password"
-msgstr ""
+msgstr "Contraseña del certificado"
-#. G7-[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -949,7 +854,6 @@ msgctxt ""
msgid "Location"
msgstr "Ubicación"
-#. 7Auq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -957,9 +861,8 @@ msgctxt ""
"FT_SIGN_CONTACT\n"
"fixedtext.text"
msgid "Contact Information"
-msgstr ""
+msgstr "Información de contacto"
-#. \EMs
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -967,11 +870,9 @@ msgctxt ""
"FT_SIGN_REASON\n"
"fixedtext.text"
msgid "Reason"
-msgstr ""
+msgstr "Motivo"
-#. dFjJ
#: impdialog.src
-#, fuzzy
msgctxt ""
"impdialog.src\n"
"RID_PDF_TAB_SIGNING\n"
@@ -979,7 +880,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr "Firmas digitales"
-#. OX?3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -989,7 +889,6 @@ msgctxt ""
msgid "Export bookmarks as named destinations"
msgstr "Exportar marcadores como destinaciones nombrados"
-#. HS$N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -999,7 +898,6 @@ msgctxt ""
msgid "Convert document references to PDF targets"
msgstr "Convertir referencia de documento a destinos PDF"
-#. !$!B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1009,7 +907,6 @@ msgctxt ""
msgid "Export URLs relative to file system"
msgstr "Exportar URL relativas al sistema de archivos"
-#. O?7X
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1019,7 +916,6 @@ msgctxt ""
msgid "Cross-document links"
msgstr "Vínculos de documentos cruzados"
-#. )[ir
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1029,7 +925,6 @@ msgctxt ""
msgid "Default mode"
msgstr "Modo predeterminado"
-#. 9P;G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1039,7 +934,6 @@ msgctxt ""
msgid "Open with PDF reader application"
msgstr "Abrir con la aplicación de lector de PDF"
-#. \*C~
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1049,7 +943,6 @@ msgctxt ""
msgid "Open with Internet browser"
msgstr "Abrir con navegador de internet"
-#. +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 "General"
-#. $S11
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1078,7 +969,6 @@ msgctxt ""
msgid "Initial View"
msgstr "Vista inicial"
-#. 2{JW
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1088,7 +978,6 @@ msgctxt ""
msgid "User Interface"
msgstr "Interfaz del usuario"
-#. kGN8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1098,7 +987,6 @@ msgctxt ""
msgid "Links"
msgstr "Enlaces"
-#. _Lk_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1108,9 +996,7 @@ msgctxt ""
msgid "Security"
msgstr "Seguridad"
-#. 50V0
#: impdialog.src
-#, fuzzy
msgctxt ""
"impdialog.src\n"
"RID_PDF_EXPORT_DLG.1\n"
@@ -1119,7 +1005,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr "Firmas digitales"
-#. \^dH
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1128,7 +1013,6 @@ msgctxt ""
msgid "PDF Options"
msgstr "Opciones de PDF"
-#. %CF.
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1138,7 +1022,6 @@ msgctxt ""
msgid "During PDF export the following problems occurred:"
msgstr "Durante la exportación a PDF ocurrieron los siguientes problemas:"
-#. (@3I
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1148,7 +1031,6 @@ msgctxt ""
msgid "PDF/A transparency"
msgstr "Transparencia PDF/A"
-#. .z0;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1158,7 +1040,6 @@ msgctxt ""
msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
msgstr "Prohíbe la transparencia PDF/A. Un objeto transparente fue pintado en un lugar opaco."
-#. Qmv-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1168,7 +1049,6 @@ msgctxt ""
msgid "PDF version conflict"
msgstr "Conflicto de versiones PDF"
-#. oWot
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1178,7 +1058,6 @@ msgctxt ""
msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
msgstr "La transparencia no es soportada por versiones PDF anteriores a la 1.4. Un objeto transparente fue pintado en lugar opaco"
-#. =SfZ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1188,7 +1067,6 @@ msgctxt ""
msgid "PDF/A form action"
msgstr "Acción del formato PDF/A"
-#. ^wB8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1198,7 +1076,6 @@ msgctxt ""
msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
msgstr "Un formato de control contiene una acción no soportada por el estándar PDF/A. La acción fue saltada."
-#. qjQx
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1208,7 +1085,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 "Algunos objetos fueron convertidos a una imagen para quitar las transparencias, porque el formato PDF de destino no es compatible con las transparencias. Se pueden lograr mejores resultados si quita los objetos de transparencia antes de la exportación."
-#. {s)$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1218,7 +1094,6 @@ msgctxt ""
msgid "Transparencies removed"
msgstr "Transparencias quitadas"
-#. _2f%
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1227,7 +1102,6 @@ msgctxt ""
msgid "Problems during PDF export"
msgstr "Problemas durante la exportación a PDF"
-#. emFd
#: pdf.src
msgctxt ""
"pdf.src\n"
diff --git a/source/es/filter/source/t602.po b/source/es/filter/source/t602.po
index 2f3f5ce86f2..31ae88416e6 100644
--- a/source/es/filter/source/t602.po
+++ b/source/es/filter/source/t602.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 20:01+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Configurar para importar T602"
-#. bS;E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Encoding"
msgstr "Codificación"
-#. #}]Z
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Automatic"
msgstr "Automático"
-#. 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 "Modo de idioma Ruso (Cirílico)"
-#. g]SZ
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Reformat the text"
msgstr "Cambiar el formato del texto"
-#. 7*\q
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Display dot commands"
msgstr "Mostrar comandos"
-#. 3HiO
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Cancel"
msgstr "Cancelar"
-#. Tk%E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
diff --git a/source/es/filter/source/xsltdialog.po b/source/es/filter/source/xsltdialog.po
index 434db1bab6d..2930844da91 100644
--- a/source/es/filter/source/xsltdialog.po
+++ b/source/es/filter/source/xsltdialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-07-13 09:50+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:24+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,166 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353504286.0\n"
-#. V%R@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_EXPORT\n"
-"fixedline.text"
-msgid "Export"
-msgstr "Exportar"
-
-#. R\VB
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_EXPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for export"
-msgstr "XSLT para exportación"
-
-#. 6Zh[
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_DOCUMENT\n"
-"fixedtext.text"
-msgid "Transform document"
-msgstr "Transformar documento"
-
-#. 3kwV
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_EXPORT_BROWSE\n"
-"pushbutton.text"
-msgid "~Browse..."
-msgstr "~Buscar..."
-
-#. 4pQX
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CURRENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Current Document"
-msgstr "~Documento actual"
-
-#. m1(#
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_IMPORT\n"
-"fixedline.text"
-msgid "Import"
-msgstr "Importar"
-
-#. ;V8@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for import"
-msgstr "XSLT para importación"
-
-#. *m//
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_TEMPLATE\n"
-"fixedtext.text"
-msgid "Template for import"
-msgstr "Plantilla para importación"
-
-#. 6|G?
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_FILE\n"
-"fixedtext.text"
-msgid "Transform file"
-msgstr "Transformar archivo"
-
-#. j[dR
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"CBX_DISPLAY_SOURCE\n"
-"checkbox.text"
-msgid "~Display source"
-msgstr "~Visualizar fuente"
-
-#. !P/u
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_IMPORT_BROWSE\n"
-"pushbutton.text"
-msgid "B~rowse..."
-msgstr "~Buscar..."
-
-#. ,p_v
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_RECENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Recent File"
-msgstr "~Archivo reciente"
-
-#. /}Y\
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr "~Cerrar"
-
-#. Xv;y
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"modaldialog.text"
-msgid "Test XML Filter: %s"
-msgstr "Prueba del filtro XML: %s"
-
-#. 44Ax
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"PB_VALIDATE\n"
-"pushbutton.text"
-msgid "~Validate"
-msgstr "~Confirmar"
-
-#. /)Cm
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter output"
-msgstr "Salida filtro XML"
-
-#. 6U=`
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -183,7 +25,6 @@ msgctxt ""
msgid "Filter name"
msgstr "Nombre del filtro"
-#. RR@b
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -193,7 +34,6 @@ msgctxt ""
msgid "Application"
msgstr "Aplicación"
-#. !HS[
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -207,7 +47,6 @@ msgstr ""
"Nombre del\n"
"tipo de archivo"
-#. a@$t
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -217,7 +56,6 @@ msgctxt ""
msgid "File extension"
msgstr "Extensión del archivo"
-#. ui6:
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -227,7 +65,6 @@ msgctxt ""
msgid "Comments"
msgstr "Observaciones"
-#. uJhC
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -236,7 +73,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. `qZZ
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -246,27 +82,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 "Buscar..."
-
-#. HvP0
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -276,7 +91,6 @@ msgctxt ""
msgid "XSLT for export"
msgstr "XSLT para exportación"
-#. ihb7
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -286,7 +100,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Buscar..."
-#. kUl.
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -296,7 +109,6 @@ msgctxt ""
msgid "XSLT for import"
msgstr "XSLT para importación"
-#. *3QN
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -306,7 +118,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Buscar..."
-#. J~CV
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -316,7 +127,6 @@ msgctxt ""
msgid "Template for import"
msgstr "Plantilla para importación"
-#. xdF,
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -326,7 +136,6 @@ msgctxt ""
msgid "Browse..."
msgstr "Buscar..."
-#. PrLq
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -334,9 +143,8 @@ msgctxt ""
"FT_XML_NEEDS_XSLT2\n"
"fixedtext.text"
msgid "The filter needs XSLT 2.0 processor"
-msgstr ""
+msgstr "El filtro necesita el procesador XSLT 2.0"
-#. 7oY]
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -345,7 +153,6 @@ msgctxt ""
msgid "Transformation"
msgstr "Transformación"
-#. c)%c
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -355,7 +162,6 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. ~YIV
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -365,7 +171,6 @@ msgctxt ""
msgid "Transformation"
msgstr "Transformación"
-#. Bi34
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -374,96 +179,6 @@ msgctxt ""
msgid "XML Filter: %s"
msgstr "Filtro XML: %s"
-#. mC7)
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_NEW\n"
-"pushbutton.text"
-msgid "~New..."
-msgstr "~Nuevo..."
-
-#. hk8C
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_EDIT\n"
-"pushbutton.text"
-msgid "~Edit..."
-msgstr "E~ditar..."
-
-#. 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 "~Probar los XSLTs..."
-
-#. *B]g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_DELETE\n"
-"pushbutton.text"
-msgid "~Delete..."
-msgstr "~Eliminar..."
-
-#. -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 "~Guardar como paquete..."
-
-#. TSeo
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_OPEN\n"
-"pushbutton.text"
-msgid "~Open Package..."
-msgstr "~Abrir paquete..."
-
-#. r`v9
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr "~Cerrar"
-
-#. 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 "Lista de filtros XML"
-
-#. Bx3g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter Settings"
-msgstr "Configuración del filtro XML"
-
-#. 8k_g
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -472,7 +187,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. %-T^
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -481,7 +195,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. ~qjq
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -490,7 +203,6 @@ msgctxt ""
msgid "Unknown"
msgstr "Desconocido"
-#. YY?z
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -499,7 +211,6 @@ msgctxt ""
msgid "import filter"
msgstr "Importar filtro"
-#. _D4M
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -508,7 +219,6 @@ msgctxt ""
msgid "import/export filter"
msgstr "Importar/exportar filtro"
-#. %m6@
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -517,7 +227,6 @@ msgctxt ""
msgid "export filter"
msgstr "Exportar filtro"
-#. P0XA
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -526,7 +235,6 @@ msgctxt ""
msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
msgstr "¿Quiere realmente eliminar el filtro XML «%s»? Esta acción no se puede deshacer."
-#. L*7(
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -535,7 +243,6 @@ msgctxt ""
msgid "An XML filter with the name '%s' already exists. Please enter a different name."
msgstr "Ya existe un filtro XML de nombre '%s'. Introduzca otro nombre."
-#. M;HY
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -544,16 +251,6 @@ msgctxt ""
msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
msgstr "El nombre para la interfaz de usuario '%s1' ya fue utilizado por el filtro XML '%s2'. Introduzca otro nombre."
-#. 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 "No se puede encontrar la DTD (definición del tipo de documento). Introduzca una ruta válida."
-
-#. *exW
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -562,7 +259,6 @@ msgctxt ""
msgid "The XSLT for export cannot be found. Please enter a valid path."
msgstr "No se encuentra el XSLT para la exportación. Introduzca una ruta válida."
-#. }JWy
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -571,7 +267,6 @@ msgctxt ""
msgid "The XSLT for import cannot be found. Please enter a valid path."
msgstr "Imposible encontrar un XSLT para la importación. Introduzca una ruta válida."
-#. F]Q[
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -580,7 +275,6 @@ msgctxt ""
msgid "The given import template cannot be found. Please enter a valid path."
msgstr "La plantilla de importación especificada no se encuentra. Introduzca una ruta válida."
-#. d7wd
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -589,7 +283,6 @@ msgctxt ""
msgid "Not specified"
msgstr "No especificado"
-#. 4On}
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -598,7 +291,6 @@ msgctxt ""
msgid "New Filter"
msgstr "Filtro nuevo"
-#. :~$h
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -607,7 +299,6 @@ msgctxt ""
msgid "Untitled"
msgstr "Sin nombre"
-#. U7)s
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -616,7 +307,6 @@ msgctxt ""
msgid "undefined filter"
msgstr "Filtro no definido"
-#. 1KTV
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -625,7 +315,6 @@ msgctxt ""
msgid "The XML filter '%s' has been saved as package '%s'. "
msgstr "El filtro XML '%s' se ha guardado como paquete '%s'. "
-#. Sn(,
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -634,7 +323,6 @@ msgctxt ""
msgid "%s XML filters have been saved in the package '%s'."
msgstr "Se han guardado %s filtros XML en el paquete '%s'."
-#. dW^I
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -643,7 +331,6 @@ msgctxt ""
msgid "XSLT filter package"
msgstr "Paquete de filtros XSLT"
-#. T][`
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -652,7 +339,6 @@ msgctxt ""
msgid "The XML filter '%s' has been installed successfully."
msgstr "La instalación del filtro XML '%s' ha finalizado."
-#. iaY+
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -661,7 +347,6 @@ msgctxt ""
msgid "%s XML filters have been installed successfully."
msgstr "La instalación de %s filtros XML ha finalizado."
-#. FwPH
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -669,3 +354,11 @@ msgctxt ""
"string.text"
msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
msgstr "No se ha podido instalar ningún filtro XML porque el paquete '%s' no contiene ningún filtro XML."
+
+#: xmlfilterdialogstrings.src
+msgctxt ""
+"xmlfilterdialogstrings.src\n"
+"STR_XML_FILTER_LISTBOX\n"
+"string.text"
+msgid "XML Filter List"
+msgstr ""
diff --git a/source/es/filter/uiconfig/ui.po b/source/es/filter/uiconfig/ui.po
index a13b0ec7efd..95f943a707a 100644
--- a/source/es/filter/uiconfig/ui.po
+++ b/source/es/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: es\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/es/forms/source/resource.po b/source/es/forms/source/resource.po
index 0a288b3c89e..70a4b2dfca6 100644
--- a/source/es/forms/source/resource.po
+++ b/source/es/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: 2012-08-17 07:51+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "No se pudo determinar el contenido de un campo combinado o un listado."
-#. #vZY
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert graphics"
msgstr "Insertar imagen"
-#. vk|m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "substituted"
msgstr "reemplazado"
-#. .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 "Ha ocurrido un error al cargar este Control. Por ello se ha reemplazado con un comodín."
-#. G8hN
#: strings.src
msgctxt ""
"strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Error reading data from database"
msgstr "Error al leer datos de la base de datos"
-#. 4jLM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Connection failed"
msgstr "No se pudo efectuar la conexión."
-#. 9aqb
#: strings.src
msgctxt ""
"strings.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "The data content could not be loaded."
msgstr "No se pudieron cargar los contenidos de los datos."
-#. Fj5.
#: strings.src
msgctxt ""
"strings.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "The data content could not be updated"
msgstr "No se pudieron actualizar los contenidos de los datos."
-#. v_cg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Error inserting the new record"
msgstr "Error al insertar un nuevo registro de datos."
-#. Pby/
#: strings.src
msgctxt ""
"strings.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Error updating the current record"
msgstr "Error al escribir el registro actual de datos."
-#. Gb4h
#: strings.src
msgctxt ""
"strings.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Error deleting the current record"
msgstr "Error al eliminar el registro actual de datos."
-#. 2.)M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Error deleting the specified records"
msgstr "Error al eliminar los registros de datos indicados."
-#. =dhV
#: strings.src
msgctxt ""
"strings.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "The object cannot be NULL."
msgstr "El objeto no puede ser NULL."
-#. P]bw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Insert graphics from..."
msgstr "Insertar imagen de..."
-#. [$;*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Remove graphics"
msgstr "Eliminar imagen"
-#. cU6U
#: strings.src
msgctxt ""
"strings.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "The given stream is invalid."
msgstr "La secuencia indicada no es válida."
-#. :TaJ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Syntax error in query expression"
msgstr "Ha ocurrido un error al analizar la expresión de la consulta"
-#. `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 "Los tipos de valores que admite la vinculación no se pueden utilizar para intercambiar datos con este control."
-#. hS|Q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Record"
msgstr "Registro"
-#. \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 "El control se conecta a una vinculación de valor externa, que actúa a la vez como validador. Es necesario revocar la vinculación de valor antes de configurar un nuevo validador."
-#. eI8L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "of"
msgstr "de"
-#. RQ:o
#: strings.src
msgctxt ""
"strings.src\n"
@@ -217,7 +195,6 @@ msgstr ""
"El contenido de este formulario se ha modificado.\n"
"¿Desea guardar los cambios?"
-#. UDgo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr "Error al establecer los criterios de ordenación"
-#. 6MAG
#: strings.src
msgctxt ""
"strings.src\n"
@@ -235,7 +211,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr "Error al establecer los criterios de filtro"
-#. )2J[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -244,7 +219,6 @@ msgctxt ""
msgid "To execute this function, parameters are needed."
msgstr "Para ejecutar esta función hacen falta parámetros."
-#. `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 "Esta función no se puede ejecutar, sólo es para consultas de estado."
-#. 2Jm9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -262,7 +235,6 @@ msgctxt ""
msgid "Unknown function."
msgstr "Función desconocida."
-#. Pi1%
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -271,7 +243,6 @@ msgctxt ""
msgid "Please enter a binding expression."
msgstr "Escriba una expresión de enlace."
-#. FDCA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -280,7 +251,6 @@ msgctxt ""
msgid "This is an invalid binding expression."
msgstr "Ésta es una expresión de enlace no válida."
-#. U*B_
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -289,7 +259,6 @@ msgctxt ""
msgid "Value is invalid."
msgstr "El valor no es válido."
-#. #Y_Y
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -298,7 +267,6 @@ msgctxt ""
msgid "A value is required."
msgstr "Se necesita un valor."
-#. zi(D
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -307,7 +275,6 @@ msgctxt ""
msgid "The constraint '$1' not validated."
msgstr "La limitación '$1' no está validada."
-#. _$9C
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -316,7 +283,6 @@ msgctxt ""
msgid "The value is not of the type '$2'."
msgstr "El valor no es del tipo '$2'."
-#. SFil
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -325,7 +291,6 @@ msgctxt ""
msgid "The value must be smaller than or equal to $2."
msgstr "El valor debe ser menor que o igual a $2."
-#. XyW3
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -334,7 +299,6 @@ msgctxt ""
msgid "The value must be smaller than $2."
msgstr "El valor debe ser menor que $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 "El valor debe ser mayor o igual que $2."
-#. ^|1O
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -352,7 +315,6 @@ msgctxt ""
msgid "The value must be greater than $2."
msgstr "El valor debe ser mayor que $2."
-#. pT8q
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -361,7 +323,6 @@ msgctxt ""
msgid "The value does not match the pattern '$2'."
msgstr "El valor no coincide con la trama '$2'."
-#. lTio
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -370,7 +331,6 @@ msgctxt ""
msgid "$2 digits allowed at most."
msgstr "$2 dígitos permitidos como máximo."
-#. HqUH
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -379,7 +339,6 @@ msgctxt ""
msgid "$2 fraction digits allowed at most."
msgstr "$2 dígitos de fracción permitidos como máximo."
-#. M?=5
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -388,7 +347,6 @@ msgctxt ""
msgid "The string must be $2 characters long."
msgstr "La cadena debe tener $2 caracteres de longitud."
-#. WrdA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -397,7 +355,6 @@ msgctxt ""
msgid "The string must be at least $2 characters long."
msgstr "La cadena debe tener como mínimo $2 caracteres de longitud."
-#. @4hv
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -406,7 +363,6 @@ msgctxt ""
msgid "The string can only be $2 characters long at most."
msgstr "La cadena sólo puede tener $2 caracteres de longitud como máximo."
-#. rbes
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -415,7 +371,6 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. rXuQ
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -424,7 +379,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Hiperenlace"
-#. u~~U
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -433,7 +387,6 @@ msgctxt ""
msgid "True/False (Boolean)"
msgstr "Verdadero/Falso (booleano)"
-#. 0Sac
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -442,7 +395,6 @@ msgctxt ""
msgid "Decimal"
msgstr "Decimal"
-#. CmEF
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -451,7 +403,6 @@ msgctxt ""
msgid "Floating point"
msgstr "Coma flotante"
-#. 1qG)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -460,7 +411,6 @@ msgctxt ""
msgid "Double"
msgstr "Doble"
-#. f~uq
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -469,7 +419,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. P)O)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -478,7 +427,6 @@ msgctxt ""
msgid "Time"
msgstr "Hora"
-#. )=bo
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -487,7 +435,6 @@ msgctxt ""
msgid "Date and Time"
msgstr "Fecha y hora"
-#. ;c9I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -496,7 +443,6 @@ msgctxt ""
msgid "Month and year"
msgstr "Mes y año"
-#. {/\k
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -505,7 +451,6 @@ msgctxt ""
msgid "Year"
msgstr "Año"
-#. `|l(
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -514,7 +459,6 @@ msgctxt ""
msgid "Month and day"
msgstr "Mes y día"
-#. DD08
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -523,7 +467,6 @@ msgctxt ""
msgid "Month"
msgstr "Mes"
-#. D866
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -532,7 +475,6 @@ msgctxt ""
msgid "Day"
msgstr "Día"
-#. q08I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -541,7 +483,6 @@ msgctxt ""
msgid "Error during evaluation"
msgstr "Error durante la evaluación"
-#. 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 "La cadena '$1' no coincide con la expresión regular requerida '$2'."
-#. C]\5
#: xforms.src
msgctxt ""
"xforms.src\n"
diff --git a/source/es/formula/source/core/resource.po b/source/es/formula/source/core/resource.po
index 66c4d6848ce..9079e92d199 100644
--- a/source/es/formula/source/core/resource.po
+++ b/source/es/formula/source/core/resource.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
-"PO-Revision-Date: 2012-06-13 19:12+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:24+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353504292.0\n"
-#. cjBl
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -25,7 +25,6 @@ msgctxt ""
msgid "IF"
msgstr "SI"
-#. Vc$S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -35,7 +34,6 @@ msgctxt ""
msgid "CHOOSE"
msgstr "ELEGIR"
-#. mP7x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -45,7 +43,6 @@ msgctxt ""
msgid "AND"
msgstr "Y"
-#. 2J3O
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -55,7 +52,6 @@ msgctxt ""
msgid "OR"
msgstr "O"
-#. /mhn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -63,9 +59,8 @@ msgctxt ""
"SC_OPCODE_XOR\n"
"string.text"
msgid "XOR"
-msgstr ""
+msgstr "XOR"
-#. ^$C=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -75,7 +70,6 @@ msgctxt ""
msgid "NOT"
msgstr "NO"
-#. Xn\o
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -85,7 +79,6 @@ msgctxt ""
msgid "NEG"
msgstr "NEG"
-#. 4Nri
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -95,7 +88,6 @@ msgctxt ""
msgid "PI"
msgstr "PI"
-#. FG^j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -105,7 +97,6 @@ msgctxt ""
msgid "RAND"
msgstr "ALEATORIO"
-#. m^ND
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -115,7 +106,6 @@ msgctxt ""
msgid "TRUE"
msgstr "VERDADERO"
-#. E+:h
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -125,7 +115,6 @@ msgctxt ""
msgid "FALSE"
msgstr "FALSO"
-#. [[kV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -135,7 +124,6 @@ msgctxt ""
msgid "TODAY"
msgstr "HOY"
-#. ,50T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -145,7 +133,6 @@ msgctxt ""
msgid "NOW"
msgstr "AHORA"
-#. U/JS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -155,7 +142,6 @@ msgctxt ""
msgid "NA"
msgstr "NOD"
-#. lMaX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -165,7 +151,6 @@ msgctxt ""
msgid "CURRENT"
msgstr "ACTUAL"
-#. R@HZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -175,7 +160,6 @@ msgctxt ""
msgid "DEGREES"
msgstr "GRADOS"
-#. Mr~v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -185,7 +169,6 @@ msgctxt ""
msgid "RADIANS"
msgstr "RADIANES"
-#. IG@C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -195,7 +178,6 @@ msgctxt ""
msgid "SIN"
msgstr "SENO"
-#. QRgx
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -205,7 +187,6 @@ msgctxt ""
msgid "COS"
msgstr "COS"
-#. /pOK
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -215,7 +196,6 @@ msgctxt ""
msgid "TAN"
msgstr "TAN"
-#. x\9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -225,7 +205,6 @@ msgctxt ""
msgid "COT"
msgstr "COT"
-#. l?U)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -235,7 +214,6 @@ msgctxt ""
msgid "ASIN"
msgstr "ASENO"
-#. VDQS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -245,7 +223,6 @@ msgctxt ""
msgid "ACOS"
msgstr "ACOS"
-#. Y?JM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -255,7 +232,6 @@ msgctxt ""
msgid "ATAN"
msgstr "ATAN"
-#. ,k?^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -265,7 +241,6 @@ msgctxt ""
msgid "ACOT"
msgstr "ACOT"
-#. J8\|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -275,7 +250,6 @@ msgctxt ""
msgid "SINH"
msgstr "SENOH"
-#. 13E8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -285,7 +259,6 @@ msgctxt ""
msgid "COSH"
msgstr "COSH"
-#. X5,.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -295,7 +268,6 @@ msgctxt ""
msgid "TANH"
msgstr "TANH"
-#. mERq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -305,7 +277,6 @@ msgctxt ""
msgid "COTH"
msgstr "COTH"
-#. GR)j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -315,7 +286,6 @@ msgctxt ""
msgid "ASINH"
msgstr "ASENOH"
-#. Jz,L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -325,7 +295,6 @@ msgctxt ""
msgid "ACOSH"
msgstr "ACOSH"
-#. Pe+Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -335,7 +304,6 @@ msgctxt ""
msgid "ATANH"
msgstr "ATANH"
-#. ppm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -345,7 +313,6 @@ msgctxt ""
msgid "ACOTH"
msgstr "ACOTH"
-#. iVv8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -355,7 +322,6 @@ msgctxt ""
msgid "CSC"
msgstr "CSC"
-#. B;/]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "SEC"
msgstr "SEC"
-#. g0x@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -375,7 +340,6 @@ msgctxt ""
msgid "CSCH"
msgstr "CSCH"
-#. jX!b
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -385,7 +349,6 @@ msgctxt ""
msgid "SECH"
msgstr "SECH"
-#. $3PN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -395,7 +358,6 @@ msgctxt ""
msgid "EXP"
msgstr "EXP"
-#. Od!d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -405,7 +367,6 @@ msgctxt ""
msgid "LN"
msgstr "LN"
-#. 9;=d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -415,7 +376,6 @@ msgctxt ""
msgid "SQRT"
msgstr "RAIZ"
-#. 5q(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -425,7 +385,6 @@ msgctxt ""
msgid "FACT"
msgstr "FACT"
-#. A0GS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -435,7 +394,6 @@ msgctxt ""
msgid "YEAR"
msgstr "AÑO"
-#. $9fa
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -445,7 +403,6 @@ msgctxt ""
msgid "MONTH"
msgstr "MES"
-#. 3#lj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -455,7 +412,6 @@ msgctxt ""
msgid "DAY"
msgstr "DÍA"
-#. /+$;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -465,7 +421,6 @@ msgctxt ""
msgid "HOUR"
msgstr "HORA"
-#. */yO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -475,7 +430,6 @@ msgctxt ""
msgid "MINUTE"
msgstr "MINUTO"
-#. x8*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -485,7 +439,6 @@ msgctxt ""
msgid "SECOND"
msgstr "SEGUNDO"
-#. ;h+?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -495,7 +448,6 @@ msgctxt ""
msgid "SIGN"
msgstr "SIGNO"
-#. \[#g
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -505,7 +457,6 @@ msgctxt ""
msgid "ABS"
msgstr "ABS"
-#. -x3}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -515,7 +466,6 @@ msgctxt ""
msgid "INT"
msgstr "ENTERO"
-#. `[`,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -525,7 +475,6 @@ msgctxt ""
msgid "PHI"
msgstr "PHI"
-#. iLL#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -535,7 +484,6 @@ msgctxt ""
msgid "GAUSS"
msgstr "GAUSS"
-#. W#m=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -545,7 +493,6 @@ msgctxt ""
msgid "ISBLANK"
msgstr "ESBLANCO"
-#. h@5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -555,7 +502,6 @@ msgctxt ""
msgid "ISTEXT"
msgstr "ESTEXTO"
-#. 4-0T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -565,7 +511,6 @@ msgctxt ""
msgid "ISNONTEXT"
msgstr "ESNOTEXTO"
-#. ^dn3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -575,7 +520,6 @@ msgctxt ""
msgid "ISLOGICAL"
msgstr "ESLOGICO"
-#. CMiG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -585,7 +529,6 @@ msgctxt ""
msgid "TYPE"
msgstr "TIPO"
-#. 4[o9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -595,7 +538,6 @@ msgctxt ""
msgid "CELL"
msgstr "CELDA"
-#. :~9k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -605,7 +547,6 @@ msgctxt ""
msgid "ISREF"
msgstr "ESREF"
-#. Q^JJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -615,7 +556,6 @@ msgctxt ""
msgid "ISNUMBER"
msgstr "ESNÚMERO"
-#. [h|0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -625,7 +565,6 @@ msgctxt ""
msgid "ISFORMULA"
msgstr "ESFÓRMULA"
-#. M`V(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -635,7 +574,6 @@ msgctxt ""
msgid "ISNA"
msgstr "ESNOD"
-#. U-xd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -645,7 +583,6 @@ msgctxt ""
msgid "ISERR"
msgstr "ESERR"
-#. +$]+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -655,7 +592,6 @@ msgctxt ""
msgid "ISERROR"
msgstr "ESERROR"
-#. 95R\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -665,7 +601,6 @@ msgctxt ""
msgid "ISEVEN"
msgstr "ESPAR"
-#. /dJH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -675,7 +610,6 @@ msgctxt ""
msgid "ISODD"
msgstr "ESIMPAR"
-#. g:yn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -685,7 +619,6 @@ msgctxt ""
msgid "N"
msgstr "N"
-#. Bf]2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -695,7 +628,6 @@ msgctxt ""
msgid "DATEVALUE"
msgstr "FECHANÚMERO"
-#. };uD
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -705,7 +637,6 @@ msgctxt ""
msgid "TIMEVALUE"
msgstr "HORANÚMERO"
-#. C,O;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -715,7 +646,6 @@ msgctxt ""
msgid "CODE"
msgstr "CÓDIGO"
-#. iTbH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -725,7 +655,6 @@ msgctxt ""
msgid "TRIM"
msgstr "REDUCIR"
-#. rUJT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -735,7 +664,6 @@ msgctxt ""
msgid "UPPER"
msgstr "MAYÚSC"
-#. QS)*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -745,7 +673,6 @@ msgctxt ""
msgid "PROPER"
msgstr "NOMPROPIO"
-#. =E`*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -755,7 +682,6 @@ msgctxt ""
msgid "LOWER"
msgstr "MINÚSC"
-#. BgE_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -765,7 +691,6 @@ msgctxt ""
msgid "LEN"
msgstr "LARGO"
-#. K;q#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -775,7 +700,6 @@ msgctxt ""
msgid "T"
msgstr "T"
-#. T:Tj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -785,7 +709,6 @@ msgctxt ""
msgid "VALUE"
msgstr "VALOR"
-#. #s{|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -795,7 +718,6 @@ msgctxt ""
msgid "CLEAN"
msgstr "LIMPIAR"
-#. x+76
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -805,7 +727,6 @@ msgctxt ""
msgid "CHAR"
msgstr "CARÁCTER"
-#. 3(uz
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -815,7 +736,6 @@ msgctxt ""
msgid "JIS"
msgstr "JIS"
-#. V*1?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -825,7 +745,6 @@ msgctxt ""
msgid "ASC"
msgstr "ASC"
-#. /FU`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -835,7 +754,6 @@ msgctxt ""
msgid "UNICODE"
msgstr "UNICODE"
-#. S#.r
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -845,7 +763,6 @@ msgctxt ""
msgid "UNICHAR"
msgstr "UNICHAR"
-#. DqY,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -855,7 +772,6 @@ msgctxt ""
msgid "LOG10"
msgstr "LOG10"
-#. P0SO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -865,7 +781,6 @@ msgctxt ""
msgid "EVEN"
msgstr "REDONDEA.PAR"
-#. ;X.V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -875,7 +790,6 @@ msgctxt ""
msgid "ODD"
msgstr "REDONDEA.IMPAR"
-#. m}`N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -885,7 +799,6 @@ msgctxt ""
msgid "NORMSDIST"
msgstr "DISTR.NORM.ESTAND"
-#. g@_F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -895,7 +808,6 @@ msgctxt ""
msgid "FISHER"
msgstr "FISHER"
-#. E8y6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -905,7 +817,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr "PRUEBA.FISHER.INV"
-#. ReL]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -915,7 +826,6 @@ msgctxt ""
msgid "NORMSINV"
msgstr "DISTR.NORM.ESTAND.INV"
-#. q{O:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -925,7 +835,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr "GAMMA.LN"
-#. $?cw
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -935,7 +844,6 @@ msgctxt ""
msgid "ERRORTYPE"
msgstr "TIPO.DE.ERROR"
-#. JQE\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -945,7 +853,6 @@ msgctxt ""
msgid "FORMULA"
msgstr "FÓRMULA"
-#. )e8{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -955,7 +862,6 @@ msgctxt ""
msgid "ARABIC"
msgstr "ÁRABE"
-#. [Z@V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -965,7 +871,6 @@ msgctxt ""
msgid "ATAN2"
msgstr "ATAN2"
-#. jdzi
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -975,7 +880,6 @@ msgctxt ""
msgid "CEILING"
msgstr "MÚLTIPLO.SUPERIOR"
-#. m+T#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -985,7 +889,6 @@ msgctxt ""
msgid "FLOOR"
msgstr "MÚLTIPLO.INFERIOR"
-#. G%ac
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -995,7 +898,6 @@ msgctxt ""
msgid "ROUND"
msgstr "REDONDEAR"
-#. 5%D*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1005,7 +907,6 @@ msgctxt ""
msgid "ROUNDUP"
msgstr "REDONDEAR.MAS"
-#. U;+9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1015,7 +916,6 @@ msgctxt ""
msgid "ROUNDDOWN"
msgstr "REDONDEAR.MENOS"
-#. acvR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1025,7 +925,6 @@ msgctxt ""
msgid "TRUNC"
msgstr "TRUNCAR"
-#. %2BT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1035,7 +934,6 @@ msgctxt ""
msgid "LOG"
msgstr "LOG"
-#. ,gec
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1045,7 +943,6 @@ msgctxt ""
msgid "POWER"
msgstr "POTENCIA"
-#. KTQ5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1055,7 +952,6 @@ msgctxt ""
msgid "GCD"
msgstr "M.C.D"
-#. xY1Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1065,7 +961,6 @@ msgctxt ""
msgid "LCM"
msgstr "M.C.M"
-#. QmsM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1075,7 +970,6 @@ msgctxt ""
msgid "MOD"
msgstr "RESIDUO"
-#. y\!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1085,7 +979,6 @@ msgctxt ""
msgid "SUMPRODUCT"
msgstr "SUMA.PRODUCTO"
-#. bWw(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1095,7 +988,6 @@ msgctxt ""
msgid "SUMSQ"
msgstr "SUMA.CUADRADOS"
-#. p2-M
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1105,7 +997,6 @@ msgctxt ""
msgid "SUMX2MY2"
msgstr "SUMAX2MENOSY2"
-#. h!||
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1115,7 +1006,6 @@ msgctxt ""
msgid "SUMX2PY2"
msgstr "SUMAX2MASY2"
-#. VX!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1125,7 +1015,6 @@ msgctxt ""
msgid "SUMXMY2"
msgstr "SUMAXMENOSY2"
-#. I!~Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1135,7 +1024,6 @@ msgctxt ""
msgid "DATE"
msgstr "FECHA"
-#. o(bC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1145,7 +1033,6 @@ msgctxt ""
msgid "TIME"
msgstr "TIEMPO"
-#. uJqB
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1155,7 +1042,6 @@ msgctxt ""
msgid "DAYS"
msgstr "DIAS"
-#. ]I2$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1165,7 +1051,6 @@ msgctxt ""
msgid "DAYS360"
msgstr "DIAS360"
-#. dwaI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1175,7 +1060,6 @@ msgctxt ""
msgid "DATEDIF"
msgstr "FECHADIF"
-#. d,kb
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1185,7 +1069,6 @@ msgctxt ""
msgid "MIN"
msgstr "MÍN"
-#. 9VV1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1195,7 +1078,6 @@ msgctxt ""
msgid "MINA"
msgstr "MÍNA"
-#. Pjby
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1205,7 +1087,6 @@ msgctxt ""
msgid "MAX"
msgstr "MÁX"
-#. EXm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1215,7 +1096,6 @@ msgctxt ""
msgid "MAXA"
msgstr "MÁXA"
-#. kYY;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1225,7 +1105,6 @@ msgctxt ""
msgid "SUM"
msgstr "SUMA"
-#. vIN,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1235,7 +1114,6 @@ msgctxt ""
msgid "PRODUCT"
msgstr "PRODUCTO"
-#. D!nm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1245,7 +1123,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr "PROMEDIO"
-#. n]XY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1255,7 +1132,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr "PROMEDIOA"
-#. b4se
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1265,7 +1141,6 @@ msgctxt ""
msgid "COUNT"
msgstr "CONTAR"
-#. G;:H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1275,7 +1150,6 @@ msgctxt ""
msgid "COUNTA"
msgstr "CONTARA"
-#. *@eF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1285,7 +1159,6 @@ msgctxt ""
msgid "NPV"
msgstr "VNA"
-#. [.O@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1295,7 +1168,6 @@ msgctxt ""
msgid "IRR"
msgstr "TIR"
-#. NC,e
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1305,7 +1177,6 @@ msgctxt ""
msgid "MIRR"
msgstr "MIRR"
-#. }{EG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1315,7 +1186,6 @@ msgctxt ""
msgid "ISPMT"
msgstr "INT.PAGO.DIR"
-#. sz\Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1325,7 +1195,6 @@ msgctxt ""
msgid "VAR"
msgstr "VAR"
-#. :Uz?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1335,7 +1204,6 @@ msgctxt ""
msgid "VARA"
msgstr "VARA"
-#. (n^W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1345,7 +1213,6 @@ msgctxt ""
msgid "VARP"
msgstr "VARP"
-#. Rffd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1355,7 +1222,6 @@ msgctxt ""
msgid "VARPA"
msgstr "VARPA"
-#. #X]Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1365,7 +1231,6 @@ msgctxt ""
msgid "STDEV"
msgstr "DESVEST"
-#. YP,U
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1375,7 +1240,6 @@ msgctxt ""
msgid "STDEVA"
msgstr "DESVESTA"
-#. k==L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1385,7 +1249,6 @@ msgctxt ""
msgid "STDEVP"
msgstr "DESVESTP"
-#. ^_9?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1395,7 +1258,6 @@ msgctxt ""
msgid "STDEVPA"
msgstr "DESVESTPA"
-#. i!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1405,7 +1267,6 @@ msgctxt ""
msgid "B"
msgstr "B"
-#. E?A`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1415,7 +1276,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr "DISTR.NORM"
-#. H8(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1425,7 +1285,6 @@ msgctxt ""
msgid "EXPONDIST"
msgstr "DISTR.EXP"
-#. 8_m#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1435,7 +1294,6 @@ msgctxt ""
msgid "BINOMDIST"
msgstr "DISTR.BINOM"
-#. XcTN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1445,7 +1303,6 @@ msgctxt ""
msgid "POISSON"
msgstr "POISSON"
-#. O{vk
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1455,7 +1312,6 @@ msgctxt ""
msgid "COMBIN"
msgstr "COMBINAT"
-#. r,Da
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1465,7 +1321,6 @@ msgctxt ""
msgid "COMBINA"
msgstr "COMBINATA"
-#. 8pwJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1475,7 +1330,6 @@ msgctxt ""
msgid "PERMUT"
msgstr "PERMUTACIONES"
-#. C~E_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1485,7 +1339,6 @@ msgctxt ""
msgid "PERMUTATIONA"
msgstr "PERMUTACIONESA"
-#. $qaM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1495,7 +1348,6 @@ msgctxt ""
msgid "PV"
msgstr "VA"
-#. B}%j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1505,7 +1357,6 @@ msgctxt ""
msgid "SYD"
msgstr "SYD"
-#. M!(#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1515,7 +1366,6 @@ msgctxt ""
msgid "DDB"
msgstr "DDB"
-#. gd.N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1525,7 +1375,6 @@ msgctxt ""
msgid "DB"
msgstr "DB"
-#. Fk.$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1535,7 +1384,6 @@ msgctxt ""
msgid "VDB"
msgstr "DVS"
-#. ;cmf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1545,7 +1393,6 @@ msgctxt ""
msgid "DURATION"
msgstr "DURACIÓN"
-#. @5X\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1555,7 +1402,6 @@ msgctxt ""
msgid "SLN"
msgstr "SLN"
-#. 7ADN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1565,7 +1411,6 @@ msgctxt ""
msgid "PMT"
msgstr "PAGO"
-#. TnuR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1575,7 +1420,6 @@ msgctxt ""
msgid "COLUMNS"
msgstr "COLUMNAS"
-#. gg|p
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1585,7 +1429,6 @@ msgctxt ""
msgid "ROWS"
msgstr "FILAS"
-#. X?;`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1595,7 +1438,6 @@ msgctxt ""
msgid "SHEETS"
msgstr "HOJAS"
-#. T0Oh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1605,7 +1447,6 @@ msgctxt ""
msgid "COLUMN"
msgstr "COLUMNA"
-#. qT,(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1615,7 +1456,6 @@ msgctxt ""
msgid "ROW"
msgstr "FILA"
-#. ,K0c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1625,7 +1465,6 @@ msgctxt ""
msgid "SHEET"
msgstr "HOJA"
-#. 4PFm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1635,7 +1474,6 @@ msgctxt ""
msgid "RRI"
msgstr "INT.RENDIMIENTO"
-#. (*dv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1645,7 +1483,6 @@ msgctxt ""
msgid "FV"
msgstr "VF"
-#. 7!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1655,7 +1492,6 @@ msgctxt ""
msgid "NPER"
msgstr "NPER"
-#. |ncs
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1665,7 +1501,6 @@ msgctxt ""
msgid "RATE"
msgstr "TASA"
-#. D*#a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1675,7 +1510,6 @@ msgctxt ""
msgid "IPMT"
msgstr "PAGOINT"
-#. N9g.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1685,7 +1519,6 @@ msgctxt ""
msgid "PPMT"
msgstr "PAGOPRIN"
-#. [Wns
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1695,7 +1528,6 @@ msgctxt ""
msgid "CUMIPMT"
msgstr "PAGO.INT.ENTRE"
-#. ek~l
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1705,7 +1537,6 @@ msgctxt ""
msgid "CUMPRINC"
msgstr "PAGO.PRINC.ENTRE"
-#. e2hf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1715,7 +1546,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr "INT.EFECTIVO"
-#. $o9`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1725,7 +1555,6 @@ msgctxt ""
msgid "NOMINAL"
msgstr "TASA.NOMINAL"
-#. .H+F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1735,7 +1564,6 @@ msgctxt ""
msgid "SUBTOTAL"
msgstr "SUBTOTALES"
-#. Z(n2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1745,7 +1573,6 @@ msgctxt ""
msgid "DSUM"
msgstr "BDSUMA"
-#. E@77
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1755,7 +1582,6 @@ msgctxt ""
msgid "DCOUNT"
msgstr "BDCONTAR"
-#. ~S?:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1765,7 +1591,6 @@ msgctxt ""
msgid "DCOUNTA"
msgstr "BDCONTARA"
-#. EuvL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1775,7 +1600,6 @@ msgctxt ""
msgid "DAVERAGE"
msgstr "BDPROMEDIO"
-#. Thmd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1785,7 +1609,6 @@ msgctxt ""
msgid "DGET"
msgstr "BDEXTRAER"
-#. `Yn@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1795,7 +1618,6 @@ msgctxt ""
msgid "DMAX"
msgstr "BDMÁX"
-#. @Y=\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1805,7 +1627,6 @@ msgctxt ""
msgid "DMIN"
msgstr "BDMÍN"
-#. r=lc
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1815,7 +1636,6 @@ msgctxt ""
msgid "DPRODUCT"
msgstr "BDPRODUCTO"
-#. l;EA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1825,7 +1645,6 @@ msgctxt ""
msgid "DSTDEV"
msgstr "BDDESVEST"
-#. PB9d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1835,7 +1654,6 @@ msgctxt ""
msgid "DSTDEVP"
msgstr "BDDESVESTP"
-#. =]D,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1845,7 +1663,6 @@ msgctxt ""
msgid "DVAR"
msgstr "BDVAR"
-#. l.$)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1855,7 +1672,6 @@ msgctxt ""
msgid "DVARP"
msgstr "BDVARP"
-#. qcU#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1865,7 +1681,6 @@ msgctxt ""
msgid "INDIRECT"
msgstr "INDIRECTO"
-#. bdnL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1875,7 +1690,6 @@ msgctxt ""
msgid "ADDRESS"
msgstr "DIRECCIÓN"
-#. F:u*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1885,7 +1699,6 @@ msgctxt ""
msgid "MATCH"
msgstr "COINCIDIR"
-#. G*]k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1895,7 +1708,6 @@ msgctxt ""
msgid "COUNTBLANK"
msgstr "CONTAR.BLANCO"
-#. rl!)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1905,7 +1717,6 @@ msgctxt ""
msgid "COUNTIF"
msgstr "CONTAR.SI"
-#. dP[c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1915,7 +1726,6 @@ msgctxt ""
msgid "SUMIF"
msgstr "SUMAR.SI"
-#. X-d{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1925,7 +1735,6 @@ msgctxt ""
msgid "LOOKUP"
msgstr "BUSCAR"
-#. _DRq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1935,7 +1744,6 @@ msgctxt ""
msgid "VLOOKUP"
msgstr "BUSCARV"
-#. ?}]%
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1945,7 +1753,6 @@ msgctxt ""
msgid "HLOOKUP"
msgstr "BUSCARH"
-#. _\%7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1955,7 +1762,6 @@ msgctxt ""
msgid "MULTIRANGE"
msgstr "MULTIRANGO"
-#. ?eU1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1965,7 +1771,6 @@ msgctxt ""
msgid "OFFSET"
msgstr "DESREF"
-#. Jz5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1975,7 +1780,6 @@ msgctxt ""
msgid "INDEX"
msgstr "ÍNDICE"
-#. +qQ8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1985,7 +1789,6 @@ msgctxt ""
msgid "AREAS"
msgstr "ÁREAS"
-#. F_]z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1995,7 +1798,6 @@ msgctxt ""
msgid "DOLLAR"
msgstr "MONEDA"
-#. =AV.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2005,7 +1807,6 @@ msgctxt ""
msgid "REPLACE"
msgstr "REEMPLAZAR"
-#. GD+x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2015,7 +1816,6 @@ msgctxt ""
msgid "FIXED"
msgstr "FIJO"
-#. `V[a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2025,7 +1825,6 @@ msgctxt ""
msgid "FIND"
msgstr "ENCONTRAR"
-#. re$@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2035,7 +1834,6 @@ msgctxt ""
msgid "EXACT"
msgstr "IGUAL"
-#. KZf]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2045,7 +1843,6 @@ msgctxt ""
msgid "LEFT"
msgstr "IZQUIERDA"
-#. 0rPe
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2055,7 +1852,6 @@ msgctxt ""
msgid "RIGHT"
msgstr "DERECHA"
-#. ]3[S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2065,7 +1861,6 @@ msgctxt ""
msgid "SEARCH"
msgstr "HALLAR"
-#. r]IN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2075,7 +1870,6 @@ msgctxt ""
msgid "MID"
msgstr "MID"
-#. KrZV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2085,7 +1879,6 @@ msgctxt ""
msgid "TEXT"
msgstr "TEXTO"
-#. Dri6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2095,7 +1888,6 @@ msgctxt ""
msgid "SUBSTITUTE"
msgstr "SUSTITUIR"
-#. @=si
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2105,7 +1897,6 @@ msgctxt ""
msgid "REPT"
msgstr "REPETIR"
-#. b27s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2115,7 +1906,6 @@ msgctxt ""
msgid "CONCATENATE"
msgstr "CONCATENAR"
-#. \7ZC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2125,7 +1915,6 @@ msgctxt ""
msgid "MVALUE"
msgstr "MVALOR"
-#. $jQA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2135,7 +1924,6 @@ msgctxt ""
msgid "MDETERM"
msgstr "MDETERM"
-#. p\Zh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2145,7 +1933,6 @@ msgctxt ""
msgid "MINVERSE"
msgstr "MINVERSA"
-#. x?y^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2155,7 +1942,6 @@ msgctxt ""
msgid "MMULT"
msgstr "MMULT"
-#. M:e(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2165,7 +1951,6 @@ msgctxt ""
msgid "TRANSPOSE"
msgstr "TRANSPONER"
-#. xyM5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2175,7 +1960,6 @@ msgctxt ""
msgid "MUNIT"
msgstr "MUNITARIA"
-#. qF^k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2185,7 +1969,6 @@ msgctxt ""
msgid "GOALSEEK"
msgstr "VALORPRETENDIDO"
-#. 8\V7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2195,7 +1978,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr "DISTR.HIPERGEOM"
-#. $a)3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2205,7 +1987,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr "DISTR.LOG.NORM"
-#. S]Ef
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2215,7 +1996,6 @@ msgctxt ""
msgid "TDIST"
msgstr "DISTR.T"
-#. 3#9(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2225,7 +2005,6 @@ msgctxt ""
msgid "FDIST"
msgstr "DISTR.F"
-#. Kff1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2235,7 +2014,6 @@ msgctxt ""
msgid "CHIDIST"
msgstr "DISTR.CHI"
-#. _R.J
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2245,7 +2023,6 @@ msgctxt ""
msgid "WEIBULL"
msgstr "DIST.WEIBULL"
-#. To7B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2255,7 +2032,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
-#. 1]Bv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2265,7 +2041,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr "BINOM.CRIT"
-#. @Km^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2275,7 +2050,6 @@ msgctxt ""
msgid "KURT"
msgstr "CURTOSIS"
-#. ,wlP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2285,7 +2059,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr "MEDIA.ARMO"
-#. `p*C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2295,7 +2068,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr "MEDIA.GEOM"
-#. qM)N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2305,7 +2077,6 @@ msgctxt ""
msgid "STANDARDIZE"
msgstr "NORMALIZACIÓN"
-#. #Ce(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2315,7 +2086,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr "DESVPROM"
-#. I+ZX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2325,7 +2095,6 @@ msgctxt ""
msgid "SKEW"
msgstr "COEFICIENTE.ASIMETRIA"
-#. u;Z(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2335,7 +2104,6 @@ msgctxt ""
msgid "DEVSQ"
msgstr "DESVIA2"
-#. WOM2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2345,7 +2113,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr "MEDIANA"
-#. cY%B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2355,7 +2122,6 @@ msgctxt ""
msgid "MODE"
msgstr "MODO"
-#. mki,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2365,7 +2131,6 @@ msgctxt ""
msgid "ZTEST"
msgstr "PRUEBA.Z"
-#. G5!Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2375,7 +2140,6 @@ msgctxt ""
msgid "TTEST"
msgstr "PRUEBA.T"
-#. )6^A
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2385,7 +2149,6 @@ msgctxt ""
msgid "RANK"
msgstr "JERARQUÍA"
-#. 1ZUU
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2395,7 +2158,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr "PERCENTIL"
-#. -`uX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2405,7 +2167,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr "RANGO.PERCENTIL"
-#. B3)6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2415,7 +2176,6 @@ msgctxt ""
msgid "LARGE"
msgstr "K.ESIMO.MAYOR"
-#. `^/,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2425,7 +2185,6 @@ msgctxt ""
msgid "SMALL"
msgstr "K.ESIMO.MENOR"
-#. F0yF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2435,7 +2194,6 @@ msgctxt ""
msgid "FREQUENCY"
msgstr "FRECUENCIA"
-#. 44gA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2445,7 +2203,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr "CUARTIL"
-#. $\Os
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2455,7 +2212,6 @@ msgctxt ""
msgid "NORMINV"
msgstr "DISTR.NORM.INV"
-#. .LzE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2465,7 +2221,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr "CONFIANZA"
-#. cM67
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2475,7 +2230,6 @@ msgctxt ""
msgid "FTEST"
msgstr "PRUEBA.F"
-#. k.|9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2485,7 +2239,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr "MEDIA.ACOTADA"
-#. .Bua
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2495,7 +2248,6 @@ msgctxt ""
msgid "PROB"
msgstr "PROBABILIDAD"
-#. mLn^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2505,7 +2257,6 @@ msgctxt ""
msgid "CORREL"
msgstr "COEF.DE.CORREL"
-#. @-w~
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2515,7 +2266,6 @@ msgctxt ""
msgid "COVAR"
msgstr "COVAR"
-#. JSkE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2525,7 +2275,6 @@ msgctxt ""
msgid "PEARSON"
msgstr "PEARSON"
-#. (tCP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2535,7 +2284,6 @@ msgctxt ""
msgid "RSQ"
msgstr "COEFICIENTE.R2"
-#. 4heE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2545,7 +2293,6 @@ msgctxt ""
msgid "STEYX"
msgstr "ERROR.TÍPICO.XY"
-#. I7m3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2555,7 +2302,6 @@ msgctxt ""
msgid "SLOPE"
msgstr "PENDIENTE"
-#. {p,-
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2565,7 +2311,6 @@ msgctxt ""
msgid "INTERCEPT"
msgstr "INTERSECCIÓN.EJE"
-#. v#n|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2575,7 +2320,6 @@ msgctxt ""
msgid "TREND"
msgstr "TENDENCIA"
-#. Qf]v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2585,7 +2329,6 @@ msgctxt ""
msgid "GROWTH"
msgstr "CRECIMIENTO"
-#. -EP8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2595,7 +2338,6 @@ msgctxt ""
msgid "LINEST"
msgstr "ESTIMACIÓN.LINEAL"
-#. Gsz[
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2605,7 +2347,6 @@ msgctxt ""
msgid "LOGEST"
msgstr "ESTIMACIÓN.LOGARÍTMICA"
-#. o0iV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2615,7 +2356,6 @@ msgctxt ""
msgid "FORECAST"
msgstr "PRONÓSTICO"
-#. M?3F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2625,7 +2365,6 @@ msgctxt ""
msgid "CHIINV"
msgstr "PRUEBA.CHI.INV"
-#. 1ny?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2635,7 +2374,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr "DISTR.GAMMA"
-#. A(nJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2645,7 +2383,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr "DISTR.GAMMA.INV"
-#. )T9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2655,7 +2392,6 @@ msgctxt ""
msgid "TINV"
msgstr "DISTR.T.INV"
-#. X/)S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2665,7 +2401,6 @@ msgctxt ""
msgid "FINV"
msgstr "DISTR.F.INV"
-#. ;Q,}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2675,7 +2410,6 @@ msgctxt ""
msgid "CHITEST"
msgstr "PRUEBA.CHI"
-#. A$e/
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2685,7 +2419,6 @@ msgctxt ""
msgid "LOGINV"
msgstr "INV.LOG"
-#. F}DZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2695,7 +2428,6 @@ msgctxt ""
msgid "MULTIPLE.OPERATIONS"
msgstr "OPERACIÓN.MÚLTIPLE"
-#. *2sm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2705,7 +2437,6 @@ msgctxt ""
msgid "BETADIST"
msgstr "DISTR.BETA"
-#. .f*\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2715,7 +2446,6 @@ msgctxt ""
msgid "BETAINV"
msgstr "DISTR.BETA.INV"
-#. 7_Jr
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2725,7 +2455,6 @@ msgctxt ""
msgid "WEEKNUM"
msgstr "SEM.DEL.AÑO"
-#. huqp
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2735,7 +2464,6 @@ msgctxt ""
msgid "EASTERSUNDAY"
msgstr "DOMINGOPASCUA"
-#. n~Zf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2745,7 +2473,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr "DÍASEM"
-#. M3m.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2755,7 +2482,6 @@ msgctxt ""
msgid "#NAME!"
msgstr "#NOMBRE!"
-#. cdty
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2765,7 +2491,6 @@ msgctxt ""
msgid "STYLE"
msgstr "ESTILO"
-#. l([n
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2775,7 +2500,6 @@ msgctxt ""
msgid "DDE"
msgstr "DDE"
-#. g/Em
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2785,7 +2509,6 @@ msgctxt ""
msgid "BASE"
msgstr "BASE"
-#. PBBY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2795,7 +2518,6 @@ msgctxt ""
msgid "DECIMAL"
msgstr "DECIMAL"
-#. 1m0+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2805,7 +2527,6 @@ msgctxt ""
msgid "CONVERT"
msgstr "CONVERTIR"
-#. bi_(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2815,7 +2536,6 @@ msgctxt ""
msgid "ROMAN"
msgstr "ROMANO"
-#. (a}=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2825,7 +2545,6 @@ msgctxt ""
msgid "HYPERLINK"
msgstr "HIPERVÍNCULO"
-#. .j,H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2835,7 +2554,6 @@ msgctxt ""
msgid "INFO"
msgstr "INFO"
-#. ]:og
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2845,7 +2563,6 @@ msgctxt ""
msgid "BAHTTEXT"
msgstr "BAHTTEXT"
-#. V_p5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2855,7 +2572,6 @@ msgctxt ""
msgid "GETPIVOTDATA"
msgstr "GETPIVOTDATA"
-#. v_m^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2865,7 +2581,6 @@ msgctxt ""
msgid "EUROCONVERT"
msgstr "EUROCONVERT"
-#. q{4P
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2875,7 +2590,6 @@ msgctxt ""
msgid "NUMBERVALUE"
msgstr "VALOR.NÚMERO"
-#. YqfY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2885,7 +2599,6 @@ msgctxt ""
msgid "GAMMA"
msgstr "GAMMA"
-#. c?p*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2895,7 +2608,6 @@ msgctxt ""
msgid "CHISQDIST"
msgstr "CHISQDIST"
-#. s,k=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2905,7 +2617,6 @@ msgctxt ""
msgid "CHISQINV"
msgstr "CHISQINV"
-#. S(m8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2915,7 +2626,6 @@ msgctxt ""
msgid "BITAND"
msgstr "BITAND"
-#. %ToX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2925,7 +2635,6 @@ msgctxt ""
msgid "BITOR"
msgstr "BITOR"
-#. 6_pV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2935,7 +2644,6 @@ msgctxt ""
msgid "BITXOR"
msgstr "BITXOR"
-#. .~dm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2945,7 +2653,6 @@ msgctxt ""
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
-#. ]fP+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2955,7 +2662,6 @@ msgctxt ""
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
-#. 5HqI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2965,7 +2671,6 @@ msgctxt ""
msgid "#NULL!"
msgstr "#NULO!"
-#. 2U]$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2975,7 +2680,6 @@ msgctxt ""
msgid "#DIV/0!"
msgstr "#DIV/0!"
-#. $a}i
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2985,7 +2689,6 @@ msgctxt ""
msgid "#VALUE!"
msgstr "#VALOR!"
-#. (T^C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2995,7 +2698,6 @@ msgctxt ""
msgid "#REF!"
msgstr "#REF!"
-#. N[*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3005,7 +2707,6 @@ msgctxt ""
msgid "#NAME?"
msgstr "#NOMBRE?"
-#. M-]K
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3015,7 +2716,6 @@ msgctxt ""
msgid "#NUM!"
msgstr "#NUM!"
-#. [WhE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
diff --git a/source/es/formula/source/ui/dlg.po b/source/es/formula/source/ui/dlg.po
index 61311bb1bd4..2a047ab78aa 100644
--- a/source/es/formula/source/ui/dlg.po
+++ b/source/es/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: 2012-10-08 21:06+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Seleccionar"
-#. R-Js
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Function not known"
msgstr "Función desconocida"
-#. x}mq
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "(optional)"
msgstr "(opcional)"
-#. 8-`p
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "(required)"
msgstr "(requerido)"
-#. 0h1x
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Last Used"
msgstr "Último usado"
-#. h,@F
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "All"
msgstr "Todos"
-#. V%02
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "~Category"
msgstr "~Categoría"
-#. ]E,m
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "~Function"
msgstr "~Función"
-#. W`#G
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "~Structure"
msgstr "~Estructura"
-#. 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 "Error"
-#. LA-U
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Functions"
msgstr "Funciones"
-#. OYX,
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Structure"
msgstr "Estructura"
-#. f:ni
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "For~mula"
msgstr "Fór~mula"
-#. v%!v
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Function result"
msgstr "Resultado de función"
-#. HON9
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Result"
msgstr "Resultado"
-#. U\w!
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Array"
msgstr "Matríz"
-#. 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 "Maximizar"
-#. bG0S
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr "<< ~Volver"
-#. $,KF
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "~Next >>"
msgstr "~Siguiente >>"
-#. h?Ds
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "Asistente de Funciones"
-#. ${X$
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr "Asistente de Función -"
-#. PtZx
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "~End"
msgstr "~Fin"
-#. 5GA-
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Functions"
msgstr "Funciones"
-#. vdc,
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "Structure"
msgstr "Estructura"
-#. cJ45
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -293,7 +265,6 @@ msgctxt ""
msgid "For~mula"
msgstr "For~mula"
-#. !f`w
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -303,7 +274,6 @@ msgctxt ""
msgid "Function result"
msgstr "Resultado de función"
-#. mTa6
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -313,7 +283,6 @@ msgctxt ""
msgid "Result"
msgstr "Resultado"
-#. k;$r
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -323,7 +292,6 @@ msgctxt ""
msgid "Array"
msgstr "Arreglo"
-#. 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 "Maximizar"
-#. ;:RX
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -353,7 +319,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr "<< ~Anterior"
-#. O1up
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -363,7 +328,6 @@ msgctxt ""
msgid "~Next >>"
msgstr "~Siguiente >>"
-#. ?k]\
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -373,7 +337,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "Asistente de función"
-#. 2~aH
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -383,7 +346,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr "Asistente de función -"
-#. )ol`
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
diff --git a/source/es/fpicker/source/office.po b/source/es/fpicker/source/office.po
index 90ed928fae7..b376617e85f 100644
--- a/source/es/fpicker/source/office.po
+++ b/source/es/fpicker/source/office.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
-"PO-Revision-Date: 2012-06-22 00:57+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"PO-Revision-Date: 2012-11-21 13:38+0000\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,8 +14,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1353505080.0\n"
-#. 4ULj
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -24,7 +24,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "Extensión de archivo ~automática"
-#. Dj/:
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -33,7 +32,6 @@ msgctxt ""
msgid "Save with pass~word"
msgstr "Guardar con c~ontraseña"
-#. 9N|P
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -42,7 +40,6 @@ msgctxt ""
msgid "~Edit filter settings"
msgstr "~Editar configuración de filtros"
-#. lbNM
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -51,7 +48,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "Solo ~lectura"
-#. !:SR
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -60,7 +56,6 @@ msgctxt ""
msgid "~Link"
msgstr "~Enlazar"
-#. ~{h[
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -69,7 +64,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "~Previsualizar"
-#. kNTP
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -78,7 +72,6 @@ msgctxt ""
msgid "~Play"
msgstr "~Reproducir"
-#. %P4+
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -87,7 +80,6 @@ msgctxt ""
msgid "~Version:"
msgstr "~Versión:"
-#. p(Uq
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -96,7 +88,6 @@ msgctxt ""
msgid "S~tyles:"
msgstr "Es~tilos:"
-#. )yE=
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Style:"
msgstr "Estilo:"
-#. LqbU
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~Selección"
-#. o3;O
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "~Tipo de archivo:"
-#. 1bv8
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Select Path"
msgstr "Seleccionar ruta"
-#. D07^
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "Please select a folder."
msgstr "Seleccione una carpeta."
-#. ]Vv@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -151,9 +137,7 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. ;Y*U
#: iodlg.src
-#, fuzzy
msgctxt ""
"iodlg.src\n"
"DLG_FPICKER_EXPLORERFILE\n"
@@ -162,7 +146,6 @@ msgctxt ""
msgid "Create New Folder"
msgstr "Crear carpeta nueva"
-#. 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 "Subir un nivel"
-#. -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 "Conectar al servidor"
-#. gtrg
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -212,7 +191,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "~Nombre del archivo:"
-#. 3oFW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "~Tipo de archivo:"
-#. 0IUA
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "Solo ~lectura"
-#. f3pW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "Save with password"
msgstr "Guardar con contraseña"
-#. !;B:
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -252,7 +227,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "Extensión de archivo ~automática"
-#. NSiC
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -262,7 +236,6 @@ msgctxt ""
msgid "Edit ~filter settings"
msgstr "Editar ~configuración de filtros"
-#. Tfb=
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -272,7 +245,6 @@ msgctxt ""
msgid "~Open"
msgstr "~Abrir"
-#. !Wl]
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "Open"
msgstr "Abrir"
-#. vzL/
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Save as"
msgstr "Guardar como"
-#. +C2x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "~Save"
msgstr "~Guardar"
-#. 597d
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "~Path:"
msgstr "~Ruta:"
-#. |qgQ
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Select path"
msgstr "Seleccionar ruta"
-#. .EW)
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "~Select"
msgstr "~Seleccionar"
-#. +TS2
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "Current version"
msgstr "Versión actual"
-#. 8Um~
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid "File Preview"
msgstr "Previsualización del archivo"
-#. k{IY
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "My Documents"
msgstr "Mis documentos"
-#. \sF-
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Places"
msgstr "Lugares"
-#. 5j@s
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -382,7 +344,6 @@ msgctxt ""
msgid "Na~me"
msgstr "No~mbre"
-#. FB6m
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -392,7 +353,6 @@ msgctxt ""
msgid "Create new folder"
msgstr "Crear carpeta nueva"
-#. ,U8x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -401,7 +361,6 @@ msgctxt ""
msgid "$name$ does not exist."
msgstr "$name$ no existe."
-#. @`7(
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -414,7 +373,6 @@ msgstr ""
"No existe el archivo $name$.\n"
"Asegúrese de haber introducido el nombre correcto."
-#. Zl^@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -423,7 +381,6 @@ msgctxt ""
msgid "All files"
msgstr "Todos los archivos"
-#. {30k
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -438,7 +395,6 @@ msgstr ""
"\n"
"¿Quiere reemplazarlo?"
-#. sG][
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "Folder"
msgstr "Carpeta"
-#. 3usx
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -460,7 +415,6 @@ msgstr ""
"No se ha detectado un dispositivo de almacenamiento extraíble.\n"
"Asegúrese de que esté conectado correctamente y vuelva a intentarlo."
-#. qSJd
#: iodlg.src
msgctxt ""
"iodlg.src\n"
diff --git a/source/es/framework/source/classes.po b/source/es/framework/source/classes.po
index 01636616958..f5dafa3ae72 100644
--- a/source/es/framework/source/classes.po
+++ b/source/es/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: 2012-06-14 01:07+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Complementos"
-#. J7v!
#: resource.src
msgctxt ""
"resource.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Add-~On Help"
msgstr "Ayuda de c~omplementos"
-#. =X1Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "All"
msgstr "Todo"
-#. mL;x
#: resource.src
msgctxt ""
"resource.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Update"
msgstr "Actuali~zar"
-#. }FiV
#: resource.src
msgctxt ""
"resource.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Close & Return to "
msgstr "C~errar y volver a "
-#. _J\Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -70,7 +64,6 @@ msgctxt ""
msgid "Visible ~Buttons"
msgstr "~Botones visibles"
-#. .__I
#: resource.src
msgctxt ""
"resource.src\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "~Customize Toolbar..."
msgstr "~Personalizar barra de herramientas..."
-#. Mz%D
#: resource.src
msgctxt ""
"resource.src\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "~Dock Toolbar"
msgstr "~Acoplar barra de herramientas"
-#. #bq-
#: resource.src
msgctxt ""
"resource.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Dock ~All Toolbars"
msgstr "Acoplar ~todas las barras de herramientas"
-#. ;Sdo
#: resource.src
msgctxt ""
"resource.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "~Lock Toolbar Position"
msgstr "~Bloquear posición de la barra de herramientas"
-#. X1|H
#: resource.src
msgctxt ""
"resource.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Close ~Toolbar"
msgstr "Cerrar ~barra de herramientas"
-#. JT^K
#: resource.src
msgctxt ""
"resource.src\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "Save Copy ~as..."
msgstr "Guardar copia ~como..."
-#. jC/t
#: resource.src
msgctxt ""
"resource.src\n"
@@ -138,7 +125,6 @@ msgctxt ""
msgid "No Documents"
msgstr "Sin documentos"
-#. VbG3
#: resource.src
msgctxt ""
"resource.src\n"
@@ -147,7 +133,6 @@ msgctxt ""
msgid "Add-On %num%"
msgstr "Complemento %num%"
-#. Rbv~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -156,7 +141,6 @@ msgctxt ""
msgid "A %PRODUCTNAME product by %OOOVENDOR"
msgstr "%PRODUCTNAME es un producto de %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 "Siga estos pasos para completar la instalación:"
-#. 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 "Lea el Acuerdo de licencia completo. Utilice la barra de desplazamiento o el botón '%PAGEDOWN' de este diálogo para leer el texto completo de la licencia."
-#. RB$j
#: resource.src
msgctxt ""
"resource.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Scroll Down"
msgstr "Desplazamiento hacia abajo"
-#. 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 "Acepte el acuerdo de licencia."
-#. R_iD
#: resource.src
msgctxt ""
"resource.src\n"
@@ -226,7 +204,6 @@ msgctxt ""
msgid "~Accept"
msgstr "~Aceptar"
-#. j~Je
#: resource.src
msgctxt ""
"resource.src\n"
@@ -236,7 +213,6 @@ msgctxt ""
msgid "Decline"
msgstr "Declinar"
-#. V{V{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "License Agreement"
msgstr "Acuerdo de licencia"
-#. WzdP
#: resource.src
msgctxt ""
"resource.src\n"
@@ -254,7 +229,6 @@ msgctxt ""
msgid "Retry"
msgstr "Reintentar"
-#. 7aH6
#: resource.src
msgctxt ""
"resource.src\n"
@@ -277,7 +251,6 @@ msgstr ""
"Pulse el botón 'Reintentar' cuando haya asignado más espacio libre para intentar guardar de nuevo los datos.\n"
"\n"
-#. kJ]/
#: resource.src
msgctxt ""
"resource.src\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "~Reset"
msgstr "~Restablecer"
-#. gI|E
#: resource.src
msgctxt ""
"resource.src\n"
@@ -299,7 +271,6 @@ msgstr ""
"Ocurrió un error mientras se cargaban los datos de configuración de la interfaz de usuario. La aplicación se cerrará ahora.\n"
"Pruebe a reinstalar la aplicación."
-#. :KT~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -312,7 +283,6 @@ msgstr ""
"Ocurrió un error mientras se cargaban los datos de configuración de la interfaz de usuario. La aplicación se cerrará ahora.\n"
"Intente eliminar su perfil de usuario para la aplicación."
-#. %iT9
#: resource.src
msgctxt ""
"resource.src\n"
@@ -325,7 +295,6 @@ msgstr ""
"Ocurrió un error mientras se cargaban los datos de configuración de la interfaz de usuario. La aplicación se cerrará ahora.\n"
"Intente eliminar su perfil de usuario para la aplicación o pruebe a reinstalar la aplicación."
-#. tgC]
#: resource.src
msgctxt ""
"resource.src\n"
@@ -334,7 +303,6 @@ msgctxt ""
msgid "Untitled"
msgstr "Sin título"
-#. ^E1@
#: resource.src
msgctxt ""
"resource.src\n"
@@ -343,7 +311,6 @@ msgctxt ""
msgid "Multiple Languages"
msgstr "Idiomas múltiples"
-#. y-I{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -352,7 +319,6 @@ msgctxt ""
msgid "None (Do not check spelling)"
msgstr "Ninguno (No corregir la ortografía)"
-#. J)Ua
#: resource.src
msgctxt ""
"resource.src\n"
@@ -361,7 +327,6 @@ msgctxt ""
msgid "Reset to Default Language"
msgstr "Restablecer al idioma predeterminado"
-#. L=+w
#: resource.src
msgctxt ""
"resource.src\n"
@@ -370,7 +335,6 @@ msgctxt ""
msgid "More..."
msgstr "Más..."
-#. \Q`Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -379,7 +343,6 @@ msgctxt ""
msgid "Set Language for Selection"
msgstr "Definir idioma para selección"
-#. @?yf
#: resource.src
msgctxt ""
"resource.src\n"
@@ -388,7 +351,6 @@ msgctxt ""
msgid "Set Language for Paragraph"
msgstr "Definir idioma para parrafos"
-#. YA!N
#: resource.src
msgctxt ""
"resource.src\n"
diff --git a/source/es/framework/source/services.po b/source/es/framework/source/services.po
index ea347bcd275..f483d2767de 100644
--- a/source/es/framework/source/services.po
+++ b/source/es/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: 2012-06-14 01:01+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Crear un documento nuevo"
-#. ]WRA
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Templates..."
msgstr "~Plantillas..."
-#. 28zC
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "~Open..."
msgstr "Ab~rir..."
-#. 4bp*
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Add new features to %PRODUCTNAME"
msgstr "Añadir funciones nuevas a %PRODUCTNAME"
-#. !BQ^
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Get more information about %PRODUCTNAME"
msgstr "Obtener más información sobre %PRODUCTNAME"
-#. #_21
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
diff --git a/source/es/helpcontent2/source/auxiliary.po b/source/es/helpcontent2/source/auxiliary.po
new file mode 100644
index 00000000000..90061bc8950
--- /dev/null
+++ b/source/es/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: es\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/es/helpcontent2/source/text/sbasic/guide.po b/source/es/helpcontent2/source/text/sbasic/guide.po
index 9710d1dc5c0..310e0b3348e 100644
--- a/source/es/helpcontent2/source/text/sbasic/guide.po
+++ b/source/es/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 19:48+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. lyK]
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Creating a Basic Dialog"
msgstr "Crear un diálogo de Basic"
-#. 5QGj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
msgstr "<bookmark_value>diálogos;creando diálogos básicas</bookmark_value>"
-#. 7/Gq
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Crear un diálogo de Basic</link></variable>"
-#. I[pj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr "Seleccione <emph>Herramientas - Macros - Organizar diálogos</emph> y haga clic en <emph>Nuevo</emph>."
-#. i4iR
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>."
msgstr "Escriba un nombre para el diálogo y haga clic en Aceptar. Para cambiar el nombre del diálogo posteriormente, con el botón derecho haga clic en el nombre de la ficha y seleccione <emph>Cambiar nombre</emph>."
-#. g4sC
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
msgstr "Haga clic en <emph>Editar</emph>. El editor de diálogos de Basic se abre con un diálogo vacío."
-#. G]H:
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
msgstr "Si no ve en pantalla la barra <emph>Cuadro de herramientas</emph>, para abrirla haga clic en la flecha junto al icono <emph>Insertar campos de control</emph><emph></emph>."
-#. R#P.
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Click a tool and then drag in the dialog to create the control."
msgstr "Pulse en una herramienta y después arrastre el diálogo para crear el control."
-#. pa$)
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "Creating Controls in the Dialog Editor"
msgstr "Creación de campos de control en el Editor de diálogos"
-#. =H+1
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
msgstr "<bookmark_value>campos de control;crear en el editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear campos de control</bookmark_value>"
-#. Z:9c
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creación de campos de control en el Editor de diálogos </link></variable>"
-#. b]H\
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr "Utilice las herramientas del <emph>Cuadro de herramientas </emph>del editor de diálogos BASIC para agregar controles al diálogo."
-#. (q+q
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
msgstr "Para abrir el <emph>Cuadro de herramientas</emph>, haga clic en la flecha que hay junto al icono <emph>Insertar campos de control</emph> en la barra de herramientas <emph>Macro</emph>."
-#. CTqE
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr "Pulse una herramienta de la barra, por ejemplo <emph>Botón</emph>."
-#. Z$eA
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr "Arrastre el botón hasta el tamaño que desee en el diálogo."
-#. :3jB
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Programming Examples for Controls in the Dialog Editor"
msgstr "Ejemplos de programación de campos de control en el Editor de diálogos"
-#. 4OU5
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "<bookmark_value>programming examples for controls</bookmark_value><bookmark_value>dialogs;loading (example)</bookmark_value><bookmark_value>dialogs;displaying (example)</bookmark_value><bookmark_value>controls;reading or editing properties (example)</bookmark_value><bookmark_value>list boxes;removing entries from (example)</bookmark_value><bookmark_value>list boxes;adding entries to (example)</bookmark_value><bookmark_value>examples; programming controls</bookmark_value><bookmark_value>dialog editor;programming examples for controls</bookmark_value>"
msgstr "<bookmark_value>ejemplos de programación;campos de control en el editor de diálogo</bookmark_value>"
-#. ,1-3
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -188,7 +170,6 @@ msgctxt ""
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Ejemplos de programación de campos de control en el Editor de diálogos</link></variable>"
-#. gNsl
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -198,7 +179,6 @@ msgctxt ""
msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
msgstr "Los siguientes ejemplos se aplican a un nuevo <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"diálogo\">diálogo</link> llamado \"Dialog1\". Utilice las herramientas de la barra <emph>Cuadro de herramientas</emph> del editor de diálogos para crear el diálogo y agregar los controles siguientes: una <emph>casilla de verificación</emph> denominada \"Casillaverificación1\", un <emph>campo de etiqueta</emph> denominado \"Etiqueta1\", un <emph>botón</emph> denominado \"Botóncomando1\" y un <emph>cuadro de lista</emph> denominado \"Cuadrolista1\"."
-#. @VQ#
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -208,7 +188,6 @@ msgctxt ""
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr "Utilice siempre el mismo patrón de mayúsculas y minúsculas cuando adjunte un campo de control a una variable de objeto."
-#. ;Zv/
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -218,7 +197,6 @@ msgctxt ""
msgid "Global Function for Loading Dialogs"
msgstr "Función global para cargar diálogos"
-#. $.c[
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -228,7 +206,6 @@ msgctxt ""
msgid "Displaying a Dialog"
msgstr "Mostrar un diálogo"
-#. o@5@
#: sample_code.xhp
#, fuzzy
msgctxt ""
@@ -238,7 +215,6 @@ msgctxt ""
msgid "REM global definition of variables"
msgstr "rem definición global de variables"
-#. r0wJ
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -248,7 +224,6 @@ msgctxt ""
msgid "Read or Edit Properties of Controls in the Program"
msgstr "Leer o editar propiedades de los campos de control en el programa"
-#. ]6.1
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -257,7 +232,6 @@ msgctxt ""
msgid "REM get dialog model"
msgstr "REM obtener modelo de diálogo"
-#. [noW
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -266,7 +240,6 @@ msgctxt ""
msgid "REM display text of Label1"
msgstr "REM mostrar texto de Label1"
-#. I:c%
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -275,7 +248,6 @@ msgctxt ""
msgid "REM set new text for control Label1"
msgstr "REM establecer texto nuevo para el campo de control Label1"
-#. ^f!;
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -284,7 +256,6 @@ msgctxt ""
msgid "oLabel1.Text = \"New Files\""
msgstr "oLabel1.Text = \"New Files\""
-#. j+5q
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -293,7 +264,6 @@ msgctxt ""
msgid "REM display model properties for the control CheckBox1"
msgstr "REM mostrar propiedades de modelo para el campo de control CheckBox1"
-#. 0K/R
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "REM set new state for CheckBox1 for model of control"
msgstr "REM establecer estado nuevo para CheckBox1 para modelo del campo de control"
-#. t-.)
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -311,7 +280,6 @@ msgctxt ""
msgid "REM display model properties for control CommandButton1"
msgstr "REM mostrar propiedades de modelo para el campo de control CommandButton1"
-#. MW#z
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -320,7 +288,6 @@ msgctxt ""
msgid "REM display properties of control CommandButton1"
msgstr "REM mostrar propiedades del campo de control CommandButton1"
-#. #1@t
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -329,7 +296,6 @@ msgctxt ""
msgid "REM execute dialog"
msgstr "REM ejecutar diálogo"
-#. SQ;/
#: sample_code.xhp
#, fuzzy
msgctxt ""
@@ -339,7 +305,6 @@ msgctxt ""
msgid "End Sub"
msgstr "End Sub"
-#. oZMn
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -349,7 +314,6 @@ msgctxt ""
msgid "Add an Entry to a ListBox"
msgstr "Añadir una entrada a un cuadro de lista"
-#. NVlH
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -358,7 +322,6 @@ msgctxt ""
msgid "REM adds a new entry to the ListBox"
msgstr "REM añade una entrada nueva al cuadro de lista"
-#. !R)S
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -367,7 +330,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"
@@ -377,7 +339,6 @@ msgctxt ""
msgid "Remove an Entry from a ListBox"
msgstr "Eliminar una entrada de un cuadro de lista"
-#. W\?P
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -386,7 +347,6 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr "REM eliminar la primera entrada del cuadro de lista"
-#. T)mS
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -395,7 +355,6 @@ msgctxt ""
msgid "Changing the Properties of Controls in the Dialog Editor"
msgstr "Cambio de las propiedades de los campos de control en el Editor de diálogos"
-#. ?XnX
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -404,7 +363,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>propiedades;controles del editor de diálogos</bookmark_value><bookmark_value>cambiar;propiedades de controles</bookmark_value><bookmark_value>controles;cambiar propiedades</bookmark_value><bookmark_value>editor de diálogos;cambiar propiedades de controles</bookmark_value>"
-#. r0LQ
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -414,7 +372,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=\"Changing the Properties of Controls in the Dialog Editor\">Cambio de las propiedades de los campos de control en el Editor de diálogos</link></variable>"
-#. mlL^
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -424,7 +381,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 "Pueden establecerse las propiedades de los campos de control que se añaden a un diálogo. Por ejemplo, puede cambiar el color, nombre y tamaño de un botón. Cuando se crean o editan diálogos se pueden cambiar muchas propiedades del campo de control. Sin embargo, algunas propiedades sólo pueden cambiarse en tiempo de ejecución."
-#. YrC3
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -434,7 +390,6 @@ msgctxt ""
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr "Para cambiar las propiedades de un campo de control en tiempo de diseño, pulse con el botón derecho en el campo de control y elija <emph>Propiedades</emph>."
-#. 6c:g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -443,7 +398,6 @@ msgctxt ""
msgid "Translation of Controls in the Dialog Editor"
msgstr "Traducción de controles en el diálogo del editor."
-#. I%m*
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -452,7 +406,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
msgstr "<bookmark_value>dialogos;traduciendo</bookmark_value><bookmark_value>diálogos de localización </bookmark_value><bookmark_value>diálogos de traducción</bookmark_value>"
-#. Zv\6
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -461,7 +414,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\">Traducción de controles en el diálogo del editor</link></variable>"
-#. ]%ki
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -470,7 +422,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=\".\">La barra de herramienta dentro del diálogo del editor en el IDE de Basic muestra controles para activar y administrar los diálogos localizados.</ahelp>"
-#. w39E
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -479,7 +430,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 "Predeterminado, cualquier diálogo que creas solo contiene cadenas de recursos por un idioma. Quizas quieras crear diálogos que automaticamente muestra cadenas localizadas de acuerdo a la configuración del idioma por el usuario."
-#. HsTg
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -488,7 +438,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\">Selecciona el idioma para la cadena que quieres editar. Haz clic en el icono de administrar idiomas para agregar un idioma.</ahelp>"
-#. k_)8
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -497,7 +446,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\">Haz clic en el idioma, despues haz clic en el idioma como predeterminado, o haz clic en borrar para eliminar el idioma de la lista.</ahelp>"
-#. `vfU
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -506,7 +454,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\">Abre un diálogo donde puedes agregar un idioma a la lista.</ahelp>"
-#. |z,=
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -515,7 +462,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\">Selecciona un idioma dentro de la lista y haz clic en borrar para eliminar ese lenguaje. Cuando eliminas todos los idiomas, la cadena de recursos para localizar los diálogo son eliminado de todo los diálogos dentro de la biblioteca actual.</ahelp>"
-#. trE)
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -524,7 +470,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\">Selecciona el idioma de la lista y haz clic en predeterminado para definir el idioma como predeterminado.</ahelp>"
-#. :o/z
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -533,7 +478,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\">Los idiomas predeterminado sera usado como fuente para otras cadenas de idiomas.</ahelp>"
-#. lOW%
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -542,7 +486,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Agrega idiomas a la interfaz para tus cadenas en los diálogos.</ahelp>"
-#. [+~9
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -551,7 +494,6 @@ msgctxt ""
msgid "To enable localizable dialogs"
msgstr "Para habilitar la localización de diálogos"
-#. 4GEp
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -560,7 +502,6 @@ msgctxt ""
msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>."
msgstr "En el editor de diálogo en el IDE de Basic, abre la barra de idioma escogiendo <item type=\"menuitem\">Ver - Barra de Herramientas - Idiomas</item>."
-#. x)fS
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -569,7 +510,6 @@ msgctxt ""
msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
msgstr "Si la biblioteca actual ya tiene un diálogo localizado, la barra de idiomas es seleccionado automaticamente."
-#. P?77
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -578,7 +518,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 "Haz clic en el ícono de <emph>Administrar idiomas</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">ícono de administrar idiomas</alt></image> en la barra de idiomas o en la barra de herramientas."
-#. GIYx
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -587,7 +526,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 "Si vez que en el diálogo de administracion de los idiomas para la interfaz de usuario. El diálogo administra idiomas para la biblioteca actual. El nombre de las bibliotecas actuales esta mostrada en la barra de título."
-#. b]RP
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -596,7 +534,6 @@ msgctxt ""
msgid "Click Add in the dialog to add a language entry."
msgstr "Haz clic en Agregar para agregar una entrada de idioma."
-#. )oH3
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -605,7 +542,6 @@ msgctxt ""
msgid "This step enables all new dialogs to contain localizable string resources."
msgstr "Estos pasos permite a todos los nuevos diálogos contener recursos de cadenas localizables,"
-#. CrnQ
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -614,7 +550,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 "La primera vez que haga clic en Agregar, verá que el diálogo de Configurar la interfaz predeterminada de usuario. Las siguientes veces que haga clic en Agregar, este diálogo tendrá el nombre de Agregar idioma a la interfaz de usuario."
-#. D-0^
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -623,7 +558,6 @@ msgctxt ""
msgid "You can also change the default language in the Manage User Interface Language dialog."
msgstr "Puedes tambien cambiar el idioma predeterminado en el diálogo de Administrar idioma de interfaz de usuario."
-#. +NiO
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -632,7 +566,6 @@ msgctxt ""
msgid "Select a language."
msgstr "Selecciona un idioma."
-#. 0X5h
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -641,7 +574,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 "Para agregar recursos de cadena que contienen las versiones traducidas de todas las cadeans en el diálogo de propiedades. Para configurar el diálogo de cadenas en el idioma predeterminado este es copiado en un nuevo set de cadenas. Despues podras cambiar al nuevo idioma y despues traducir la cadena."
-#. Ks?r
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -650,7 +582,6 @@ msgctxt ""
msgid "Close the dialog or add additional languages."
msgstr "Cierra el diálogo o agrega idiomas adicionales."
-#. +}jW
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -659,7 +590,6 @@ msgctxt ""
msgid "To edit localizable controls in your dialog"
msgstr "Para editar los controles de localizacion en tu diálogo."
-#. [%BK
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -668,7 +598,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 "Una vez que hayas agregado los recursos a las cadenas localizadas en tus diálogos, podrás seleccionar el idioma actual de la lista de idiomas actuales en la barra de idiomas."
-#. A%({
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -677,7 +606,6 @@ msgctxt ""
msgid "Switch the Current Language listbox to display the default language."
msgstr "Cambia la lista actual de idiomas a los idiomas predeterminados."
-#. *][@
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -686,7 +614,6 @@ msgctxt ""
msgid "Insert any number of controls to your dialog and enter all strings you want."
msgstr "Inserta cualquier numero de controlds para tu diálogo e ingresa todas las cadenas que quieras."
-#. NwKw
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -695,7 +622,6 @@ msgctxt ""
msgid "Select another language in the Current Language listbox."
msgstr "Selecciona otro idioma en la lista de idiomas actuales."
-#. 6c@g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -704,7 +630,6 @@ msgctxt ""
msgid "Using the control's property dialogs, edit all strings to the other language."
msgstr "Usando el diálogo de propiedades de control, edita todas las cadenas a otros idiomas."
-#. pm!y
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -713,7 +638,6 @@ msgctxt ""
msgid "Repeat for all languages that you added."
msgstr "Repite todos los idiomas que has agregado."
-#. )W13
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -722,7 +646,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 "El usuario de tus diálogos verá las cadenas del idioma de interfaz de usaurio en la versión del usuario de %PRODUCTNAME, siempre y cuando hayas provisto la cadena para ese idioma."
-#. !aKh
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -731,7 +654,6 @@ msgctxt ""
msgid "If no language matches the user's version, the user will see the default language strings."
msgstr "Si no hay un idioma que este en la versión del usuario, el usuario verá el idioma predeterminado."
-#. TADC
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -740,7 +662,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 "Si el usuario tiene una versión antigua de %PRODUCTNAME que no reconosca los recursos de cadeanas localizables para el diálogo de Basic, el usuario verá las cadenas en el idioma predeterminado."
-#. lK5B
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -749,7 +670,6 @@ msgctxt ""
msgid "Opening a Dialog With Program Code"
msgstr "Mostrar un diálogo usando código de programa"
-#. %+,9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -758,7 +678,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>activar-desactivar modulo/diálogo</bookmark_value><bookmark_value>diálogos;usando código del programa para mostrar (ejemplo)</bookmark_value><bookmark_value>ejemplos;mostrando diálogo usando código del programa</bookmark_value>"
-#. Z#rJ
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -768,7 +687,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=\"Opening a Dialog With Program Code\">Mostrar un diálogo usando código de programa</link></variable>"
-#. 9W_=
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -778,7 +696,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 "En la ventana de $[officename] BASIC de un diálogo que haya creado, salga del editor de diálogos pulsando la ficha del nombre del módulo al que está asignado el diálogo. La ficha de nombre se encuentra en la parte inferior de la ventana."
-#. m$G5
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -788,7 +705,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 "Escriba el código siguiente para una subrutina llamada <emph>MostrarDiálogo1</emph>. En este ejemplo, el nombre del diálogo que se ha creado es \"Diálogo1\":"
-#. .gr9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -798,7 +714,6 @@ msgctxt ""
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr "Sin utilizar \"LoadDialog\" puede llamar al código de la manera siguiente:"
-#. 9mG;
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 5e00a74b861..76393641d70 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-10-21 20:27+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. .7pA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "General"
msgstr "Generales"
-#. 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=\"General\">General</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 "Define las propiedades del campo de control o diálogo seleccionados. Las propiedades disponibles dependen del tipo de campo de control seleccionado. Por este motivo, las propiedades siguientes no están disponibles en todos los tipos de campo de control."
-#. c$Bu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineación"
-#. 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\">Especifique la opción de alineación para el campo de control seleccionado.</ahelp>"
-#. |T2L
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "AutoFill"
msgstr "Rellenar automáticamente"
-#. 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=\".\">Seleccione \"Sí\" para habilitar la función Autorrellenar para el control seleccionado. </ahelp>"
-#. ZYQm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Background color"
msgstr "Color de fondo"
-#. ^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=\".\">Especifique el color de fondo del control.</ahelp>"
-#. D;jl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Large change"
msgstr "Incremento de bloque"
-#. 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=\".\">Especifique el número de unidades de desplazamiento cuando un usuario haga clic en el área entre el control deslizante y las flechas de una barra de desplazamiento.</ahelp>"
-#. kCE$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "Border"
msgstr "Marco"
-#. %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=\".\">Especifique el tipo de borde para el control.</ahelp>"
-#. wCm5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "Button type"
msgstr "Tipo de botón"
-#. 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=\".\">Seleccione un tipo de botón. Los tipos de botón determinan qué tipo de acción se inicia.</ahelp>"
-#. ,G\Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -174,7 +158,6 @@ msgctxt ""
msgid "Character set"
msgstr "Juego de caracteres"
-#. 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=\".\">Seleccione el tipo de letra que utilizar para mostrar el contenido del control actual.</ahelp>"
-#. pQC6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -194,7 +176,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr "Símbolo de moneda"
-#. 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=\".\">Escriba el símbolo de la moneda que se utilizará en los controles de moneda.</ahelp>"
-#. n7=T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. 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=\".\">Especifique la fecha predeterminada que debe aparecer en el control de fecha.</ahelp>"
-#. LTEm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -232,7 +210,6 @@ msgctxt ""
msgid "Date format"
msgstr "Formato de fecha"
-#. /;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=\".\">Especifique el formato deseado para un control de fecha. Un control de fecha interpreta la entrada del usuario, según esta configuración del formato.</ahelp>"
-#. 9BJ[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -252,7 +228,6 @@ msgctxt ""
msgid "Date max."
msgstr "Fecha máx."
-#. 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=\".\">Especifique el límite superior de un control de fecha.</ahelp>"
-#. }`dD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -272,7 +246,6 @@ msgctxt ""
msgid "Date min."
msgstr "Fecha mínima"
-#. ~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=\".\">Especifique el límite inferior de un control de fecha.</ahelp>"
-#. `dgE
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -292,7 +264,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr "Decimales"
-#. 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=\".\">Especifique el número de posiciones decimales que se deban mostrar en un control numérico o de moneda. </ahelp>"
-#. C4CH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -312,7 +282,6 @@ msgctxt ""
msgid "Default button"
msgstr "Botón predeterminado"
-#. 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=\".\">Seleccione \"Sí\" para hacer del control de botón actual la selección predeterminada. Si se pulsa <emph>Retorno</emph> en el diálogo se activa el botón predeterminado.</ahelp>"
-#. 1;cZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -331,7 +299,6 @@ msgctxt ""
msgid "Delay"
msgstr "Retraso"
-#. #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=\".\">Especifica el retraso en milisegundos entre los eventos desencadenadores de la barra de desplazamiento.</ahelp> Un evento desencadenador tiene lugar al hacer clic en una flecha de barra de desplazamiento o en el área de fondo de una barra de desplazamiento. Los eventos desencadenadores se repiten si mantiene el botón del ratón pulsado al hacer clic en una flecha de barra de desplazamiento o en el área de fondo de una barra de desplazamiento. Si lo desea, puede incluir unidades temporales válidas con el número especificado, por ejemplo, 2 s o 500 ms."
-#. MCW+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -350,7 +316,6 @@ msgctxt ""
msgid "Dropdown"
msgstr "Desplegable"
-#. @^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=\".\">Seleccione \"Sí\" para habilitar la opción desplegable para los controles de la lista o el cuadro combinado. Un campo de control desplegable tiene un botón de flecha en el que puede hacer clic para abrir una lista de las entradas del formulario.</ahelp>"
-#. dYO.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -370,7 +334,6 @@ msgctxt ""
msgid "Enabled"
msgstr "Activado"
-#. 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=\".\">Seleccione \"Sí\" para habilitar el control. Si el control esta deshabilitado, queda atenuado en el diálogo.</ahelp>"
-#. c#Ib
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -390,7 +352,6 @@ msgctxt ""
msgid "Edit mask"
msgstr "Máscara de entrada"
-#. .{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=\".\">Especifique la máscara de edición para un control de modelo. Éste es un código de caracteres que define el formato de entrada para el control.</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 "Para cada carácter de entrada de la máscara de edición, es necesario especificar un carácter de máscara que restrinja la entrada a los valores dados en la tabla:"
-#. G*#j
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -420,7 +379,6 @@ msgctxt ""
msgid "Character"
msgstr "<emph>Carácter</emph>"
-#. `]CP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -430,7 +388,6 @@ msgctxt ""
msgid "Meaning"
msgstr "<emph>Significado</emph>"
-#. 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 "Una constante de texto. Este carácter no puede modificarlo el usuario."
-#. 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 "En esta posición se introducen los caracteres comprendidos entre la 'a' y la 'z'. Si se introduce una mayúscula, automáticamente se convierte en minúscula."
-#. (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 "En esta posición se introducen los caracteres comprendidos entre la 'A' y la 'Z'. Si se introduce una minúscula, automáticamente se convierte en mayúscula."
-#. ^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 "En esta posición se introducen los caracteres comprendidos entre la 'a' y la 'z' y entre '0' y '9'. Si se introduce una mayúscula, automáticamente se convierte en minúscula."
-#. 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 "En esta posición puede introducir los caracteres comprendidos entre la 'A' y la 'Z' y de '0' a '9'. Si se introduce una minúscula, automáticamente se convierte en mayúscula."
-#. =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 "Sólo puede introducir caracteres comprendidos entre '0' y '9'."
-#. 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 "Se pueden introducir todos los caracteres imprimibles."
-#. 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 "Se pueden indicar todos los caracteres imprimibles. Si se utiliza una minúscula, automáticamente se convierte en mayúscula."
-#. ^6$p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -599,7 +540,6 @@ msgctxt ""
msgid "Editable"
msgstr "Editable"
-#. 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=\".\">Especifica si los nodos de un control árbol son editable.</ahelp>"
-#. 4Y{A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -617,7 +556,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr "El valor predeterminado es FALSE."
-#. /nmC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -627,7 +565,6 @@ msgctxt ""
msgid "Graphics"
msgstr "Gráficos"
-#. 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=\".\">Especifique el origen de los gráficos de un botón o un control de imagen. Haga clic en \"...\" para seleccionar un archivo.</ahelp>"
-#. M4Qq
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -647,7 +583,6 @@ msgctxt ""
msgid "Height"
msgstr "Altura"
-#. 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=\".\">Especifique la altura del diálogo o el control.</ahelp>"
-#. ibPC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -667,7 +601,6 @@ msgctxt ""
msgid "Help text"
msgstr "Texto de ayuda"
-#. ^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=\".\">Escriba un texto de ayuda para que aparezca como sugerencia (burbuja de texto) cuando el ratón descanse sobre el control.</ahelp>"
-#. i^|d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -687,7 +619,6 @@ msgctxt ""
msgid "Help URL"
msgstr "Ayuda 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=\".\">Especifique el URL de ayuda que se llama cuando pulsa F1 mientras el foco está en un control determinado. Utilice, por ejemplo, el formato HID:1234 para llamar el ID de ayuda con el número 1234.</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 "Fijar el variable del entorno HELP_DEBUG a 1 para ver los Help-IDs como tips de ayuda extendida"
-#. y.\=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -716,7 +645,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr "Intervalo"
-#. 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=\".\">Especifique el intervalo de aumento y reducción de los controles del botón de selección. </ahelp>"
-#. b@8M
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -735,7 +662,6 @@ msgctxt ""
msgid "Invokes stop mode editing"
msgstr "Comando a parar editación de modo"
-#. $*#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=\".\">Especifica que sucede cuando Editar se interrumpe a través de seleccionar otro nodo en el árbol, un cambio en los datos del árbol, o por algún otra manera.</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 "Fijar este propiedad a TRUE causa que cambios están guardado automáticamente. FALSE significa que si el Edit se cancela los cambios se pierdan."
-#. bZ.~
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -762,7 +686,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr "El valor predeterminado es FALSE."
-#. 5-?o
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -773,7 +696,6 @@ msgctxt ""
msgid "Label"
msgstr "Título"
-#. -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=\".\">Especifica la etiqueta del control actual. La etiqueta aparece junto con el control.</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 "Se pueden crear <emph>etiquetas</emph> multilínea insertando saltos de línea manuales en la etiqueta mediante <emph>Mayúsculas+Intro</emph>."
-#. Ub9l
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -803,7 +723,6 @@ msgctxt ""
msgid "Line Count"
msgstr "Número de líneas"
-#. 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=\".\">Escriba el número de líneas que se mostrarán en un control de lista. En el caso de los cuadros combinados, este valor sólo está activo si se habilita la opción desplegable. </ahelp>"
-#. y#FX
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -822,7 +740,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr "Barra de desplazamiento"
-#. %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 "Agrega el tipo de barra de desplazamiento especificado a un cuadro de texto."
-#. Yj5D
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -841,7 +757,6 @@ msgctxt ""
msgid "Small change"
msgstr "Incremento de línea"
-#. 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=\".\">Especifique el número de unidades de desplazamiento cada vez que un usuario haga clic en una flecha de una barra de desplazamiento.</ahelp>"
-#. d:a\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -861,7 +775,6 @@ msgctxt ""
msgid "List entries"
msgstr "Entradas de lista"
-#. $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=\".\">Especifique las entradas de un control de lista. Una línea ocupa una entrada de la lista. Pulse <emph>Mayús+Entrar</emph> para insertar una nueva línea.</ahelp>"
-#. bKmu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -881,7 +793,6 @@ msgctxt ""
msgid "Literal mask"
msgstr "Máscara de caracteres"
-#. (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=\".\">Especifique los valores iniciales que se mostrarán en un control de modelo. Esto ayuda al usuario a identificar qué valores se permiten en un control de modelo. El formato especificado por la máscara de edición restringe la máscara literal.</ahelp>"
-#. ?ft9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -901,7 +811,6 @@ msgctxt ""
msgid "Manual line break"
msgstr "Salto de línea manual"
-#. 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=\".\">Seleccione \"Sí\" para permitir saltos de línea manuales en el interior de controles de varias líneas.</ahelp>"
-#. -E51
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -921,7 +829,6 @@ msgctxt ""
msgid "Max. text length"
msgstr "Longitud máx. de texto"
-#. 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=\".\">Especifique el número máximo de caracteres que el usuario puede escribir.</ahelp>"
-#. y9h.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -941,7 +847,6 @@ msgctxt ""
msgid "Multiline Input"
msgstr "Entrada con varias líneas"
-#. 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=\".\">Seleccione \"Sí\" para permitir la entrada de varias líneas en el control. Pulse Entrar para insertar un salto de línea manual en el control.</ahelp>"
-#. GQ8#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -961,7 +865,6 @@ msgctxt ""
msgid "Multiselection"
msgstr "Selección múltiple"
-#. 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=\".\">Seleccione \"Sí\" para permitir la selección de varias entradas en los controles de lista.</ahelp>"
-#. 1;2b
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -981,7 +883,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. 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=\".\">Inserte un nombre para el control. Este nombre se utiliza para identificar el control.</ahelp>"
-#. +]f#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1001,7 +901,6 @@ msgctxt ""
msgid "Order"
msgstr "Orden"
-#. :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=\".\">Especifique el orden en que los controles recibirán el foco cuando se pulse la tecla Tab en el diálogo.</ahelp> Al entrar en un diálogo, el control con el orden más bajo (0) recibe el foco. Si se pulsa la tecla <emph>Tab</emph>, los demás controles reciben el foco sucesivamente según lo especificado por sus números de orden."
-#. [;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 "Inicialmente, los campos de control reciben números en el orden en el que se fueron añadiendo al diálogo. El número de orden de los campos de control puede cambiarse. $[officename] Basic actualiza los números de orden automáticamente para evitar números duplicados. A los campos de control que no pueden enfocarse también se les asigna un valor, pero se ignoran al utilizar la tecla Tabulación."
-#. :GC?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1031,7 +928,6 @@ msgctxt ""
msgid "Orientation"
msgstr "Orientación"
-#. 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=\".\">Especifique la orientación para un control de barra de desplazamiento.</ahelp>"
-#. O]U6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1051,7 +946,6 @@ msgctxt ""
msgid "Page (step)"
msgstr "Página (paso)"
-#. ;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=\".\">Especifique el número de página del diálogo al que se asigna el control actual o el número de página del diálogo que desea editar.</ahelp> Si un diálogo sólo tiene una página, configure el valor de <emph>Página (Step)</emph> en <emph>0</emph>."
-#. :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 "Seleccione <emph>Página (Step)</emph> = 0 para que el control sea visible en todas las páginas del diálogo."
-#. 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 "Para alternar entre páginas de diálogo en tiempo de ejecución, es necesario crear una macro que cambie el valor de <emph>Página (Step)</emph>."
-#. sc@d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1091,7 +982,6 @@ msgctxt ""
msgid "Password characters"
msgstr "Caracteres para contraseñas"
-#. 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=\".\">Escriba un carácter para mostrar en lugar de los caracteres que se escriban. Esto se puede utilizar para escribir contraseñas en controles de texto.</ahelp>"
-#. /OEi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1111,7 +1000,6 @@ msgctxt ""
msgid "PositionX"
msgstr "PosiciónX"
-#. 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=\".\">Especifique la distancia del control desde la parte izquierda del diálogo.</ahelp>"
-#. C#UB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1131,7 +1018,6 @@ msgctxt ""
msgid "PositionY"
msgstr "PosiciónY"
-#. ^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=\".\">Especifique la distancia del control desde la parte superior del diálogo.</ahelp>"
-#. WB1z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1151,7 +1036,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr "Situar símbolo delante"
-#. 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=\".\">Seleccione \"Sí\" para mostrar el prefijo del símbolo de moneda en los controles de moneda cuando se escriba un número.</ahelp>"
-#. ^gf5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1171,7 +1054,6 @@ msgctxt ""
msgid "Print"
msgstr "Imprimir"
-#. ?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=\".\">Seleccione \"Sí\" para incluir el control en la impresión de un documento.</ahelp>"
-#. H??@
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1191,7 +1072,6 @@ msgctxt ""
msgid "Progress value"
msgstr "Valor de progresión"
-#. 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=\".\">Especifique un valor de progreso para un control de barra de progreso.</ahelp>"
-#. p9T|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1211,7 +1090,6 @@ msgctxt ""
msgid "Progress value max."
msgstr "Valor de progresión máx."
-#. 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=\".\">Especifique el valor máximo de un control de la barra de progreso.</ahelp>"
-#. ##O:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1231,7 +1108,6 @@ msgctxt ""
msgid "Progress value min."
msgstr "Valor de progresión mín."
-#. 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=\".\">Especifique el valor mínimo de un control de la barra de progreso.</ahelp>"
-#. Rt:9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1251,7 +1126,6 @@ msgctxt ""
msgid "Read-only"
msgstr "Solo lectura"
-#. 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=\".\">Seleccione \"Sí\" para evitar que el usuario modifique el valor del control actual. El control se habilita y puede recibir el foco, pero no modificarse.</ahelp>"
-#. +WTD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1270,7 +1143,6 @@ msgctxt ""
msgid "Repeat"
msgstr "Repetir"
-#. 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=\".\">Repite eventos desencadenadores al mantener el botón del ratón pulsado sobre un control como un botón de selección.</ahelp>"
-#. i|T9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1288,7 +1159,6 @@ msgctxt ""
msgid "Root displayed"
msgstr "Raíz mostrado"
-#. 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=\".\">Especifica si el nodo raíz del control arbol es mostrado.</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 "Si \"Raíz mostrado\" se fija a FALSE, el nodo raíz de un modelo es no más un nodo valido para el control árbol y no puede ser usado con cualquier método de XTreeControl."
-#. GO^^
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1315,7 +1183,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr "El valor predeterminado es TRUE."
-#. WST[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1324,7 +1191,6 @@ msgctxt ""
msgid "Row height"
msgstr "Altura de fila"
-#. 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=\".\">Especifica la altura de cada fila de un control árbol, en pixeles.</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 "Si el valor especificado el menor que o igual a cero, la altura de la fila es la altura máximo de todos los filas."
-#. =%J:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1351,7 +1215,6 @@ msgctxt ""
msgid "The default value is 0."
msgstr "El valor predeterminado es cero."
-#. 77_|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1361,7 +1224,6 @@ msgctxt ""
msgid "Scale"
msgstr "Dimensionar la imagen"
-#. 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=\".\">Escala la imagen para ajustar el tamaño del control.</ahelp>"
-#. P8oK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1380,7 +1241,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr "Barra de desplazamiento"
-#. %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=\".\">Agrega el tipo de barra de desplazamiento especificado a un cuadro de texto.</ahelp>"
-#. _.zK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1399,7 +1258,6 @@ msgctxt ""
msgid "Scroll value"
msgstr "Valor"
-#. 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=\".\">Especifique el valor inicial de un control de la barra de desplazamiento. Determina la posición del control deslizante de la barra de desplazamiento.</ahelp>"
-#. [a1p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1419,7 +1276,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr "Valor máximo"
-#. 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=\".\">Especifique el valor máximo de un control de la barra de desplazamiento.</ahelp>"
-#. H8$W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1438,7 +1293,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr "Valor mín. desplazamiento."
-#. @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=\".\">Especifique el valor mínimo de un control de la barra de desplazamiento.</ahelp>"
-#. E_7-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1456,7 +1309,6 @@ msgctxt ""
msgid "Show handles"
msgstr "Muestra manillas"
-#. 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=\".\">Especifca si los manillas de los nodos deben ser mostrado.</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 "Los manillas son líneas de puntos que visualiza la jerarquía del control de árbol."
-#. Q-:]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1483,7 +1333,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr "El valor predeterminado es TRUE."
-#. H(1\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1492,7 +1341,6 @@ msgctxt ""
msgid "Show root handles"
msgstr "Muestra manillas de raíz"
-#. (}+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=\".\">Especifica si los manillas de los nodos deben ser mostrado a nivel raíz.</ahelp>"
-#. rqs$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1510,7 +1357,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr "El valor predeterminado es TRUE."
-#. /%nh
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1519,7 +1365,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. 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=\".\">Especifica la secuencia de los elementos seleccionados, donde \"0\" corresponde al primer elemento. Para seleccionar más de un elemento, la opción Selección múltiple debe estar habilitada.</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 "Haga clic en el botón <emph>...</emph> para abrir el diálogo <emph>Selección</emph>."
-#. 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=\".\">Haga clic en el elemento o los elementos que desee seleccionar. Para seleccionar más de un elemento, asegúrese de haber marcado la opción Selección múltiple.</ahelp>"
-#. MK0A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1555,7 +1397,6 @@ msgctxt ""
msgid "Selection type"
msgstr "Tipo de selección"
-#. 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=\".\">Especifica el modo de selección que es activado para este control árbol.</ahelp>"
-#. +wE2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1574,7 +1414,6 @@ msgctxt ""
msgid "Spin Button"
msgstr "Campo giratorio"
-#. (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=\".\">Seleccione \"Sí\" para agregar botones de selección a un control numérico, de moneda, fecha o tiempo para permitir el aumento y la reducción del valor de entrada mediante los botones de flecha.</ahelp>"
-#. .VqC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1594,7 +1432,6 @@ msgctxt ""
msgid "State"
msgstr "Estado"
-#. 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=\".\">Seleccione el estado de selección del control.</ahelp>"
-#. z1WB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1614,7 +1450,6 @@ msgctxt ""
msgid "Strict format"
msgstr "Revisión de formato"
-#. 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=\".\">Seleccione \"Sí\" para permitir que se escriban solamente caracteres válidos en un control numérico, de moneda, de fecha o de tiempo.</ahelp>"
-#. KjPb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1634,7 +1468,6 @@ msgctxt ""
msgid "Tabstop"
msgstr "Tabstop"
-#. 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=\".\">Seleccione el comportamiento del foco del control cuando se utilice la tecla <emph>Tab</emph>.</ahelp>"
-#. bBe=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1654,7 +1486,6 @@ msgctxt ""
msgid "Default"
msgstr "Predeterminado"
-#. 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 "Solamente los métodos de entrada reciben el foco cuando usan el <emph>tabulador</emph>. Controles sin entrada, como los controles de leyenda son omitidos."
-#. !/Xp
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1674,7 +1504,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. rjWw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1684,7 +1513,6 @@ msgctxt ""
msgid "When using the tab key focusing skips the control."
msgstr "Al utilizar la tecla tabulación el enfoque ignora el campo de control."
-#. pYmP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1694,7 +1522,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. }o{U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1704,7 +1531,6 @@ msgctxt ""
msgid "The control can be selected with the Tab key."
msgstr "El campo de control puede seleccionarse con la tecla del tabulador."
-#. P5n1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1714,7 +1540,6 @@ msgctxt ""
msgid "Thousands Separator"
msgstr "Separador de mil"
-#. 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=\".\">Seleccione \"Sí\" para mostrar caracteres para el separador de unidades de millar en controles numéricos y de moneda.</ahelp>"
-#. (_M_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1734,7 +1558,6 @@ msgctxt ""
msgid "Time Format"
msgstr "Formato de hora"
-#. 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=\".\">Seleccione el formato que se utilizará en los controles de tiempo.</ahelp>"
-#. zhn6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1754,7 +1576,6 @@ msgctxt ""
msgid "Time max."
msgstr "Tiempo máx."
-#. 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=\".\">Especifique el valor máximo de tiempo para un control de tiempo.</ahelp>"
-#. ZnC}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1774,7 +1594,6 @@ msgctxt ""
msgid "Time min."
msgstr "Tiempo mín."
-#. 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=\".\">Especifique el valor mínimo de tiempo para un control de tiempo.</ahelp>"
-#. ~#YA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1794,7 +1612,6 @@ msgctxt ""
msgid "Title"
msgstr "Título"
-#. 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=\".\">Especifique el título del diálogo. Haga clic en el borde del diálogo para seleccionarlo.</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 "Los <emph>títulos</emph> sólo se utilizan para etiquetar diálogos y sólo pueden contener una línea. Tenga presente que si trabaja con macros, los campos de control sólo se llaman empleando su propiedad <emph>Nombre</emph>."
-#. T=V4
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1824,7 +1639,6 @@ msgctxt ""
msgid "Tristate"
msgstr "Estado triple"
-#. +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=\".\">Seleccione \"Sí\" para permitir que una casilla de verificación tenga tres estados (marcado, sin marcar y atenuado) en lugar de dos (marcado y sin marcar).</ahelp>"
-#. aLGH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1844,7 +1657,6 @@ msgctxt ""
msgid "Value"
msgstr "Valor"
-#. `=;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=\".\">Especifique el valor del control.</ahelp>"
-#. Ca`]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1864,7 +1675,6 @@ msgctxt ""
msgid "Value max."
msgstr "Valor máximo"
-#. 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=\".\">Especifique el valor máximo del control.</ahelp>"
-#. 3f7{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1884,7 +1693,6 @@ msgctxt ""
msgid "Value min."
msgstr "Valor mínimo"
-#. \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=\".\">Especifique el valor mínimo del control.</ahelp>"
-#. =R1W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1904,7 +1711,6 @@ msgctxt ""
msgid "Visible size"
msgstr "Tamaño visible"
-#. :/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=\".\">Especifique la longitud de un control deslizante de una barra de desplazamiento.</ahelp>"
-#. G;jd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1924,7 +1729,6 @@ msgctxt ""
msgid "Width"
msgstr "Ancho"
-#. 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=\".\">Especifique la anchura del diálogo o el control.</ahelp>"
-#. XoGR
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1943,7 +1746,6 @@ msgctxt ""
msgid "Blue Function [Runtime]"
msgstr "Función Blue [Ejecución]"
-#. =Cl5
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1952,7 +1754,6 @@ msgctxt ""
msgid "<bookmark_value>Blue function</bookmark_value>"
msgstr "<bookmark_value>Blue;función</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=\"Función Blue [Runtime]\">Función Blue [Runtime]</link>"
-#. DAQN
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1972,7 +1772,6 @@ msgctxt ""
msgid "Returns the blue component of the specified color code."
msgstr "Devuelve el componente azul del código de color dado."
-#. 94UH
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1982,7 +1781,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. \d#d
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1992,7 +1790,6 @@ msgctxt ""
msgid "Blue (Color As Long)"
msgstr "Blue (Color As Long)"
-#. `T;0
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2002,7 +1799,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. MF^g
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2012,7 +1808,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. kNc=
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2022,7 +1817,6 @@ msgctxt ""
msgid "Parameter:"
msgstr "Parámetros:"
-#. ^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>Valor de color</emph>: Expresión de número entero largo que especifica un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"código de color\">código de color</link> para el que devolver el componente azul."
-#. e)}(
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2042,7 +1835,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. 8;~O
#: 03010301.xhp
#, fuzzy
msgctxt ""
@@ -2053,7 +1845,6 @@ msgctxt ""
msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
msgstr "MsgBox \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
-#. t?#N
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2063,7 +1854,6 @@ msgctxt ""
msgid "\"red= \" & Red(lVar) & Chr(13)&_"
msgstr "\"rojo = \" & Red(lVar) & Chr(13)&_"
-#. 9f3.
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2073,7 +1863,6 @@ msgctxt ""
msgid "\"green= \" & Green(lVar) & Chr(13)&_"
msgstr "\"verde= \" & 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 "\"azul= \" & Blue(lVar) & Chr(13) , 64,\"colores\""
-#. QSX4
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2092,7 +1880,6 @@ msgctxt ""
msgid "Comparison Operators [Runtime]"
msgstr "Operadores de comparación [Ejecución]"
-#. 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>operadores de comparación;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operadores;comparaciones</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=\"Comparison Operators [Runtime]\">Operadores de comparación [Ejecución]</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 "Los operadores de comparación comparan dos expresiones. El resultado se devuelve como expresión lógica que determina si la comparación es cierta (-1) o falsa (0)."
-#. 2bxe
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2131,7 +1915,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. 7Z7p
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2141,7 +1924,6 @@ msgctxt ""
msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
msgstr "Resultado = Expresión1 { = | < | > | <= | >= } Expresión2"
-#. U$L@
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2151,7 +1933,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Resultado:</emph> Expresión lógica que especifica el resultado de la comparación (cierto o falso)"
-#. 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>Expresión1, Expresión2:</emph> Cualquier valor numérico o cadena que se desee comparar."
-#. `5qH
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2181,7 +1960,6 @@ msgctxt ""
msgid "Comparison operators"
msgstr "Operadores de comparación"
-#. pREl
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2191,7 +1969,6 @@ msgctxt ""
msgid "= : Equal to"
msgstr "= : Igual a"
-#. +J3]
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2201,7 +1978,6 @@ msgctxt ""
msgid "< : Less than"
msgstr "< : Menor que"
-#. BEZR
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2211,7 +1987,6 @@ msgctxt ""
msgid "> : Greater than"
msgstr "> : Mayor que"
-#. $uCg
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2221,7 +1996,6 @@ msgctxt ""
msgid "<= : Less than or equal to"
msgstr "<= : Menor o igual que"
-#. __DJ
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2231,7 +2005,6 @@ msgctxt ""
msgid ">= : Greater than or equal to"
msgstr ">= : Mayor o igual que"
-#. 15\S
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2241,7 +2014,6 @@ msgctxt ""
msgid "<> : Not equal to"
msgstr "<> : Distinto de"
-#. Tw#9
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2251,7 +2023,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. gma+
#: 03110100.xhp
#, fuzzy
msgctxt ""
@@ -2262,7 +2033,6 @@ msgctxt ""
msgid "Dim sRoot As String ' Root directory for file in and output"
msgstr "DIM sRaiz As String REM ' Directorio raíz para entrada y salida de archivo"
-#. bS?S
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2271,7 +2041,6 @@ msgctxt ""
msgid "Timer Function [Runtime]"
msgstr "Función Timer [Ejecución]"
-#. h22Q
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2280,7 +2049,6 @@ msgctxt ""
msgid "<bookmark_value>Timer function</bookmark_value>"
msgstr "<bookmark_value>Timer;función</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=\"Función Timer [Runtime]\">Función Timer [Ejecución]</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 "Devuelve un valor que especifica el número de segundos que han transcurrido desde medianoche."
-#. 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 "Antes de utilizar la función Timer es necesario que declare una variable y que le asigne el tipo de datos \"Long\", en caso contrario se devuelve un valor de fecha."
-#. EypB
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2320,7 +2085,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. 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 "Valor de retorno:"
-#. 9s5}
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2350,7 +2112,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. APE`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2360,7 +2121,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. 0acV
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2370,7 +2130,6 @@ msgctxt ""
msgid "MsgBox lSec,0,\"Seconds since midnight\""
msgstr "MsgBox lSec,0,\"Segundos desde medianoche\""
-#. 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\" & lHora , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSeg , 2) ,0,\"La hora es\""
-#. K3ma
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2389,7 +2147,6 @@ msgctxt ""
msgid "Dir Function [Runtime]"
msgstr "Función Dir [Ejecución]"
-#. d!$b
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2398,7 +2155,6 @@ msgctxt ""
msgid "<bookmark_value>Dir function</bookmark_value>"
msgstr "<bookmark_value>Dir;función</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=\"Función Dir [Runtime]\">Función Dir [Runtime]</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 "Devuelve el nombre de un archivo, directorio o todos los archivos y directorios de una unidad o directorio que coincidan con la ruta de acceso de búsqueda especificada."
-#. $=N|
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2428,7 +2182,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. g;2J
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2438,7 +2191,6 @@ msgctxt ""
msgid "Dir [(Text As String) [, Attrib As Integer]]"
msgstr "Dir [(Texto As String) [, Atrib As Integer]]"
-#. L9k(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2448,7 +2200,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. L5WV
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2458,7 +2209,6 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. #J[c
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2468,7 +2218,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Texto:</emph> Cualquier expresión de cadena que especifique la ruta de acceso de búsqueda, el directorio o el archivo. Este argumento sólo puede especificarse la primera vez que se llame a la función Dir. Si se desea, la ruta de acceso puede escribirse en la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-#. [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>Atrib: </emph>Cualquier expresión entera que especifique atributos de archivo bit a bit. La función Dir sólo devuelve archivos o directorios que coincidan con los atributos especificados. Pueden combinarse varios atributos añadiendo los valores siguientes:"
-#. pSkB
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2498,7 +2245,6 @@ msgctxt ""
msgid "0 : Normal files."
msgstr "0 : Archivos normales."
-#. m\l(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2508,7 +2254,6 @@ msgctxt ""
msgid "16 : Returns the name of the directory only."
msgstr "16 : Sólo devuelve el nombre del directorio."
-#. 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 "Este atributo se usa para comprobar si un archivo o directorio existen o para determinar todos los archivos y carpetas de un directorio específico."
-#. :*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 "Para comprobar si un archivo existe, escriba la ruta de acceso completa y el nombre del archivo. Si el nombre de archivo o de directorio no existen, la función Dir devuelve una cadena de longitud cero (\"\")."
-#. ]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 "Para generar una lista de todos los archivos de un directorio específico, proceda de esta manera: La primera vez que llame a la función Dir, especifique la ruta de acceso de búsqueda completa para los archivos, por ejemplo: \"D:\\Archivos\\*.sxw\". Si la ruta de acceso es correcta y la búsqueda encuentra al menos un archivo, la función Dir devuelve el nombre del primer archivo que cumpla la ruta de acceso de búsqueda. Para que se devuelvan nombres de archivo adicionales que coincidan con la ruta de acceso, llame a Dir de nuevo, pero sin argumentos."
-#. ^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 "Para que sólo se devuelvan directorios, use el parámetro de atributo. Lo mismo se aplica si se desea determinar el nombre de un volumen (por ejemplo, una partición de disco duro)"
-#. ),T!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2558,7 +2299,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. EHQ`
#: 03020404.xhp
#, fuzzy
msgctxt ""
@@ -2569,7 +2309,6 @@ msgctxt ""
msgid "' Displays all files and directories"
msgstr "REM Muestra todos los archivos y directorios"
-#. Vf8!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2579,7 +2318,6 @@ msgctxt ""
msgid "sDir=\"Directories:\""
msgstr "sDir=\"Directorios:\""
-#. 9)..
#: 03020404.xhp
#, fuzzy
msgctxt ""
@@ -2590,7 +2328,6 @@ msgctxt ""
msgid "' Get the directories"
msgstr "REM obtener los directorios"
-#. )?Iv
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2599,7 +2336,6 @@ msgctxt ""
msgid "\"^\" Operator [Runtime]"
msgstr "Operador \"^\" [Ejecución]"
-#. ;TFR
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2608,7 +2344,6 @@ msgctxt ""
msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>operador \"^\";operadores matemáticos</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\">Operador \"^\" [Ejecución]</link>"
-#. 0ml!
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2628,7 +2362,6 @@ msgctxt ""
msgid "Raises a number to a power."
msgstr "Eleva un número a una potencia."
-#. 7:7?
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2638,7 +2371,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. x/-8
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2648,7 +2380,6 @@ msgctxt ""
msgid "Result = Expression ^ Exponent"
msgstr "Resultado = Expresión ^ Exponente"
-#. qr`@
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2658,7 +2389,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Resultado:</emph> Cualquier expresión numérica que contenga el resultado del número elevado a la potencia."
-#. 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>Expresión:</emph> Valor numérico que se desea elevar a una potencia."
-#. 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>Exponente:</emph> El valor de la potencia a la que se desea elevar la expresión."
-#. Xl0I
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2698,7 +2425,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. 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 Eleva formando un logaritmo"
-#. J2U~
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2718,7 +2443,6 @@ msgctxt ""
msgid "Sgn Function [Runtime]"
msgstr "Función Sgn [Ejecución]"
-#. g}_;
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2727,7 +2451,6 @@ msgctxt ""
msgid "<bookmark_value>Sgn function</bookmark_value>"
msgstr "<bookmark_value>Sgn;función</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=\"Función Sgn [Runtime]\">Función Sgn [Ejecución]</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 "Devuelve un número entero entre -1 y 1 que indica si el número que se ha pasado a la función es positivo, negativo o cero."
-#. LDj/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2757,7 +2478,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. !*t*
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2767,7 +2487,6 @@ msgctxt ""
msgid "Sgn (Number)"
msgstr "Sgn (Número)"
-#. V|mw
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2777,7 +2496,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. y\C:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2787,7 +2505,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. g_S:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2797,7 +2514,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Número:</emph> Expresión numérica que determine el valor que devuelve la función."
-#. F^)(
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2817,7 +2532,6 @@ msgctxt ""
msgid "NumExpression"
msgstr "ExpresiónNum"
-#. 53x/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2827,7 +2541,6 @@ msgctxt ""
msgid "Return value"
msgstr "Valor de retorno:"
-#. LVHP
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2837,7 +2550,6 @@ msgctxt ""
msgid "negative"
msgstr "negativo"
-#. Eg9+
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2847,7 +2559,6 @@ msgctxt ""
msgid "Sgn returns -1."
msgstr "Sgn devuelve -1."
-#. 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 devuelve 0."
-#. j[\j
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2877,7 +2586,6 @@ msgctxt ""
msgid "positive"
msgstr "positivo"
-#. 5G}l
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2887,7 +2595,6 @@ msgctxt ""
msgid "Sgn returns 1."
msgstr "Sgn devuelve 1."
-#. m`V3
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2897,7 +2604,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. 9Ej\
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2908,7 +2614,6 @@ msgctxt ""
msgid "Print sgn(-10) ' returns -1"
msgstr "Print sgn(-10) REM devuelve -1"
-#. {4m~
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2919,7 +2624,6 @@ msgctxt ""
msgid "Print sgn(0) ' returns 0"
msgstr "Print sgn(0) REM devuelve 0"
-#. r:k{
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2930,7 +2634,6 @@ msgctxt ""
msgid "Print sgn(10) ' returns 1"
msgstr "Print sgn(10) REM devuelve 1"
-#. IqOm
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2939,7 +2642,6 @@ msgctxt ""
msgid "Further Statements"
msgstr "Otras instrucciones"
-#. 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=\"Further Statements\">Otras instrucciones</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 "Aquí se describen las instrucciones que no pertenecen a ninguna de las otras categorías de tiempo de ejecución."
-#. fShM
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2968,7 +2668,6 @@ msgctxt ""
msgid "LBound Function [Runtime]"
msgstr "Función LBound [Ejecución]"
-#. $U(5
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2977,7 +2676,6 @@ msgctxt ""
msgid "<bookmark_value>LBound function</bookmark_value>"
msgstr "<bookmark_value>LBound;función</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 Function [Runtime]\">Función LBound [Ejecución]</link>"
-#. vG?)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2997,7 +2694,6 @@ msgctxt ""
msgid "Returns the lower boundary of an array."
msgstr "Devuelve el límite inferior de una matriz."
-#. ,i\]
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3007,7 +2703,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. Ya;V
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3017,7 +2712,6 @@ msgctxt ""
msgid "LBound (ArrayName [, Dimension])"
msgstr "LBound (NombreMatriz [, Dimensión])"
-#. 7D-M
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3027,7 +2721,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. fx9)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3037,7 +2730,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. RTlQ
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3047,7 +2739,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>NombreMatriz:</emph> Nombre de la matriz para la que se desee determinar el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>) de su dimensión."
-#. 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>[Dimensión]:</emph> Número entero que especifique para qué dimensión se desea que se devuelva el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>). Si no se especifica ningún valor, se asume la primera dimensión."
-#. 9@:o
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3077,7 +2766,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. g@Og
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3088,7 +2776,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr "Print LBound(sVar()) REM Devuelve 10"
-#. Ll%f
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3099,7 +2786,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr "Print UBound(sVar()) REM Devuelve 20"
-#. ?P@L
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3110,7 +2796,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr "Print LBound(sVar(),2) REM Devuelve 5"
-#. X%Di
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3121,7 +2806,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr "Print UBound(sVar(),2) REM Devuelve 70"
-#. (?7:
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3130,7 +2814,6 @@ msgctxt ""
msgid "UBound Function [Runtime]"
msgstr "Función Ubound [Ejecución]"
-#. S/!!
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3139,7 +2822,6 @@ msgctxt ""
msgid "<bookmark_value>UBound function</bookmark_value>"
msgstr "<bookmark_value>UBound;función</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 Function [Runtime]\">Función Ubound [Ejecución]</link>"
-#. P!ad
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3159,7 +2840,6 @@ msgctxt ""
msgid "Returns the upper boundary of an array."
msgstr "Devuelve el límite superior de una matriz."
-#. =5fw
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3169,7 +2849,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. ?%eL
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3179,7 +2858,6 @@ msgctxt ""
msgid "UBound (ArrayName [, Dimension])"
msgstr "UBound (NombreMatriz [, Dimensión])"
-#. O0yV
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3189,7 +2867,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. q$xu
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3199,7 +2876,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. +[T8
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3209,7 +2885,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>NombreMatriz:</emph> Nombre de la matriz para la que se desea determinar el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>)."
-#. 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>[Dimensión]:</emph> Número entero que especifica para qué dimensión se desea que se devuelva el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>). Si no se especifica ningún valor se devuelve el límite de la primera dimensión."
-#. #CKR
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3239,7 +2912,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. -clZ
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3250,7 +2922,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr "Print LBound(sVar()) REM Devuelve 10"
-#. X[Q3
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3261,7 +2932,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr "Print UBound(sVar()) REM Devuelve 20"
-#. k:fN
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3272,7 +2942,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr "Print LBound(sVar(),2) REM Devuelve 5"
-#. ;+)/
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3283,7 +2952,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr "Print UBound(sVar(),2) REM Devuelve 70"
-#. 7XzF
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3292,7 +2960,6 @@ msgctxt ""
msgid "Public Statement [Runtime]"
msgstr "Instrucción Public [Ejecución]"
-#. PF3h
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3301,7 +2968,6 @@ msgctxt ""
msgid "<bookmark_value>Public statement</bookmark_value>"
msgstr "<bookmark_value>Public;instrucción</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 Statement [Runtime]\">Instrucción Public [Ejecución]</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 "Dimensiona una variable o una matriz de un módulo (es decir, no dentro de una subrutina o función) de manera que resulten válidas en todas las bibliotecas y módulos."
-#. Nm8f
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3331,7 +2995,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. 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 NombreVar[(inicio To final)] [As TipoVar][, NombreVar2[(inicio To final)] [As TipoVar][,...]]"
-#. UqOq
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3351,7 +3013,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. .l95
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3360,7 +3021,6 @@ msgctxt ""
msgid "CreateUnoValue Function [Runtime]"
msgstr "Función CreateUnoValue [Ejecución]"
-#. `,o4
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3369,7 +3029,6 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
msgstr "<bookmark_value>CreateUnoValue;función</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 Function [Runtime]\">Función CreateUnoValue [Ejecución]</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 "Devuelve un objeto que representa un valor de tipo estricto y que se refiere al sistema de tipos Uno."
-#. 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 "Este objeto se convierte automáticamente al tipo Any del sistema correspondiente cuando se pasa a Uno. El tipo debe estar especificado por su nombre de tipo Uno calificado."
-#. 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 "La API de $[officename] usa con frecuencia el tipo Any. Es el equivalente del tipo Variante utilizado en otros entornos. El tipo Any contiene un tipo Uno arbitrario y se utiliza en interfaces Uno genéricas."
-#. -43$
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3419,7 +3074,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. /_: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 ) para obtener una secuencia de bytes."
-#. 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 "Si CreateUnoValue no puede convertirse al tipo Uno especificado, se produce un error. Para la conversión se utiliza el servicio TypeConverter."
-#. 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 "Esta función está pensada para utilizarla en situaciones en que el mecanismo predeterminado de conversión de Basic a Uno resulta insuficiente. Esto puede producirse cuando se intenta acceder a interfaces genéricas basadas en Any, como el de XPropertySet::setPropertyValue( Nombre, Valor ) o X???Container::insertBy???( ???, Valor ), desde $[officename] Basic. El tiempo de ejecución de Basic no reconoce estos tipos, ya que sólo están definidos en el servicio correspondiente."
-#. 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 "En estas circunstancias, $[officename] Basic elige el tipo que mejor coincida con el tipo de Basic que desea convertir. Ahora bien, si se selecciona un tipo incorrecto, se genera un error. Utilice la función CreateUnoValue() para crear un valor para el tipo desconocido Uno."
-#. 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 "También se puede utilizar esta función para pasar valores que no sean Any, aunque no es recomendable hacerlo. Si Basic ya conoce el tipo destino, utilizando la función CreateUnoValue() sólo se añadirán funciones adicionales de conversión que ralentizarán la ejecución de Basic."
-#. 9l0^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3478,7 +3127,6 @@ msgctxt ""
msgid "Left Function [Runtime]"
msgstr "Función Left [Ejecución]"
-#. Vi+b
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3487,7 +3135,6 @@ msgctxt ""
msgid "<bookmark_value>Left function</bookmark_value>"
msgstr "<bookmark_value>Left;función</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 Function [Runtime]\">Función Left [Ejecución]</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 "Devuelve el número de los caracteres especificados que se encuentran más a la izquierda de una expresión de cadena."
-#. 3yR:
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3517,7 +3162,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. )?m~
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3527,7 +3171,6 @@ msgctxt ""
msgid "Left (Text As String, n As Long)"
msgstr "Left (Texto As String, n As Integer)"
-#. 0m-[
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3537,7 +3180,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. .(s,
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3547,7 +3189,6 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. 7LzP
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3557,7 +3198,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Texto:</emph> Cualquier expresión de cadena de la que se desee devolver los caracteres que se encuentren más a la izquierda."
-#. 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> Expresión entera que especifique el número de caracteres que se desea devolver. Si <emph>n</emph> = 0, se devuelve una cadena de longitud cero."
-#. (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 "El ejemplo siguiente convierte una fecha en formato AAAA.MM.DD a formato MM/DD/AAAA."
-#. P(22
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3597,7 +3234,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. ,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 "sEntrada = InputBox(\"Escriba una fecha en formato internacional 'AAAA-MM-DD'\")"
-#. ?4LT
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3616,7 +3251,6 @@ msgctxt ""
msgid "Name Statement [Runtime]"
msgstr "Instrucción Name [Ejecución]"
-#. NTgW
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3625,7 +3259,6 @@ msgctxt ""
msgid "<bookmark_value>Name statement</bookmark_value>"
msgstr "<bookmark_value>Name;instrucción</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=\"Instrucción Name [Runtime]\">Instrucción Name [Ejecución]</link>"
-#. [-i[
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3645,7 +3277,6 @@ msgctxt ""
msgid "Renames an existing file or directory."
msgstr "Cambia el nombre a un archivo o directorio existente."
-#. R5Q@
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3655,7 +3286,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. nEQQ
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3665,7 +3295,6 @@ msgctxt ""
msgid "Name OldName As String As NewName As String"
msgstr "Name NombreAntiguo As String As NombreNuevo As String"
-#. $\Ul
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3675,7 +3304,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>NombreAntiguo, NombreNuevo:</emph> Cualquier expresión de cadena que especifique el nombre de archivo, incluida la ruta de acceso. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-#. CVw=
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3695,7 +3322,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. +:6V
#: 03020412.xhp
#, fuzzy
msgctxt ""
@@ -3706,7 +3332,6 @@ msgctxt ""
msgid "MsgBox \"File already exists\""
msgstr "msgbox \"El archivo ya existe\""
-#. @4%H
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3715,7 +3340,6 @@ msgctxt ""
msgid "EqualUnoObjects Function [Runtime]"
msgstr "Función EqualUnoObjects [Ejecución]"
-#. unM\
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3724,7 +3348,6 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr "<bookmark_value>EqualUnoObjects;función</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 Function [Runtime]\">Función EqualUnoObjects [Ejecución]</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 "Devuelve True si los dos objetos Basic Uno especificados representan el mismo caso de objeto Uno."
-#. )Hn^
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3754,7 +3375,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. ;;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 "Valor de retorno:"
-#. `oJI
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3784,7 +3402,6 @@ msgctxt ""
msgid "Bool"
msgstr "Lógico"
-#. 9vf)
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3794,7 +3411,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. /qDZ
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3804,7 +3420,6 @@ msgctxt ""
msgid "// Copy of objects -> same instance"
msgstr "// Copia de objetos -> mismo caso"
-#. 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 "// Copia de estructuras como valor -> nuevo caso"
-#. 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 "Función FileAttr [Ejecución]"
-#. 2%k9
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3892,7 +3499,6 @@ msgctxt ""
msgid "<bookmark_value>FileAttr function</bookmark_value>"
msgstr "<bookmark_value>FileAttr;función</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=\"Función FileAttr [Runtime]\">Función FileAttr [Runtime]</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 "Devuelve el modo de acceso o el número de acceso de un archivo que se abrió con la instrucción Open. El número de acceso de archivo depende del sistema operativo (OSH = manejador de sistema operativo)."
-#. .@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 "Si se utiliza un sistema operativo de 32 bits, no es posible usar la función FileAttr para determinar el número de acceso de archivo."
-#. ]=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 "Consulte también: <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 "Sintaxis:"
-#. `(9^
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3952,7 +3553,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (NúmeroArchivo As Integer, Atributo As Integer)"
-#. W|-~
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3962,7 +3562,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. ihPc
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3972,7 +3571,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. JBlI
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3982,7 +3580,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. #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>NúmeroArchivo:</emph> El número del archivo que se abrió con la instrucción Open."
-#. 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>Atributo:</emph> Expresión de entero que indica el tipo de información que se desea devolver. Se pueden especificar los valores siguientes:"
-#. (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: La función FileAttr indica el modo de acceso del archivo."
-#. ),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: La función FileAttr devuelve el número de acceso de archivo del sistema operativo."
-#. 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 "Si se especifica un atributo de parámetro con un valor de 1, se aplican los valores de retorno siguientes:"
-#. 0MhK
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4042,7 +3634,6 @@ msgctxt ""
msgid "1 - INPUT (file open for input)"
msgstr "1 - INPUT (archivo abierto para entrada)"
-#. I(+L
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4052,7 +3643,6 @@ msgctxt ""
msgid "2 - OUTPUT (file open for output)"
msgstr "2 - OUTPUT (archivo abierto para salida)"
-#. n5WO
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4062,7 +3652,6 @@ msgctxt ""
msgid "4 - RANDOM (file open for random access)"
msgstr "4 - RANDOM (archivo abierto para acceso aleatorio)"
-#. ^ULb
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4072,7 +3661,6 @@ msgctxt ""
msgid "8 - APPEND (file open for appending)"
msgstr "8 - APPEND (archivo abierto para adjunción)"
-#. jr;E
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4082,7 +3670,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (archivo abierto en modo binario)."
-#. B$V4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4092,7 +3679,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. mB.]
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4102,7 +3688,6 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumero, \"Esta es una línea de texto\""
-#. Bmbe
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4112,7 +3697,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
msgstr "MsgBox FileAttr(#iNumero, 1 ),0,\"Modo de acceso\""
-#. xk4N
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4122,7 +3706,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
msgstr "MsgBox FileAttr(#iNumero, 2 ),0,\"Atributo de archivo\""
-#. E0%9
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4131,7 +3714,6 @@ msgctxt ""
msgid "Randomize Statement [Runtime]"
msgstr "Instrucción Randomize [Ejecución]"
-#. VfN3
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4140,7 +3722,6 @@ msgctxt ""
msgid "<bookmark_value>Randomize statement</bookmark_value>"
msgstr "<bookmark_value>Randomize;función</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=\"Instrucción Randomize [Runtime]\">Instrucción Randomize [Ejecución]</link>"
-#. Tyy6
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4160,7 +3740,6 @@ msgctxt ""
msgid "Initializes the random-number generator."
msgstr "Inicializa el generador de números aleatorios."
-#. HF,Y
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4170,7 +3749,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. 6v=g
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4180,7 +3758,6 @@ msgctxt ""
msgid "Randomize [Number]"
msgstr "Randomize [Número]"
-#. 622S
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4190,7 +3767,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Número:</emph> Cualquier valor entero que inicialice el generador de números aleatorios."
-#. Q.O*
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4210,7 +3785,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. #$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 Valor de 0 a 9"
-#. (i,2
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4231,7 +3804,6 @@ msgctxt ""
msgid "MsgBox sText,0,\"Spectral Distribution\""
msgstr "MsgBox sText,0,\"Distribución espectral\""
-#. qaF-
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4240,7 +3812,6 @@ msgctxt ""
msgid "DimArray Function [Runtime]"
msgstr "Función DimArray [Ejecución]"
-#. Qfd|
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4249,7 +3820,6 @@ msgctxt ""
msgid "<bookmark_value>DimArray function</bookmark_value>"
msgstr "<bookmark_value>DimArray;función</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 Function [Runtime]\">Función DimArray [Ejecución]</link>"
-#. Shnq
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4269,7 +3838,6 @@ msgctxt ""
msgid "Returns a Variant array."
msgstr "Devuelve una matriz de tipo Variante."
-#. wL0y
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4279,7 +3847,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. EP#8
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4289,7 +3856,6 @@ msgctxt ""
msgid "DimArray ( Argument list)"
msgstr "DimArray (Lista de argumentos)"
-#. .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 "Consulte también <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</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 "Si no se pasan parámetros, se crea una matriz vacía (como Dim A() que equivale a una secuencia de longitud 0 en Uno). Si se especifican parámetros, se crea una dimensión para cada parámetro."
-#. Fs%H
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4319,7 +3883,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Lista de argumentos:</emph> Una lista de cualquier número de argumentos que estén separados por comas."
-#. ^^_[
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4339,7 +3901,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. 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 )equivale 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 "Función TypeName; Función VarType [Ejecución]"
-#. ?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;función</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 Function; VarType Function[Runtime]\">Función TypeName; Función VarType [Ejecución]</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 "Devuelve una cadena (TypeName) o un valor numérico (VarType) que contiene información para una variable."
-#. 1(0h
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4397,7 +3953,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. +*hA
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4407,7 +3962,6 @@ msgctxt ""
msgid "TypeName (Variable)VarType (Variable)"
msgstr "TypeName (Variable)VarType (Variable)"
-#. 0Ydn
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4417,7 +3971,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. E6aC
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4427,7 +3980,6 @@ msgctxt ""
msgid "String; Integer"
msgstr "Cadena; Entero"
-#. aoC_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4437,7 +3989,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. 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>Variable:</emph> La variable de la que se desea determinar su tipo. Pueden usarse los valores siguientes:"
-#. mcd7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4457,7 +4007,6 @@ msgctxt ""
msgid "key word"
msgstr "palabra clave"
-#. 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 "Tipo de variable"
-#. TxUT
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4487,7 +4034,6 @@ msgctxt ""
msgid "Boolean"
msgstr "Lógica"
-#. !,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 "Variable lógica"
-#. *O9O
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4517,7 +4061,6 @@ msgctxt ""
msgid "Date"
msgstr "Fecha"
-#. 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 "Variable de fecha"
-#. CPLZ
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4547,7 +4088,6 @@ msgctxt ""
msgid "Double"
msgstr "Doble"
-#. 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 "Variable doble de coma flotante"
-#. SIw-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4577,7 +4115,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. 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 "Variable entera"
-#. L^Wp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4607,7 +4142,6 @@ msgctxt ""
msgid "Long"
msgstr "Largo"
-#. 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 "Variable entera larga"
-#. \aBX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4637,7 +4169,6 @@ msgctxt ""
msgid "Object"
msgstr "Objeto"
-#. 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 "Variable de objeto"
-#. T/r,
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4667,7 +4196,6 @@ msgctxt ""
msgid "Single"
msgstr "Simple"
-#. 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 "Variable simple de coma flotante"
-#. /J!v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4697,7 +4223,6 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. 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 "Variable de cadena"
-#. l!]e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4727,7 +4250,6 @@ msgctxt ""
msgid "Variant"
msgstr "Variante"
-#. 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 "Variable variante (puede contener todos los tipos especificados por la definición)"
-#. xyd9
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4757,7 +4277,6 @@ msgctxt ""
msgid "Empty"
msgstr "Vacío"
-#. 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 "La variable no está inicializada"
-#. _]}]
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4787,7 +4304,6 @@ msgctxt ""
msgid "Null"
msgstr "Nulo"
-#. *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 "No hay datos válidos"
-#. FyQa
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4817,7 +4331,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. 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,\"Algunos tipos en $[officename] Basic\""
-#. OMUH
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4837,7 +4349,6 @@ msgctxt ""
msgid "Hour Function [Runtime]"
msgstr "Función Hour [Ejecución]"
-#. /\`E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4846,7 +4357,6 @@ msgctxt ""
msgid "<bookmark_value>Hour function</bookmark_value>"
msgstr "<bookmark_value>Hour;función</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=\"Función Hour [Runtime]\">Función Hour [Ejecución]</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 "Devuelve la hora a partir de un valor que generan las funciones TimeSerial o TimeValue."
-#. J*+}
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4876,7 +4384,6 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintaxis:"
-#. k4,E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4886,7 +4393,6 @@ msgctxt ""
msgid "Hour (Number)"
msgstr "Hour (Número)"
-#. @gPA
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4896,7 +4402,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Valor de retorno:"
-#. S]R`
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4906,7 +4411,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. llUh
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4916,7 +4420,6 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parámetros:"
-#. *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>Número:</emph> Expresión numérica que contenga el valor de tiempo serie que se use para devolver el valor de hora."
-#. ~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 "Esta función es la inversa a <emph>TimeSerial</emph>. Devuelve un valor entero que representa la hora a partir de un valor que generan las funciones <emph>TimeSerial</emph> o <emph>TimeValue</emph>. Por ejemplo, la expresión"
-#. [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 "devuelve el valor 12."
-#. TAk)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4966,7 +4465,6 @@ msgctxt ""
msgid "Example:"
msgstr "Ejemplo:"
-#. I8]m
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4976,7 +4474,6 @@ msgctxt ""
msgid "Sub ExampleHour"
msgstr "Sub EjemploHour"
-#. Cpi-
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4985,36750 +4482,3 @@ msgctxt ""
"help.text"
msgid "Print \"The current hour is \" & Hour( Now )"
msgstr "Print \"La hora actual es \" & 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 "Instrucción End [Ejecución]"
-
-#. K~rM
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
-"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr "<bookmark_value>End;instrucción</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 Statement [Runtime]\">Instrucción End [Ejecución]</link>"
-
-#. tIn\
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Ends a procedure or block."
-msgstr "Finaliza un procedimiento o bloque."
-
-#. *P3P
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Parámetros:"
-
-#. g-$S
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr "Use la instrucción End de esta manera:"
-
-#. j}Im
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
-"7\n"
-"help.text"
-msgid "Statement"
-msgstr "Instrucción"
-
-#. 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: no es necesario, pero puede introducirse en cualquier parte de un procedimiento para finalizar la ejecución del programa."
-
-#. [`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 Function: finaliza una instrucción <emph>Function</emph>."
-
-#. 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: marca el final de un bloque <emph>If...Then...Else</emph>."
-
-#. `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: marca el final de un bloque <emph>Select Case</emph>."
-
-#. 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: finaliza una instrucción <emph>Sub</emph>."
-
-#. k;j]
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. [TtR
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Número de 1 a 5\""
-
-#. ZkTf
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Número de 6 a 8\""
-
-#. jKo:
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Mayor que 8\""
-
-#. fKkS
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Fuera del rango de 1 a 10\""
-
-#. CnCT
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"tit\n"
-"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
-msgstr "Función HasUnoInterfaces [Ejecución]"
-
-#. I@SF
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
-"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr "<bookmark_value>HasUnoInterfaces;función</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 Function [Runtime]\">Función HasUnoInterfaces [Ejecución]</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 "Comprueba si un objeto Basic Uno admite ciertas interfaces Uno."
-
-#. 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 "Devuelve True, si se admiten <emph>todas</emph> las interfaces Uno indicadas, en caso contrario se devuelve False."
-
-#. J1Ui
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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( oTest, Nombre-Interfaz-Uno 1 [, Nombre-Interfaz-Uno 2, ...])"
-
-#. Ynf?
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. xYhO
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"7\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. @\`M
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ]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>oTest:</emph> El objeto Basic Uno que se desee comprobar."
-
-#. _~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>Nombre-Interfaz-Uno:</emph> Lista de nombres de interfaz Uno."
-
-#. c`dZ
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. -0KX
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3149580\n"
-"12\n"
-"help.text"
-msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-msgstr "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-
-#. 7(of
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Choose Function [Runtime]"
-msgstr "Función Choose [Ejecución]"
-
-#. ],sC
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr "<bookmark_value>Choose;función</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 Function [Runtime]\">Función Choose [Ejecución]</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 "Devuelve un valor seleccionado de una lista de argumentos."
-
-#. RP,+
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. N@%}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr "Choose (Índice, Selección1[, Selección2, ... [,Selección_n]])"
-
-#. 177C
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. }-{$
-#: 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>Índice:</emph> una expresión numérica que especifica el valor que devolver."
-
-#. 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>Selección1:</emph> cualquier expresión que contenga alguna de las opciones posibles."
-
-#. 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 "La función <emph>Choose</emph> devuelve un valor de la lista de expresiones según el valor del índice. Si Índice = 1, la función devuelve la primera expresión de la lista, si Índice = 2, devuelve la segunda expresión, etc."
-
-#. 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 "Si el valor del índice es inferior a 1 o mayor que el número de expresiones listadas, la función devuelve un valor nulo (Null)."
-
-#. 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 "El ejemplo siguiente usa la función <emph>Choose</emph> para seleccionar una cadena de entre varias que forman un menú:"
-
-#. p|(}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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(Indice, \"Formato rápido\", \"Guardar formato\", \"Formato del sistema\")"
-
-#. w\%=
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line Input # Statement [Runtime]"
-msgstr "Función Line # Input [Ejecución]"
-
-#. 4%%U
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>Line Input statement</bookmark_value>"
-msgstr "<bookmark_value>Sentencia de linea de ingreso</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=\"Función Line # Input [Runtime]\">Función Line # Input [Runtime]</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 "Lee cadenas de un archivo secuencial en una variable."
-
-#. WG9N
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 #NúmeroArchivo As Integer, Var As String"
-
-#. NR%i
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>FileNumber: </emph> Número del archivo que contenga los datos que se desee leer. El archivo debe ser abierto en modo avanzado con la instrucción Open mediante la palabra clave READ."
-
-#. 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>var:</emph> El nombre de la variable que almacene el resultado."
-
-#. 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 "Con la instrucción <emph>Line Input#</emph>, puede leer cadenas desde un archivo abierto en una variable. Las variables de cadena se leen línea a línea hasta el primer retorno de carro (Asc=13) o avance de línea (Asc=10). Las marcas de final de línea no se incluyen en la cadena resultante."
-
-#. 5f5D
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3163711\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 #iNumero, \"Esta es una línea de texto\""
-
-#. 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 #iNumero, \"Esta es otra línea de texto\""
-
-#. D^+l
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr "Operador Xor [Ejecución]"
-
-#. 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;operadores lógicos</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=\"Operador Xor [Runtime]\">Operador Xor [Ejecución]</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 "Realiza una combinación de comparación exclusiva entre dos expresiones."
-
-#. dNxb
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. [ZzC
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr "Resultado = Expresión1 Xor Expresión2"
-
-#. zk]c
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Resultado: Cualquier variable numérica que contenga el resultado de la combinación."
-
-#. \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>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea combinar."
-
-#. 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 "Una conjunción lógica de comparación exclusiva de dos expresiones lógicas devuelve el valor True sólo si ambas son distintas entre sí."
-
-#. 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 "Una conjunción de comparación exclusiva realizada bit a bit activa sólo los que están activados en una de las dos expresiones."
-
-#. ?J_)
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve 0"
-
-#. !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 = vA > vB Xor vB > vC REM devuelve -1"
-
-#. _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 devuelve -1"
-
-#. (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 devuelve 0"
-
-#. !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 devuelve 2"
-
-#. [8xy
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Absolute Values"
-msgstr "Valores absolutos"
-
-#. 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=\"Valores absolutos\">Valores absolutos</link>"
-
-#. 8[BE
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
-"help.text"
-msgid "This function returns absolute values."
-msgstr "Esta función devuelve valores absolutos."
-
-#. A\R;
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr "Instrucción DefLng [Ejecución]"
-
-#. 3p/6
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
-"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "<bookmark_value>DefLng;instrucción</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 Statement [Runtime]\">Instrucción DefLng [Ejecución]</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 "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
-
-#. f3F7
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. rnc^
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
-
-#. .M8j
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminada:"
-
-#. z:PX
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Palabra clave: Tipo de variable predeterminada</emph>"
-
-#. S)|I
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
-"9\n"
-"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "<emph>DefLng:</emph> Largo"
-
-#. oV$?
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. zOm(
-#: 03101600.xhp
-#, fuzzy
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. $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 lCount es una variable entera larga implícita"
-
-#. 7iSf
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Variables"
-msgstr "Uso de variables"
-
-#. *_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>nombres de variables</bookmark_value><bookmark_value>variables;tipos y variables</bookmark_value>bookmark_value><bookmark_value>declarando variables</bookmark_value><bookmark_value>valores;de variables</bookmark_value><bookmark_value>constantes</bookmark_value><bookmark_value>arreglos;declaración</bookmark_value><bookmark_value>definición;constantes</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=\"Using Variables\">Uso de variables</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 "A continuación se describe el uso básico de variables en $[officename] Basic."
-
-#. ?r1z
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
-"4\n"
-"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr "Convenciones de asignación de nombres a variables"
-
-#. ]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 "Un nombre de variable puede tener hasta 255 caracteres. El primer carácter de un nombre de variable <emph>debe ser</emph> una letra A-Z o a-z. Los números también pueden usarse en los nombres de variable, pero los símbolos de puntuación y los caracteres especiales no están permitidos, con excepción del carácter de subrayado (\"_\"). En $[officename] Basic no se hace distinción entre mayúsculas/minúsculas en los identificadores de variable. Los nombres de variable pueden contener espacios, pero en ese caso deben incluirse entre corchetes."
-
-#. t=1?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
-"6\n"
-"help.text"
-msgid "Examples for variable identifiers:"
-msgstr "<emph>Ejemplos de identificadores de variable:</emph>"
-
-#. K9H=
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
-"help.text"
-msgid "Correct"
-msgstr "Correcto"
-
-#. 5mq*
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
-"help.text"
-msgid "Correct"
-msgstr "Correcto"
-
-#. (r(r
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
-"help.text"
-msgid "Correct"
-msgstr "Correcto"
-
-#. 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 "No es válida, las variables con espacios deben incluirse entre corchetes"
-
-#. *!V7
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
-"help.text"
-msgid "Correct"
-msgstr "Correcto, variable con espacios incluida entre corchetes"
-
-#. 7OMI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
-"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr "No es válida, no se permiten caracteres especiales"
-
-#. 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 "No es válida, la variable no puede empezar con un número"
-
-#. WV@O
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
-"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr "No es válida, marcas de puntuación no permitidas"
-
-#. Chom
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
-"help.text"
-msgid "Declaring Variables"
-msgstr "Declaración de variables"
-
-#. 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 "En $[officename] Basic no es necesario declarar variables explícitamente. Las declaraciones de variable pueden realizarse con la instrucción <emph>Dim</emph>. Puede declarar más de una variable a la vez separando sus nombres con una coma. Para definir el tipo de variable, use un signo de declaración de tipo después del nombre o la palabra clave apropiada."
-
-#. BWL/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
-"help.text"
-msgid "Examples for variable declarations:"
-msgstr "<emph>Ejemplos de declaraciones de variable:</emph>"
-
-#. Gv^n
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Declara la variable \"a\" como String"
-
-#. 5b;?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Declara la variable \"a\" como String"
-
-#. 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 "Declara una variable como String y otra como Integer"
-
-#. 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 "Declara c como variable booleana que puede ser TRUE o FALSE"
-
-#. 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 "Es muy importante al declarar variables que utilice siempre el carácter de declaración de tipo, aunque se usara en la declaración en lugar de una palabra clave. Por tanto, las instrucciones siguientes no son válidas:"
-
-#. yxDI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
-"help.text"
-msgid "Declares \"a\" as a String"
-msgstr "Declara \"a\" como String"
-
-#. X#o[
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
-"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr "Falta la declaración de tipo: \"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 "Tenga en cuenta que en cuanto haya declarado una variable como de un tipo concreto ya no puede declararla con el mismo nombre y un tipo distinto."
-
-#. .1oZ
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
-"help.text"
-msgid "Forcing Variable Declarations"
-msgstr "Forzar declaraciones de variables"
-
-#. ~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 "Para forzar la declaración de variables, use la orden siguiente:"
-
-#. 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 "La instrucción <emph>Option Explicit</emph> tiene que ser la primera línea del módulo, antes del primer SUB. Normalmente, sólo es necesario declarar explícitamente las matrices. El resto de variables se declaran según el carácter de declaración de tipo o (si se omite) según el tipo predeterminado <emph>Single</emph>."
-
-#. J)%h
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
-"help.text"
-msgid "Variable Types"
-msgstr "Tipos de variable"
-
-#. v{i?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
-"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr "$[officename] Basic admite cuatro clases de variables:"
-
-#. ?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 "<emph>Numérica</emph>, puede contener valores numéricos. Algunas variables se utilizan para almacenar números grandes o pequeños y otras para números de coma flotante o fracciones."
-
-#. oZ8_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
-"help.text"
-msgid "<emph>String</emph> variables contain character strings."
-msgstr "<emph>Cadena</emph>, contiene cadenas de caracteres."
-
-#. 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 "<emph>Lógica</emph>, contiene el valor TRUE (cierto) o FALSE (falso)."
-
-#. @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 "<emph>Objeto</emph>, puede almacenar objetos de diversos tipos, como tablas y documentos dentro de un documento."
-
-#. xdv@
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
-"help.text"
-msgid "Integer Variables"
-msgstr "Variables enteras"
-
-#. 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 "El rango de las variables enteras va de -32768 a 32767. Si asigna un valor de coma flotante a una variable entera, los valores decimales se redondean al entero más próximo. Las variables enteras se calculan rápidamente en los procedimientos y su uso es muy conveniente como variables contador en bucles. Una variable entera sólo requiere dos bytes de memoria. El carácter de declaración de tipo es \"%\"."
-
-#. b_wk
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
-"help.text"
-msgid "Long Integer Variables"
-msgstr "Variables enteras largas"
-
-#. 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 "El rango de las variables enteras largas va de -2147483648 a 2147483647. Si asigna un valor de coma flotante a una variable entera larga, los valores decimales se redondean al entero más próximo. Las variables enteras largas se calculan rápidamente en los procedimientos y su uso muy conveniente como variables contador en bucles de valor muy grande. Una variable entera larga requiere cuatro bytes de memoria. El carácter de declaración de tipo es \"&\"."
-
-#. f60_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
-"help.text"
-msgid "Decimal Variables"
-msgstr "Variables Decimales"
-
-#. [?[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 "Las variables decimales pueden tomar numeros positivos y negativos o el numero cero. La exactitud esta hasta 29 digitos."
-
-#. 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 "Puedes usar un signo de suma (+) o resta (-) como prefijo a un numero decimal (con o sin espacio)."
-
-#. 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 "Si un numero decimal esta asignado a una variable integral %PRODUCTNAME Basic redondea la cantidad arriba o abajo."
-
-#. xW{R
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
-"help.text"
-msgid "Single Variables"
-msgstr "Variables simples"
-
-#. 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 "Las variables simples pueden tener valores positivos o negativos desde 3,402823 x 10E38 a 1,401298 x 10E-45. Las variables simples son de coma flotante, en el que la precisión decimal decrece a medida que la parte no decimal del número aumenta. Las variables simples son adecuadas para realizar cálculos matemáticos de precisión media. Los cálculos requieren más tiempo que para las variables enteras, pero son más rápidos que las de tipo doble. Una variable simple requiere 4 bytes de memoria. El carácter de declaración de tipo es \"!\"."
-
-#. Szb]
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
-"help.text"
-msgid "Double Variables"
-msgstr "Variables dobles"
-
-#. 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 "Las variables dobles pueden tener valores positivos o negativos desde 1.79769313486232 x 10E38 a 4.94065645841247 x 10E-324. Las variables dobles son de coma flotante, en el que la precisión decimal decrece a medida que la parte no decimal del número aumenta. Las variables dobles son adecuadas para cálculos precisos. Los cálculos requieren más tiempo que las variables simples. Una variable doble requiere 8 bytes de memoria. El carácter de declaración de tipo es \"#\"."
-
-#. ?iH/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
-"help.text"
-msgid "Currency Variables"
-msgstr "Variables de moneda"
-
-#. %}.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 "Las variables de moneda se almacenan internamente como números de 64 bits (8 bytes) y se muestran como números con cantidad de decimales fija con 15 posiciones no decimales y 4 decimales. El rango de valores va de -922337203685477,5808 a +922337203685477,5807. Las variables de moneda se usan para calcular valores de divisas con una precisión elevada. El carácter de declaración de tipo es \"@\"."
-
-#. YRb5
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
-"help.text"
-msgid "String Variables"
-msgstr "Variables de cadena"
-
-#. %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 "Las variables de cadena pueden contener cadenas de compuestas por hasta 65.535 caracteres. Cada carácter se almacena como el valor Unicode correspondiente. Las variables de cadena son adecuadas para el procesamiento de texto dentro de programas y para almacenamiento temporal de caracteres no imprimibles de hasta una longitud máxima de 64 Kbytes. La memoria necesaria para almacenar variables de cadena depende del número de caracteres que ésta contenga. El carácter de declaración de tipo es \"$\"."
-
-#. o)nB
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
-"help.text"
-msgid "Boolean Variables"
-msgstr "Variables lógicas"
-
-#. 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 "Las variables lógicas o booleanas sólo almacenan uno de estos dos valores: True (verdadero) o False (falso). Un número 0 evalúa en FALSE, cualquier otro número evalúa en TRUE."
-
-#. WnT|
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
-"help.text"
-msgid "Date Variables"
-msgstr "Variables de fecha"
-
-#. 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 "Las variables de fecha sólo pueden contener valores de fecha y hora almacenados en un formato interno. Los valores asignados a las variables de fecha con <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> o <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> se convierten automáticamente al formato interno. Las variables de fecha se convierten en números normales mediante las funciones <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Día\"><emph>Día</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Mes\"><emph>Mes</emph></link> y <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Año\"><emph>Año</emph></link> o bien <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hora\"><emph>Hora</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minutos\"><emph>Minutos</emph></link> y <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Segundo\"><emph>Segundo</emph></link>. El formato interno permite una comparación de valores de fecha/hora calculando la diferencia entre dos números. Estas variables sólo pueden declararse con la palabra clave <emph>Date</emph>."
-
-#. SN6t
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
-"help.text"
-msgid "Initial Variable Values"
-msgstr "Valores iniciales de las variables"
-
-#. 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 "En cuanto se declara la variable, ésta toma automáticamente el valor \"Null\" (nulo). Tenga en cuenta las convenciones siguientes:"
-
-#. }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 las variables <emph>Numéricas</emph> se les asigna automáticamente el valor \"0\" en cuanto se declaran."
-
-#. 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 las <emph>variables de fecha</emph> se les asigna el valor 0 internamente; que equivale a convertir el valor a \"0\" con la función <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Día</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Mes</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Año</emph></link> u <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hora</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minuto</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Segundo</emph></link>."
-
-#. ?[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 "A las <emph>variables de cadena</emph> se les asigna una cadena vacía (\"\") cuando se declaran."
-
-#. kz=I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
-"help.text"
-msgid "Arrays"
-msgstr "Matrices"
-
-#. 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 "$[officename] Basic distingue matrices de una o varias dimensiones, definidas por un tipo de variables especificado. Las matrices son convenientes para editar listas y tablas en los programas. Se puede acceder a los elementos individuales de las matrices utilizando un índice numérico."
-
-#. 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 "Las matrices <emph>deben</emph> declararse con la instrucción <emph>Dim</emph>.Hay varias maneras de definir el rango de índices de una matriz:"
-
-#. QEV+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
-"help.text"
-msgid "21 elements numbered from 0 to 20"
-msgstr "21 elementos numerados del 0 al 20"
-
-#. 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 elementos (una matriz de 6 x 5 elementos)"
-
-#. l:~!
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
-"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr "21 elementos numerados del 5 al 25"
-
-#. =$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 "21 elementos (incluido el 0), numerados del -15 al 5"
-
-#. 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 "El rango del índice puede incluir números positivos y negativos."
-
-#. uG-I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
-"help.text"
-msgid "Constants"
-msgstr "Constantes"
-
-#. 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 "Las constantes tienen un valor fijo. Sólo se definen una vez en el programa y no pueden volverse a definir más adelante:"
-
-#. V=3Z
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr "Instrucción DefObj [Ejecución]"
-
-#. 2}^e
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr "<bookmark_value>DefObj;instrucción</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 Statement [Runtime]\">Instrucción DefObj [Ejecución]</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 "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
-
-#. 4buU
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 9rmz
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
-
-#. RO1W
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. -.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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminada:"
-
-#. p=G|
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Palabra clave: Tipo de variable predeterminada</emph>"
-
-#. F/41
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "<emph>DefObj:</emph> Objeto"
-
-#. iQKO
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. bGmG
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM Añadir prefijo a definiciones para tipos de variable:"
-
-#. 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 "Instrucción Let [Ejecución]"
-
-#. JP!%
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr "<bookmark_value>Let;instrucción</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 Statement [Runtime]\">Instrucción Let [Ejecución]</link>"
-
-#. %B.X
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
-"2\n"
-"help.text"
-msgid "Assigns a value to a variable."
-msgstr "Asigna un valor a una variable."
-
-#. *AiS
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. g:~C
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "[Let] VarName=Expression"
-msgstr "[Let] NombreVar=Expresión"
-
-#. fkYg
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NombreVar:</emph> Variable a la que se desea asignar un valor. El valor y el tipo de variable deben ser compatibles."
-
-#. 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 "Como en casi todos los dialectos de BASIC, la palabra clave <emph>Let</emph> es opcional."
-
-#. 3AA_
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. {TLR
-#: 03103100.xhp
-#, fuzzy
-msgctxt ""
-"03103100.xhp\n"
-"par_id3152939\n"
-"12\n"
-"help.text"
-msgid "MsgBox Len(sText) ' returns 9"
-msgstr "MsgBox Len(sTexto) REM Devuelve 9"
-
-#. LVS9
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr "Funciones de E/S de pantalla"
-
-#. !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=\"Funciones de E/S de pantalla\">Funciones de E/S de pantalla</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 "Esta sección describe las funciones de tiempo de ejecución usadas para llamar a diálogos para la entrada y salida de interacciones con el usuario."
-
-#. HJTA
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr "Función CreateUnoService [Ejecución]"
-
-#. T`0z
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoService;función</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 Function [Runtime]\">Función CreateUnoService [Ejecución]</link>"
-
-#. FJsP
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
-"2\n"
-"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr "Crea un caso de servicio Uno con el ProcessServiceManager."
-
-#. rpp?
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. $T?e
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3153346\n"
-"4\n"
-"help.text"
-msgid "oService = CreateUnoService( Uno service name )"
-msgstr "oService = CreateUnoService( nombre de servicio Uno)"
-
-#. ,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 "Para una lista de los servicios disponibles, consulte: 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 "Ejemplo:"
-
-#. g#Au
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3154046\n"
-"6\n"
-"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-
-#. o1Ol
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id8334604\n"
-"help.text"
-msgid "<bookmark_value>filepicker;API service</bookmark_value>"
-msgstr "<bookmark_value>filepicker;servicio API</bookmark_value>"
-
-#. cG5h
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "The following code uses a service to open a file open dialog:"
-msgstr "El código siguiente utiliza un servicio para abrir un diálogo de apertura de archivos:"
-
-#. D`n4
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
-"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr "fName = FileOpenDialog (\"Seleccione un archivo\")"
-
-#. VE1e
-#: 03131600.xhp
-#, fuzzy
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Print \"file chosen: \"+fName"
-msgstr "print \"file chosen: \"+fName"
-
-#. {);3
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Month Function [Runtime]"
-msgstr "Función Month [Ejecución]"
-
-#. K:Be
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr "<bookmark_value>Month;función</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=\"Función Month [Runtime]\">Función Month [Ejecución]</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 "Devuelve el mes de un año a partir de una fecha serie que genera la función DateSerial o DateValue."
-
-#. j{O,
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. GAF\
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "Month (Number)"
-msgstr "Month (Número)"
-
-#. 9s-q
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. p9KR
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. R!ih
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Expresión numérica que contiene el número de fecha serie que se utiliza para determinar el mes del año."
-
-#. 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 "Esta función es la inversa a <emph>DateSerial</emph>. Devuelve el mes en el año que corresponde a la fecha serie que genera <emph>DateSerial</emph> o <emph>DateValue</emph>. Por ejemplo, la expresión"
-
-#. ;aol
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
-"11\n"
-"help.text"
-msgid "returns the value 12."
-msgstr "devuelve el valor 12."
-
-#. WX|`
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"El mes actual\""
-
-#. v9ET
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr "Instrucción GoSub...Return [Ejecución]"
-
-#. 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;instrucción</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 Statement [Runtime]\">Instrucción GoSub...Return [Ejecución]</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 "Llama a una subrutina indicada por una etiqueta de una subrutina o una función. La instrucción que sigue a la etiqueta se ejecuta mientras no se encuentre una instrucción Return. Después el programa continúa con la instrucción que sigue a <emph>GoSub </emph>."
-
-#. g=V;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. r,Mz
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr "Consulte los parámetros"
-
-#. N)@v
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "bloque de instrucciones"
-
-#. s5{;
-#: 03090301.xhp
-#, fuzzy
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
-"8\n"
-"help.text"
-msgid "Label"
-msgstr "Etiqueta"
-
-#. $\cJ
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
-"9\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. l+Ce
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
-"10\n"
-"help.text"
-msgid "GoSub Label"
-msgstr "Etiqueta GoSub"
-
-#. +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 "Etiqueta:"
-
-#. !:4(
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. [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 "Final de 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 "La instrucción <emph>GoSub</emph> llama a una subrutina local indicada por una etiqueta desde dentro de una subrutina o función. El nombre de la etiqueta debe terminar con un carácter de dos puntos (\":\")."
-
-#. 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 "Si el programa encuentra una instrucción Return que no va precedida de <emph>GoSub</emph>, $[officename] Basic devuelve un mensaje de error. Use <emph>Exit Sub</emph> o <emph>Exit Function</emph> para asegurarse de que el programa salga de una Sub o Function antes de llegar a la siguiente instrucción Return."
-
-#. $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 "El ejemplo siguiente demuestra el uso de <emph>GoSub</emph> y <emph>Return</emph>. Al ejecutar una sección de programa dos veces, éste calcula la raíz cuadrada de dos números que ha introducido el usuario."
-
-#. @q^9
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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$ \"Escriba el primer número: \",\"EntradaNumero\"))"
-
-#. +/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$ \"Escriba el segundo número: \",\"EntradaNumero\"))"
-
-#. 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 \"La raíz cuadrada de\";iInputa;\" es\";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 \"La raíz cuadrada de\";iInputb;\" es\";iInputc"
-
-#. R#O|
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"tit\n"
-"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr "instrucción Stop [Ejecución]"
-
-#. oQ=*
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr "<bookmark_value>Stop;instrucción</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 Statement [Runtime]\">instrucción Stop [Ejecución]</link>"
-
-#. AKbS
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
-"2\n"
-"help.text"
-msgid "Stops the execution of the Basic program."
-msgstr "Detiene la ejecución del programa Basic."
-
-#. KL+x
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Ejemplo:"
-
-#. +R]U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"tit\n"
-"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "Función RGB [Ejecución]"
-
-#. 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=\"Función RGB [Runtime]\">Función RGB [Runtime]</link>"
-
-#. 5%dE
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
-"2\n"
-"help.text"
-msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
-msgstr "Devuelve un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"valor de color de entero largo\">valor de color de entero largo</link> que se compone de los componentes de color rojo, verde y azul."
-
-#. 3MXR
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. `dC1
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
-"4\n"
-"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr "RGB (Rojo, Verde, Azul)"
-
-#. K:?4
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. cpy,
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3159153\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. {#Nu
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "<emph>Parámetro</emph>:"
-
-#. 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>Rojo</emph>: Una expresión entera que representa el componente rojo (0-255) del color compuesto."
-
-#. 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>Verde</emph>: Una expresión entera que representa el componente verde (0-255) del color compuesto."
-
-#. .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>Azul</emph>: Una expresión entera que representa el componente azul (0-255) del color compuesto."
-
-#. 3P{K
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
-
-#. k~*r
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"rojo = \" & 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 "\"verde= \" & 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 "\"azul= \" & blue(lVar) & Chr(13) , 64,\"colores\""
-
-#. KzPt
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr "Función IsNull [Ejecución]"
-
-#. 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>Función IsNull </bookmark_value><bookmark_value>Valor Null</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 Function [Runtime]\">Función IsNull [Ejecución]</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 "Comprueba si una variante contiene el valor especial Null (nulo) indicando que la variable no contiene datos."
-
-#. nC;n
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ?W.r
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "IsNull (Var)"
-msgstr "IsNull (Var)"
-
-#. =_kG
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. Z|G*
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. @j8$
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Var:</emph> Cualquier variable que se desee comprobar. Esta función devuelve True si la variante contiene el valor Null o False si contiene otro distinto."
-
-#. =\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>: este valor se usa para un subtipo de datos de tipo variant sin contenido válido."
-
-#. (#+S
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. %fYR
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr "Operador \"+\" [Ejecución]"
-
-#. 8E|G
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
-"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>operador \"+\";operadores matemáticos</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\">Operador \"+\" [Ejecución]</link>"
-
-#. ]X.;
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Adds or combines two expressions."
-msgstr "Suma o combina dos expresiones."
-
-#. ]SUO
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. v*Xr
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr "Resultado = Expresión1 + Expresión2"
-
-#. AM~E
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Resultado:</emph> Cualquier expresión numérica que contenga el resultado de la suma."
-
-#. 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>Expresión1, Expresión2:</emph> Cualquier expresión numérica que desee combinar o sumar."
-
-#. Di)B
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 0IUo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trim Function [Runtime]"
-msgstr "Función Trim [Ejecución]"
-
-#. wg;!
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "<bookmark_value>Trim;función</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 Function [Runtime]\">Función Trim [Ejecución]</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 "Suprime todas los espacios del principio y del final de una expresión de cadena."
-
-#. wO,N
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. XgN9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Trim( Text As String )"
-msgstr "Trim( Texto As String )"
-
-#. |/U9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. Y\lo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. $K(E
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. D:!6
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Texto:</emph> Cualquier expresión de cadena."
-
-#. ^`=5
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. pdie
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr "Funciones de tiempo de ejecución"
-
-#. 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=\"Funciones de tiempo de ejecución\">Funciones de tiempo de ejecución</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 "Esta sección describe las funciones de tiempo de ejecución de <item type=\"productname\">$[officename]</item> Basic."
-
-#. ^o2k
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Open Statement[Runtime]"
-msgstr "Instrucción Open [Ejecución]"
-
-#. oh8p
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "<bookmark_value>Open;instrucción</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=\"Instrucción Open [Runtime]\">Instrucción Open [Ejecución]</link>"
-
-#. =P.0
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
-"2\n"
-"help.text"
-msgid "Opens a data channel."
-msgstr "Abre un canal de datos."
-
-#. azng
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. $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 NombreArchivo As String [For Modo] [Access ModoES] [protección] As [#]NúmeroArchivo As Integer [Len = LongitudJuegoDatos]"
-
-#. pi/N
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. #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>FileName: </emph>Nombre y ruta del archivo que quieres abrir. Si quieres leer un archivo que no exista (Access = Read), aparecera un mensaje de error. Si intentas abrir un archivo que no existe (Access = Write), un nuevo archivo será creado."
-
-#. !:(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>Mode:</emph> Palabra clave que especifica el modo del archivo. Los valores permitidos son: Append (agrega a un archivo secuencial), Binary (datos que pueden ser accesados usando Get y Put), Input (abre datos de canal para ser leidos), Output (abre canales de datos para escritura), y Random (edita valores relativos)."
-
-#. $@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>ModoES:</emph> Palabra clave que define el tipo de acceso. Valores válidos: Read (sólo lectura), Write (sólo escritura), Read Write (ambos)."
-
-#. \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 "Protección: Palabra clave que define el estado de seguridad de un archivo después de su apertura. Valores válidos: Shared (el archivo pueden abrirlo otras aplicaciones), Lock Read (el archivo está protegido contra lectura), Lock Write (el archivo está protegido contra escritura), Lock Read Write (impide el acceso al archivo)."
-
-#. 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 "NúmeroArchivo: Cualquier expresión entera de 0 a 511 que indica el número de un canal de datos libre. A continuación puede pasar órdenes a través del canal de datos para acceder al archivo. El número de archivo debe determinarlo la función FreeFile inmediatamente antes de la instrucción Open."
-
-#. 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>LongitudJuegoDatos</emph> Para archivos de acceso aleatorio, defina la longitud de los registros."
-
-#. .~/,
-#: 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 "Sólo se puede modificar el contenido de los archivos que se hayan abierto con la instrucción Open. Si intenta abrir un archivo que ya está abierto, aparecerá un mensaje de error."
-
-#. ~eP5
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ,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 #iNumero, \"Esta es una línea de texto\""
-
-#. \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 #iNumero, \"Esta es otra línea de texto\""
-
-#. @i*-
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr "Operador \"*\" [Ejecución]"
-
-#. 3Kg2
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
-"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>operador \"*\";operadores matemáticos</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\">Operador \"*\" [Ejecución]</link>"
-
-#. X^t!
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
-"help.text"
-msgid "Multiplies two values."
-msgstr "Multiplica dos valores."
-
-#. D%GK
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. =?sL
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr "Resultado = Expresión1 * Expresión2"
-
-#. g(U0
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ?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>Resultado:</emph> Cualquier expresión numérica que contenga el resultado de la multiplicación."
-
-#. *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>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea multiplicar."
-
-#. O?|q
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. vJHv
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "File I/O Functions"
-msgstr "Funciones de E/S de archivo"
-
-#. 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=\"Funciones de E/S de archivo\">Funciones de E/S de archivo</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 "Utilice las funciones de E/S de archivos para crear y administrar archivos (datos) definidos por el usuario."
-
-#. 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 "Puede usar estas funciones para dar soporte a la creación de archivos \"relativos\", de manera que puedan guardarse y volverse a cargar algunos registros especificando cuál es su posición. Las funciones de E/S de archivo también pueden ayudar a gestionar los archivos ya que proporcionan información como el tamaño, los valores de ruta de acceso actual o la fecha de creación de un archivo o directorio."
-
-#. Cak%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CStr Function [Runtime]"
-msgstr "Función CStr [Ejecución]"
-
-#. k6hG
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr "<bookmark_value>CStr;función</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 Function [Runtime]\">Función CStr [Ejecución]</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 "Convierte cualquier expresión numérica en una de cadena."
-
-#. \p[]
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. t:38
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "CStr (Expression)"
-msgstr "CStr (Expresión)"
-
-#. |HL{
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 9Wke
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. )*p5
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión de cadena o numérica válida que desee convertir."
-
-#. U#^w
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
-"help.text"
-msgid "Expression Types and Conversion Returns"
-msgstr "Tipos de expresión y conversiones devueltas"
-
-#. %r-Q
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
-"help.text"
-msgid "Boolean :"
-msgstr "Lógica :"
-
-#. 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 "Cadena que se evalúa a <emph>True</emph> o <emph>False</emph>."
-
-#. [gqK
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
-"help.text"
-msgid "Date :"
-msgstr "Fecha :"
-
-#. 7nG%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
-"help.text"
-msgid "String that contains the date and time."
-msgstr "Cadena que contiene la fecha y la hora."
-
-#. rVu*
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
-"help.text"
-msgid "Null :"
-msgstr "Nulo :"
-
-#. l3xa
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
-"help.text"
-msgid "Run-time error."
-msgstr "Error de tiempo de ejecución."
-
-#. ;_!0
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
-"help.text"
-msgid "Empty :"
-msgstr "Vacío :"
-
-#. cW8`
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
-"help.text"
-msgid "String without any characters."
-msgstr "Cadena sin ningún carácter."
-
-#. R}9k
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
-"help.text"
-msgid "Any :"
-msgstr "Cualquiera :"
-
-#. kER;
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
-"help.text"
-msgid "Corresponding number as string."
-msgstr "Número correspondiente como cadena."
-
-#. 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 "Los ceros del final de los números de coma flotante no se incluyen en la cadena que se devuelve."
-
-#. 3G`K
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Kbb9
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Close Statement [Runtime]"
-msgstr "Instrucción Close [Ejecución]"
-
-#. ^%-1
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
-msgstr "<bookmark_value>Close;instrucción</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=\"Instrucción Close [Runtime]\">Instrucción Close [Runtime]</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 "Cierra un archivo especificado que se abrió con la instrucción Open."
-
-#. AJyg
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. (ga}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
-"4\n"
-"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr "Close NúmeroArchivo As Integer[, NúmeroArchivo2 As Integer[,...]]"
-
-#. ]]v(
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. %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>NúmeroArchivo:</emph> Cualquier expresión entera que especifique el número de canal de datos que se abrió con la instrucción <emph>Open</emph>."
-
-#. ;OB}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. HWS^
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"16\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. S^If
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
-#. J-xp
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr "Función IsObject [Ejecución]"
-
-#. $_sD
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr "<bookmark_value>IsObject;función</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 Function [Runtime]\">Función IsObject [Ejecución]</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 "Comprueba si una variable de objeto es un objeto OLE. La función devuelve True si la variable es un objeto OLE, en caso contrario devuelve False."
-
-#. M}Hd
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. Ug:7
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr "IsObject (VarObjeto)"
-
-#. U@a\
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. VXS)
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. pE@5
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>VarObjeto:</emph> Cualquier variable que se desee comprobar. Si la variable contiene un objeto OLE, la función devuelve el valor True."
-
-#. 17eZ
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr "Función GetDefaultContext [Ejecución]"
-
-#. 3DR#
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
-"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
-msgstr "<bookmark_value>función GetDefaultContext</bookmark_value>"
-
-#. @Fg6
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Función GetDefaultContext [Ejecución]</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 "Devuelve el contexto predeterminado del servicio de procesos de fábrica, si lo hay; de lo contrario, devuelve una referencia nula."
-
-#. 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 "Esta función en tiempo de ejecución devuelve el contexto del componente predeterminado a usar, si se crean instancias de servicios a través de XmultiServiceFactory. Consulte el capítulo <item type=\"literal\">Professional UNO</item> en la <item type=\"literal\">Developer's Guide</item> en <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> para más información."
-
-#. r/)l
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "Función Atn [Ejecución]"
-
-#. q\jk
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr "<bookmark_value>Atn;función</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=\"Función Atn [Runtime]\">Función Atn [Ejecución]</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 "Función trigonométrica que devuelve la arcotangente de una expresión numérica. El valor de retorno está en el rango de -Pi/2 a +Pi/2."
-
-#. 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 "La arcotangente es la función inversa de la tangente. La función Atn devuelve el ángulo \"Alfa\", expresado en radianes, usando la tangente del mismo. La función también puede devolver el ángulo \"Alfa\" comparando el coeficiente de la longitud del lado que está opuesto al ángulo con la longitud del lado que está adyacente al ángulo en un triángulo rectángulo."
-
-#. 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(lado opuesto al ángulo/lado adyacente al ángulo)= Alfa"
-
-#. 9R-)
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. .rkX
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Atn (Number)"
-msgstr "Atn (Número)"
-
-#. L14@
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. c0f4
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. +c4n
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ]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>Número:</emph> Cualquier expresión numérica que represente la proporción entre dos lados de un triángulo rectángulo. La función Atn devuelve el ángulo correspondiente en radianes (arcotangente)"
-
-#. 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 "Para convertir radianes a grados, multiplique los radianes por 180/pi."
-
-#. _eOA
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "grado=(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=(grado*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 "Pi es aquí la constante fija de la circunferencia, con el valor redondeado de 3,14159."
-
-#. =vZ*
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 El ejemplo siguiente calcula para un triángulo rectángulo"
-
-#. 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 el ángulo Alfa desde la tangente del ángulo Alfa:"
-
-#. 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 redondeado Pi = 3,14159 es una constante predefinida"
-
-#. 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$ (\"Introduzca la longitud del lado adyacente al ángulo: \",\"Adyacente\")"
-
-#. 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$ (\"Introduzca la longitud del lado opuesto al ángulo: \",\"Opuesto\")"
-
-#. 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 \"El ángulo Alfa es\"; (atn (d2/d1) * 180 / Pi); \" grados\""
-
-#. Y]g,
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr "Función Rnd [Ejecución]"
-
-#. 9h1a
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
-"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr "<bookmark_value>Rnd;función</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=\"Función Rnd [Runtime]\">Función Rnd [Ejecución]</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 "Devuelve un número aleatorio entre 0 y 1."
-
-#. =$?*
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "<emph>Sintaxis</emph>:"
-
-#. J]-D
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Rnd [(Expression)]"
-msgstr "Rnd [(Expresión)]"
-
-#. b%Be
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. J.KZ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. 8N^h
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. iT;#
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr "<emph>Expresión:</emph>Cualquier expresión numérica."
-
-#. 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>Omitido:</emph> Devuelve el siguiente número aleatorio de la secuencia."
-
-#. 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 "La función <emph>Rnd</emph> sólo devuelve valores que van de 0 a 1. Para generar enteros aleatorios dentro de un rango determinado, use la fórmula que se incluye en el ejemplo siguiente:"
-
-#. ldKx
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ]a?w
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Número de 1 a 5\""
-
-#. #=!1
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Número de 6 a 8\""
-
-#. FOsi
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Mayor que 8\""
-
-#. U2GQ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Fuera del rango de 1 a 10\""
-
-#. [n%G
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Str Function [Runtime]"
-msgstr "Función Str [Ejecución]"
-
-#. IOtT
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
-"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
-msgstr "<bookmark_value>Str;función</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 Function [Runtime]\">Función Str [Ejecución]</link>"
-
-#. LBCo
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
-"2\n"
-"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr "Convierte una expresión numérica en una cadena."
-
-#. ;N(d
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ZfkW
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "Str (Expression)"
-msgstr "Str (Expresión)"
-
-#. {3YZ
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. #/[J
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. !]6a
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ?qvH
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "<emph>Expresión: </emph>Cualquier expresión numérica."
-
-#. 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 "La función <emph>Str</emph> convierte una variable numérica o el resultado de un cálculo en una cadena. Los números negativos están precedidos por un signo menos. Los números positivos están precedidos por un espacio (en lugar del signo más)."
-
-#. q,*)
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. [*^m
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "System Date and Time"
-msgstr "Fecha y hora del sistema"
-
-#. 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=\"Fecha y hora del sistema\">Fecha y hora del sistema</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 "Las funciones e instrucciones siguientes establecen o devuelven la fecha y hora del sistema."
-
-#. ,NB(
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loops"
-msgstr "Bucles"
-
-#. .^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=\"Loops\">Bucles</link>"
-
-#. @h#c
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
-"2\n"
-"help.text"
-msgid "The following statements execute loops."
-msgstr "Las instrucciones siguientes ejecutan bucles."
-
-#. *sgM
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mathematical Operators"
-msgstr "Operadores matemáticos"
-
-#. 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=\"Operadores matemáticos\">Operadores matemáticos</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 "Los operadores matemáticos siguientes se admiten en $[officename] Basic."
-
-#. 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 "Este capítulo ofrece un resumen rápido de todos los operadores aritméticos que se puede necesitar para realizar cálculos en un programa."
-
-#. :/W3
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Do...Loop Statement [Runtime]"
-msgstr "Instrucción Do...Loop [Ejecución]"
-
-#. 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;instrucción</bookmark_value><bookmark_value>bucle While;Do</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</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 Statement [Runtime]\">Instrucción Do...Loop [Ejecución]</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 "Repite las instrucciones que haya entre Do y Loop mientras la condición sea cierta o hasta que la condición resulte ser cierta."
-
-#. 9@2U
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. 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} condición = cierta]"
-
-#. :`Me
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. ]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 "bloque de instrucciones"
-
-#. 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 "o"
-
-#. #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 "bloque de instrucciones"
-
-#. (%+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 "bloque de instrucciones"
-
-#. +mO!
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
-"14\n"
-"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr "Loop [{While | Until} condición = cierta]"
-
-#. (3f9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
-"help.text"
-msgid "Parameters/Elements"
-msgstr "Parámetros/Elementos"
-
-#. 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>Condición:</emph> Una comparación, expresión numérica o de cadena, que se evalúa como cierta o falsa."
-
-#. 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>Bloque de instrucciones:</emph> Instrucciones que se desee repetir mientras o hasta que la condición resulte ser cierta."
-
-#. 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 "La instrucción <emph>Do...Loop</emph> ejecuta un bucle mientras o hasta que una condición concreta sea cierta. La condición para salir del bucle debe introducirse siguiendo las intrucciones de <emph>Do</emph> o <emph>Loop</emph>. Los ejemplos siguientes son combinaciones válidas:"
-
-#. IPB[
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. hX*9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
-"20\n"
-"help.text"
-msgid "Do While condition = True"
-msgstr "Do While condición = cierta"
-
-#. XMK%
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr "...bloque de instrucciones"
-
-#. @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 "El bloque de instrucciones situado entre Do While y Loop se repite mientras la condición siga siendo cierta."
-
-#. zT*4
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr "Do Until condición = cierta"
-
-#. lq$s
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
-"26\n"
-"help.text"
-msgid "...statement block"
-msgstr "...bloque de instrucciones"
-
-#. 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 "El bloque de instrucciones situado entre Do Until y Loop se repite mientras la condición sea falsa."
-
-#. 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 "...bloque de instrucciones"
-
-#. /}7q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
-"help.text"
-msgid "Loop While condition = True"
-msgstr "Loop While condición = cierta"
-
-#. 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 "El bloque de instrucciones situado entre Do y Loop se repite mientras la condición siga siendo cierta."
-
-#. 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 "...bloque de instrucciones"
-
-#. GB=b
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
-"help.text"
-msgid "Loop Until condition = True"
-msgstr "Loop Until condición = cierta"
-
-#. ?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 "El bloque de instrucciones situado entre Do y Loop se repite hasta que la condición sea cierta."
-
-#. 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 "La instrucción <emph>Exit Do</emph> se utiliza para finalizar el bucle incondicionalmente. Esta instrucción se puede añadir en cualquier parte de una estructura <emph>Do</emph>...<emph>Loop</emph>. También puede definir una condición de salida utilizando la estructura <emph>If...Then</emph> de la manera siguiente:"
-
-#. 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 "instrucciones"
-
-#. Qb]G
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
-"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr "If condición = cierta Then Exit Do"
-
-#. XMQA
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
-"help.text"
-msgid "statements"
-msgstr "instrucciones"
-
-#. 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 "Ejemplo"
-
-#. !\Fi
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oct Function [Runtime]"
-msgstr "Función Oct [Ejecución]"
-
-#. mjyo
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
-msgstr "<bookmark_value>Oct;función</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 Function [Runtime]\">Función Oct [Ejecución]</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 "Devuelve el valor octal de un número."
-
-#. lz4$
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. RI|m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Oct (Number)"
-msgstr "Oct (Número)"
-
-#. =2eN
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. bm]m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. 93{R
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Cualquier expresión numérica que desee convertir en valor octal."
-
-#. qh[G
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. `u63
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr "Cálculo de raíz cuadrada"
-
-#. }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=\"Cálculo de raíz cuadrada\">Cálculo de raíz cuadrada</link>"
-
-#. 7kF7
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Use this function to calculate square roots."
-msgstr "Use esta función para calcular raíces cuadradas."
-
-#. S+*4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateFromIso Function [Runtime]"
-msgstr "Función CdateFromIso [Ejecución]"
-
-#. in.X
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
-msgstr "<bookmark_value>CdateFromIso;función</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=\"Función CdateFromIso [Runtime]\">Función CdateFromIso [Ejecución]</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 "Devuelve el número de fecha interno a partir de una cadena que contiene una fecha en formato ISO."
-
-#. !IH*
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. E3il
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "CDateFromIso(String)"
-msgstr "CDateFromIso(Cadena)"
-
-#. [8nn
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3154367\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. _`..
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3156212\n"
-"6\n"
-"help.text"
-msgid "Internal date number"
-msgstr "Número de fecha interno"
-
-#. F`a0
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Cadena:</emph> Una cadena que contiene una fecha en formato ISO. El año puede tener dos o cuatro dígitos."
-
-#. Y,bJ
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3150439\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 "devuelve 12/31/2002 en el formato de fecha del sistema"
-
-#. [N0}
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"tit\n"
-"help.text"
-msgid "CCur Function [Runtime]"
-msgstr "Función CCur [Ejecución]"
-
-#. /8-(
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
-"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
-msgstr "<bookmark_value>Función CCur</bookmark_value>"
-
-#. z8m-
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Función CCur [Ejecución]</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 "Convierte una expresión de cadena o una expresión numérica en una expresión de moneda. Para los decimales y los símbolos de moneda se utiliza la configuración regional."
-
-#. A::U
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. CP?2
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "CCur(Expression)"
-msgstr "CCur(Expression)"
-
-#. (K]+
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. :]F|
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "Currency"
-msgstr "moneda"
-
-#. ^wEW
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. 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 "Expression: cualquier cadena o expresión numérica que desee convertir."
-
-#. TfF6
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Función Tan [Ejecución]"
-
-#. [S:-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "<bookmark_value>Tan;función</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=\"Función Tan [Runtime]\">Función Tan [Ejecución]</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 "Calcula la tangente de un ángulo. El ángulo se devuelve en radianes."
-
-#. 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 "Usando el ángulo Alfa, la función Tan calcula el coeficiente de la longitud del lado opuesto al ángulo con la longitud del lado adyacente al ángulo en un triángulo rectángulo."
-
-#. 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(Alpha) = lado opuesto al ángulo/lado adyacente al ángulo"
-
-#. %mi1
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 95\G
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
-"help.text"
-msgid "Tan (Number)"
-msgstr "Tan (Número)"
-
-#. ?1w`
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. oh-c
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. ~Uw3
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Cualquier expresión numérica de la que se desee calcular la tangente (en radianes)."
-
-#. 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 "Para convertir grados en radianes, multiplique por pi/180. Para convertir radianes en grados, multiplique por 180/Pi."
-
-#. N69$
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
-"help.text"
-msgid "degrees=(radiant*180)/Pi"
-msgstr "grado=(radianes*180)/pi"
-
-#. [Fi%
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
-"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr "radián=(grado*pi)/180"
-
-#. JKbQ
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "Pi es aproximadamente 3,141593."
-
-#. 7d_A
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 En este ejemplo, la entrada siguiente es posible para un triángulo rectángulo:"
-
-#. $[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 El lado opuesto al ángulo y éste (en grados) para calcular la longitud del lado adyacente al ángulo:"
-
-#. ]^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 es un valor predefinido"
-
-#. 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$ (\"Introduzca la longitud del lado opuesto al ángulo: \",\"opuesto\")"
-
-#. *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$ (\"Escriba el ángulo Alfa (en grados): \",\"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 \"la longitud del lado adyacente al ángulo es\"; (d1 / tan (dAlpha * Pi / 180))"
-
-#. gcZ]
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDate Function [Runtime]"
-msgstr "Función CDate [Ejecución]"
-
-#. }Zs(
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
-"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
-msgstr "<bookmark_value>CDate;función</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 Function [Runtime]\">Función CDate [Ejecución]</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 "Convierte cualquier cadena de caracteres o expresión numérica en un valor de fecha."
-
-#. n(:O
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. JW1h
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
-"help.text"
-msgid "CDate (Expression)"
-msgstr "CDate (Expresión)"
-
-#. O?Gd
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. Jt+q
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Fecha"
-
-#. [k.3
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión de cadena o numérica que desee convertir."
-
-#. 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 "Cuando se convierte una expresión de cadena la fecha y la hora deben introducirse en el formato MM.DD.AAAA HH.MM.SS, como lo definen las convenciones de las funciones <emph>DateValue</emph> y <emph>TimeValue</emph>. En las expresiones numéricas, los valores a la izquierda del decimal representan la fecha, empezando desde el 31 de diciembre de 1899. Los valores a la derecha del decimal representan la hora."
-
-#. Z`fK
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ~3|D
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Events"
-msgstr "Acontecimientos"
-
-#. 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=\"Acciones\">Acciones</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 "Defina asignaciones de acciones para el campo de control o diálogo seleccionados. Las acciones disponibles dependen del tipo de campo de control seleccionado."
-
-#. 8IQ=
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
-"help.text"
-msgid "When receiving focus"
-msgstr "Al recibir el enfoque"
-
-#. 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\">Este evento tiene lugar si un control recibe el foco.</ahelp>"
-
-#. IJ5a
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
-"help.text"
-msgid "When losing focus"
-msgstr "Al cargar el enfoque"
-
-#. [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\">Este evento tiene lugar si un control pierde el foco.</ahelp>"
-
-#. F5-`
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
-"help.text"
-msgid "Key pressed"
-msgstr "Tecla pulsada"
-
-#. 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\">Este evento tiene lugar cuando el usuario pulsa una tecla cuando el campo de control tiene el foco.</ahelp>"
-
-#. 0@=f
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
-"help.text"
-msgid "Key released"
-msgstr "Tecla suelta"
-
-#. 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\">Este evento tiene lugar cuando el usuario suelta una tecla mientras el control tiene el foco.</ahelp>"
-
-#. iIXD
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
-"help.text"
-msgid "Modified"
-msgstr "Modificado"
-
-#. 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\">Este evento tiene lugar si el control pierde el foco y el contenido del control cambia desde que perdió el foco.</ahelp>"
-
-#. gI$B
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
-"help.text"
-msgid "Text modified"
-msgstr "Texto modificado"
-
-#. 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\">Este evento tiene lugar si se introduce o modifica un texto en un campo de entrada.</ahelp>"
-
-#. IQ7U
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
-"help.text"
-msgid "Item status changed"
-msgstr "Estado modificado"
-
-#. |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\">Este evento tiene lugar si el estado del campo de control ha cambiado, por ejemplo, de marcado a desmarcado.</ahelp>"
-
-#. G%=4
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
-"help.text"
-msgid "Mouse inside"
-msgstr "Ratón dentro"
-
-#. @(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\">Este evento tiene lugar cuando el ratón entra en el control.</ahelp>"
-
-#. n08F
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
-"help.text"
-msgid "Mouse moved while key pressed"
-msgstr "Ratón movido con la tecla pulsada"
-
-#. 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\">Este evento tiene lugar cuando el ratón se arrastra con una tecla pulsada.</ahelp>"
-
-#. LZkk
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
-"help.text"
-msgid "Mouse moved"
-msgstr "Ratón movido"
-
-#. ~{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\">Este evento tiene lugar cuando el ratón se mueve sobre el control.</ahelp>"
-
-#. ^-)l
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
-"help.text"
-msgid "Mouse button pressed"
-msgstr "Botón del ratón pulsado"
-
-#. 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\">Este evento tiene lugar cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
-
-#. zyg$
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
-"help.text"
-msgid "Mouse button released"
-msgstr "Botón del ratón soltado"
-
-#. 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\">Este evento tiene lugar cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
-
-#. uaC/
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
-"help.text"
-msgid "Mouse outside"
-msgstr "Ratón fuera"
-
-#. 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\">Este evento tiene lugar cuando el ratón sale del control.</ahelp>"
-
-#. lReL
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
-"help.text"
-msgid "While adjusting"
-msgstr "Al ajustar"
-
-#. |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\">Este evento tiene lugar cuando se arrastra una barra de desplazamiento.</ahelp>"
-
-#. :Hll
-#: 01050200.xhp
-msgctxt ""
-"01050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr "Ventana Pila de llamada (Llamadas)"
-
-#. 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=\"Call Stack Window (Calls)\">Ventana Pila de llamada (Llamadas)</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\">Muestra la secuencia de procedimientos y funciones durante la ejecución de un programa.</ahelp> La <emph>Pila de llamada</emph> permite supervisar la secuencia de procedimientos y funciones durante la ejecución de un programa. Los procedimientos y funciones se muestran de abajo a arriba con la llamada a la función o procedimiento más reciente en la parte superior de la lista."
-
-#. C5SF
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "Función TwipsPerPixelY [Ejecución]"
-
-#. qWke
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelY;función</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 Function [Runtime]\">Función TwipsPerPixelY [Ejecución]</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 "Devuelve el número de twips que representan la altura de un píxel."
-
-#. bZ,I
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. @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 "Valor de retorno:"
-
-#. MU~A
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. :!j*
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Tamaño de píxel\""
-
-#. $f[{
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr "Conversión ASCII/ANSI en cadenas"
-
-#. 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 Conversion in Strings\">Conversión ASCII/ANSI en cadenas</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 "Las funciones siguientes convierten cadenas a y desde código ASCII o ANSI."
-
-#. bJmh
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr "Instrucción With [Ejecución]"
-
-#. ,Z,]
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "<bookmark_value>With;instrucción</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 Statement [Runtime]\">Instrucción With [Ejecución]</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 "Define un objeto como el predeterminado. A menos que se declare otro nombre de objeto, todas las propiedades y métodos hacen referencia al objeto predeterminado hasta que se llega a la instrucción End With."
-
-#. N)0;
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 5#@T
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr "With Objeto Bloque de instrucciones End With"
-
-#. [Was
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Use <emph>With</emph> y <emph>End With</emph> si tiene varias propiedades o métodos para un único objeto."
-
-#. !hRV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DatePart Function [Runtime]"
-msgstr "Función DatePart [Ejecución]"
-
-#. 1P:_
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"bm_id249946\n"
-"help.text"
-msgid "<bookmark_value>DatePart function</bookmark_value>"
-msgstr "<bookmark_value>Función DatePart</bookmark_value>"
-
-#. !yPV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030130.xhp\">Función DatePart [Ejecución]</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 "La función DatePart devuelve una parte concreta de una fecha."
-
-#. /)oc
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. l{?W
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
-msgstr "DatePart (Add, Date [, Week_start [, Year_start]])"
-
-#. %#$1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. Yb[S
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr "Variante que contiene una fecha."
-
-#. b:?M
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. $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>Add</emph>: expresión de cadena de la tabla siguiente que especifica el intervalo de fechas."
-
-#. DL=1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10604\n"
-"help.text"
-msgid "<emph>Date</emph> - The date from which the result is calculated."
-msgstr "<emph>Date</emph>: fecha a partir de la cual se calcula el resultado."
-
-#. NiG(
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10611\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. j35K
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr "Instrucción DefSng [Ejecución]"
-
-#. `I:S
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
-"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr "<bookmark_value>Instrucción DefSng</bookmark_value>"
-
-#. aQb3
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Instrucción DefSng [Ejecución]</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 "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefSng establece el tipo de variable predeterminado según un intervalo de letras."
-
-#. uYgM
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. `k8]
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-
-#. _2E+
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
-
-#. !%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> palabra clave que define el tipo de variable predeterminado."
-
-#. =.wI
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
-
-#. `O\:
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "<emph>DefSng:</emph> simple"
-
-#. Bq~%
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Cr3[
-#: 03101130.xhp
-#, fuzzy
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. [\`7
-#: 03101130.xhp
-#, fuzzy
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
-msgstr "sSng=Single REM sSng es una variable simple implícita"
-
-#. HBzx
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"tit\n"
-"help.text"
-msgid "LTrim Function [Runtime]"
-msgstr "Función LTrim [Ejecución]"
-
-#. zrj8
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
-"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
-msgstr "<bookmark_value>LTrim;función</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 Function [Runtime]\">Función LTrim [Ejecución]</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 "Elimina todos los espacios de relleno del principio de una expresión de cadena."
-
-#. E=YQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. +|8Z
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "LTrim (Text As String)"
-msgstr "LTrim (Texto As String)"
-
-#. ;Ze4
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. Nx^I
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. [RQQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. yBn[
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Texto:</emph> Cualquier expresión de cadena."
-
-#. #/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 "Esta función se utiliza para eliminar los espacios que haya al principio de una expresión de cadena."
-
-#. 6dZt
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. fZPT
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Statement [Runtime]"
-msgstr "Instrucción Print [Ejecución]"
-
-#. )qPs
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
-"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "<bookmark_value>Print;instrucción</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=\"Instrucción Print [Runtime]\">Instrucción Print [Runtime]</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 "Saca las cadenas o expresiones numericas especificadas a un diálogo o a un archivo."
-
-#. 1hZ.
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ,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 [#FileName,] Expresión1[{;|,} [Spc(Número As Integer);] [Tab(pos As Integer);] [Expresión2[...]]"
-
-#. bM9_
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetros:"
-
-#. 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>FileName:</emph> Cualquier expresión numérica que contenga el numero de archivo que sea fijada por la instrucción Open del archivo respectivo."
-
-#. @|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>Expresión</emph>: Cualquier expresión numérica o de cadena que imprimir. Si hay varias expresiones, pueden separarse con caracteres de punto y coma. Si se separan con una coma, las expresiones se sangran hasta la siguiente posición de tabulación. Las posiciones de tabulación no pueden ajustarse."
-
-#. 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>Número</emph>: Cantidad de espacios que insertará la función <emph>Spc</emph>."
-
-#. 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>Pos</emph>: Los espacios se insertan hasta la posición especificada."
-
-#. 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 "Si aparece un carácter de punto y coma o una coma tras la última expresión que imprimir, $[officename] Basic almacena el texto en una memoria intermedia interna y continúa la ejecución del programa sin imprimir. Cuando se encuentra otra instrucción Print sin un carácter de punto y coma o una coma al final, se imprime todo el texto en una operación."
-
-#. 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 "Las expresiones numéricas positivas se imprimen precedidas por un espacio. Las expresiones negativas se imprimen precedidas por un signo menos. Si se excede un rango determinado para valores de coma flotante, la expresión numérica respectiva se imprime en notación exponencial."
-
-#. ?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 "Si la expresión que imprimir excede una longitud determinada, la pantalla la ajustará automáticamente hasta la línea siguiente."
-
-#. 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 "La función Tab se puede insertar, incluida entre caracteres de punto y coma, entre argumentos para sangrar la salida a una posición determinada; también se puede usar la función <emph>Spc</emph> para insertar un número determinado de espacios."
-
-#. kCI%
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Q[;^
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Control and Dialog Properties"
-msgstr "Propiedades de los campos de control y diálogos"
-
-#. ]#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>campos de control; propiedades</bookmark_value><bookmark_value>propiedades; campos de control</bookmark_value><bookmark_value>propiedades; diálogos</bookmark_value><bookmark_value>diálogos; propiedades</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=\"Propiedades de los campos de control y diálogos\">Propiedades de los campos de control y diálogos</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=\".\">Especifica las propiedades del diálogo o el control seleccionados.</ahelp> Debe estar en modo diseño para utilizar este comando."
-
-#. Umir
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
-"help.text"
-msgid "Entering Data in the Properties Dialog"
-msgstr "Introducción de datos en el diálogo Propiedades"
-
-#. |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 "Las combinaciones de tecla siguientes se utilizan para introducir datos en campos multilínea o en cuadros combinados del diálogo <emph>Propiedades</emph>:"
-
-#. S\Qj
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
-"help.text"
-msgid "Keys"
-msgstr "<emph>Teclas</emph>"
-
-#. D`[n
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
-"help.text"
-msgid "Effects"
-msgstr "<emph>Efecto</emph>"
-
-#. VN5[
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
-"help.text"
-msgid "Alt+Down Arrow"
-msgstr "(Alt)+(Flecha abajo)"
-
-#. fEOJ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
-"help.text"
-msgid "Opens a combo box"
-msgstr "Abre un cuadro combinado"
-
-#. Cb`/
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
-"help.text"
-msgid "Alt+Up Arrow"
-msgstr "(Alt)+(Flecha arriba)"
-
-#. K}L}
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
-"help.text"
-msgid "Closes a combo box"
-msgstr "Cierra un cuadro combinado"
-
-#. +Uv9
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3154511\n"
-"8\n"
-"help.text"
-msgid "Shift+Enter"
-msgstr "(Mayús)+(Entrar)"
-
-#. *0oQ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146971\n"
-"9\n"
-"help.text"
-msgid "Inserts a line break in multiline fields."
-msgstr "Inserta un salto de línea en campos multilínea."
-
-#. W-6i
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
-"help.text"
-msgid "(UpArrow)"
-msgstr "(Flecha arriba)"
-
-#. Hv1-
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
-"help.text"
-msgid "Goes to the previous line."
-msgstr "Va a la línea anterior."
-
-#. SLl7
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
-"help.text"
-msgid "(DownArrow)"
-msgstr "(Flecha abajo)"
-
-#. spSZ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
-"help.text"
-msgid "Goes to the next line."
-msgstr "Va a la línea siguiente."
-
-#. cbH!
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
-"help.text"
-msgid "Enter"
-msgstr "(Entrar)"
-
-#. 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 "Aplica los cambios realizados en un campo y sitúa el cursor en el campo siguiente."
-
-#. (n`h
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trigonometric Functions"
-msgstr "Funciones trigonométricas"
-
-#. 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=\"Funciones trigonométricas\">Funciones trigonométricas</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 "Las funciones trigonométricas siguientes se admiten en $[officename] Basic."
-
-#. ^ei1
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr "Función CVErr [Ejecución]"
-
-#. dCVe
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
-"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr "<bookmark_value>Función CVErr</bookmark_value>"
-
-#. =_Mc
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Función CVErr [Ejecución]</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 "Convierte una expresión de cadena o una expresión numérica en una expresión variant del subtipo \"Error\"."
-
-#. TN3\
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ?[2V
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVErr(Expression)"
-msgstr "CVErr(Expression)"
-
-#. 6j/J
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 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 "Parámetro:"
-
-#. )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 "Expression: cualquier cadena o expresión numérica que desee convertir."
-
-#. WSFa
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fix Function [Runtime]"
-msgstr "Función Fix [Ejecución]"
-
-#. l$91
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr "<bookmark_value>Fix;función</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=\"Función Fix [Runtime]\">Función Fix [Ejecución]</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 "Devuelve el valor entero de una expresión numérica eliminando la parte fraccionaria del número."
-
-#. irMA
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 8#o#
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "Fix (Expression)"
-msgstr "Fix (Expresión)"
-
-#. $(|D
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. jT:=
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. Wqkp
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Expresión numérica de la que se desee devolver su valor entero."
-
-#. e^=*
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve 3."
-
-#. ;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 devuelve 0."
-
-#. 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 devuelve -3."
-
-#. YTKq
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Jumps"
-msgstr "Saltos"
-
-#. 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=\"Jumps\">Saltos</link>"
-
-#. R#RU
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
-"2\n"
-"help.text"
-msgid "The following statements execute jumps."
-msgstr "Las instrucciones siguientes ejecutan saltos."
-
-#. n;)I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr "Función CreateUnoStruct [Ejecución]"
-
-#. 502o
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoStruct;función</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 Function [Runtime]\">Función CreateUnoStruct [Ejecución]</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=\".\">Crea un ejemplo de estructura de tipo Uno.</ahelp>"
-
-#. ZwlF
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
-"3\n"
-"help.text"
-msgid "Use the following structure for your statement:"
-msgstr "Use la estructura siguiente para la instrucción:"
-
-#. 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 "Sintaxis:"
-
-#. 9E`I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3155341\n"
-"6\n"
-"help.text"
-msgid "oStruct = CreateUnoStruct( Uno type name )"
-msgstr "oStruct = CreateUnoStruct( nombre de tipo Uno )"
-
-#. ]woP
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 "Instrucción Time [Ejecución]"
-
-#. x*lu
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Time statement</bookmark_value>"
-msgstr "<bookmark_value>Time;función</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\">Instrucción Time [Ejecución]</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 "Esta función devuelve la hora actual del sistema como cadena en el formato \"HH:MM:SS\"."
-
-#. a@V8
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Parámetros:"
-
-#. 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 "Texto: Cualquier expresión de cadena que especifique la hora nueva en el formato \"HH:MM:SS\"."
-
-#. @)s_
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145173\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"La hora actual es\""
-
-#. ]$C(
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr "Función CreateUnoDialog [Ejecución]"
-
-#. 3*oC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoDialog;función</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 Function [Runtime]\">Función CreateUnoDialog [Ejecución]</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 "Crea un objeto Basic Uno que representa un control de diálogo Uno durante el tiempo de ejecución de Basic."
-
-#. Ykf@
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3153750\n"
-"3\n"
-"help.text"
-msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
-msgstr "Los diálogos se definen en las bibliotecas de diálogos. Para mostrar un diálogo, debe crearse un diálogo \"vivo\" desde la biblioteca."
-
-#. 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 "Consulte <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ejemplos\">Ejemplos</link>."
-
-#. [K\b
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Ejemplo:"
-
-#. hac8
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
-"help.text"
-msgid "' Get dialog description from the dialog library"
-msgstr "' Obtener descripción de diálogo de la biblioteca de diálogos"
-
-#. 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 "' generar diálogo \"vivo\""
-
-#. .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 "' mostrar diálogo \"vivo\""
-
-#. 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 "Función IsEmpty [Ejecución]"
-
-#. pqV.
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
-"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
-msgstr "<bookmark_value>IsEmpty;función</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 Function [Runtime]\">Función IsEmpty [Ejecución]</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 "Comprueba si una variable de tipo variante contiene el valor Empty (vacío) que indica que la variable no se ha inicializado."
-
-#. }mrZ
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. x*F2
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "IsEmpty (Var)"
-msgstr "IsEmpty (Var)"
-
-#. w}(z
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. r])T
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. SphW
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ,us0
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154347\n"
-"8\n"
-"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
-msgstr "<emph>Var:</emph> Cualquier expresión que se desee comprobar. Si la variante contiene el valor Empty, la función devuelve True, en caso contrario devuelve False."
-
-#. Fucq
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Devuelve True"
-
-#. }+5~
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Time Values"
-msgstr "Conversión de valores de hora"
-
-#. 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=\"Conversión de valores de hora\">Conversión de valores de hora</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 "Las funciones siguientes convierten valores de hora para calcular números."
-
-#. lJ[z
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CLng Function [Runtime]"
-msgstr "Función CLng [Ejecución]"
-
-#. Oyf~
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "<bookmark_value>CLng;función</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 Function [Runtime]\">Función CLng [Ejecución]</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 "Convierte cualquier expresión de cadena o numérica en un entero largo."
-
-#. .*c}
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. qL-M
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "CLng (Expression)"
-msgstr "CLng (Expresión)"
-
-#. ffak
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. ;d)Q
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. =1Th
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión numérica que desee convertir. Si <emph>Expresión</emph> está fuera del rango de enteros largos válido de -2.147.483.648 y 2.147.483.647, $[officename] Basic devuelve un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
-
-#. 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 "Esta función siempre redondea la parte fraccional de un número al entero más cercano."
-
-#. tiiv
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. RtH#
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "Barra de herramientas de macros"
-
-#. 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>barras de herramientas; Basic IDE</bookmark_value><bookmark_value>barra de funciones; macros</bookmark_value><bookmark_value>macros; barra de funciones</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=\"Macro Toolbar\">Barra de herramientas de macros</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\">La <emph>Barra de herramientas de macros</emph> contiene órdenes para crear, editar y ejecutar macros.</ahelp>"
-
-#. ~lN^
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr "Operador \"-\" [Ejecución]"
-
-#. cM=j
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
-"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>operador \"-\";operadores matemáticos</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\">Operador \"-\" [Ejecución]</link>"
-
-#. k\GP
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
-"2\n"
-"help.text"
-msgid "Subtracts two values."
-msgstr "Resta dos valores."
-
-#. S-,K
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ?+88
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 - Expression2"
-msgstr "Resultado = Expresión1 - Expresión2"
-
-#. f0KK
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Resultado: Cualquier expresión numérica que contenga el resultado de la resta."
-
-#. 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 "Expresión1, Expresión2: Cualquier expresión numérica que se desee restar."
-
-#. NI[E
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. G:E@
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "Función TimeSerial [Ejecución]"
-
-#. R4*]
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "<bookmark_value>TimeSerial;función</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=\"Función TimeSerial [Runtime]\">Función TimeSerial [Ejecución]</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 "Calcula un valor de hora serie para los parámetros de hora, minuto y segundo especificados que se hayan pasado como valores numéricos. También se puede usar este valor para calcular la diferencia entre dos horas."
-
-#. 57Q3
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ?bZl
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3150792\n"
-"5\n"
-"help.text"
-msgid "TimeSerial (hour, minute, second)"
-msgstr "TimeSerial (hora, minuto, segundo)"
-
-#. g{xt
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. vrWO
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
-"7\n"
-"help.text"
-msgid "Date"
-msgstr "Fecha"
-
-#. j*\B
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>hora:</emph> Cualquier expresión entera que indique la hora utilizada para determinar el valor de hora serie. Valores válidos: 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>minuto:</emph> Cualquier expresión entera que indique el minuto de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores que excedan este rango, en que el número de minutos afecta al valor de hora."
-
-#. 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>segundo:</emph> Cualquier expresión entera que indique el segundo de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores que excedan este rango, en que el número de segundos afecta al valor de minuto."
-
-#. F($s
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>Ejemplos:</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 se corresponde con 11, 55, 45"
-
-#. -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 se corresponde con 13, 2, 45"
-
-#. `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 se corresponde con 12, 19, 58"
-
-#. 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 se corresponde con 12, 21, 4"
-
-#. 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 "La función TimeSerial se puede usar para convertir cualquier hora en un valor simple que se puede usar para calcular diferencias entre horas."
-
-#. 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 "La función TimeSerial devuelve el tipo de datos Variante con VarType 7 (Fecha). Este valor se almacena internamente como número de precisión doble entre 0 y 0,9999999999. A diferencia de lo que ocurre con las funciones DateSerial o DateValue, en las que los valores de fecha serie se calculan como días relativos a una fecha fija, con los valores que devuelve la función TimeSerial se pueden realizar cálculos pero no evaluarlos."
-
-#. )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 "En la función TimeValue puede pasarse una cadena como parámetro que contiene la hora. Sin embargo, en la función TimeSerial pueden pasarse los parámetros individuales (hora, minuto, segundo) como expresiones numéricas independientes."
-
-#. q14B
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ]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,\"Hora como número\""
-
-#. 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,\"Hora con formato\""
-
-#. Hm8-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadores de comparación"
-
-#. \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=\"Comparison Operators\">Operadores de comparación</link>"
-
-#. sZyA
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Los operadores de comparación disponibles se describen aquí."
-
-#. E(so
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Condition Statements"
-msgstr "Instrucciones condicionales"
-
-#. 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=\"Condition Statements\">Instrucciones condicionales</link>"
-
-#. (]8=
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"par_id3153750\n"
-"2\n"
-"help.text"
-msgid "The following statements are based on conditions."
-msgstr "Las instrucciones siguientes se basan en condiciones."
-
-#. 1xIk
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"tit\n"
-"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "Función CByte [Ejecución]"
-
-#. X28J
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>CByte function</bookmark_value>"
-msgstr "<bookmark_value>CByte;función</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 Function [Runtime]\">Función CByte [Ejecución]</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 "Convierte una cadena o expresión numérica al tipo Byte."
-
-#. TK%f
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 7dEs
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Cbyte( expression )"
-msgstr "Cbyte( expresión )"
-
-#. J:K[
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. H[:U
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "Byte"
-msgstr "Byte"
-
-#. ,Auk
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Una cadena en una expresión numérica."
-
-#. ZyC`
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "InputBox Function [Runtime]"
-msgstr "Función InputBox [Ejecución]"
-
-#. PvMt
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
-"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "<bookmark_value>InputBox;función</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=\"Función InputBox [Runtime]\">Función InputBox [Runtime]</link>"
-
-#. :kQq
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151262\n"
-"2\n"
-"help.text"
-msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
-msgstr "Muestra un indicador en un diálogo en el que el usuario puede introducir texto. La entrada se asigna a una variable."
-
-#. 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 "La instrucción <emph>InputBox</emph> es un método cómodo para introducir texto a través de un diálogo. Confirme la entrada pulsando Aceptar o la tecla Retorno. La entrada se devuelve como valor de retorno de la función. Si se cierra el diálogo con Cancelar, <emph>InputBox</emph> devuelve una cadena de longitud cero (\"\")."
-
-#. EQI3
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 (Mensaje As String[, Título As String[, Predeterminado As String[, pos_x As Integer, pos_y As Integer]]]])"
-
-#. _Z[H
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. AyIy
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. B\A,
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
-"8\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. *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>Mensaje</emph>: Expresión de cadena que se muestra como mensaje en el cuadro de diálogo."
-
-#. %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>Título</emph>: Expresión de cadena que se muestra en la barra de título del cuadro de diálogo."
-
-#. 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>Predeterminado</emph>: Expresión de cadena que se muestra en el cuadro de texto como valor predeterminado si no se introduce nada."
-
-#. 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>pos_x</emph>: Expresión entera que especifica la posición horizontal del diálogo. La posición es una coordenada absoluta y no hace referencia a la ventana de la aplicación de office."
-
-#. 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>pos_y</emph>: Expresión entera que especifica la posición vertical del diálogo. La posición es una coordenada absoluta y no hace referencia a la ventana de la aplicación de office."
-
-#. 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 "Si se omiten <emph>pos_x</emph> y <emph>pos_y</emph>, el diálogo aparece centrado en la pantalla. La posición se especifica en <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
-
-#. =3xd
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149456\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. -05a
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3154367\n"
-"18\n"
-"help.text"
-msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-msgstr "sTexto = InputBox (\"Escriba una frase:\",\"Estimado usuario\")"
-
-#. duBi
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151042\n"
-"19\n"
-"help.text"
-msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-msgstr "MsgBox ( sTexto , 64, \"Confirmación de frase\")"
-
-#. I$q,
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"tit\n"
-"help.text"
-msgid "AND Operator [Runtime]"
-msgstr "Operador And [Ejecución]"
-
-#. /FuX
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"bm_id3146117\n"
-"help.text"
-msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>And;operadores lógicos</bookmark_value><bookmark_value>AND</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=\"Operador And [Runtime]\">Operador And [Ejecución]</link>"
-
-#. SDE%
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3143268\n"
-"2\n"
-"help.text"
-msgid "Logically combines two expressions."
-msgstr "Combina dos expresiones de manera lógica."
-
-#. ;/X;
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3147574\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 6|71
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3156344\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 And Expression2"
-msgstr "Resultado = Expresión1 And Expresión2"
-
-#. hfY.
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3148946\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. =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>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la combinación."
-
-#. 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>Expresión1, Expresión2:</emph> Las expresiones que se desee combinar."
-
-#. 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 "Las expresiones lógicas combinadas con AND sólo devuelven el valor <emph>True</emph> si ambas se evalúan como <emph>True</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>True</emph> AND <emph>True</emph> devuelve <emph>True</emph>; para todas las demás combinaciones el resultado es <emph>False</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 "El operador AND también lleva a cabo comparaciones entre bits situados en la misma posición en dos expresiones numéricas."
-
-#. ={l1
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3153727\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ~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 devuelve -1"
-
-#. 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 devuelve 0"
-
-#. 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 devuelve 0"
-
-#. |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 devuelve 0"
-
-#. $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 devuelve 8 debido al resultado de la combinación entre bits AND de ambos argumentos"
-
-#. Zm?r
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr "Programación con $[officename] Basic"
-
-#. 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=\"Programación con $[officename] Basic\">Programación con $[officename] Basic </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 "Aquí es donde encontrará información general sobre cómo trabajar con macros y $[officename] Basic."
-
-#. Z}m2
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"tit\n"
-"help.text"
-msgid "Declare Statement [Runtime]"
-msgstr "Instrucción Declare [Ejecución]"
-
-#. w28/
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"bm_id3148473\n"
-"help.text"
-msgid "<bookmark_value>Declare statement</bookmark_value>"
-msgstr "<bookmark_value>Declare;instrucción</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 Statement [Runtime]\">Instrucción Declare [Ejecución]</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 (Biblioteca de enlace dinámico)</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 "Declara y define una subrutina en un archivo DLL que se desee ejecutar desde $[officename] Basic."
-
-#. 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 "Consulte también: <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 "Sintaxis:"
-
-#. 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} Nombre Lib \"NombreBiblioteca\" [Alias \"NombreAlias\"] [Parámetro] [As Tipo]"
-
-#. ^,Dx
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Nombre:</emph> nombre distinto al definido en la DLL para llamar a la subrutina desde $[officename] Basic."
-
-#. 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>NombreAlias</emph>: Nombre de la subrutina como se define en la DLL."
-
-#. 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>NombreBiblioteca:</emph> Archivo o nombre del sistema de la DLL. Esta biblioteca se carga automáticamente la primera vez que se utiliza la función."
-
-#. 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>ListaArgumentos:</emph> lista de parámetros que representan argumentos que se pasan al procedimiento cuando se accede a él. El tipo y número de parámetros depende del procedimiento que se ejecute."
-
-#. 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>Tipo:</emph> define el tipo de datos del valor que devuelve un procedimiento de función. Puede excluir este parámetro si se introduce un carácter de declaración de tipo después del nombre."
-
-#. 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 "Para pasar un parámetro a una subrutina como valor en lugar de como referencia, el parámetro debe estar indicado con la palabra clave <emph>ByVal</emph>."
-
-#. q%r1
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153951\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. EP-R
-#: 03120400.xhp
-msgctxt ""
-"03120400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Length"
-msgstr "Edición de longitud de cadena"
-
-#. 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=\"Editing String Length\">Edición de longitud de cadena</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 "Las funciones siguientes determinan las longitudes y comparan cadenas."
-
-#. /cHw
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr "Operador Or [Ejecución]"
-
-#. G6Ja
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"bm_id3150986\n"
-"help.text"
-msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Or;operadores lógicos</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=\"Operador Or [Runtime]\">Operador Or [Ejecución]</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 "Lleva a cabo una disyunción lógica OR en dos expresiones."
-
-#. .%ji
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. r`l7
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Or Expression2"
-msgstr "Resultado = Expresión1 Or Expresión2"
-
-#. Oj6V
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. }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 "Resultado: Cualquier variable numérica que contenga el resultado de la disyunción."
-
-#. 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>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea comparar."
-
-#. *-`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 "Una disyunción OR de dos expresiones lógicas devuelve True si al menos una de las expresiones de la comparación es 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 "Una comparación entre bits activa un bit en el resultado si éste está activado en al menos una de las dos expresiones."
-
-#. BZP-
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3161831\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. wkj8
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Format Function [Runtime]"
-msgstr "Función Format [Ejecución]"
-
-#. s@mx
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>Format function</bookmark_value>"
-msgstr "<bookmark_value>Format;función</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 Function [Runtime]\">Función Format [Ejecución]</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 "Convierte un número en una cadena y después le da formato de acuerdo con las especificaciones indicadas."
-
-#. Q[=m
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. aJ0U
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153527\n"
-"5\n"
-"help.text"
-msgid "Format (Number [, Format As String])"
-msgstr "Format (Número [, Formato As String])"
-
-#. :9@2
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. TC{g
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. U,?I
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Expresión numérica que se desee convertir en cadena con formato."
-
-#. 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>Formato:</emph> Cadena que especifique el código de formato para el número. Si se omite este parámetro, la función Format actúa como la función <emph>Str</emph>."
-
-#. IOQw
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
-"help.text"
-msgid "Formatting Codes"
-msgstr "Códigos de formato"
-
-#. 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 "La lista siguiente describe los códigos que permiten dar formato a un número:"
-
-#. -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> Si <emph>Número</emph> tiene un dígito en la posición del 0 en el código de formato, se muestra aquél, en caso contrario se muestra el valor cero."
-
-#. 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 "Si la expresión <emph>Número</emph> tiene menos dígitos que el número de ceros del código de formato (a cualquier lado del decimal), se muestran ceros de relleno al principio o al final. Si el número tiene más dígitos a la izquierda del separador decimal que la cantidad de ceros que hay en el código de formato, los dígitos adicionales se muestran sin modificarse."
-
-#. *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 "Las posiciones decimales del número se redondean de acuerdo con el número de ceros que aparecen después del separador decimal en el código de <emph>Format</emph>."
-
-#. 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> Si <emph>Número</emph> contiene un dígito en la posición del comodín # del código de <emph>Format</emph>, el dígito se muestra, en caso contrario no se muestra nada en esa posició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 "Este símbolo funciona como 0, excepto porque los ceros de relleno anteriores o posteriores no se muestran si hay más caracteres # en el código de formato que dígitos tiene el número. Sólo se muestran los dígitos pertinentes del número."
-
-#. \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> El comodín para decimales determina el número de espacios decimales a izquierda y derecha del separador decimal."
-
-#. ]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 "Si el código de formato sólo contiene comodines # a la izquierda de este símbolo, los números menores que 1 empiezan con un separador decimal. Para que se muestre siempre un cero de relleno con números fraccionarios, use 0 como comodín para el primer dígito de la izquierda del separador decimal."
-
-#. 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> Multiplica el número por 100 e inserta el signo de porcentaje (%) en la posición en que éste aparece en el código de formato."
-
-#. )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 "E- E+ e- e+ : Si el código de formato contiene por lo menos un comodín de dígito (0 o #) a la derecha del símbolo E-, E+, e- o e+, al número se le aplica el formato científico o exponencial. Las letras E o e se insertan entre el número y el exponente. El número de comodines para dígitos a la derecha del símbolo determina el número de dígitos en el exponente."
-
-#. 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 "Si el exponente es negativo, se muestra un signo menos justo antes de un exponente con E-, E+, e-, e+. Si el exponente es positivo, sólo se muestra un signo más antes de exponentes con E+ o e+."
-
-#. ^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 "El delimitador de miles se muestra si el código de formato contiene el delimitador incluido por los comodines de dígitos (0 o #)."
-
-#. \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 "El uso de un punto como separador de miles y decimal depende del valor de configuración regional. El carácter real que se muestra como separador decimal depende del formato numérico de la configuración del sistema. Los ejemplos que se muestran aquí asumen que la configuración regional es \"US\"."
-
-#. 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 "- + $ ( ) espacio : Los signos más (+), menos (-), dólar ($), espacio o paréntesis que se introducen directamente en el código del formato se muestran como caracteres literales."
-
-#. ,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 "Para que se muestren caracteres distintos de los que se listan aquí, es necesario precederlos por una barra oblicua inversa (\\) o incluirlos entre comillas (\" \")."
-
-#. 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 "\\ : La barra oblicua inversa muestra el carácter siguiente del código del formato."
-
-#. 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 "Los caracteres del código de formato que tienen un significado especial sólo pueden mostrarse como literales si están precedidos por una barra oblicua inversa. La propia barra oblicua inversa no puede mostrarse a menos que se introduzca dos veces (\\\\) en el código de formato."
-
-#. 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 "Los caracteres que deben precederse por una barra oblicua inversa en el código de formato para que se muestren como caracteres literales son: caracteres de formato de hora y fecha (a, c, d, h, m, n, p, q, s, t, w, y, /, :), caracteres de formato numérico (#, 0, %, E, e, coma, punto) y caracteres de formato de cadena (@, &, <, >, !)."
-
-#. 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 "También se puede usar los formatos numéricos predefinidos siguientes. Excepto para \"General Number\" todos los códigos de formato predefinidos devuelven el número con dos espacios decimales."
-
-#. 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 "Si se usan formatos predefinidos, el nombre del formato debe incluirse entre comillas."
-
-#. !uN6
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149377\n"
-"32\n"
-"help.text"
-msgid "Predefined format"
-msgstr "Formatos predefinidos"
-
-#. !/4I
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3154730\n"
-"33\n"
-"help.text"
-msgid "<emph>General Number:</emph> Numbers are displayed as entered."
-msgstr "<emph>General Number:</emph> Los números se muestran tal como se han introducido."
-
-#. 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>Currency:</emph> Inserta un signo de dólar delante del número e incluye los números negativos entre paréntesis."
-
-#. #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>Fixed:</emph> Muestra al menos un dígito delante del separador decimal."
-
-#. 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>Standard:</emph> Muestra números con un separador de miles."
-
-#. 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>Percent:</emph> Multiplica el número por 100 y le añade un signo de porcentaje."
-
-#. \.{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>Scientific:</emph> Muestra números en formato científico (por ejemplo, 1,00E+03 para 1000)."
-
-#. 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 "Un código de formato puede dividirse en tres secciones que se separan por caracteres de punto y coma. La primera parte define el formato para valores positivos, la segunda para valores negativos y la tercera para cero. Si sólo se especifica un código de formato, se aplica a todos los números."
-
-#. Rz+M
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"40\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Utilice siempre el punto como delimitador de decimales al introducir números en el código fuente de Basic."
-
-#. `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 por ejemplo, muestra 6,328.20 en entorno local inglés y 6.328,20 en entorno local alemá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 "Esta sección describe la estructura del Basic IDE."
-
-#. 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\">Abre el IDE de StarOffice Basic en la que se puede escribir y editar macros.</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 "Órdenes del menú contextual de las fichas de módulos"
-
-#. VY?,
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
-"6\n"
-"help.text"
-msgid "Insert"
-msgstr "Insertar"
-
-#. !!P-
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3151074\n"
-"8\n"
-"help.text"
-msgid "Module"
-msgstr "Módulo"
-
-#. 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\">Inserta un nuevo módulo en la biblioteca actual.</ahelp>"
-
-#. `76?
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
-"help.text"
-msgid "Dialog"
-msgstr "Diálogo"
-
-#. 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\">Inserta un nuevo diálogo en la biblioteca actual.</ahelp>"
-
-#. n^7(
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3155602\n"
-"12\n"
-"help.text"
-msgid "Delete"
-msgstr "Borrar"
-
-#. 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\">Elimina el módulo seleccionado.</ahelp>"
-
-#. aX|H
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3149018\n"
-"14\n"
-"help.text"
-msgid "Rename"
-msgstr "Cambiar nombre"
-
-#. 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\">Cambia el nombre del módulo actual in situ.</ahelp>"
-
-#. 8-.;
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3150043\n"
-"16\n"
-"help.text"
-msgid "Hide"
-msgstr "Ocultar"
-
-#. 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\">Oculta el módulo actual.</ahelp>"
-
-#. \/`\
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3163805\n"
-"18\n"
-"help.text"
-msgid "Modules"
-msgstr "Módulos"
-
-#. 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 "Abre el diálogo <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Organizar Macros\"><emph>Organizar Macros</emph></link>."
-
-#. !=:c
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "Función DateDiff [Ejecución]"
-
-#. mwyq
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"bm_id6134830\n"
-"help.text"
-msgid "<bookmark_value>DateDiff function</bookmark_value>"
-msgstr "<bookmark_value>Función DateDiff</bookmark_value>"
-
-#. ,*de
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Función DateDiff [Ejecución]</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 "Devuelve el número de intervalos de fecha entre dos valores de fecha determinados."
-
-#. B60f
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ;ixa
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-msgstr "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-
-#. fkQW
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. qb0[
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "A number."
-msgstr "un número."
-
-#. /2X1
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10652\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Add</emph>: expresión de cadena de la tabla siguiente que especifica el intervalo de fechas."
-
-#. ):rQ
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10664\n"
-"help.text"
-msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
-msgstr "<emph>Date1, Date2</emph>: los dos valores de fecha que se comparan."
-
-#. J(yF
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
-msgstr "<emph>Week_start</emph>: parámetro opcional que especifica el primer día de una semana."
-
-#. }v1d
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
-"help.text"
-msgid "Week_start value"
-msgstr "Valor de Week_start"
-
-#. [:/@
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10680\n"
-"help.text"
-msgid "Explanation"
-msgstr "Explicación"
-
-#. !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 "Utilizar valor predeterminado del sistema"
-
-#. 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 "Sunday (valor predeterminado)"
-
-#. 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 "Monday"
-
-#. 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 "Tuesday"
-
-#. 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 "Wednesday"
-
-#. 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 "Thursday"
-
-#. 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 "Friday"
-
-#. 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 "Saturday"
-
-#. _)Y5
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106EB\n"
-"help.text"
-msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
-msgstr "<emph>Year_start</emph>: parámetro opcional que especifica la primera semana de un año."
-
-#. af3,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106FB\n"
-"help.text"
-msgid "Year_start value"
-msgstr "Valor de Year_start"
-
-#. LW1#
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10701\n"
-"help.text"
-msgid "Explanation"
-msgstr "Explicación"
-
-#. 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 "Utilizar valor predeterminado del sistema"
-
-#. 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 "Week 1 es la semana del día 1 de enero (predeterminado)"
-
-#. 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 "Week 1 es la primera semana que contiene cuatro o más días de ese año"
-
-#. 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 "Week 1 es la primera semana que únicamente contiene días del año nuevo"
-
-#. Os(u
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10738\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Jh2j
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"tit\n"
-"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "Instrucción While...Wend [Ejecución]"
-
-#. Vmlp
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"bm_id3150400\n"
-"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr "<bookmark_value>Bucle While;While...Wend</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 Statement[Runtime]\">Instrucción While...Wend [Ejecución]</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 "Cuando un programa encuentra una instrucción While, comprueba la condición. Si ésta es False, el programa continúa directamente a continuación de la instrucción Wend; Si es True, el bucle se ejecuta hasta que el programa encuentra Wend y después vuelve a la instrucción While . Si la condición sigue siendo cierta, el bucle se ejecuta de nuevo."
-
-#. 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 "Al contrario que el bucle <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link>, <emph>While...Wend</emph> no puede cancelarse con <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. No salga nunca de un bucle <emph>While...Wend</emph> con <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, ya que ello podría provocar un error de tiempo de ejecución."
-
-#. ^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 "El uso de <emph>Do...Loop</emph> es más flexible y, por tanto, más recomendable."
-
-#. k\=@
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. buAW
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
-"6\n"
-"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr "While Condición [Instrucción] Wend"
-
-#. jmL!
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 7pZ8
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
-"8\n"
-"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Sub EjemploWhileWend"
-
-#. ZGif
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
-"9\n"
-"help.text"
-msgid "Dim stext As String"
-msgstr "Dim sTexto As String"
-
-#. ^?v_
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3153143\n"
-"10\n"
-"help.text"
-msgid "Dim iRun As Integer"
-msgstr "Dim iEjec 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 "sTexto =\"Esto es un texto corto\""
-
-#. Tj*V
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
-"12\n"
-"help.text"
-msgid "iRun = 1"
-msgstr "iEjec = 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(sTexto)"
-
-#. )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(sTexto,iEjec,1 )<> \" \" then Mid( sTexto ,iEjec, 1, Chr( 1 + Asc( Mid(sTexto,iEjec,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 sTexto,0,\"Texto codificado\""
-
-#. 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 "Instrucción Global [Ejecución]"
-
-#. h?4U
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "<bookmark_value>Global;instrucción</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 Statement [Runtime]\">Instrucción Global [Ejecución]</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 "Dimensiona una variable o una matriz a nivel global (es decir, no dentro de una subrutina o función) a fin de que sean válidas en todas las bibliotecas y módulos de la sesión actual."
-
-#. R0V5
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3143270\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 NombreVar[(inicio To final)] [As TipoVar][, NombreVar2[(inicio To final)] [As TipoVar][,...]]"
-
-#. S$s}
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ]EH+
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Const Statement [Runtime]"
-msgstr "Instrucción Const [Ejecución]"
-
-#. \KxL
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>Const statement</bookmark_value>"
-msgstr "<bookmark_value>Const;instrucción</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 Statement [Runtime]\">Instrucción Const [Ejecución]</link>"
-
-#. f[^b
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3154143\n"
-"2\n"
-"help.text"
-msgid "Defines a string as a constant."
-msgstr "Define una cadena como constante."
-
-#. lky~
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. FFIO
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "Const Text = Expression"
-msgstr "Const Texto = Expresión"
-
-#. X#@O
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ,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>Texto:</emph> Cualquier nombre de constante que sigue las convenciones estándar de asignación de nombres a variables."
-
-#. 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 "Una constante es una variable que ayuda a mejorar la legibilidad de un programa. Las constantes no se definen como tipo específico de variable, sino como comodines en el código. Las constantes sólo se pueden definir una vez y no pueden modificarse. Use la instrucción siguiente para definir una constante:"
-
-#. K))V
-#: 03100700.xhp
-#, fuzzy
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150542\n"
-"8\n"
-"help.text"
-msgid "CONST ConstName=Expression"
-msgstr "CONST NombreConst=Expresión"
-
-#. 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 "El tipo de expresión es irrelevante. Si se inicia un programa, $[officename] Basic convierte el código del programa internamente para que, cada vez que se utilice la constante, la expresión definida la sustituya."
-
-#. Mgh,
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 = \"Programa\", dVar As Double = 1.00"
-
-#. d%V_
-#: 01020200.xhp
-msgctxt ""
-"01020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Objects"
-msgstr "Uso de objetos"
-
-#. (,: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\">Uso del catálogo de objetos</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 "El catálogo de objetos proporciona un resumen de todos los módulos y diálogos que se han creado en $[officename]."
-
-#. 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 "Pulse en el icono <emph>Catálogo de objetos</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icono</alt></image>de la barra de herramientas Macro para que éste se muestre."
-
-#. 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 "El diálogo muestra una lista de todos los objetos existentes en una representación jerárquica. Pulse dos veces en una entrada de la lista para que se abran sus objetos subordinados."
-
-#. 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 "Para que se muestre un módulo concreto en el Editor o para situar el cursor en un SUB o FUNCIÓN seleccionados, seleccione la entrada correspondiente y pulse en el icono <emph>Mostrar</emph> <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icono</alt></image>."
-
-#. 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 "Pulse en el icono (X) de la barra de título para que se cierre el catálogo de objetos."
-
-#. WFqN
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"tit\n"
-"help.text"
-msgid "FreeLibrary Function [Runtime]"
-msgstr "Función FreeLibrary [Ejecución]"
-
-#. H(i8
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"bm_id3143270\n"
-"help.text"
-msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
-msgstr "<bookmark_value>FreeLibrary;función</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 Function [Runtime]\">Función FreeLibrary [Ejecución]</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 "Libera DLL cargadas por una instrucción Declare. Una DLL liberada se volverá a cargar automáticamente si se llama a una de sus funciones. Consulte también: <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 "Sintaxis:"
-
-#. O;El
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"par_id3153361\n"
-"4\n"
-"help.text"
-msgid "FreeLibrary (LibName As String)"
-msgstr "FreeLibrary (NombreBilioteca As String)"
-
-#. xxsM
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "<emph>Parámetro</emph>:"
-
-#. 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 "NombreBiblioteca: Expresión de cadena que especifica el nombre de la DLL."
-
-#. 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 "FreeLibrary sólo puede liberar DLL que se hayan cargado durante el tiempo de ejecución de Basic."
-
-#. 8$_%
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. q#8w
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Static Statement [Runtime]"
-msgstr "Instrucción Static [Ejecución]"
-
-#. X!gU
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"bm_id3149798\n"
-"help.text"
-msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "<bookmark_value>Static;instrucción</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 Statement [Runtime]\">Instrucción Static [Ejecución]</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 "Declara una variable o una matriz a nivel de procedimiento dentro de una subrutina o función, de manera que los valores de la variable o matriz se conservan incluso después de salir de la subrutina o función. Las convenciones de la instrucción Dim también son válidas."
-
-#. -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 "La instrucción <emph>Static</emph> no se puede utilizar para definir matrices de variables. Las matrices deben especificarse de acuerdo con un tamaño fijo."
-
-#. MD]%
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3149657\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. -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 NombreVar[(inicio To final)] [As TipoVar], NombreVar2[(inicio To final)] [As TipoVar], ..."
-
-#. EYIV
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3148452\n"
-"6\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"La respuesta es\""
-
-#. .^,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 Función para la inicialización de la variable estática"
-
-#. 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 valor de retorno mínimo de esta función"
-
-#. 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 comprobar si se ha inicializado"
-
-#. ,3#z
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"tit\n"
-"help.text"
-msgid "For...Next Statement [Runtime]"
-msgstr "Instrucción For...Next [Ejecución]"
-
-#. ~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;instrucción</bookmark_value><bookmark_value>To;instrucción</bookmark_value><bookmark_value>Step;instrucción</bookmark_value><bookmark_value>Next;instrucción</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 Statement [Runtime]\">Instrucción For...Next [Ejecución]</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 "Repite las instrucciones que se encuentran en el bloque For...Next un número determinado de veces."
-
-#. {Or3
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. __M)
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3148473\n"
-"4\n"
-"help.text"
-msgid "For counter=start To end [Step step]"
-msgstr "For contador=inicio To final [Step incremento]"
-
-#. ^;Bt
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156024\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. }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 "bloque de instrucciones"
-
-#. C,Q@
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153897\n"
-"8\n"
-"help.text"
-msgid "Next [counter]"
-msgstr "Next [contador]"
-
-#. slKh
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
-"9\n"
-"help.text"
-msgid "Variables:"
-msgstr "Variables:"
-
-#. ^.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>Contador:</emph> Contador de bucle al que se asigna inicialmente el valor de la derecha del signo igual (inicio). Sólo las variables numéricas son válidas. El contador de bucles aumenta o disminuye según la variable Incremento hasta que se alcanza el valor final."
-
-#. `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>Inicio:</emph> Variable numérica que define el valor inicial al principio del bucle."
-
-#. 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>Final:</emph> Variable numérica que define el valor final cuando termina el bucle."
-
-#. +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>Incremento:</emph> Define el valor con el que incrementar o decrementar el contador del bucle. Si Incremento no se especifica, el contador del bucle se incrementa en 1. En ese caso, Final debe ser mayor que Inicio. Si desea decrementar el Contador, Final debe ser inferior a Inicio e Incremento debe tener asignado un valor negativo."
-
-#. ?;*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 "El bucle <emph>For...Next</emph> repite todas las instrucciones del bucle tantas veces como especifiquen los parámetros."
-
-#. ?+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 medida que la variable de contador se decrementa, $[officename] Basic comprueba si se ha llegado al valor final. Tan pronto como el contador llega al valor final, el bucle finaliza automáticamente."
-
-#. 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 "Es posible anidar instrucciones <emph>For...Next</emph>. Si no se especifica ninguna variable después de la instrucción <emph>Next</emph>, ésta hace referencia automáticamente a la instrucción <emph>For</emph> más reciente."
-
-#. {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 "Si se especifica un incremento 0, las instrucciones entre <emph>For</emph> y <emph>Next</emph> se repiten indefinidamente."
-
-#. 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 "Al realizar la cuenta atrás con la variable Contador, $[officename] Basic comprueba que no se produzca un desbordamiento o vacuidad. El bucle termina cuando el Contador supera a Final (valor de Incremento positivo) o es inferior a Final (valor de Incremento negativo)."
-
-#. \*[:
-#: 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 "La instrucción <emph>Exit For</emph> se utiliza para salir del bucle incondicionalmente. Esta instrucción debe estar incluida dentro del bucle <emph>For...Next</emph>. Use la instrucción <emph>If...Then</emph> para comprobar la condición de salida de la forma siguiente:"
-
-#. 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 "instrucciones"
-
-#. ZC`N
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3147124\n"
-"22\n"
-"help.text"
-msgid "If condition = True Then Exit For"
-msgstr "If condición = Cierta Then Exit For"
-
-#. @k5[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153159\n"
-"23\n"
-"help.text"
-msgid "statements"
-msgstr "instrucciones"
-
-#. 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 "Nota: En bucles <emph>For...Next</emph> anidados, si se sale de un bucle de forma incondicional con <emph>Exit For</emph>, sólo se sale de un bucle."
-
-#. _T2X
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
-"help.text"
-msgid "Example"
-msgstr "Ejemplo"
-
-#. 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 "El ejemplo siguiente usa dos bucles anidados para ordenar una matriz de cadenas con 10 elementos ( sEntry() ) que primero se rellenan con varios contenidos:"
-
-#. 2i+H
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155767\n"
-"42\n"
-"help.text"
-msgid "sEntry(0) = \"Jerry\""
-msgstr "sEntrada(0) = \"Juan\""
-
-#. VU!z
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153711\n"
-"33\n"
-"help.text"
-msgid "sEntry(1) = \"Patty\""
-msgstr "sEntrada(1) = \"Patricia\""
-
-#. m{kB
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3148993\n"
-"34\n"
-"help.text"
-msgid "sEntry(2) = \"Kurt\""
-msgstr "sEntrada(3) = \"Koldo\""
-
-#. 2-fN
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156382\n"
-"35\n"
-"help.text"
-msgid "sEntry(3) = \"Thomas\""
-msgstr "sEntrada(3) = \"Tomás\""
-
-#. dxv%
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155174\n"
-"36\n"
-"help.text"
-msgid "sEntry(4) = \"Michael\""
-msgstr "sEntrada(4) = \"Miguel\""
-
-#. ]72:
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3166448\n"
-"37\n"
-"help.text"
-msgid "sEntry(5) = \"David\""
-msgstr "sEntrada(5) = \"David\""
-
-#. pj:`
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149255\n"
-"38\n"
-"help.text"
-msgid "sEntry(6) = \"Cathy\""
-msgstr "sEntrada(6) = \"Catalina\""
-
-#. U]~E
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149565\n"
-"39\n"
-"help.text"
-msgid "sEntry(7) = \"Susie\""
-msgstr "sEntrada(7) = \"Susana\""
-
-#. xd6[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145148\n"
-"40\n"
-"help.text"
-msgid "sEntry(8) = \"Edward\""
-msgstr "sEntrada(8) = \"Eduardo\""
-
-#. 7EOX
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145229\n"
-"41\n"
-"help.text"
-msgid "sEntry(9) = \"Christine\""
-msgstr "sEntrada(9) = \"Cristina\""
-
-#. 31_S
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDir Statement [Runtime]"
-msgstr "Declaración ChDir [Ejecución]"
-
-#. +Fs@
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"bm_id3150178\n"
-"help.text"
-msgid "<bookmark_value>ChDir statement</bookmark_value>"
-msgstr "<bookmark_value>sentencia ChDir</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=\"Declaración ChDir [Runtime]\">Declaración ChDir [Runtime]</link>"
-
-#. VXSm
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Changes the current directory or drive."
-msgstr "Cambia el directorio o unidad actuales."
-
-#. 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 "Esta instrucción de ejecución no está funcionando como se indica en la documentación. Consulte <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">este problema</link> para obtener más información."
-
-#. mWxI
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. vL}!
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3153897\n"
-"4\n"
-"help.text"
-msgid "ChDir Text As String"
-msgstr "ChDir Texto As String"
-
-#. D?`]
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3148664\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Texto: Cualquier expresión de cadena que especifique la ruta de acceso o unidad del directorio."
-
-#. 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 "Si sólo desea cambiar la unidad actual, escriba la letra de la unidad seguida de un carácter de dos puntos."
-
-#. sMR;
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. (,Hp
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Other Commands"
-msgstr "Otras órdenes"
-
-#. ,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=\"Other Commands\">Otras órdenes</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 "Esta es una lista de funciones e instrucciones que no pertenecen a ninguna otra categoría."
-
-#. BBq(
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date Statement [Runtime]"
-msgstr "Instrucción Date [Ejecución]"
-
-#. ?b=N
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>Date;función</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=\"Instrucción Date [Runtime]\">Instrucción Date [Ejecución]</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 "Devuelve la fecha actual del sistema como cadena o la restablece. El formato de fecha depende de la configuración local del sistema."
-
-#. i=_h
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. @fcn
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
-"4\n"
-"help.text"
-msgid "Date ; Date = Text As String"
-msgstr "Date ; Date = Texto As String"
-
-#. zk?6
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. \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>Texto:</emph> Sólo es necesario para restablecer la fecha del sistema. En este caso, la expresión de cadena debe corresponder con el formato de fecha definido en la configuración local."
-
-#. j(;,
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. `d15
-#: 03030301.xhp
-#, fuzzy
-msgctxt ""
-"03030301.xhp\n"
-"par_id3156424\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"The date is \" & Date"
-msgstr "msgbox \"La fecha es \" & Date"
-
-#. 3o#{
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"tit\n"
-"help.text"
-msgid "LSet Statement [Runtime]"
-msgstr "Instrucción LSet [Ejecución]"
-
-#. 6c?G
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"bm_id3143268\n"
-"help.text"
-msgid "<bookmark_value>LSet statement</bookmark_value>"
-msgstr "<bookmark_value>LSet;instrucción</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 Statement [Runtime]\">Instrucción LSet [Ejecución]</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 "Alinea una cadena a la izquierda de una variable de cadena o copia una variable de un tipo definido por el usuario en otra de otro tipo distinto definido por el usuario."
-
-#. D.~5
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. z$~z
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "LSet Var As String = Text or LSet Var1 = Var2"
-msgstr "LSet Var As String = Texto o LSet Var1 = Var2"
-
-#. asqR
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 4M59
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3145610\n"
-"6\n"
-"help.text"
-msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
-msgstr "<emph>Var:</emph> Cualquier variable que contenga la cadena que se desea alinear a la izquierda."
-
-#. 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>Texto:</emph> Cadena que se desee alinear a la izquierda de la variable de cadena."
-
-#. -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>Var1:</emph> Nombre de la variable de tipo definido por el usuario donde se desee realizar la copia."
-
-#. 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>Var2:</emph> Nombre de la variable de tipo definido por el usuario desde la que se desee copiar."
-
-#. 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 "Si la cadena es más corta que la variable de cadena, <emph>LSet</emph> alinea a la derecha la cadena dentro de la variable. Cualquier posición que quede en la variable de cadena se sustituye por espacios. Si la cadena es más larga que la variable, sólo se copian los caracteres que se encuentran más a la izquierda hasta completar la longitud de la variable de cadena. Con la instrucción <emph>LSet</emph> también se puede copiar una variable definida por el usuario a otra del mismo tipo."
-
-#. kIO8
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Alinea \"SBX\" dentro de la cadena de referencia de 40 caracteres"
-
-#. HaY(
-#: 03120304.xhp
-#, fuzzy
-msgctxt ""
-"03120304.xhp\n"
-"par_id3148647\n"
-"19\n"
-"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "REM Sustituir asteriscos por espacios"
-
-#. 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 Alinea a la izquierda \"SBX\" dentro de la cadena de referencia de 40 caracteres"
-
-#. .Y-.
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateToIso Function [Runtime]"
-msgstr "Función CdateToIso [Ejecución]"
-
-#. T@iq
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"bm_id3150620\n"
-"help.text"
-msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "<bookmark_value>CdateToIso;función</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=\"Función CdateToIso [Runtime]\">Función CdateToIso [Ejecución]</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 "Devuelve la fecha en formato ISO a partir de un número serie de fecha que genera la función DateSerial o DateValue."
-
-#. loc}
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. Frk:
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "CDateToIso(Number)"
-msgstr "CDateToIso(Número)"
-
-#. ^SX9
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3152347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. P#9f
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. Ic5v
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Número: Entero que contenga el número serie de fecha."
-
-#. 0l@n
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"Fecha ISO\""
-
-#. 8*mH
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Función Shell [Ejecución]"
-
-#. YqY)
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "<bookmark_value>Shell;función</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 Function [Runtime]\">Función Shell [Ejecución]</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 "Inicia otra aplicación y si fuera necesario define el estilo de ventana correspondiente."
-
-#. q2a$
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3153345\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. 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 (NombreRuta As String[, EstiloVentana As Integer][, Parám As String][, bSync])"
-
-#. bRF,
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3149235\n"
-"6\n"
-"help.text"
-msgid "Parameter"
-msgstr "Parámetro"
-
-#. /7eO
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3154306\n"
-"23\n"
-"help.text"
-msgid "Pathname"
-msgstr "NombreRuta"
-
-#. 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 "Ruta de acceso completa y nombre del programa que se desee iniciar."
-
-#. {Z;{
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
-"help.text"
-msgid "Windowstyle"
-msgstr "EstiloVentana"
-
-#. 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 "Expresión entera opcional que especifica el estilo de la ventana en la que se ejecuta el programa. Son posibles los valores siguientes:"
-
-#. 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 "El foco está en la ventana de programa oculta."
-
-#. =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 "El foco está en la ventana de programa en tamaño estándar."
-
-#. 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 "El foco está en la ventana de programa minimizada."
-
-#. _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 "El foco está en la ventana de programa maximizada."
-
-#. (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 "Ventana de programa de tamaño estándar, sin foco."
-
-#. (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 "Ventana de programa minimizada, el foco permanece en la ventana activa."
-
-#. 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 "Visualización a pantalla completa."
-
-#. .h7[
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150419\n"
-"33\n"
-"help.text"
-msgid "Param"
-msgstr "Parám"
-
-#. 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 "Cualquier expresión de cadena que especifique la línea de órdenes que se desee pasar."
-
-#. XEdX
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3148456\n"
-"32\n"
-"help.text"
-msgid "bSync"
-msgstr "bSync"
-
-#. L#ft
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3154096\n"
-"18\n"
-"help.text"
-msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
-msgstr "Si este valor se establece en <emph>true</emph>, la orden <emph>Shell</emph> y todas las tareas de $[officename] esperan hasta que el proceso del shell se complete. Si el valor se establece en <emph>false</emph>, el shell vuelve directamente. El valor predeterminado es <emph>false</emph>."
-
-#. kbg)
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3154270\n"
-"19\n"
-"help.text"
-msgid "Example"
-msgstr "Ejemplo"
-
-#. 3c41
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "Función TwipsPerPixelX [Ejecución]"
-
-#. V+uc
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelX;función</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 Function [Runtime]\">Función TwipsPerPixelX [Ejecución]</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 "Devuelve el número de twips que representan el ancho de un píxel."
-
-#. !(Rz
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Valor de retorno:"
-
-#. [d~E
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. *I]K
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Tamaño de píxel\""
-
-#. NP[f
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CInt Function [Runtime]"
-msgstr "Función CInt [Ejecución]"
-
-#. n+F[
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>CInt function</bookmark_value>"
-msgstr "<bookmark_value>CInt;función</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 Function [Runtime]\">Función CInt [Ejecución]</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 "Convierte cualquier expresión de cadena o numérica en un entero."
-
-#. K;K4
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. %`LR
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3154142\n"
-"4\n"
-"help.text"
-msgid "CInt (Expression)"
-msgstr "CInt (Expresión)"
-
-#. kldD
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3147531\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. V^@N
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. Ud9N
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión numérica que desee convertir. Si <emph>Expresión</emph> excede el rango de valores entre -32768 y 32767, $[officename] Basic informa de un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
-
-#. *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 "Esta función siempre redondea la parte fraccional de un número al entero más cercano."
-
-#. uvBz
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. UZlO
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateAdd Function [Runtime]"
-msgstr "Función DateAdd [Ejecución]"
-
-#. V]]l
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"bm_id6269417\n"
-"help.text"
-msgid "<bookmark_value>DateAdd function</bookmark_value>"
-msgstr "<bookmark_value>Función DateAdd</bookmark_value>"
-
-#. ]XqE
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Función DateAdd [Ejecución]</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 "Agrega un intervalo a una fecha determinada una serie de veces y devuelve la fecha resultante."
-
-#. 6q_g
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. \(L~
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (Add, Count, Date)"
-
-#. +E,*
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. !_?K
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10622\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr "variante que contiene una fecha."
-
-#. =GEL
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. JiDs
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10629\n"
-"help.text"
-msgid "Add - A string expression from the following table, specifying the date interval."
-msgstr "Add: expresión de cadena de la tabla siguiente que especifica el intervalo de fechas."
-
-#. cT:7
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10636\n"
-"help.text"
-msgid "Add (string value)"
-msgstr "Add (valor de cadena)"
-
-#. $l_-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
-"help.text"
-msgid "Explanation"
-msgstr "Explicación"
-
-#. 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 "Año"
-
-#. 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 "Trimestre"
-
-#. 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 "Mes"
-
-#. 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 "Día del año"
-
-#. 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 "Día de la semana"
-
-#. ?: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 "Semana del año"
-
-#. ||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 "Día"
-
-#. 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 "Hora"
-
-#. 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 "Minuto"
-
-#. 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 "Segundo"
-
-#. 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 "Cantidad: expresión numérica que especifica la frecuencia con que el intervalo de Add (agregar) se suma (cantidad positiva) o se resta (cantidad negativa)."
-
-#. 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 "Fecha: fecha concreta o nombre de una variable del tipo variant que contiene una fecha. El valor Add se suma a este valor n cantidad de veces."
-
-#. s=`S
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 0H}:
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefBool Statement [Runtime]"
-msgstr "Instrucción DefBool [Ejecución]"
-
-#. 76_V
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"bm_id3145759\n"
-"help.text"
-msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "<bookmark_value>DefBool;instrucción</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 Statement [Runtime]\">Instrucción DefBool [Ejecución]</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 "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefBool establece el tipo de datos predeterminado para las variables según un rango de letras."
-
-#. 0Kdu
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149495\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. .;d*
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
-
-#. SZAs
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3159201\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminada:"
-
-#. a!OK
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Palabra clave: </emph>Tipo de variable predeterminada"
-
-#. SFDf
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"9\n"
-"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
-msgstr "<emph>DefBool:</emph> Lógico"
-
-#. -T?9
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. E7!H
-#: 03101100.xhp
-#, fuzzy
-msgctxt ""
-"03101100.xhp\n"
-"par_id3156152\n"
-"12\n"
-"help.text"
-msgid "' Prefix definition for variable types:"
-msgstr "REM Definición de prefijo para tipos de variable:"
-
-#. 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 bOK es una variable lógica implícita"
-
-#. c3sa
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"tit\n"
-"help.text"
-msgid "SetAttr Statement [Runtime]"
-msgstr "Instrucción SetAttr [Ejecución]"
-
-#. Rsjm
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"bm_id3147559\n"
-"help.text"
-msgid "<bookmark_value>SetAttr statement</bookmark_value>"
-msgstr "<bookmark_value>SetAttr;instrucción</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=\"Instrucción SetAttr [Runtime]\">Instrucción SetAttr [Ejecución]</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 "Configura la información de atributo de un archivo especificado."
-
-#. V5)K
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 NombreArchivo As String, Atributo As Integer"
-
-#. yY(Y
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3125863\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ;*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 "NombreArchivo: Nombre del archivo, incluida la ruta de acceso, cuyos atributos se desee comprobar. Si no se escribe ninguna ruta de acceso, <emph>SetAttr</emph> busca el archivo en el directorio actual. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. 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>Atributo:</emph> Patrón de bits que define los atributos que se desea activar o desactivar:"
-
-#. E]dD
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3145786\n"
-"8\n"
-"help.text"
-msgid "<emph>Value</emph>"
-msgstr "<emph>Valor</emph>"
-
-#. ~e_9
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3152596\n"
-"9\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0 : Archivos normales."
-
-#. $::0
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : Archivos de sólo lectura."
-
-#. 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 : El archivo se cambió desde la última copia de seguridad (bit Archive)."
-
-#. 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 "Puede establecer varios atributos combinando los valores respectivos con una instrucción OR lógica."
-
-#. h/6N
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3147434\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 ManejadorError REM Define destino para manejar errores"
-
-#. cAVT
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoTo Statement [Runtime]"
-msgstr "Instrucción GoTo [Ejecución]"
-
-#. acip
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>GoTo;instrucción</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 Statement [Runtime]\">Instrucción GoTo [Ejecución]</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 "Prosigue la ejecución del programa dentro de Sub o Function en la línea de procedimiento indicada por una etiqueta."
-
-#. .C$%
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 6?y5
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr "ver Parámetros"
-
-#. 7~/(
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "bloque de instrucciones"
-
-#. +=G6
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
-"8\n"
-"help.text"
-msgid "Label1"
-msgstr "Etiqueta1"
-
-#. BTl-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3145786\n"
-"9\n"
-"help.text"
-msgid "<emph>Label2:</emph>"
-msgstr "<emph>Etiqueta2:</emph>"
-
-#. j]iD
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. 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>Etiqueta1:</emph>"
-
-#. f]*s
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. v(O_
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "GoTo Label2"
-msgstr "GoTo Etiqueta2"
-
-#. }(H!
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "Final de 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 "La instrucción GoTo se usa para indicar a $[officename] Basic que continúe la ejecución del programa en otro lugar dentro del procedimiento. La posición debe estar marcada con una etiqueta. Para definir una etiqueta, asigne un nombre y después termínelo con un carácter de dos puntos (\":\")."
-
-#. 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 "La instrucción GoTo no puede usarse para saltar fuera de Sub o Function."
-
-#. qJE0
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3154731\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. oE/4
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id6967035\n"
-"help.text"
-msgid "see Parameters"
-msgstr "Consulte los parámetros"
-
-#. =.T-
-#: 03080700.xhp
-msgctxt ""
-"03080700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Expression Signs"
-msgstr "Signos de expresión"
-
-#. ;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=\"Signos de expresión\">Signos de expresión</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 "Esta función devuelve el signo algebraico de una expresión numérica."
-
-#. 4kcu
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"tit\n"
-"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr "Instrucción RSet [Ejecución]"
-
-#. :3z6
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>RSet statement</bookmark_value>"
-msgstr "<bookmark_value>RSet;instrucción</bookmark_value>"
-
-#. ,;pv
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3153345\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">Instrucción RSet [Ejecución]</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 "Alinea a la derecha una cadena dentro de una variable de cadena o copia una variable de tipo definido por el usuario en otra."
-
-#. 0OU)
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. :]@*
-#: 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 Texto As String = Texto o RSet Variable1 = Variable2"
-
-#. \P=Q
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. A6PV
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3148552\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string variable."
-msgstr "<emph>Texto:</emph> Cualquier variable de cadena."
-
-#. ]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>Texto</emph>: Cadena que se desea alinear a la derecha en la variable de cadena."
-
-#. 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>Variable1:</emph> Variable definida por el usuario que es el destino para la copia."
-
-#. 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>Variable2:</emph> Variable definida por el usuario que se desea copiar."
-
-#. {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 "Si la cadena es más corta que la variable de cadena, <emph>RSet</emph> alinea la cadena a la derecha dentro de la variable de cadena. Los caracteres que queden en la variable de cadena se sustituyen por espacios. Si la cadena es más larga que la variable de cadena, los caracteres que sobrepasan la longitud de ésta se truncan y sólo los restantes se alinean a la derecha dentro de la variable de cadena."
-
-#. 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 "También se puede usar la instrucción <emph>RSet</emph> para asignar variables de un tipo definido por el usuario a otro."
-
-#. 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 "El ejemplo siguiente usa las instrucciones <emph>RSet</emph> y <emph>LSet</emph> para modificar la alineación derecha e izquierda de una cadena."
-
-#. C!o:
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Alinea a la derecha \"SBX\" dentro de una cadena de 40 caracteres"
-
-#. bKP^
-#: 03120308.xhp
-#, fuzzy
-msgctxt ""
-"03120308.xhp\n"
-"par_id3152577\n"
-"21\n"
-"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "REM Sustituir asteriscos por espacios"
-
-#. _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 Alinea a la izquierda \"SBX\" dentro de una cadena de 40 caracteres"
-
-#. NCZl
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
-msgstr "Funciones exponenciales y logarítmicas"
-
-#. 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=\"Funciones exponenciales y logarítmicas\">Funciones exponenciales y logarítmicas</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 "Las funciones exponenciales y logarítmicas siguientes se admiten en $[officename] Basic."
-
-#. n,)0
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "The Basic Editor"
-msgstr "El editor de Basic"
-
-#. \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>guardando;código Basic</bookmark_value><bookmark_value>cargando; código Basic</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navegando;en proyectos Basic</bookmark_value><bookmark_value>líneas largos;en Basic editor</bookmark_value><bookmark_value>líneas de texto;en Basic editor</bookmark_value><bookmark_value>continuación;líneas largos en el editor</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=\"El editor de Basic\">El editor de Basic</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 "El Editor de Basic incluye las funciones de edición estándar familiares cuando se trabaja en un documento de texto. Admite las funciones del menú <emph>Editar</emph> (Cortar, Borrar, Pegar), la posibilidad de seleccionar texto con la tecla Shift, así como las funciones de posición del cursor (por ejemplo, moverse de palabra en palabra con <switchinline select=\"sys\"> <caseinline select=\"MAC\">Opción</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> y las teclas de cursor)."
-
-#. 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 "Las líneas largas pueden dividirse en varias partes insertando un espacio y un guión bajo (_) como los dos últimos caracteres de una línea. De este modo se conecta la línea con la siguiente en una línea lógica. (Si se usa \"Option Compatible\" en el mismo módulo Basic, la función de continuación de línea también es válida para líneas de comentario.)"
-
-#. 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 "Si precionas el icono <emph>Run BASIC</emph> en la barra de <emph>Macro</emph>, comienza el programa de ejecuciónen la primera linea del editor de Basic El programa ejecuta el primer Sub o Function y la ejecución para. El \"Sub Main\" no toma precedentes en la ejecución del programa."
-
-#. 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 "Inserta tu codigo Basic entre las lineas de Sub Main y End Sub que vez cuando recien abres el IDE. Alternativamente, borra todas las lineas y despues ingresa tu código Basic."
-
-#. dn1W
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Navigating in a Project"
-msgstr "Navegación por un proyecto"
-
-#. TiFW
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "The Library List"
-msgstr "La lista de bibliotecas"
-
-#. 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 "Seleccione una biblioteca de la lista de <emph>Bibliotecas</emph> que se encuentra en la parte izquierda de la barra de herramientas para cargarla en el editor. Se mostrará el primer módulo de la biblioteca seleccionada."
-
-#. yA,X
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3153190\n"
-"8\n"
-"help.text"
-msgid "The Object Catalog"
-msgstr "El catálogo de objetos"
-
-#. GSD?
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3148647\n"
-"15\n"
-"help.text"
-msgid "Saving and Loading Basic Source Code"
-msgstr "Guardado y carga de código fuente Basic"
-
-#. 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 "$[officename] Basic permite exportar código de programa Basic a otros sistemas de programación o importarlo en formato ASCII."
-
-#. .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 "Los diálogos de Basic no pueden guardarse en un archivo de texto."
-
-#. mT4=
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr "Guardado de código fuente en un archivo de texto"
-
-#. 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 "Seleccione el módulo que desee exportar como texto del catálogo de objetos."
-
-#. 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 "Pulse en el icono <emph>Guardar el texto fuente como</emph> de la barra de herramientas Macro."
-
-#. 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 "Seleccione un nombre de archivo y pulse en <emph>Aceptar</emph> para guardar el archivo."
-
-#. +9VX
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr "Carga de código fuente de un archivo de texto"
-
-#. 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 "Seleccione el módulo al que desee importar el código fuente desde el catálogo de objetos."
-
-#. _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 "Sitúe el cursor donde desee insertar el código del programa."
-
-#. 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 "Pulse en el icono <emph>Insertar el texto fuente</emph> de la barra de herramientas Macro. En el diálogo siguiente, seleccione la ruta de acceso y el nombre del archivo que contiene el código del programa y pulse en <emph>Aceptar</emph>."
-
-#. 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 "Seleccione el archivo de texto que contiene el código fuente y pulse en <emph>Aceptar</emph>."
-
-#. 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\"><emph>IDE Basic</emph></link>"
-
-#. nW^*
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefVar Statement [Runtime]"
-msgstr "Instrucción DefVar [Ejecución]"
-
-#. /%J7
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>DefVar statement</bookmark_value>"
-msgstr "<bookmark_value>DefVar;instrucción</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 Statement [Runtime]\">Instrucción DefVar [Ejecución]</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 "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
-
-#. IsQX
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. AT^;
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
-
-#. U8t#
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminada:"
-
-#. r9DG
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Palabra clave: </emph>Tipo de variable predeterminada"
-
-#. bbX)
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefVar:</emph> Variante"
-
-#. m+lD
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. `6[*
-#: 03102000.xhp
-#, fuzzy
-msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"11\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. :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 vDiv es una variante implícita"
-
-#. XOz-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3146121\n"
-"22\n"
-"help.text"
-msgid "vDiv=\"Hello world\""
-msgstr "vDiv=\"Hola mundo\""
-
-#. D5%q
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"tit\n"
-"help.text"
-msgid "Information"
-msgstr "Información"
-
-#. 2=J@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr "Información"
-
-#. 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 "Puede establecer la configuración que se usará para controlar el formato de números, fechas e importes monetarios en $[officename] Basic a través de <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idiomas - Idiomas</emph>"
-
-#. )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 "Lo mismo se aplica a los valores de configuración de los formatos de fecha, hora y moneda. El código de formato de Basic se interpretará y se mostrará según los valores de configuración del entorno local correspondientes."
-
-#. 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 "Los valores de los 16 colores básicos son los siguientes:"
-
-#. Mcij
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153091\n"
-"3\n"
-"help.text"
-msgid "<emph>Color Value</emph>"
-msgstr "<emph>Valor de color</emph>"
-
-#. q\}*
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154319\n"
-"4\n"
-"help.text"
-msgid "<emph>Color Name</emph>"
-msgstr "<emph>Nombre de color</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 "Negro"
-
-#. 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 "Azul"
-
-#. $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 "Verde"
-
-#. 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án"
-
-#. #;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 "Rojo"
-
-#. 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 "Magenta"
-
-#. ;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 "Amarillo"
-
-#. %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 "Blanco"
-
-#. 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 "Gris"
-
-#. +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 "Azul claro"
-
-#. (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 "Verde claro"
-
-#. 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 "Cián claro"
-
-#. %_:?
-#: 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 "Rojo claro"
-
-#. 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 "Magenta claro"
-
-#. 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 "Amarillo claro"
-
-#. 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 "Blanco transparente"
-
-#. 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\">Códigos de error</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 Interrupción de usuario</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 Error de sintaxis no especificado</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 sin Gosub</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 Parámetro no válido</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 Llamada a procedimiento no válida</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 Desbordamiento</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 Memoria agotada</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 Matriz ya dimensionada</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 Índice fuera de rango</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 Definición duplicada</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 División por cero</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 Variable no definida </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 Discordancia de tipo</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 Parámetro no válido</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 Proceso interrumpido por el usuario</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 Continuar sin error</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 No hay suficiente memoria de pila disponible</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 Subfunción o función no definida</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 Error al cargar archivo DLL</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 Convención de llamada a DLL incorrecta</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 Error interno</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 Nombre de archivo o número incorrectos</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 Archivo no encontrado</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 Modo de archivo incorrecto</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 Archivo ya abierto</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 Error de E/S de dispositivo</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 Archivo ya existente</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 Longitud de registro incorrecta</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 Disco lleno</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 Demasiados archivos</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 Número de registro incorrecto</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 Demasiados archivos</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 Dispositivo no disponible</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 Acceso denegado</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 Disco no preparado</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 No implementado</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 Imposible cambiar nombre con unidad distinta</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 Error de acceso a ruta/archivo</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 Ruta no encontrada</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 Variable de objeto no definida</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 Patrón de cadena no válido</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 Restaurar desde el principio</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 Error DDE</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 Esperando respuesta de la conexión DDE</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 Canales DDE no disponibles</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 No respondió la aplicación al inicio de conexión DDE</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 Demasiadas aplicaciones respondieron a la iniciación de conexión DDE</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 Canal DDE bloqueado</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 Una aplicación externa no puede ejecutar una operación DDE</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 Se agotó el tiempo de espera para respuesta de DDE</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 El usuario presionó ESCAPE durante una operación de DDE</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 Aplicación externa ocupada</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 Operación de DDE sin datos</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 Los datos están en el formato equivocado</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 La aplicación externa ha sido finalizada</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 Conexión DDE interrumpida o modificada</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 Método DDE invocado sin un canal abierto</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 Formato de enlace DDE no válido</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 Se perdió el mensaje DDE</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 Ya se realizó el pegado del enlace</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 No se puede definir el modo de enlace debido a un enlace a tema no válido</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 DDE requiere el archivo DDEML.DLL</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 No se puede cargar el módulo; el formato no es válido</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 Índice de objeto no válido</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 El objeto no está disponible</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 Valor de propiedad incorrecto</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 Esta propiedad es de solo lectura</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 Esta propiedad es de solo escritura</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 Referencia a objeto no válida</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 Propiedad o método no encontrado</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 Objeto requerido</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 Uso de objeto no válido</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 La automatización OLE no es compatible con este objeto</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 Esta propiedad o método no es compatible con el objeto</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 Error de automatización OLE</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 El objeto no admite esta acción</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 Los argumentos dados no son compatibles con el objeto dado</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 La configuración regional actual no es admitida por el objeto dado</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 No se encontró el argumento nombrado</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 El argumento no es opcional</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 El número de argumentos no es válido</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 El objeto no es una 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 El número ordinal no es válido</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 No se encontró la función DLL especificada</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 Formato de portapapeles no válido</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 Símbolo inesperado:</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 Se esperaba:</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 Se esperaba un símbolo</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 Se esperaba una variable</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 Se esperaba una etiqueta</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 No se puede aplicar el valor</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 Ya se definió la variable</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 El subprocedimiento o la función ya se definieron</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\">959 Ya se definió la etiqueta</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 No se encontró la variable</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 No se encontró la matriz o el procedimiento</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 No se encontró el procedimiento</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 No se definió la etiqueta</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 Tipo de datos desconocido</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 Se esperaba una salida</variable>"
-
-#. o\J9
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
-"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr "<variable id=\"err62\">62 Entrada más allá del final del archivo</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 Los paréntesis no coinciden</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 Ya se definió el símbolo de manera diferente</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 Los parámetros no corresponden con el procedimiento</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 Carácter no válido en el número</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 Debe dimensionar la matriz</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 Else/Endif sin If</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 no se permite dentro de un procedimiento</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 no se permite fuera de un procedimiento</variable>"
-
-#. 4lh4
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
-"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr "<variable id=\"err53\">53 Archivo no encontrado</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 Opción desconocida:</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 Constante redefinida</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 El programa es demasiado grande</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 No se permiten las cadenas o las matrices</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 El objeto no tiene esta propiedad</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 El objeto no tiene este método</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 Falta el argumento requerido</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 Número de argumentos no válido</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 Error al ejecutar un método</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 No se pudo establecer la propiedad</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 No se pudo determinar la propiedad</variable>"
-
-#. hdnr
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
-msgstr "Función Mid, Instrucción Mid [Ejecución]"
-
-#. 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;función</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 Function, Mid Statement [Runtime]\">Función Mid, Instrucción Mid [Ejecución]</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 "Devuelve la porción especificada de una expresión de cadena (<emph>función Mid</emph>) o sustituye la parte de una expresión de cadena por otra cadena (<emph>instrucción Mid</emph>)."
-
-#. H!+j
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 (Texto As String, Inicio As Integer [, Longitud As Integer]) o Mid (Texto As String, Inicio As Integer , Longitud As Integer, Texto As String)"
-
-#. 9:;5
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. I.?C
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
-"6\n"
-"help.text"
-msgid "String (only by Function)"
-msgstr "Cadena (sólo la función)"
-
-#. z$n\
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ]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>Texto:</emph> Cualquier expresión de cadena que se desee modificar."
-
-#. 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>Inicio: </emph>Expresión numérica que indica la posición del carácter dentro de la cadena donde comienza la parte de la cadena que desea sustituir o devolver. El valor máximo es 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>Longitud:</emph> Expresión entera que devuelva el número de caracteres que se desee sustituir o devolver."
-
-#. 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 "Si se omite el parámetro de longitud de la <emph>función Mid</emph>, se devuelven todos los caracteres de la expresión de cadena, desde la posición de inicio hasta el final de la cadena."
-
-#. 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 "Si el parámetro de longitud de la <emph>instrucción Mid</emph> es inferior a la longitud del texto que se desea sustituir, el texto se reduce a la longitud especificada."
-
-#. 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>Texto:</emph> La cadena que sustituirá a la expresión de cadena (<emph>instrucción Mid</emph>)."
-
-#. _{r/
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 "sEntrada = InputBox(\"Escriba una fecha en formato internacional 'AAAA-MM-DD'\")"
-
-#. C{Up
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Función Year [Ejecución]"
-
-#. ]uo@
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "<bookmark_value>Year;función</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=\"Función Year [Runtime]\">Función Year [Ejecución]</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 "Devuelve el año a partir de una fecha serie que genera la función DateSerial o DateValue."
-
-#. .\6V
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. )T:Q
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr "Year (Número)"
-
-#. US}c
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. n|.8
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. .YT{
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. /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>Número:</emph> Expresión entera que contenga el número de fecha serie que se utilice para calcular el año."
-
-#. 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 "Esta función es la contraria a <emph>DateSerial </emph> y devuelve el año de una fecha serie. Por ejemplo, la expresión:"
-
-#. ]uBU
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
-"help.text"
-msgid "returns the value 1994."
-msgstr "devuelve el valor 1994."
-
-#. f)\0
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"Año actual\""
-
-#. zI)r
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"tit\n"
-"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "Función Abs [Ejecución]"
-
-#. wWt\
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "<bookmark_value>Abs;función</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=\"Función Abs [Runtime]\">Función Abs [Ejecución]</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 "Devuelve el valor absoluto de una expresión numérica."
-
-#. BME2
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 5Nd\
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Abs (Number)"
-msgstr "Abs (Número)"
-
-#. 9j1k
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. rAW_
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. _XMW
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Cualquier expresión numérica de la que se desee devolver su valor absoluto. Los números positivos, incluido el 0, se devuelven sin cambios, mientras que los números negativos se convierten en positivos."
-
-#. [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 "El ejemplo siguiente usa la función Abs para calcular la diferencia entre dos valores. No importa el valor que introduzca en primer lugar."
-
-#. *5vC
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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$ (\"Escriba la primera cantidad\",\"Entrada de valor\"))"
-
-#. 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$ (\"Escriba la segunda cantidad\",\"Entrada de valor\"))"
-
-#. 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 \"La diferencia es \"; Abs(siW1 - siW2)"
-
-#. 4Z5a
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "Función IsMissing [Ejecución]"
-
-#. PRE}
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "<bookmark_value>IsMissing;función</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 function [Runtime]\">Función IsMissing [Ejecución]</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 "Comprueba si una función se llama con un parámetro opcional."
-
-#. (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 "Consulte también: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Opcional</link>"
-
-#. %^FT
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ]0Sx
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
-"5\n"
-"help.text"
-msgid "IsMissing( ArgumentName )"
-msgstr "IsMissing( NombreArgumento )"
-
-#. ;Hj}
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. !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>NombreArgumento:</emph> El nombre de un argumento opcional."
-
-#. 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 "Si NombreArgumento llama a la función IsMissing se devuelve el valor Cierto."
-
-#. )]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 "Consulte también <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Ejemplos</link>."
-
-#. C)RA
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Help"
-msgstr "Ayuda para $[officename] Basic"
-
-#. 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 Help\">Ayuda para $[officename] Basic</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 "%PRODUCTNAME %PRODUCTVERSION incluye una Interfaz de programación de aplicaciones (API) que permite el control de los componentes de $[officename] con distintos lenguajes de programación utilizando su Kit de desarrollo de software (SDK). Si desea obtener más información sobre la API y el SDK de $[officename], visite <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
-
-#. V-4Y
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"par_id3147226\n"
-"10\n"
-"help.text"
-msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr "Esta sección de ayuda explica las funciones de tiempo de ejecución más comunes de %PRODUCTNAME Basic. Para obtener más información detallada consulte la <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">Guía de programación de OpenOffice.org Basic</link> en el Wiki."
-
-#. ?(vV
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
-"9\n"
-"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "Funcionamiento de $[officename] Basic"
-
-#. *UgN
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "Ayuda sobre la Ayuda"
-
-#. Dh[M
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rem Statement [Runtime]"
-msgstr "Instrucción Rem [Ejecución]"
-
-#. 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;instrucción</bookmark_value><bookmark_value>comentarios;Rem</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 Statement [Runtime]\">Instrucción Rem [Ejecución]</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 "Especifica que una línea de programa es un comentario."
-
-#. Y@je
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. LILP
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
-"4\n"
-"help.text"
-msgid "Rem Text"
-msgstr "Rem Texto"
-
-#. (0iJ
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ^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>Texto:</emph> Cualquier texto que sirva de comentario."
-
-#. 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 "Para indicar que el texto de la línea es un comentario, puede utilizar el carácter de comilla simple en lugar de la palabra clave Rem. Este símbolo puede insertarse directamente a la derecha del código del programa seguido de un comentario."
-
-#. .\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 "Puede utilizar un espacio seguido de un guión bajo (_) como los últimos dos caracteres de una línea para continuar la línea lógica en la siguiente línea. Para continuar líneas de comentario, debe especificar \"Option Compatible\" in el mismo módulo Basic."
-
-#. M)O-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 6{uK
-#: 03090407.xhp
-#, fuzzy
-msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
-"help.text"
-msgid "' Nothing occurs here"
-msgstr "REM Aquí no pasa nada"
-
-#. g^o#
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefStr Statement [Runtime]"
-msgstr "Instrucción DefStr [Ejecución]"
-
-#. AjX0
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
-"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
-msgstr "<bookmark_value>Instrucción DefStr</bookmark_value>"
-
-#. *E{=
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Instrucción DefStr [Ejecución]</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 "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefStr establece el tipo de variable predeterminado según un intervalo de letras."
-
-#. h)GP
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. pxE=
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-
-#. MhE[
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
-
-#. \:-{
-#: 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> palabra clave que define el tipo de variable predeterminado."
-
-#. ,|#-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
-
-#. q01#
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> cadena"
-
-#. tT\!
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. MVB9
-#: 03101140.xhp
-#, fuzzy
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. Vd/z
-#: 03101140.xhp
-#, fuzzy
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
-msgstr "sStr=String REM sStr es una variable de cadena implícita"
-
-#. hCmr
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Logical Operators"
-msgstr "Operadores lógicos"
-
-#. 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=\"Operadores lógicos\">Operadores lógicos</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 "Los operadores lógicos siguientes se admiten en $[officename] Basic."
-
-#. 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 "Los operadores lógicos combinan (a nivel de bits) el contenido de dos expresiones o variables, por ejemplo, para comprobar si bits determinados están o no activados."
-
-#. )+VZ
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"tit\n"
-"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr "GlobalScope [Ejecución]"
-
-#. 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;función</bookmark_value><bookmark_value>sistema de biblioteca</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 [Runtime]\">GlobalScope [Ejecución]</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 "El código fuente de Basic y los diálogos están organizados en un sistema de bibliotecas."
-
-#. Cct]
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3145315\n"
-"3\n"
-"help.text"
-msgid "The LibraryContainer contains libraries"
-msgstr "LibraryContainer contiene bibliotecas"
-
-#. D]~/
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Libraries can contain modules and dialogs"
-msgstr "Las bibliotecas pueden contener módulos y diálogos"
-
-#. -CDE
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3143271\n"
-"5\n"
-"help.text"
-msgid "In Basic:"
-msgstr "En Basic:"
-
-#. ~v},
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3153061\n"
-"6\n"
-"help.text"
-msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
-msgstr "LibraryContainer se denomina <emph>BasicLibraries</emph>."
-
-#. 9*%0
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3154346\n"
-"7\n"
-"help.text"
-msgid "In dialogs:"
-msgstr "En los diálogos:"
-
-#. 0OB*
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3148663\n"
-"8\n"
-"help.text"
-msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
-msgstr "LibraryContainer se denomina <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 "Ambos LibraryContainers existen en un nivel de aplicación y dentro de cada documento. En el documento Basic, se llama a los LibraryContainers del documento automáticamente. Si desea llamar a los LibratyContainers desde dentro de un documento, es necesario usar la palabra clave <emph>GlobalScope</emph>."
-
-#. Y%XG
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
-"10\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Ejemplo:"
-
-#. JT`B
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3154124\n"
-"13\n"
-"help.text"
-msgid "Example in the document Basic"
-msgstr "Ejemplo en el documento Basic"
-
-#. L!.l
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3158408\n"
-"14\n"
-"help.text"
-msgid "' calling Dialog1 in the document library Standard"
-msgstr "' llamando a Dialog1 en la biblioteca de documento Standard"
-
-#. (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 "' llamando a Dialog2 en la biblioteca de Library1"
-
-#. 66;$
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3156424\n"
-"17\n"
-"help.text"
-msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-
-#. (\1+
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"tit\n"
-"help.text"
-msgid "Now Function [Runtime]"
-msgstr "Función Now [Ejecución]"
-
-#. @N=M
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Now function</bookmark_value>"
-msgstr "<bookmark_value>Now;función</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=\"Función Now [Runtime]\">Función Now [Ejecución]</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 "Devuelve la fecha y hora del sistema como valor de tipo <emph>Date</emph>."
-
-#. H[Eb
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3149456\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Valor de retorno:"
-
-#. (,,@
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Fecha"
-
-#. {n0F
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. TSD=
-#: 03030203.xhp
-#, fuzzy
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
-msgstr "msgbox \"Ahora son las \" & Now"
-
-#. yRd;
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "Variables"
-
-#. ]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=\"Variables\">Variables</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 "Las instrucciones y funciones siguientes son para trabajar con variables. Puede utilizar estas funciones para declarar o definir variables, convertirlas de un tipo a otro o para determinar el tipo de variable."
-
-#. u\:K
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sin Function [Runtime]"
-msgstr "Función Sin [Ejecución]"
-
-#. oJ;Z
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"bm_id3153896\n"
-"help.text"
-msgid "<bookmark_value>Sin function</bookmark_value>"
-msgstr "<bookmark_value>Sin;función</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=\"Función Sin [Runtime]\">Función Sin [Ejecución]</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 "Devuelve el seno de un ángulo. El ángulo se especifica en radianes. El resultado está entre -1 y 1."
-
-#. 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 "Usando el ángulo Alfa, la función Sin devuelve el coeficiente de la longitud del lado opuesto de un ángulo con la longitud de la hipotenusa en un triángulo rectángulo."
-
-#. 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) = lado opuesto al ángulo/hipotenusa"
-
-#. Gq16
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. upcq
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Sin (Number)"
-msgstr "Sin (Número)"
-
-#. GSEc
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. _5~x
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. 3Pda
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. $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>Número:</emph> Expresión numérica que define el ángulo en radianes para el que se desee calcular el seno."
-
-#. 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 "Para convertir grados en radianes, multiplique los grados por Pi/180 y para convertir radianes en grados, multiplique radianes por 180/Pi."
-
-#. RBUJ
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3149664\n"
-"12\n"
-"help.text"
-msgid "grad=(radiant*180)/pi"
-msgstr "grado=(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=(grado*pi)/180"
-
-#. J5b?
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3151112\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "Pi es aproximadamente 3,141593."
-
-#. m!5E
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 En este ejemplo, la entrada siguiente es posible para un triángulo rectángulo:"
-
-#. 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 El lado opuesto al ángulo y éste (en grados) para calcular la longitud de la hipotenusa:"
-
-#. 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 es una variable predefinida"
-
-#. 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$ (\"Escriba la longitud del lado opuesto: \",\"Lado opuesto\")"
-
-#. 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$ (\"Escriba el ángulo Alfa (en grados): \",\"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 \"La longitud de la hipotenusa es \"; (d1 / sin (dAlpha * Pi / 180))"
-
-#. 6Vkv
-#: 03050000.xhp
-msgctxt ""
-"03050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error-Handling Functions"
-msgstr "Funciones de manejo de errores"
-
-#. `\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=\"Funciones de manejo de errores\">Funciones de manejo de errores</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 "Use las instrucciones y funciones siguientes para definir la forma en que $[officename] Basic reacciona a los errores de tiempo de ejecución."
-
-#. 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 "$[officename] Basic proporciona varios métodos para evitar la terminación de un programa cuando se producen errores de tiempo de ejecución."
-
-#. 1i)3
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Dim Statement [Runtime]"
-msgstr "Instrucción Dim [Ejecución]"
-
-#. 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;instrucción</bookmark_value><bookmark_value>matrices;dimensionamiento</bookmark_value><bookmark_value>dimensionamiento;matrices</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 Statement [Runtime]\">Instrucción Dim [Ejecución]</link>"
-
-#. woeW
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3143271\n"
-"2\n"
-"help.text"
-msgid "Declares a variable or an array."
-msgstr "Declara una variable o una matriz."
-
-#. ]^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 "Si las variables están separadas por comas (por ejemplo, DIM sPar1, sPar2, sPar3 AS STRING), sólo pueden definirse variables variantes. Use una línea de definición separada para cada variable."
-
-#. ~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 "Dim declara variables locales dentro de subrutinas. Las variables globales se declaran con la instrucción PUBLIC o PRIVATE."
-
-#. M[6(
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. )@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 NombreVar [(inicio To final)] [As TipoVar][, NombreVar2 [(inicio To final)] [As TipoVar][,...]]"
-
-#. ;V!{
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3147397\n"
-"10\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NombreVar:</emph> Cualquier nombre de variable o de matriz."
-
-#. 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>Inicio, Final:</emph> Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el rango del índice."
-
-#. 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 "Inicio y Final pueden ser expresiones numéricas si se aplica ReDim a nivel de prodecimiento."
-
-#. 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>TipoVar:</emph> Palabra clave que declara el tipo de datos de una variable."
-
-#. hG8]
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Palabra clave:</emph> Tipo de variable"
-
-#. BuH%
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153949\n"
-"16\n"
-"help.text"
-msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr "<emph>Lógico:</emph> Variable lógica (True, False)"
-
-#. 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>Moneda:</emph> Variable de moneda (Moneda con 4 posiciones decimales)"
-
-#. k}52
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Fecha:</emph> Variable de fecha"
-
-#. 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>Doble:</emph> Variable de precisión doble y coma flotante (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>Entero:</emph> Variable entera (-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>Largo:</emph> Variable larga (-2.147.483.648 -2.147.483.647)"
-
-#. 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>Objeto:</emph> Variable de objeto (Nota: esta variable sólo puede definirse a partir de este momento con la instrucción Set)."
-
-#. 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>Simple:</emph> Variable de precisión simple y coma flotante (3,402823 x 10E308 -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>Cadena:</emph> Variable de cadena que se compone de un máximo de 64.000 caracteres ASCII."
-
-#. 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>[Variante]:</emph> Tipo de variable variante (contiene todos los tipos, especificada por definición). Si no se especifica ninguna palabra clave, las variables se definen automáticamente como de tipo variante, a menos que se use una instrucción desde DefBool a DefVar."
-
-#. 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 "En $[officename] Basic no es necesario declarar variables explícitamente. Sin embargo, es necesario declarar las matrices antes de poder usarlas. Puede declarar una variable con la instrucción Dim, usando comas para separar múltiples declaraciones. Para declarar un tipo de variable, escriba un carácter de declaración de tipo seguido del nombre o use la palabra clave correspondiente."
-
-#. %;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 "$[officename] Basic admite matrices de una o varias dimensiones, definidas por un tipo de variable especificado, que resultan útiles si el programa contiene listas o tablas que se desea editar. La ventaja de las matrices es que es posible acceder a elementos individuales utilizando índices, los cuales pueden formularse como expresiones o variables numéricas."
-
-#. (|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 "Las matrices se declaran con la instrucción Dim. Existen dos métodos para definir el rango de índices:"
-
-#. 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 texto(20) as String REM 21 elementos numerados del 0 al 20"
-
-#. 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 texto(5 to 25) as String REM 21 elementos numerados del 5 al 25"
-
-#. _*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 texto(-15 to 5) as String REM 21 elementos (incluido el 0)"
-
-#. [UC+
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3152774\n"
-"32\n"
-"help.text"
-msgid "REM numbered from -15 to 5"
-msgstr "REM numerados del -15 al 5"
-
-#. 4$_z
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150829\n"
-"33\n"
-"help.text"
-msgid "Two-dimensional data field"
-msgstr "Campos de datos bidimensionales"
-
-#. 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 texto(20,2) as String REM 63 elementos; del 0 al 20 en el nivel 1, de 0 al 20 en el nivel 2 y de 0 al 20 en el nivel 3."
-
-#. 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 "Puede declarar un tipo de matriz como dinámica si una instrucción ReDim define el número de dimensiones en la subrutina o la función que contenga la matriz. Normalmente las dimensiones de la matriz sólo se pueden definir una vez y posteriormente ya no pueden modificarse. Dentro de una subrutina las matrices pueden declararse con ReDim. Las dimensiones sólo pueden definirse con expresiones numéricas. Ello asegura que los campos no superen la magnitud necesaria."
-
-#. keI_
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3150344\n"
-"36\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. YL8)
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr "sVar = \"Star Office\""
-
-#. BP51
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr "Campos de datos bidimensionales"
-
-#. 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 = \" Dimensión:\""
-
-#. 46M;
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"tit\n"
-"help.text"
-msgid "FreeFile Function[Runtime]"
-msgstr "Función FreeFile [Ejecución]"
-
-#. jM$1
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"bm_id3150400\n"
-"help.text"
-msgid "<bookmark_value>FreeFile function</bookmark_value>"
-msgstr "<bookmark_value>FreeFile;función</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=\"Función FreeFile [Ejecución]\">Función FreeFile [Ejecución]</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 "Devuelve el siguiente número de archivo disponible para la apertura de un archivo. Esta función se utiliza para abrir un archivo usando un número que no esté en uso actualmente por un archivo abierto actualmente."
-
-#. fT!8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. bPdY
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. n%;8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3150440\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. $kHi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Esta función sólo se puede usar inmediatamente delante de una instrucción Open. FreeFile devuelve el número de archivo disponible, pero no lo reserva."
-
-#. 4Z2\
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. !-Ii
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"18\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. yn{I
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
-#. hZkp
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"tit\n"
-"help.text"
-msgid "ConvertToURL Function [Runtime]"
-msgstr "Función ConvertToURL [Ejecución]"
-
-#. R#Tc
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"bm_id3152801\n"
-"help.text"
-msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertToURL;función</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 Function [Runtime]\">Función ConvertToURL [Ejecución]</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 "Convierte un nombre de archivo del sistema en un URL de archivo."
-
-#. -rCF
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. JdF:
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "ConvertToURL(filename)"
-msgstr "ConvertToURL(nombrearchivo)"
-
-#. +q(,
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. ]9LA
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. ;(0+
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NombreArchivo:</emph> Un nombre de archivo como cadena."
-
-#. QI~-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Img1
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
-"10\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\carpeta\\mitexo.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 "Instrucción Set [Ejecución]"
-
-#. *`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>Establecer instrucción</bookmark_value><bookmark_value>Objeto Nothing </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 Statement[Runtime]\">Instrucción Set [Ejecución]</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 "Establece una referencia de objeto en una variable o propiedad."
-
-#. _,fY
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 9[A8
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3154217\n"
-"4\n"
-"help.text"
-msgid "Set ObjectVar = Object"
-msgstr "Set VarObjeto = Objeto"
-
-#. Rqjn
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. .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>VarObjeto:</emph> una variable o propiedad que requiere una referencia de objeto."
-
-#. 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>Objeto:</emph> objeto al que hace referencia la variable o propiedad."
-
-#. 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>: asigne el objeto <emph>Nothing</emph> a una variable para eliminar una asignación anterior."
-
-#. Y}U?
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. p^3.
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefDate Statement [Runtime]"
-msgstr "Instrucción DefDate [Ejecución]"
-
-#. IU:;
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"bm_id3150504\n"
-"help.text"
-msgid "<bookmark_value>DefDate statement</bookmark_value>"
-msgstr "<bookmark_value>DefDate;instrucción</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 Statement [Runtime]\">Instrucción DefDate [Ejecución]</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 "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefDate establece el tipo de datos predeterminado según un rango de letras."
-
-#. S7#=
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3154758\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. d(A8
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3148664\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCaracter1[, RangoCaracter2[,...]]"
-
-#. sK4}
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. XMkE
-#: 03101300.xhp
-#, fuzzy
-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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminado:"
-
-#. 5T{P
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145171\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph> Tipo de variable predeterminado"
-
-#. #Gt9
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr "<emph>DefDate:</emph> Fecha"
-
-#. Vd]%
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. qE-/
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. 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 tDate es una variable de fecha implícita"
-
-#. Os1M
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr "Bibliotecas, módulos y diálogos"
-
-#. 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=\"Bibliotecas, módulos y diálogos\">Bibliotecas, módulos y diálogos</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 continuación se describe el uso básico de bibliotecas, módulos y diálogos en $[officename] Basic."
-
-#. 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 "$[officename] Basic ofrece herramientas de ayuda para estructurar los proyectos. Admite varias \"unidades\" que permiten agrupar SUBS y FUNCIONES individuales en un proyecto Basic."
-
-#. Q,QI
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr "Bibliotecas"
-
-#. _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 "Las bibliotecas sirven como herramienta para organizar módulos y pueden adjuntarse a un documento o una plantilla. Cuando se guarda el documento o plantilla, todos los módulos que contienen también se guardan."
-
-#. 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 "Una biblioteca puede contener hasta 16.000 módulos."
-
-#. Z5RP
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr "Módulos"
-
-#. 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 "Un módulo contiene SUBS y FUNCIONES junto con declaraciones de variables. La longitud del programa que puede guardarse en un módulo está limitada a 64 KB. Si se requiere más espacio, se puede dividir un proyecto de $[officename] en varios módulos y después guardarlos en una única biblioteca."
-
-#. Il@(
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3152577\n"
-"11\n"
-"help.text"
-msgid "Dialog Modules"
-msgstr "Módulos de diálogo"
-
-#. 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 "Los módulos de diálogo combinan en un único módulo la estructura de todos los cuadros de diálogo, las propiedades de todos los elementos del diálogo y las acciones asignadas a SUBS. Debido a que los módulos de diálogo sólo pueden contener un único diálogo, a menudo se les denomina \"diálogos\"."
-
-#. _zo4
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time Functions"
-msgstr "Funciones de fecha y hora"
-
-#. 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=\"Funciones de fecha y hora\">Funciones de fecha y hora</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 "Use las instrucciones y funciones que se describen aquí para llevar a cabo cálculos de fecha y hora."
-
-#. 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 "$[officename] Basic permite calcular diferencias de fecha y hora convirtiendo los valores de éstas a valores numéricos continuos. Después de calcular las diferencias, se usan funciones especiales para reconvertir los valores a formatos estándar de fecha y hora."
-
-#. ?)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 "Puede combinar valores de fecha y hora en un único número decimal simple de coma flotante. Las fechas se convierten a enteros, y las horas a valores decimales. $[officename] Basic también admite el tipo de variable Date que puede contener una especificación de tiempo compuesta por una fecha y una hora."
-
-#. lpe7
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Controlling Program Execution"
-msgstr "Control de la ejecución del programa"
-
-#. :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=\"Controlling Program Execution\">Control de la ejecución del programa</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 "Las instrucciones siguientes controlan la ejecución de un programa."
-
-#. 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 "Un programa normalmente se ejecuta desde la primera a la última línea de código. También se pueden ejecutar algunos procedimientos dentro del programa según condiciones específicas o repetir una sección del programa dentro de un subprocedimiento o función. Se pueden usar bucles para repetir partes de un programa tantas veces como sea necesario o hasta que se cumpla alguna condición. Este tipo de instrucciones de control se clasifican como instrucciones de Condición, Bucle o Salto."
-
-#. k{eB
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Numeric Functions"
-msgstr "Funciones numéricas"
-
-#. 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=\"Funciones numéricas\">Funciones numéricas</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 "Las funciones numéricas siguientes realizan cálculos. Los operadores matemáticos y lógicos se describen en una sección independiente. Las funciones difieren de los operadores en que éstas pasan argumentos y devuelven un resultado, mientras que los operadores devuelven un resultado al combinar dos expresiones numéricas."
-
-#. +/)N
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"tit\n"
-"help.text"
-msgid "UCase Function [Runtime]"
-msgstr "Función UCase [Ejecución]"
-
-#. N\]W
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
-msgstr "<bookmark_value>UCase;función</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 Function [Runtime]\">Función UCase [Ejecución]</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 "Convierte los caracteres en minúsculas de una cadena en mayúsculas."
-
-#. _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 "Consulte también: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">Función LCase</link>"
-
-#. aLBY
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
-"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>Sintaxis</emph>:"
-
-#. 6J(C
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
-"help.text"
-msgid "UCase (Text As String)"
-msgstr "UCase (Texto As String)"
-
-#. +2LT
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "<emph>Valor de retorno</emph>:"
-
-#. l_.e
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. [a[Z
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que se desee convertir."
-
-#. )A[c
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve \"las vegas\""
-
-#. fY$#
-#: 03120310.xhp
-#, fuzzy
-msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"15\n"
-"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM devuelve \"LAS VEGAS\""
-
-#. V(?6
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDec Function [Runtime]"
-msgstr "Función CDec [Ejecución]"
-
-#. /)Tf
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"bm_id863979\n"
-"help.text"
-msgid "<bookmark_value>CDec function</bookmark_value>"
-msgstr "<bookmark_value>Función CDec</bookmark_value>"
-
-#. o-3W
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100060.xhp\">Función CDec [Ejecución]</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 "Convierte una expresión de cadena o una expresión numérica en una expresión decimal."
-
-#. fm#3
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. LBn,
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105EA\n"
-"help.text"
-msgid "CDec(Expression)"
-msgstr "CDec(Expression)"
-
-#. |Xiz
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105ED\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. i$Rm
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F1\n"
-"help.text"
-msgid "Decimal number."
-msgstr "número decimal."
-
-#. qz(W
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F4\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. 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 "Expression: cualquier cadena o expresión numérica que desee convertir."
-
-#. T;X[
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Event-Driven Macros"
-msgstr "Macros ejecutadas por acciones"
-
-#. (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>borrar;asignaciones de macros a eventos</bookmark_value><bookmark_value>macros;asignar a eventos</bookmark_value><bookmark_value>asignar macros a eventos</bookmark_value><bookmark_value>eventos;asignar macros</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=\"Macros ejecutadas por acciones\">Macros ejecutadas por acciones</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 "Esta sección describe cómo asignar programas Basic a acciones de programa."
-
-#. 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 "Puede especificarse la ejecución automática de una macro cuando se produzca una acción de software asignando la macro deseada a la acción. La tabla siguiente proporciona un resumen de acciones de programa y en qué punto se ejecuta una macro asignada."
-
-#. gw#%
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
-"help.text"
-msgid "Event"
-msgstr "Evento"
-
-#. 1l;P
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145799\n"
-"6\n"
-"help.text"
-msgid "An assigned macro is executed..."
-msgstr "Una macro asignada se ejecuta..."
-
-#. CTDN
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149379\n"
-"7\n"
-"help.text"
-msgid "Program Start"
-msgstr "Iniciar aplicación"
-
-#. w3RB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150715\n"
-"8\n"
-"help.text"
-msgid "... after a $[officename] application is started."
-msgstr "... después que se inicie una aplicación de $[officename]."
-
-#. PB/|
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146914\n"
-"9\n"
-"help.text"
-msgid "Program End"
-msgstr "Cerrar aplicación"
-
-#. !^;T
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153765\n"
-"10\n"
-"help.text"
-msgid "...before a $[officename] application is terminated."
-msgstr "...antes de que termine una aplicación de $[officename]."
-
-#. 70d]
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145150\n"
-"11\n"
-"help.text"
-msgid "Create Document"
-msgstr "Crear documento"
-
-#. 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 "...después de crear un documento nuevo con <emph>Archivo - Nuevo</emph> o con el icono <emph>Nuevo</emph>."
-
-#. -}!]
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145790\n"
-"13\n"
-"help.text"
-msgid "Open Document"
-msgstr "Abrir documento"
-
-#. 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 "...después de abrir un documento con <emph>Archivo - Abrir</emph> o con el icono <emph>Abrir</emph>."
-
-#. S/B#
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"15\n"
-"help.text"
-msgid "Save Document As"
-msgstr "Guardar documento como"
-
-#. ;@-*
-#: 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 "...antes de guardar un documento con un nombre especificado (con <emph>Archivo - Guardar como</emph> o con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, si no se ha especificado todavía un nombre de documento)."
-
-#. T4hc
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3158215\n"
-"43\n"
-"help.text"
-msgid "Document has been saved as"
-msgstr "El documento se guardó como"
-
-#. 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 "... después de guardar un documento con un nombre especificado (con <emph>Archivo - Guardar como</emph> o con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, si no se ha especificado todavía un nombre de documento)."
-
-#. qd^Q
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150519\n"
-"17\n"
-"help.text"
-msgid "Save Document"
-msgstr "Guardar documento"
-
-#. 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 "...antes de guardar un documento con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, siempre que se haya especificado antes un nombre para el documento."
-
-#. qYmx
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149404\n"
-"45\n"
-"help.text"
-msgid "Document has been saved"
-msgstr "El documento se guardó"
-
-#. 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 "...después de guardar un documento con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, siempre que se haya especificado antes un nombre para el documento."
-
-#. )29f
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"19\n"
-"help.text"
-msgid "Document is closing"
-msgstr "Documento esta cerrando"
-
-#. (K@M
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"20\n"
-"help.text"
-msgid "...before a document is closed."
-msgstr "...antes de cerrar un documento."
-
-#. T4#E
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"47\n"
-"help.text"
-msgid "Document closed"
-msgstr "Documento cerrado"
-
-#. !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 "...después de cerrar un documento. Tenga en cuenta que la acción \"Guardar documento\" también puede activarse si el documento se guarda antes de cerrarlo."
-
-#. =Wvo
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"21\n"
-"help.text"
-msgid "Activate Document"
-msgstr "Activar documento"
-
-#. 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 "...después de que un documento se traiga al primer plano."
-
-#. D#BZ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"23\n"
-"help.text"
-msgid "Deactivate Document"
-msgstr "Desactivar documento"
-
-#. 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 "...después de que otro documento se traiga al primer plano."
-
-#. lJoy
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3152384\n"
-"25\n"
-"help.text"
-msgid "Print Document"
-msgstr "Imprimir documento"
-
-#. 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 "...después de que se cierre el diálogo <emph>Imprimir</emph>, pero antes de que dé comienzo el proceso real de impresión."
-
-#. fcbB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159227\n"
-"49\n"
-"help.text"
-msgid "JavaScript run-time error"
-msgstr "Error de tiempo de ejecución de JavaScript."
-
-#. V2EQ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145362\n"
-"50\n"
-"help.text"
-msgid "...when a JavaScript run-time error occurs."
-msgstr "...cuando se produce un error de tiempo de ejecución de JavaScript."
-
-#. 0Fg;
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154767\n"
-"27\n"
-"help.text"
-msgid "Print Mail Merge"
-msgstr "Imprimir en serie"
-
-#. 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 "...después de que se cierra el diálogo <emph>Imprimir</emph>, pero antes de que dé comienzo el proceso real de impresión. Este acontecimiento se repite por cada copia que se imprime."
-
-#. :}z3
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3156366\n"
-"51\n"
-"help.text"
-msgid "Change of the page count"
-msgstr "Cambio del número de páginas"
-
-#. FoY(
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154627\n"
-"52\n"
-"help.text"
-msgid "...when the page count changes."
-msgstr "...cuando cambie el número de páginas."
-
-#. D@6.
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154737\n"
-"53\n"
-"help.text"
-msgid "Message received"
-msgstr "Mensaje recibido"
-
-#. y(?x
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150952\n"
-"54\n"
-"help.text"
-msgid "...if a message was received."
-msgstr "...si se ha recibido un mensaje."
-
-#. O/)d
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"hd_id3153299\n"
-"30\n"
-"help.text"
-msgid "Assigning a Macro to an Event"
-msgstr "Asignación de una macro a una acción"
-
-#. 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 "Seleccione <emph>Herramientas - Configurar</emph> y pulse la pestaña <emph>Acciones</emph>."
-
-#. 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 "Seleccione si desea que la asignación sea válida globalmente o que sólo sea válida en el documento actual seleccionando la opción <emph>$[officename]</emph> o <emph>Documento</emph>."
-
-#. 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 "Seleccione acción desde la lista <emph>Acción</emph>."
-
-#. 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 "Da clic en <emph>Macros</emph> y selecciona la macro a ser asignada al evento escogido."
-
-#. cCn|
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146321\n"
-"35\n"
-"help.text"
-msgid "Click <emph>OK</emph> to assign the macro."
-msgstr "Da clic en <emph>Aceptar</emph> para asignar la macro.."
-
-#. `=2{
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3147414\n"
-"56\n"
-"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Pulse <emph>Aceptar</emph> para cerrar el diálogo."
-
-#. 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 "Supresión de la asignación de una macro a una acción"
-
-#. 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 "Seleccione <emph>Herramientas - Configurar</emph> y pulse la pestaña <emph>Acciones</emph>."
-
-#. 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 "Seleccione si desea eliminar una tarea global o una tarea que sólo es válida en el documento actual seleccionando la opción en la caja de lista <emph>$[officename]</emph> o <emph>Documento</emph>."
-
-#. [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 "Seleccione la acción que contiene la asignación que desee suprimir de la lista <emph>Acciones</emph>."
-
-#. \oqc
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149143\n"
-"37\n"
-"help.text"
-msgid "Click <emph>Remove</emph>."
-msgstr "Pulse <emph>Borrar</emph>."
-
-#. 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 "Pulse <emph>Aceptar</emph> para cerrar el diálogo."
-
-#. KP;M
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Debugging a Basic Program"
-msgstr "Depuración de un programa Basic"
-
-#. 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>depurando programas en Basic</bookmark_value><bookmark_value>variables; observando valores</bookmark_value><bookmark_value>observando variables</bookmark_value><bookmark_value>errores al tiempo de ejecución en Basic</bookmark_value><bookmark_value>códigos de errores en Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Ventana de la pila de llamadas</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\">Depuración de un programa Basic</link>"
-
-#. 9FPz
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3159224\n"
-"4\n"
-"help.text"
-msgid "Breakpoints and Single Step Execution"
-msgstr "Puntos de ruptura y ejecución paso a paso"
-
-#. 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 "Con la ejecución de paso único puede comprobarse que no haya errores en ninguna línea del programa Basic. Los errores se pueden rastrearse fácilmente ya que los resultados de cada paso pueden verse inmediatamente. Un puntero de la columna de puntos de ruptura del editor indica cuál es la línea actual. También puede establecer puntos de ruptura si desea forzar la interrupción del programa en una posición específica."
-
-#. 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 "Pulse dos veces en la columna <emph>punto de ruptura</emph> de la izquierda de la ventana del editor para alternar un punto de ruptura en la línea correspondiente. Cuando el programa llega a un punto de ruptura, su ejecución se interrumpe."
-
-#. ?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 "La ejecución mediante el icono de <emph>Paso único</emph> hace que el programa se bifurque en procedimientos y funciones."
-
-#. 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 "La ejecución mediante el icono de <emph>Paso a paso</emph> hace que el programa considere los procedimientos y funciones como un único paso y los salte."
-
-#. crWD
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3153825\n"
-"9\n"
-"help.text"
-msgid "Properties of a Breakpoint"
-msgstr "Propiedades de un punto de ruptura"
-
-#. 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 "Las propiedades de un punto de ruptura están disponibles a través de su menú de contexto pulsando con el botón derecho en éste en la columna de puntos de ruptura."
-
-#. 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 "Los puntos de ruptura pueden <emph>activarse</emph> y <emph>desactivarse</emph> seleccionando <emph>Activo</emph> en el menú contextual. Cuando se desactiva un punto de ruptura, no se interrumpe la ejecución del programa."
-
-#. 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 "Para que se muestre el diálogo <emph>Puntos de ruptura</emph> donde especificar otras opciones, seleccione <emph>Propiedades</emph> desde el menú contextual de un punto de ruptura o seleccione <emph>Puntos de ruptura</emph> desde el menú contextual de la columna de puntos de ruptura."
-
-#. \=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 "La lista muestra todos los <emph>puntos de ruptura</emph> con el número de línea correspondiente en el código fuente. Los puntos de ruptura seleccionados pueden activarse o desactivarse marcando o desmarcando la casilla <emph>Activo</emph>."
-
-#. /+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 "La opción <emph>Adaptación</emph> especifica el número de veces que puede pasarse sobre el punto de ruptura antes de que el programa se interrumpa. Si se escribe 0 (el valor predeterminado) el programa siempre se interrumpe en cuanto encuentra un punto de ruptura."
-
-#. 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 "Pulse en <emph>Borrar</emph> para eliminar físicamente el punto de ruptura del programa."
-
-#. `YTC
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3150439\n"
-"14\n"
-"help.text"
-msgid "Observing the Value of Variables"
-msgstr "Supervisión del valor de las variables"
-
-#. 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 "Los valores de una variable pueden supervisarse agregándola a la ventana <emph>Observador</emph>. Para agregar una variable a la lista de variables observadas, escriba su nombre en el cuadro de texto <emph>Observador</emph> y pulse Intro."
-
-#. ?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 "Los valores de las variables sólo se muestra si están en el área. Las variables que no están definidas en la posición de código fuente actual muestran la indicación (\"Out of Scope\") en lugar de un valor."
-
-#. ;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 "En la ventana Observador también pueden incluirse matrices. Si se escribe el nombre de una matriz sin un valor de índice en el cuadro de texto Observador, se muestra el contenido de toda la matriz."
-
-#. 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 "Si acerca el ratón sobre una variable predefinida en el Editor durante el tiempo de ejecución, el contenido de la variable se muestra en un cuadro emergente."
-
-#. :Z9k
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3148618\n"
-"20\n"
-"help.text"
-msgid "The Call Stack Window"
-msgstr "Utilización de la ventana Pila de llamada"
-
-#. 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\">Proporciona un resumen de la jerarquía de llamada de procedimientos y funciones.</ahelp> Puede determinarse qué procedimientos y funciones llamaron a qué otros procedimientos y funciones en el punto actual del código fuente."
-
-#. yyKl
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3150594\n"
-"24\n"
-"help.text"
-msgid "List of Run-Time Errors"
-msgstr "Error en tiempo de ejecución"
-
-#. m*2J
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"tit\n"
-"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr "combinaciones del teclado en Basic IDE"
-
-#. 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>teclado;en IDE</bookmark_value><bookmark_value>combinaciones de teclas;Basic IDE</bookmark_value><bookmark_value>IDE;teclas</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=\"Keyboard Shortcuts in the Basic IDE\">combinaciones del teclado en Basic IDE</link>"
-
-#. YdQc
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "In the Basic IDE you can use the following keyboard shortcuts:"
-msgstr "En el Basic IDE puede usar las combinaciones de teclas siguientes:"
-
-#. _RT!
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
-"3\n"
-"help.text"
-msgid "Action"
-msgstr "Acción"
-
-#. 5AD;
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153192\n"
-"4\n"
-"help.text"
-msgid "Keyboard shortcut"
-msgstr "Combinación de teclas"
-
-#. 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 "Ejecute el código desde la primera línea o desde el punto de ruptura actual si el programa se detuvo allí antes."
-
-#. 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 "Stop"
-
-#. HBpx
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154319\n"
-"8\n"
-"help.text"
-msgid "Shift+F5"
-msgstr "Mayús + 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 "Añada un <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">observador</link> para la variable del cursor"
-
-#. ^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 "Un único paso en cada instrucción, comenzando en la primera línea o en la instrucción donde anteriormente se detuvo la ejecución del programa."
-
-#. 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 "Un único paso al igual que con F8, pero se considera que una llamada a una función es únicamente <emph>una</emph> instrucción"
-
-#. Hn/Y
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153764\n"
-"16\n"
-"help.text"
-msgid "Shift+F8"
-msgstr "Mayús+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 "Establezca o borre un <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">punto de ruptura</link> en la línea actual o en todos los puntos de ruptura en la selección actual"
-
-#. 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 "Active o desactive el punto de ruptura en la línea actual o en todos los puntos de ruptura en la selección actual"
-
-#. \2?k
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3155175\n"
-"20\n"
-"help.text"
-msgid "Shift+F9"
-msgstr "Mayús+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 "Una macro en ejecucción puede ser suspendida con la tecla Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, tambien desde fuera del IDE de Basic. Si esta dentro del IDE de Basic y la macro se frena en el punto de ruptura, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q para la ejecución de la macro, pero puede comprobar solo despues de presionar F5, F8, o Shift+F8."
-
-#. EoF]
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsArray Function [Runtime]"
-msgstr "Función IsArray [Ejecución]"
-
-#. ljz2
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"bm_id3154346\n"
-"help.text"
-msgid "<bookmark_value>IsArray function</bookmark_value>"
-msgstr "<bookmark_value>IsArray;función</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 Function [Runtime]\">Función IsArray [Ejecución]</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 "Determina si una variable es un campo de datos de una matriz."
-
-#. srvh
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. f2MY
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3153379\n"
-"4\n"
-"help.text"
-msgid "IsArray (Var)"
-msgstr "IsArray (Var)"
-
-#. h!la
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3154365\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. LVRl
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. TqCE
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Var:</emph> Cualquier variable que se desea comprobar para ver si está declarada como matriz. Si la variable es una matriz, la función devuelve el valor <emph>True</emph>, en caso contrario devuelve <emph>False</emph>."
-
-#. wErW
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. NzT-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr "Generación de números aleatorios"
-
-#. 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=\"Generación de números aleatorios\">Generación de números aleatorios</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 "Las instrucciones y funciones siguientes generan números aleatorios."
-
-#. !#Y#
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"tit\n"
-"help.text"
-msgid "CSng Function[Runtime]"
-msgstr "Función CSng [Ejecución]"
-
-#. P#xA
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"bm_id3153753\n"
-"help.text"
-msgid "<bookmark_value>CSng function</bookmark_value>"
-msgstr "<bookmark_value>CSng;función</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 Function[Runtime]\">Función CSng [Ejecución]</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 "Convierte cualquier cadena o expresión numérica en el tipo de datos Simple."
-
-#. sC\E
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3153255\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. J/0I
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3148983\n"
-"4\n"
-"help.text"
-msgid "CSng (Expression)"
-msgstr "CSng (Expresión)"
-
-#. =C+P
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3152347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. ZP`(
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3153750\n"
-"6\n"
-"help.text"
-msgid "Single"
-msgstr "Simple"
-
-#. 5pzk
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3146957\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión de cadena o numérica que desee convertir. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
-
-#. @@!5
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3149514\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. eb[L
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"tit\n"
-"help.text"
-msgid "Int Function [Runtime]"
-msgstr "Función Int [Ejecución]"
-
-#. M3(?
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>Int function</bookmark_value>"
-msgstr "<bookmark_value>Int;función</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=\"Función Int [Runtime]\">Función Int [Ejecución]</link>"
-
-#. 4M$.
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3155420\n"
-"2\n"
-"help.text"
-msgid "Returns the integer portion of a number."
-msgstr "Devuelve la parte entera de un número."
-
-#. ,,$2
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ?~lj
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Int (Number)"
-msgstr "Int (Número)"
-
-#. 4aJC
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3149670\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. U+@f
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. 0VIB
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. (_OE
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3148797\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr "<emph>Número:</emph> Cualquier expresión númerico valido."
-
-#. .MT@
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve el valor 3"
-
-#. 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 devuelve el valor 0"
-
-#. (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 devuelve el valor -4"
-
-#. /FU|
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"tit\n"
-"help.text"
-msgid "RTrim Function [Runtime]"
-msgstr "Función Rtrim [Ejecución]"
-
-#. Bn8^
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"bm_id3154286\n"
-"help.text"
-msgid "<bookmark_value>RTrim function</bookmark_value>"
-msgstr "<bookmark_value>RTrim;función</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 Function [Runtime]\">Función Rtrim [Ejecución]</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 "Borra los espacios del final de una expresión de cadena."
-
-#. 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 "Consulte también: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">Función LTrim</link>"
-
-#. 0_aA
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. *,~f
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3154347\n"
-"5\n"
-"help.text"
-msgid "RTrim (Text As String)"
-msgstr "RTrim (Texto As String)"
-
-#. 2n9v
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. }(u#
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. 4p1@
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. bzdN
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3151380\n"
-"9\n"
-"help.text"
-msgid "<emph>Text: </emph>Any string expression."
-msgstr "Texto: Cualquier expresión de cadena."
-
-#. 4Lci
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. `6)O
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr "Enteros"
-
-#. 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=\"Enteros\">Enteros</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 "Las funciones siguientes redondean valores a enteros."
-
-#. 21!v
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chr Function [Runtime]"
-msgstr "Función Chr [Ejecución]"
-
-#. MA|5
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Chr function</bookmark_value>"
-msgstr "<bookmark_value>Chr;función</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 Function [Runtime]\">Función Chr [Ejecución]</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 "Devuelve el carácter que corresponde al código de carácter especificado."
-
-#. eiy7
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. m^?6
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Chr(Expression As Integer)"
-msgstr "Chr(Expresión As Integer)"
-
-#. kmF*
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3143228\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. v`,K
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. 8DO7
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Variables numéricas que representan un valor ASCII válido de 8 bits (0-255) o un valor Unicode de 16 bits."
-
-#. 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 "Use la función <emph>Chr$</emph> para enviar secuencias de control especiales a una impresora o a otra fuente de salida. También puede usarlo para insertar comillas en una expresión de cadena."
-
-#. U+M(
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Este ejemplo inserta comillas (valor ASCII 34) en una cadena."
-
-#. 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 \"Un \"+ Chr$(34)+\"viaje\" + Chr$(34)+\" corto.\""
-
-#. 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 El mensaje que aparecerá en el diálogo será éste: Un \"viaje\" corto."
-
-#. 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 "Función GetProcessServiceManager [Ejecución]"
-
-#. 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;función</bookmark_value><bookmark_value>ProcessServiceManager;GetProcessServiceManager</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 Function [Runtime]\">Función GetProcessServiceManager [Ejecución]</link>"
-
-#. il__
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3156414\n"
-"2\n"
-"help.text"
-msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
-msgstr "Devuelve el ProcessServiceManager (central Uno ServiceManager)."
-
-#. sTlI
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3145136\n"
-"3\n"
-"help.text"
-msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
-msgstr "Esta función es necesaria cuando se desea crear un caso de un servicio mediante CreateInstanceWithArguments."
-
-#. \?S6
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Ejemplo:"
-
-#. 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 "esto equivale a la instrucción siguiente:"
-
-#. ?%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 "Función Asc [Ejecución]"
-
-#. !!U7
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Asc function</bookmark_value>"
-msgstr "<bookmark_value>Asc;función</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 Function [Runtime]\">Función Asc [Ejecución]</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 "Devuelve el valor ASCII (American Standard Code for Information Interchange) del primer carácter de una expresión de cadena."
-
-#. -\6}
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. gex|
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Asc (Text As String)"
-msgstr "Asc (Texto As String)"
-
-#. Nb:@
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. Lj+Q
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. l$2@
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena válida. Sólo es relevante el primer carácter de la cadena."
-
-#. 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 "Mediante la función Asc, sustituya teclas por valores. Si la función Asc detecta una cadena vacía, $[officename] Basic informa de un error de tiempo de ejecución. Aparte de caracteres ASCII de 7 bits (códigos 0-127), la función ASCII detecta códigos de caracteres no imprimibles en código ASCII. Esta función también admite caracteres Unicode de 16 bits."
-
-#. $=J]
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve 65"
-
-#. Jk5?
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_id3148797\n"
-"13\n"
-"help.text"
-msgid "Print ASC(\"Z\") ' returns 90"
-msgstr "Print ASC(\"Z\") REM devuelve 90"
-
-#. ;06h
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_id3163800\n"
-"14\n"
-"help.text"
-msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
-msgstr "Print ASC(\"Las Vegas\") REM devuelve 76, ya que sólo se tiene en cuenta el primer carácter"
-
-#. 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 "Función CDbl [Ejecución]"
-
-#. pyG4
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"bm_id3153750\n"
-"help.text"
-msgid "<bookmark_value>CDbl function</bookmark_value>"
-msgstr "<bookmark_value>CDbl;función</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 Function [Runtime]\">Función CDbl [Ejecución]</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 "Convierte cualquier expresión de cadena o numérica en un tipo doble."
-
-#. CU`#
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. 25NM
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "CDbl (Expression)"
-msgstr "CDbl (Expresión)"
-
-#. 38MF
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3153061\n"
-"5\n"
-"help.text"
-msgid "Return value"
-msgstr "Valor de retorno:"
-
-#. +.[y
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. R}R8
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión de cadena o numérica que desee convertir. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
-
-#. Lw$-
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. +lCL
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Función Cos [Ejecución]"
-
-#. e!8c
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"bm_id3154923\n"
-"help.text"
-msgid "<bookmark_value>Cos function</bookmark_value>"
-msgstr "<bookmark_value>Cos;función</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=\"Función Cos [Ejecución]\">Función Cos [Ejecución]</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 "Calcula el coseno de un ángulo. El ángulo se especifica en radianes. El resultado está entre -1 y 1."
-
-#. 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 "Usando el ángulo Alfa, la función Cos calcula el coeficiente de la longitud del lado que es adyacente al ángulo, dividido por la longitud de la hipotenusa en un triángulo rectángulo."
-
-#. \8,*
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3154141\n"
-"4\n"
-"help.text"
-msgid "Cos(Alpha) = Adjacent/Hypotenuse"
-msgstr "Cos(Alfa) = Adyacente/Hipotenusa"
-
-#. :cMQ
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ]m`/
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3145172\n"
-"6\n"
-"help.text"
-msgid "Cos (Number)"
-msgstr "Cos (Número)"
-
-#. avLi
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. C=FE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. v=Sv
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3153969\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Expresión numérica que especifica un ángulo en radianes para el que se desea calcular el coseno."
-
-#. )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 "Para convertir grados a radianes, multiplique los grados por pi/180. Para convertir radianes a grados, multiplique los radianes por 180/pi."
-
-#. 3.lE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149664\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "grado=(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=(grado*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 "Pi es aquí la constante fija de la circunferencia, con el valor redondeado de 3,14159..."
-
-#. TQNa
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. [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 El ejemplo siguiente permite para un triángulo rectángulo la entrada de"
-
-#. *_\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 la secante y el ángulo (en grados) y calcula la longitud de la hipotenusa:"
-
-#. Q!Ai
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr "REM redondeado 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$ (\"\"Escriba la longitud del lado adyacente: \",\"Adyacente\")"
-
-#. 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$ (\"Escriba el ángulo Alfa (en grados): \",\"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 \"La longitud de la hipotenusa es \"; (d1 / cos (dAngle * Pi / 180))"
-
-#. 6ddw
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Gestión de los puntos de ruptura"
-
-#. 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=\"Gestión de los puntos de ruptura\">Gestión de los puntos de ruptura</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\" visibility=\"visible\">Especifica las opciones de los puntos de ruptura.</ahelp>"
-
-#. MlDG
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
-"3\n"
-"help.text"
-msgid "Breakpoints"
-msgstr "Puntos de ruptura"
-
-#. 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\" visibility=\"visible\">Escriba el número de línea de un nuevo punto de ruptura y pulse Nuevo.</ahelp>"
-
-#. Haog
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3156280\n"
-"6\n"
-"help.text"
-msgid "Active"
-msgstr "Activar"
-
-#. @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\" visibility=\"visible\">Activa o desactiva el punto de ruptura actual.</ahelp>"
-
-#. ()DC
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3144500\n"
-"8\n"
-"help.text"
-msgid "Pass Count"
-msgstr "Adaptación"
-
-#. 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\" visibility=\"visible\">Especifica el número de bucles que efectuar antes de que se active el punto de ruptura.</ahelp>"
-
-#. Q7bw
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
-"10\n"
-"help.text"
-msgid "New"
-msgstr "Nuevo"
-
-#. ~?!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\" visibility=\"visible\">Crea un punto de ruptura en el número de línea especificado.</ahelp>"
-
-#. 9#45
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
-"12\n"
-"help.text"
-msgid "Delete"
-msgstr "Borrar"
-
-#. 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\" visibility=\"visible\">Borra el punto de ruptura seleccionado.</ahelp>"
-
-#. DI}?
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Array Function [Runtime]"
-msgstr "Función Array [Ejecución]"
-
-#. ]*}.
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Array function</bookmark_value>"
-msgstr "<bookmark_value>Array;función</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 Function [Runtime]\">Función Array [Ejecución]</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 "Devuelve el tipo Variante con un campo de datos."
-
-#. pSl~
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 6Gb.
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "Array ( Argument list)"
-msgstr "Array (Lista de argumentos)"
-
-#. 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 "Consulte también <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 "Parámetros:"
-
-#. 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>Lista de argumentos:</emph> Una lista de cualquier número de argumentos que estén separados por comas."
-
-#. DPx{
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. =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(\"Luis\",\"Tomás\",\"Guille\")"
-
-#. *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 "Función Val [Ejecución]"
-
-#. `J)\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Val function</bookmark_value>"
-msgstr "<bookmark_value>Val;función</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 Function [Runtime]\">Función Val [Ejecución]</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 "Convierte una cadena en una expresión numérica."
-
-#. X/*7
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. o1MT
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Val (Text As String)"
-msgstr "Val (Texto As String)"
-
-#. ,Ta\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3150669\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. xv|T
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. /TE\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. \[@/
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3154348\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr "<emph>Texto:</emph> Cadena que representa un número."
-
-#. 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 "Mediante la función Val puede convertir una cadena que representa números en expresiones numéricas. Es la función inversa a <emph>Str</emph>. Si sólo una parte de la cadena contiene números, únicamente los primeros caracteres apropiados de la cadena se convierten. Si la cadena no contiene ningún número, la función <emph>Val</emph> devuelve el valor 0."
-
-#. *ANs
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. p|qT
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr "Funciones para la entrada por pantalla"
-
-#. 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=\"Funciones para la entrada por pantalla\">Funciones para la entrada por pantalla</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 "Esta sección describe las funciones de tiempo de ejecución que se utilizan para controlar la entrada por pantalla."
-
-#. Y,1#
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"tit\n"
-"help.text"
-msgid "MkDir Statement [Runtime]"
-msgstr "Instrucción MkDir [Ejecución]"
-
-#. #02k
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"bm_id3156421\n"
-"help.text"
-msgid "<bookmark_value>MkDir statement</bookmark_value>"
-msgstr "<bookmark_value>MkDir;instrucción</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=\"Declaración MkDir [Runtime]\">Declaración MkDir [Runtime]</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 "Crea un directorio nuevo en un soporte de datos."
-
-#. EW7~
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. @+6W
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3155150\n"
-"4\n"
-"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Texto As String"
-
-#. i7db
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que especifique el nombre y ruta del directorio que se desea crear. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. 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 "Si la ruta de acceso no se determina, se crea el directorio en el directorio actual."
-
-#. OK-/
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. (p3u
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr "' Ejemplo de funciones par una organización de archivos."
-
-#. 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 sArchivo2 as String = \"Copiado.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 sArchivo3 as String = \"NuevoNombre.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 ' ¿Existe el directorio?"
-
-#. Li-a
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr "MsgBox sArchivo,0,\"Crear directorio\""
-
-#. $,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,\"Directorio actual\""
-
-#. +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 sArchivo & Chr(13) & FileDateTime( sArchivo ),0,\"Fecha de creación\""
-
-#. 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 sArchivo & Chr(13)& FileLen( sArchivo ),0,\"Tamaño del archivo\""
-
-#. ;|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 sArchivo & Chr(13)& GetAttr( sArchivo ),0,\"Atributos del archivo\""
-
-#. r)jU
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
-"help.text"
-msgid "' Rename in the same directory"
-msgstr "' Cambiar el nombre en el mismo directorio"
-
-#. p)9s
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147426\n"
-"34\n"
-"help.text"
-msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
-msgstr "SetAttr( sArchivo, 0 ) 'Borrar todos los atributos"
-
-#. 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 sArchivo & Chr(13) & GetAttr( sArchivo ),0,\"Atributos del archivo nuevo\""
-
-#. #5]l
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3150092\n"
-"40\n"
-"help.text"
-msgid "' Converts a system path in URL"
-msgstr "' Convierte una ruta del sistema en una URL"
-
-#. Vi:T
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3156276\n"
-"49\n"
-"help.text"
-msgid "' the colon with DOS"
-msgstr "' los dos puntos con DOS"
-
-#. 2ZB.
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"tit\n"
-"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr "Instrucción On Error GoTo ... Resume [Ejecución]"
-
-#. 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>función;Resume Next</bookmark_value><bookmark_value>Resume Next;función</bookmark_value><bookmark_value>On Error GoTo ... Resume;función</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=\"Instrucción On Error GoTo ... Resume [Runtime]\">Instrucción On Error GoTo ... Resume [Ejecución]</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 "Habilita una rutina de manejo de errores después de producirse éstos o continúa la ejecución del programa."
-
-#. Ng2C
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 NombreEtiqueta | GoTo 0 | Resume Next}"
-
-#. L+Ac
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 NombreEtiqueta:</emph> Si se produce un error, activa la rutina de manejo de errores que empieza en la línea \"NombreEtiqueta\"."
-
-#. 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> Si se produce un error, la ejecución del programa continúa con la instrucción que seguía a aquélla en la que se produjo el error."
-
-#. 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> Desactiva el manejador de errores para el procedimiento actual."
-
-#. .~:,
-#: 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>Local:</emph> El ámbito de \"On error\" es global, y permanece activo hasta que se lo cancela mediante otra sentencia \"On error\". En cambio, el ámbito de \"On Local error\" es local para la rutina que lo invoca. El manejo local de errores anula cualquier configuración global previa. Cuando finaliza la rutina invocadora, se cancela automáticamente el manejo local del error, y se restaura la configuración global previa."
-
-#. 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 "La instrucción On Error GoTo se utiliza para reaccionar a los errores que se producen en una macro."
-
-#. DJeq
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. !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 #iNumero, \"Esta es una línea de texto\""
-
-#. 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 \"Todos los archivos se cerrarán\",0,\"Error\""
-
-#. ]LB4
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr "Glosario de $[officename] Basic"
-
-#. 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 Glossary\">Glosario de $[officename] Basic</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 "Este glosario explica algunos términos técnicos que se pueden encontrar al trabajar con $[officename] Basic."
-
-#. [L1{
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
-"7\n"
-"help.text"
-msgid "Decimal Point"
-msgstr "Coma decimal"
-
-#. 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 "Al convertir números, $[officename] Basic usa los valores locales del sistema para determinar el tipo de decimal y de separador de miles."
-
-#. 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 "La conducta tiene un efecto en la conversión implícita ( 1 + \"2,3\" = 3,3 ) y en la función en tiempo de ejecución <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-
-#. k!8t
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155854\n"
-"29\n"
-"help.text"
-msgid "Colors"
-msgstr "Colores"
-
-#. )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 "En $[officename] Basic, los colores se tratan como valores enteros largos. El valor de retorno de las consultas de color también es siempre un valor entero largo. Al definir propiedades, los colores se pueden especificar mediante su código RGB que se convierte en un valor entero largo gracias a la <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">función RGB</link>."
-
-#. uU:d
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr "Unidades de medida"
-
-#. $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 "En $[officename] Basic, a un <emph>parámetro de método</emph> o a una <emph>propiedad</emph> que requieran una unidad de medida, se les puede especificar la información ya sea como una expresión que devuelva un entero o un entero largo sin unidades de medida, o bien como una cadena de caracteres que contenga la unidad. Si no se pasa ninguna unidad al método, se usará la unidad predeterminada definida para el documento activo. Si se pasa el parámetro como una cadena de caracteres que contiene una unidad de medida, se ignorará la configuración predeterminada. La unidad de medida predeterminada para cada tipo de documento puede establecerse en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - (Tipo de documento) - General</emph>."
-
-#. SuWS
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3145801\n"
-"help.text"
-msgid "<bookmark_value>twips; definition</bookmark_value>"
-msgstr "<bookmark_value>twips; definición</bookmark_value>"
-
-#. N/fK
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145801\n"
-"5\n"
-"help.text"
-msgid "Twips"
-msgstr "Twips"
-
-#. 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 "Un twip es una unidad independiente de la pantalla que se usa para definir la posición y tamaño uniformes de los elementos de pantalla en todos los sistemas de visualización. Un twip es 1/1440 de una pulgada o 1/20 del punto de una impresora. En una pulgada hay 1440 twips o unos 567 twips por centímetro."
-
-#. cPoM
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153159\n"
-"106\n"
-"help.text"
-msgid "URL Notation"
-msgstr "Notación URL"
-
-#. 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 "Las URL (<emph>Uniform Resource Locators</emph>) se usan para determinar la posición de un recurso, como un archivo, en un sistema de archivos, normalmente dentro de un entorno de red. Una URL se compone de un especificador de protocolo, uno de ordenador y uno de archivo y ruta de acceso:"
-
-#. 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>protocolo</emph>://<emph>nombre.ordenador</emph>/<emph>ruta/del/archivo.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 "El uso más común para las URL en Internet es especificar páginas web. Algunos ejemplos de protocolos son <emph>http</emph>, <emph>ftp</emph> o <emph>file</emph>. El especificador de protocolo <emph>file</emph> se usa para hacer referencia a un archivo del sistema de archivos local."
-
-#. %\.,
-#: 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 "La notación URL no permite el uso de algunos caracteres especiales. Éstos se sustituyen por otros caracteres o se codifican. La barra oblicua (<emph>/</emph>) se utiliza como separador de ruta de acceso. Por ejemplo, un archivo al que se hace referencia como <emph>C:\\Mi archivo.sxw</emph> en el ordenador local con la \"notación Windows\" se convierte en <emph>file:///C|Mi%20archivo.sxw</emph> en la notación URL."
-
-#. W0ny
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"tit\n"
-"help.text"
-msgid "Join Function [Runtime]"
-msgstr "Función Join [Ejecución]"
-
-#. /lP%
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Join function</bookmark_value>"
-msgstr "<bookmark_value>Join;función</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 Function [Runtime]\">Función Join [Ejecución]</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 "Devuelve una cadena a partir de varias subcadenas de una matriz."
-
-#. YcNu
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. *L1^
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3156344\n"
-"4\n"
-"help.text"
-msgid "Join (Text As String Array, delimiter)"
-msgstr "Join (Texto As String Array, delimitador)"
-
-#. /B^V
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. N[,G
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. %!2a
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. II,g
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3145171\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> A string array."
-msgstr "<emph>Texto:</emph> Una matriz de cadenas."
-
-#. 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>Delimitador (opcional):</emph> Un carácter que se utiliza para separar las subcadenas en la cadena resultante. El delimitador predeterminado es el carácter espacio. Si el delimitador es una cadena de longitud cero \"\", las subcadenas se unen sin utilizar ningún separador."
-
-#. ?[TY
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. T.!=
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "Función DateValue [Ejecución]"
-
-#. }{uT
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "<bookmark_value>DateValue;función</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=\"Función DateValue [Runtime]\">Función DateValue [Ejecución]</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 "Devuelve un valor de fecha de una cadena de fecha. La cadena de fecha es una fecha completa en un valor numérico único. También puede usar este número de serie para determinar la diferencia entre dos fechas."
-
-#. eOLq
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. UAuj
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr "DateValue [(fecha)]"
-
-#. 14NQ
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. dH$[
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Fecha"
-
-#. MMIc
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. =}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>Fecha:</emph> Expresión de cadena que contenga la fecha que se desee calcular. La fecha puede especificarse en casi cualquier formato."
-
-#. 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 "Esta función puede utilizarse para convertir una fecha entre el 1 de diciembre de 1582 y el 31 de diciembre de 9999 en un valor entero simple. También se puede usar este valor para calcular la diferencia entre dos fechas. Si el argumento de fecha se encuentra fuera del rango aceptable, $[officename] Basic devuelve un mensaje de error."
-
-#. 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 diferencia de la función DateSerial que pasa años, meses y días como valores numéricos independientes, DateValue pasa la fecha con el formato \"mes.[,]día.[,]año\"."
-
-#. oH]$
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ;Vf7
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "Edición del contenido de cadenas"
-
-#. \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>simbolo de ampersand en StarBasic</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=\"Editing String Contents\">Edición del contenido de cadenas</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 "Las funciones siguientes se usan para editar, dar formato y alinear contenidos de cadenas."
-
-#. QOhM
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateObject Function [Runtime]"
-msgstr "Función CreateObject [Ejecución]"
-
-#. !qI{
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "<bookmark_value>Función CreateObject</bookmark_value>"
-
-#. t\gL
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Función CreateObject [Ejecución]</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=\".\">Crea un objeto UNO. En Windows, también puede crear objetos OLE.</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 "Este método crea casos del tipo que se pasa como parámetro."
-
-#. _?PZ
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. %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 "Ejemplo:"
-
-#. hBL[
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr "Instrucción Reset [Ejecución]"
-
-#. }qm;
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"bm_id3154141\n"
-"help.text"
-msgid "<bookmark_value>Reset statement</bookmark_value>"
-msgstr "<bookmark_value>Reset;instrucción</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\">Instrucción Reset [Ejecución]</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 "Cierra todos los archivos abiertos y escribe el contenido de todas las memorias intermedias de archivo en el disco duro."
-
-#. +bDM
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. {H@|
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. +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 #iNumero, \"Esta es una línea de texto nueva\""
-
-#. 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 \"Todos los archivos se cerrarán\",0,\"Error\""
-
-#. F1iV
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Función Red [Ejecución]"
-
-#. O*Or
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "<bookmark_value>Red;función</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=\"Función Red [Runtime]\">Función Red [Runtime]</link>"
-
-#. TJ].
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Returns the Red component of the specified color code."
-msgstr "Devuelve el componente rojo del código de color dado."
-
-#. TDdA
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. \`?S
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
-"help.text"
-msgid "Red (ColorNumber As Long)"
-msgstr "Red (NúmeroColor As Long)"
-
-#. .Q1l
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 9o|:
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3145173\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. %FsZ
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. 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>NúmeroColor</emph>: Expresión de número entero largo que especifica un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"código de color\">código de color</link> para el que devolver el componente rojo."
-
-#. %A`^
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148575\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
-
-#. \)UC
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3155306\n"
-"14\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"rojo = \" & 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 "\"verde= \" & 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 "\"azul= \" & blue(lVar) & Chr(13) , 64,\"colores\""
-
-#. N9Sv
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Función Split [Ejecución]"
-
-#. vcS[
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "<bookmark_value>Split;función</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 Function [Runtime]\">Función Split [Ejecución]</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 "Devuelve una matriz de subcadenas a partir de una expresión de cadena."
-
-#. fY;o
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ,NpX
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3153824\n"
-"4\n"
-"help.text"
-msgid "Split (Text As String, delimiter, number)"
-msgstr "Split (Texto As String, delimitador, número)"
-
-#. 7$5b
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. A[fG
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3154285\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. 0jG#
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. NP!Q
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3156023\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Texto:</emph> Cualquier expresión de cadena."
-
-#. 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>delimitador (opcional):</emph> Cadena de uno o más caracteres de longitud que se emplea para delimitar el texto. El valor predeterminado es el carácter de espacio."
-
-#. (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>Número (opcional):</emph> Número de subcadenas que se desee devolver."
-
-#. GqT6
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. oKPP
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input# Statement [Runtime]"
-msgstr "Instrucción Input# [Ejecución]"
-
-#. ]{@]
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"bm_id3154908\n"
-"help.text"
-msgid "<bookmark_value>Input statement</bookmark_value>"
-msgstr "<bookmark_value>Input;función</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=\"Instrucción Input# [Runtime]\">Instrucción Input [Runtime]</link>"
-
-#. qTY:
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3156424\n"
-"2\n"
-"help.text"
-msgid "Reads data from an open sequential file."
-msgstr "Lee datos de un archivo secuencial abierto."
-
-#. }JVw
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3125863\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 #NúmeroArchivo As Integer; var1[, var2[, var3[,...]]]"
-
-#. |RRL
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NúmeroArchivo:</emph> Número del archivo que contenga los datos que se desee leer. El archivo debe estar abierto con la instrucción Open mediante la palabra clave INPUT."
-
-#. 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>var:</emph> Una variable numérica o de cadena que a la que se asigna los valores que se leen del archivo abierto."
-
-#. 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 "La instrucción <emph>Input#</emph> lee valores numéricos o cadenas de un archivo abierto y asigna los datos a una o más variables. Una variable numérica se lee hasta el primer retorno de carro (Asc=13), avance de línea (Asc=10), espacio o coma. Las variables de cadena se leen hasta el primer retorno de carro (Asc=13), avance de línea (Asc=10) o coma."
-
-#. 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 "Los datos y los tipos de datos del archivo abierto deben aparecer en el mismo orden que las variables que se pasan en el parámetro \"var\". Si asigna valores no numéricos a una variable numérica, se asigna a \"var\" un valor igual a \"0\"."
-
-#. %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 "Los registros separados por comas no pueden asignarse a una variable de cadena. Las comillas (\") del archivo también se descartan. Si desea leer estos caracteres del archivo, use la instrucción <emph>Line Input#</emph> para leer archivos de texto puros (archivos que contienen sólo caracteres imprimibles) línea a línea."
-
-#. 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 "Si se llega al final del archivo mientras se lee un elemento de datos, se produce un error y el proceso se interrumpe."
-
-#. uU.c
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 "Instrucción ReDim [Ejecución]"
-
-#. :J`b
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"bm_id3150398\n"
-"help.text"
-msgid "<bookmark_value>ReDim statement</bookmark_value>"
-msgstr "<bookmark_value>ReDim;instrucción</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 Statement [Runtime]\">Instrucción ReDim [Ejecución]</link>"
-
-#. !La?
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "Declares a variable or an array."
-msgstr "Declara una variable o una matriz."
-
-#. :In9
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3154218\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 NombreVar [(inicio To final)] [As TipoVar][, NombreVar2 [(inicio To final)] [As TipoVar][,...]]"
-
-#. 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 "De forma opcional, puede agregar la palabra clave <emph>Preserve</emph> como parámetro para conservar el contenido de la matriz que se redimensiona."
-
-#. LY,B
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3148451\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NombreVar:</emph> Cualquier nombre de variable o de matriz."
-
-#. 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>Inicio, Final:</emph> Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el rango del índice."
-
-#. 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 "Inicio y Final pueden ser expresiones numéricas si se usa ReDim a nivel de prodecimiento."
-
-#. %(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>TipoVar:</emph> Palabra clave que declara el tipo de datos de una variable."
-
-#. 8dA`
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3147317\n"
-"10\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Palabra clave:</emph> Tipo de variable"
-
-#. @1A(
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153728\n"
-"11\n"
-"help.text"
-msgid "<emph>Bool: </emph>Boolean variable (True, False)"
-msgstr "<emph>Lógico: </emph> Variable lógica (True, False)"
-
-#. PUi=
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3146121\n"
-"12\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Fecha:</emph> Variable de fecha"
-
-#. 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>Doble:</emph> Variable de precisión doble y coma flotante (1,79769313486232 x 10E308 -4,94065645841247 x 10E-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>Entero:</emph> Variable entera (-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>Largo:</emph> Variable larga (-2.147.483.648 -2.147.483.647)"
-
-#. 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>Objeto:</emph> Variable de objeto (sólo puede definirse a partir de este momento con la instrucción Set)."
-
-#. 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>[Simple]:</emph> Variable de precisión simple y coma flotante (3,402823 x 10E308 -1,401298 x 10E-45). Si no se especifica ninguna palabra clave, las variables se definen como de tipo Simple, a menos que se use una instrucción desde DefBool a DefVar."
-
-#. 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>Cadena:</emph> Variable de cadena que se compone de un máximo de 64.000 caracteres ASCII."
-
-#. @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>Variante: </emph> Tipo de variable variante (puede contener todos los tipos y se especifica por definición)."
-
-#. 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 "En $[officename] Basic no es necesario declarar variables explícitamente. Sin embargo, es necesario declarar las matrices antes de poder usarlas. Puede declarar una variable con la instrucción Dim, usando comas para separar múltiples declaraciones. Para declarar un tipo de variable, escriba un carácter de declaración de tipo seguido del nombre o use la palabra clave correspondiente."
-
-#. 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 "$[officename] Basic admite matrices de una o varias dimensiones, definidas por un tipo de variable especificado. Las matrices son útiles si el programa contiene listas o tablas que se desee editar. La ventaja de las matrices es que es posible acceder a elementos individuales utilizando índices, los cuales pueden formularse como expresiones o variables numéricas."
-
-#. 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 "Hay dos formas de establecer el rango de índices para matrices declaradas con la instrucción Dim:"
-
-#. 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 texto(20) as String REM 21 elementos numerados del 0 al 20"
-
-#. *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 texto(5 to 25) As String REM 21 elementos numerados del 5 al 25"
-
-#. 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 texto$(-15 to 5) as String REM 21 elementos (incluido el 0),"
-
-#. v.:0
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3150321\n"
-"26\n"
-"help.text"
-msgid "rem numbered from -15 to 5"
-msgstr "REM numerados del -15 al 5"
-
-#. 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 "Los campos de variables, cualquiera que sea su tipo, pueden hacerse dinámicos si los dimensiona ReDim a nivel de procedimiento en subrutinas o funciones. Normalmente sólo puede definirse el rango de una matriz una vez y no puede modificarse. Dentro de un procedimiento, pueden declararse matrices mediante la instrucción ReDim con expresiones numéricas para definir el rango de los tamaños de campo."
-
-#. u\cu
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3148405\n"
-"28\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. F?F-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Day Function [Runtime]"
-msgstr "Función Day [Ejecución]"
-
-#. rGPm
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>Day function</bookmark_value>"
-msgstr "<bookmark_value>Day;función</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=\"Función Day [Runtime]\">Función Day [Runtime]</link>"
-
-#. !p[N
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3147560\n"
-"2\n"
-"help.text"
-msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
-msgstr "Devuelve un valor que representa el día del mes a partir de un número de fecha serie generado por <emph>DateSerial</emph> o <emph>DateValue</emph>."
-
-#. B[]L
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. beG{
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Day (Number)"
-msgstr "Day (Número)"
-
-#. 33vb
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. si%p
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. R,u%
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3150448\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Una expresión numérica que contenga un número de fecha serie a partir del cual se pueda determinar el día del mes."
-
-#. 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 "Esta función es básicamente la contraria a DateSerial y devuelve el día del mes a partir de un número de fecha serie generado por las funciones <emph>DateSerial</emph> o <emph>DateValue</emph>. Por ejemplo, la expresión"
-
-#. YR=U
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr "devuelve el valor 20."
-
-#. Vd(]
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. *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 \"Day \" & Day(DateSerial(1994, 12, 20)) & \" del mes\""
-
-#. 4#DM
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsUnoStruct Function [Runtime]"
-msgstr "Función IsUnoStruct [Ejecución]"
-
-#. ]kdt
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"bm_id3146117\n"
-"help.text"
-msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>IsUnoStruct;función</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 Function [Runtime]\">Función IsUnoStruct [Ejecución]</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 "Devuelve True si el objeto dado es una estructura Uno."
-
-#. DHmt
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 7^{q
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "IsUnoStruct( Uno type )"
-msgstr "IsUnoStruct( nombre de tipo Uno )"
-
-#. kK~H
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. !me_
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. Xip-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. +9|)
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3148947\n"
-"8\n"
-"help.text"
-msgid "Uno type : A UnoObject"
-msgstr "Nombre de tipo Uno: Nombre de un tipo Uno."
-
-#. ~3T}
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. yinh
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr "' Crear un caso de un servicio"
-
-#. 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 ' Displays False because oSimpleFileAccess is NO struct"
-
-#. \J\G
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "' Crear un caso de struct Property"
-
-#. 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 ' Displays True because aProperty is a struct"
-
-#. W58n
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN1065B\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-
-#. Wh3Q
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr "Conversión de valores de fechas"
-
-#. ~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=\"Conversión de valores de fechas\">Conversión de valores de fechas</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 "Las funciones siguientes convierten valores de fecha para calcular números y viceversa."
-
-#. ZD]z
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"tit\n"
-"help.text"
-msgid "MsgBox Function [Runtime]"
-msgstr "Función MsgBox [Ejecución]"
-
-#. 8|m3
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"bm_id3153379\n"
-"help.text"
-msgid "<bookmark_value>MsgBox function</bookmark_value>"
-msgstr "<bookmark_value>MsgBox;función</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=\"Función MsgBox [Runtime]\">Función MsgBox [Runtime]</link>"
-
-#. )8m9
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145171\n"
-"2\n"
-"help.text"
-msgid "Displays a dialog box containing a message and returns a value."
-msgstr "Muestra un cuadro de diálogo que contiene un mensaje y devuelve un valor."
-
-#. v3!(
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 (Texto As String [,Tipo As Integer [,TítuloDiálogo As String]])"
-
-#. !enV
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. r|JB
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. ~\Mw
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "<emph>Parámetros</emph>:"
-
-#. 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>Texto</emph>: Expresión de cadena que se muestra como mensaje en el cuadro de diálogo. Los saltos de línea se pueden insertar con Chr$(13)."
-
-#. .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>TítuloDiálogo</emph>: Expresión de cadena que se muestra en la barra de título del diálogo. Si se omite, se muestra el nombre de la aplicación correspondiente."
-
-#. 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 "Tipo: Cualquier expresión entera que especifique el tipo de diálogo y defina el número y tipo de botones o iconos que se muestran. <emph>Tipo</emph> representa una combinación de patrones de bits (elementos de diálogo definidos al añadir los valores correspondientes):"
-
-#. N-c~
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "<emph>Values</emph>"
-msgstr "<emph>Valores</emph>"
-
-#. qZS]
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"12\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr "0 : Mostrar sólo el botón Aceptar."
-
-#. [3m/
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
-"13\n"
-"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1 : Mostrar los botones Aceptar y Cancelar."
-
-#. SBkq
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"14\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2 : Muestre los botones Cancelar, Reintentar y Cancelar."
-
-#. mI7x
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"15\n"
-"help.text"
-msgid "3 : Display Yes, No, and Cancel buttons."
-msgstr "3 : Mostrar los botones Sí, No y Cancelar."
-
-#. G1Ma
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"16\n"
-"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4 : Mostrar los botones Sí y No."
-
-#. $U8s
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"17\n"
-"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5 : Mostrar los botones Reintentar y Cancelar."
-
-#. ]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ñadir el icono de Stop al diálogo."
-
-#. %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ñadir el icono de Pregunta al diálogo."
-
-#. .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ñadir el punto de Exclamación al diálogo."
-
-#. 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 : Añadir el icono de Información al diálogo."
-
-#. 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 : El primer botón del diálogo es el predeterminado."
-
-#. 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 : El segundo botón del diálogo es el predeterminado."
-
-#. 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 : El tercer botón del diálogo es el predeterminado."
-
-#. |?s2
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"25\n"
-"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "<emph>Valores de retorno:</emph>"
-
-#. 7][W
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145230\n"
-"26\n"
-"help.text"
-msgid "1 : OK"
-msgstr "1 : Aceptar"
-
-#. Z``K
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149567\n"
-"27\n"
-"help.text"
-msgid "2 : Cancel"
-msgstr "2 : Cancelar"
-
-#. Pj_z
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id4056825\n"
-"help.text"
-msgid "3 : Abort"
-msgstr "3 : Cancelar"
-
-#. UY)0
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155335\n"
-"28\n"
-"help.text"
-msgid "4 : Retry"
-msgstr "4 : Reintentar"
-
-#. }Z~s
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146918\n"
-"29\n"
-"help.text"
-msgid "5 : Ignore"
-msgstr "5 : Ignorar"
-
-#. QzFl
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155961\n"
-"30\n"
-"help.text"
-msgid "6 : Yes"
-msgstr "6 : Sí"
-
-#. J@\M
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3148488\n"
-"31\n"
-"help.text"
-msgid "7 : No"
-msgstr "7 : No"
-
-#. 6|;k
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3150090\n"
-"40\n"
-"help.text"
-msgid "Example:"
-msgstr "<emph>Ejemplo:</emph>"
-
-#. 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,\"Título de diálogo\")"
-
-#. 7-}@
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"tit\n"
-"help.text"
-msgid "LCase Function [Runtime]"
-msgstr "Función Lcase [Ejecución]"
-
-#. 6{1U
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"bm_id3152363\n"
-"help.text"
-msgid "<bookmark_value>LCase function</bookmark_value>"
-msgstr "<bookmark_value>LCase;función</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 Function [Runtime]\">Función Lcase [Ejecución]</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 "Convierte todas las letras mayúsculas de una cadena en minúsculas."
-
-#. 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 "Consulte también: Función <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link>"
-
-#. [8qQ
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. U87V
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
-"5\n"
-"help.text"
-msgid "LCase (Text As String)"
-msgstr "LCase (Texto As String)"
-
-#. @_VH
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. d2lR
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. ^`L{
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3151043\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que se desee convertir."
-
-#. c1k`
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Devuelve \"las vegas\""
-
-#. 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 Devuelve \"LAS VEGAS\""
-
-#. xW/%
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"tit\n"
-"help.text"
-msgid "ThisComponent Statement [Runtime]"
-msgstr "Instrucción ThisComponent [Ejecución]"
-
-#. 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;instrucción\\</bookmark_value\\>\\<bookmark_value\\>componentes;direccionamiento\\</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 [Runtime]\">Instrucción ThisComponent [Ejecución]</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 "Direcciona el componente activo para que sus propiedades puedan leerse y establecerse. ThisComponent es usado desde el documento Basic, donde muestra el documento al que pertenece Basic. El tipo de objeto accesado por ThisComponent depende en el tipo de documento."
-
-#. b?S/
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Ejemplo:"
-
-#. [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 actualiza le \"Índice\" de un documento de texto"
-
-#. eZT7
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"par_id3153194\n"
-"10\n"
-"help.text"
-msgid "index = allindexes.getByName(\"Table of Contents1\")"
-msgstr "indice = allindexes.getByName(\"Índice1\")"
-
-#. ;#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 usa el nombre predeterminado para un Índice y el número 1"
-
-#. VSH3
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Second Function [Runtime]"
-msgstr "Función Second [Ejecución]"
-
-#. Jhy-
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"bm_id3153346\n"
-"help.text"
-msgid "<bookmark_value>Second function</bookmark_value>"
-msgstr "<bookmark_value>Second;función</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=\"Función Second [Runtime]\">Función Second [Ejecución]</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 "Devuelve un entero que representa los segundos del número de hora serie que han generado las funciones TimeSerial o TimeValue."
-
-#. nVg[
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. k/*4
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Second (Number)"
-msgstr "Second (Número)"
-
-#. 1b+\
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 3txD
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. YIBm
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ;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>Número:</emph> Expresión numérica que contenga el valor de tiempo serie que se use para devolver el valor de hora."
-
-#. 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 "Esta función es la inversa a <emph>TimeSerial</emph>. Devuelve los segundos del número de hora serie que han generado las funciones <emph>TimeSerial</emph> o <emph>TimeValue </emph>. Por ejemplo, la expresión:"
-
-#. *~]@
-#: 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 "devuelve el valor 41."
-
-#. .H86
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3147426\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 \"El segundo exacto de la hora actual es \"& Second( Now )"
-
-#. G314
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsDate Function [Runtime]"
-msgstr "Función IsDate [Ejecución]"
-
-#. X/a-
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>IsDate function</bookmark_value>"
-msgstr "<bookmark_value>IsDate;función</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 Function [Runtime]\">Función IsDate [Ejecución]</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 "Comprueba si una expresión numérica o de cadena puede convertirse en una variable de tipo <emph>Date</emph>."
-
-#. FZ3-
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. +ch^
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "IsDate (Expression)"
-msgstr "IsDate (Expresión)"
-
-#. M(#x
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3143270\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. q_,z
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. [9,$
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión de cadena o numérica que se desee comprobar. Si la expresión puede convertirse a una fecha, la función devuelve <emph>True</emph>, en caso contrario devuelve <emph>False</emph>."
-
-#. ,l6s
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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(sVarFecha) REM Devuelve True"
-
-#. ^f9`
-#: 03102300.xhp
-#, fuzzy
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"15\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr "print IsDate(sVarFecha) REM Devuelve False"
-
-#. baSz
-#: 03020400.xhp
-msgctxt ""
-"03020400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Managing Files"
-msgstr "Gestión de archivos"
-
-#. 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=\"Gestión de archivos\">Gestión de archivos</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 "Las funciones e instrucciones para gestionar archivos se describen aquí."
-
-#. fi5C
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"tit\n"
-"help.text"
-msgid "CBool Function [Runtime]"
-msgstr "Función CBool [Ejecución]"
-
-#. oVE[
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>CBool function</bookmark_value>"
-msgstr "<bookmark_value>CBool;función</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 Function [Runtime]\">Función CBool [Ejecución]</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 "Convierte una comparación de cadenas o numérica en una expresión lógica, o convierte una expresión numérica simple en una de tipo lógico."
-
-#. ]6Hm
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 2e-n
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr "CBool (Expresión1 {= | <> | < | > | <= | >=} Expresión2) o CBool (Número)"
-
-#. w!Vn
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. yd2Q
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. z7cP
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión1, Expresión2:</emph> Cualquier cadena o expresión numérica que desee comparar. Si las expresiones coinciden, la función <emph>CBool</emph> devuelve el valor <emph>True</emph>, en caso contrario devuelve <emph>False</emph>."
-
-#. 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>Número:</emph> Cualquier expresión numérica que desee convertir. Si la expresión es igual a 0 se devuelve <emph>False</emph>, en caso contrario se devuelve <emph>True</emph>."
-
-#. 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 "El ejemplo siguiente usa la función <emph>CBool</emph> para evaluar el valor que devuelve la función <emph>Instr</emph>. La función comprueba si la palabra \"y\" se halla en la frase que introdujo el usuario."
-
-#. B#$~
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. hK[U
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155132\n"
-"14\n"
-"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
-msgstr "sTexto = InputBox(\"Por favor, escriba una frase corta:\")"
-
-#. ?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 Comprobar si la palabra \"y\" aparece en la frase."
-
-#. Aj[8
-#: 03100100.xhp
-#, fuzzy
-msgctxt ""
-"03100100.xhp\n"
-"par_id3146984\n"
-"16\n"
-"help.text"
-msgid "' Instead of the command line"
-msgstr "REM En lugar de usar la línea de órdenes"
-
-#. 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, \"y\")<>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 la función CBool se aplica de la forma siguiente:"
-
-#. /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(sTexto, \"y\")) 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 \"La palabra \"y\" aparece en la frase que acaba de escribir\""
-
-#. JK?i
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Get Statement [Runtime]"
-msgstr "Instrucción Get [Ejecución]"
-
-#. i`uQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"bm_id3154927\n"
-"help.text"
-msgid "<bookmark_value>Get statement</bookmark_value>"
-msgstr "<bookmark_value>Get;instrucción</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\">Instrucción Get [Ejecución]</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 "Lee y graba desde un archivo relativo o una secuencia de bytes desde un archivo binario a una variable."
-
-#. 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 "Consulte también: Instrucción <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\">PUT</link>"
-
-#. 3-rr
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. \/Sn
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
-"5\n"
-"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr "Get [#] NúmeroArchivo As Integer, [Posición], Variable"
-
-#. cY8U
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. Z5?[
-#: 03020201.xhp
-#, fuzzy
-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>NúmeroArchivo:</emph> Cualquier expresión entera que determine el número de archivo."
-
-#. 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>Posición:</emph> Para archivos abiertos en modo Random, la <emph>Posición</emph> es el número del registro que se desee leer."
-
-#. ;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 "En archivos abiertos en modo Binario, <emph>Posición</emph> es la posición del byte en el archivo en el que se inicia la lectura."
-
-#. 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 "Si se omite <emph>Posición</emph>, se usa la posición actual o el registro de datos actual del archivo."
-
-#. $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 "Variable: Nombre de la variable que leer. Se puede usar cualquier tipo de variable con la excepción de las de objeto."
-
-#. p.RQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 sTexto As Variant REM Debe ser una variante"
-
-#. 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 #iNumero,1 REM Posición al principio"
-
-#. 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 #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar línea con texto"
-
-#. 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 "Print #iNumero, \"Esta es la segunda línea de texto\""
-
-#. 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 "Print #iNumero, \"Esta es la tercera línea de texto\""
-
-#. lUtS
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3155938\n"
-"33\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumero,,\"Esto es un texto nuevo\""
-
-#. ?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 #iNumero,20,\"Este es el texto del registro 20\""
-
-#. g+=;
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNumeric Function [Runtime]"
-msgstr "Función IsNumeric [Ejecución]"
-
-#. R?s[
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"bm_id3145136\n"
-"help.text"
-msgid "<bookmark_value>IsNumeric function</bookmark_value>"
-msgstr "<bookmark_value>IsNumeric;función</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 Function [Runtime]\">Función IsNumeric [Ejecución]</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 "Comprueba si una expresión es un número. Si la expresión es un <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">número</link> la función devuelve el valor True, en caso contrario devuelve False."
-
-#. LVo7
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. @Op;
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "IsNumeric (Var)"
-msgstr "IsNumeric (Var)"
-
-#. kEIG
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. JlFL
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. iDC!
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Var:</emph> Cualquier expresión que se desee comprobar."
-
-#. LS|e
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve False"
-
-#. 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 devuelve True"
-
-#. lA#2
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr "Optional (en instrucción Function) [Ejecución]"
-
-#. 7,`h
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Optional function</bookmark_value>"
-msgstr "<bookmark_value>Optional;función</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 (in Function Statement) [Runtime]\">Optional (en instrucción Function) [Ejecución]</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 "Permite definir parámetros que se pasan a una función como opcionales."
-
-#. 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 "Consulte también: <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 "Sintaxis:"
-
-#. 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 MiFuncion(Texto1 As String, Optional Arg2, Optional Arg3)"
-
-#. Rfn#
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"hd_id3145610\n"
-"7\n"
-"help.text"
-msgid "Examples:"
-msgstr "Ejemplos:"
-
-#. ..^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 "Resultado = MiFuncion(\"Aquí\", 1, \"Allí\") ' se pasan todos los argumentos."
-
-#. 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 "Resultado = MiFuncion(\"Test\", ,1) ' falta el segundo argumento."
-
-#. 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 "Consulte también <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Ejemplos</link>."
-
-#. r+d.
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function Statement [Runtime]"
-msgstr "instrucción Function [Ejecución]"
-
-#. 6h`:
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"bm_id3153346\n"
-"help.text"
-msgid "<bookmark_value>Function statement</bookmark_value>"
-msgstr "<bookmark_value>Function;instrucción</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 Statement [Runtime]\">instrucción Function [Ejecución]</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 "Define una subrutina que puede usarse como expresión para determinar un tipo de retorno."
-
-#. sQfJ
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. }lgv
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3148944\n"
-"4\n"
-"help.text"
-msgid "see Parameter"
-msgstr "consulte Parámetro"
-
-#. 5AX9
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. )mJ`
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. 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 Nombre[(NombVar1 [As Tipo][, NombVar2 [As Tipo][,...]]]) [As Tipo]"
-
-#. m/;+
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153360\n"
-"8\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. DN+6
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3148797\n"
-"9\n"
-"help.text"
-msgid "[Exit Function]"
-msgstr "[Final de la función]"
-
-#. P~Ov
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3145419\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. {,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 "Parámetro"
-
-#. 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>Nombre:</emph> Nombre de la subrutina que contendrá el valor devuelto por la función."
-
-#. *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>NombVar:</emph> Parámetro que se pasará a la subrutina."
-
-#. 11}S
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3147287\n"
-"15\n"
-"help.text"
-msgid "<emph>Type:</emph> Type-declaration keyword."
-msgstr "<emph>Tipo:</emph> Palabra clave de declaración de tipo."
-
-#. |iGg
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 siPaso = 0 to 10 REM Rellenar matriz con datos de prueba"
-
-#. 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 BuscaLin busca en MatrizTexto:sLista() una EntradaTexto:"
-
-#. 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 El valor de retorno es el índice de la entrada o 0 (Nulo)"
-
-#. )^w`
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM encontrado sElemen"
-
-#. =n17
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Procedures and Functions"
-msgstr "Uso de procedimientos y funciones"
-
-#. 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>procedimientos;uso</bookmark_value><bookmark_value>funciones;uso</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\">Uso de procedimientos y funciones</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 continuación se describe el uso básico de procedimientos y funciones en $[officename] Basic."
-
-#. 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 "Cuando se crea un módulo nuevo, $[officename] Basic inserta automáticamente una SUB llamada \"Main\". Este nombre predeterminado no tiene nada que ver con el orden o el punto de inicio de un proyecto de $[officename] Basic. Se puede cambiar sin problemas."
-
-#. 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 "Se aplican algunas restricciones para los nombres de sus variables públicas, procedimientos y funciones. No debe utilizar el mismo nombre que uno de los módulos de la misma biblioteca."
-
-#. \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 "Los procedimientos (SUBS) y funciones (FUNCTIONS) ayudan a mantener un aspecto estructurado separando un programa en partes lógicas."
-
-#. 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 "Una ventaja de los procedimientos y funciones es que en cuanto se desarrolla un código de programa que contiene componentes de tarea, éste puede usarse en otro proyecto."
-
-#. ^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 "Paso de variables a procedimientos (SUB) y funciones (FUNCTION)"
-
-#. 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 "Las variables pueden pasarse a procedimientos y funciones. SUB o FUNCTION deben estar declarados para que se les pueda pasar parámetros:"
-
-#. OY#E
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
-"29\n"
-"help.text"
-msgid "Program code"
-msgstr "Código de programa"
-
-#. 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 SUB se le llama mediante la sintaxis siguiente"
-
-#. 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 "Los parámetros que se pasan a SUB deben coincidir con los especificados en la declaración de SUB."
-
-#. 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 "El mismo proceso se aplica a FUNCTION, para que devuelva el resultado de la función. Éste puede definirse justo antes de llegar al final de la función, asignando el nombre de ésta y un parámetro al valor que la función devolverá (ver ejemplo)."
-
-#. Ke;$
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
-"help.text"
-msgid "Program code"
-msgstr "Código de programa"
-
-#. 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 FUNCTION se la llama mediante la sintaxis siguiente:"
-
-#. RQ5O
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
-"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr "Variable=NombreFunción(Parámetro1, Parámetro2,...)"
-
-#. 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 "Asimismo, puede utilizar el nombre completo para llamar a un procedimiento o función:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> Por ejemplo, para llamar a la macro AutoTexto desde la biblioteca Gimmicks, utilice el comando siguiente:<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 "Paso de variables por valor o por referencia"
-
-#. 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 "Los parámetros pueden pasarse a SUB o FUNCTION por referencia o por valor. A menos que se especifique de otra forma, los parámetros siempre se pasan por referencia. Esto significa que SUB o FUNCTION obtienen el parámetro y que su valor se puede leer y modificar."
-
-#. 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 "Para pasar un parámetro por valor se inserta la palabra clave \"ByVal\" delante del parámetro cuando se llama a una SUB o FUNCTION, por ejemplo:"
-
-#. ?Q(`
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
-"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr "Resultado = Función(<emph>ByVal</emph> Parámetro)"
-
-#. 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 "En este caso, FUNCTION no modificará el contenido original del parámetro ya que sólo obtiene el valor y no el parámetro en sí."
-
-#. {u7p
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
-"help.text"
-msgid "Scope of Variables"
-msgstr "Ámbito de variables"
-
-#. +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 "Un variable definido dentro un SUB o FUNCTION, esta valido solamente dentro de la función. Se lo conoce como un variable \"local\". En algunas casos, necesita un variable que es valido en todos los procedimientos, en todos los módulos de los bibliotecas, o después que haya salida del SUB o FUNCTION."
-
-#. LQ}r
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
-"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr "Declaración de variables desde fuera de SUB o FUNCTION"
-
-#. ZFq^
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
-"help.text"
-msgid "Global VarName As TYPENAME"
-msgstr "GLOBAL NombreVariable As TYPENAME"
-
-#. ;(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 "La variable es válida durante toda la sesión de $[officename]."
-
-#. dEGL
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
-"help.text"
-msgid "Public VarName As TYPENAME"
-msgstr "PUBLIC NombreVariable As TYPENAME"
-
-#. V$,l
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
-"help.text"
-msgid "The variable is valid in all modules."
-msgstr "La variable es válida en todos los módulos."
-
-#. OH?$
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
-"help.text"
-msgid "Private VarName As TYPENAME"
-msgstr "PUBLIC NombreVariable As TYPENAME"
-
-#. F8:=
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152994\n"
-"63\n"
-"help.text"
-msgid "The variable is only valid in this module."
-msgstr "La variable sólo es válida en este módulo."
-
-#. MIk6
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150368\n"
-"65\n"
-"help.text"
-msgid "The variable is only valid in this module."
-msgstr "La variable sólo es válida en este módulo."
-
-#. RI*B
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id5097506\n"
-"help.text"
-msgid "Example for private variables"
-msgstr "Ejemplo para variables privadas"
-
-#. 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 "Forza variables privadas permanecer privadas configurando el modulo de compatibilidad como verdadero CompatibilityMode(true)."
-
-#. }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 \"in module1 : \", myText"
-
-#. aMK1
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id4104129\n"
-"help.text"
-msgid "' Now returns empty string"
-msgstr "' Ahora regresa una cadena vacia"
-
-#. kh\H
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id7906125\n"
-"help.text"
-msgid "' (or rises error for Option Explicit)"
-msgstr "' (o se eleva el error para Opción Explicita)"
-
-#. l-os
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id8055970\n"
-"help.text"
-msgid "Print \"Now in module2 : \", myText"
-msgstr "print \"Now in module2 : \", 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 "Guardado de contenido de variables después de salir de SUB o FUNCTION"
-
-#. Ef]r
-#: 01020300.xhp
-#, fuzzy
-msgctxt ""
-"01020300.xhp\n"
-"par_id3156288\n"
-"67\n"
-"help.text"
-msgid "Static VarName As TYPENAME"
-msgstr "STATIC NombreVariable As TYPENAME"
-
-#. 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 "La variable conserva su valor hasta la próxima vez que se entre en la FUNCTION o SUB. La declaración debe existir dentro de SUB o FUNCTION."
-
-#. 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 "Especificación del tipo de valor de retorno de una FUNCTION"
-
-#. 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 "Al igual que con las variables, incluya un carácter de declaración de tipo después del nombre de la función o el tipo indicado por \"As\" y la palabra clave correspondiente al final de la lista de parámetros para definir el tipo del valor de retorno de la función, por ejemplo:"
-
-#. )CB@
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Eqv Operator [Runtime]"
-msgstr "Operador Eqv [Ejecución]"
-
-#. \N`.
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Eqv;operadores lógicos</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=\"Operador Eqv [Runtime]\">Operador Eqv [Ejecución]</link>"
-
-#. @3r.
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Calculates the logical equivalence of two expressions."
-msgstr "Calcula la equivalencia lógica de dos expresiones."
-
-#. 0Btc
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3154367\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 7~2D
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Eqv Expression2"
-msgstr "Resultado = Expresión1 Eqv Expresión2"
-
-#. $xA@
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3151043\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. @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>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la comparación."
-
-#. _;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>Expresión1, Expresión2:</emph> Las expresiones que desee comparar."
-
-#. 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 "Al comprobar la equivalencia entre expresiones lógicas, el resultado es <emph>True</emph> si éstas son ambas <emph>True</emph> o <emph>False</emph>."
-
-#. ?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 "En una comparación entre bits, el operador Eqv sólo activa el bit correspondiente del resultado si éste se encuentra activado o desactivado en ambas expresiones."
-
-#. i)V#
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3159154\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve -1"
-
-#. =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 devuelve 0"
-
-#. `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 devuelve 0"
-
-#. @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 devuelve -1"
-
-#. 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 devuelve -3"
-
-#. k~B,
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"tit\n"
-"help.text"
-msgid "MsgBox Statement [Runtime]"
-msgstr "Instrucción MsgBox [Ejecución]"
-
-#. ;(e*
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"bm_id1807916\n"
-"help.text"
-msgid "<bookmark_value>MsgBox statement</bookmark_value>"
-msgstr "<bookmark_value>Instrucción MsgBox</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\">Instrucción MsgBox [Ejecución]</link>"
-
-#. wv9n
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "Displays a dialog box containing a message."
-msgstr "Muestra un cuadro de diálogo que contiene un mensaje."
-
-#. OBID
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 Texto As String [,Tipo As Integer [,TítuloDiálogo As String]] (As Statement) o bien MsgBox (Texto As String [,Tipo As Integer [,TítuloDiálogo As String]]) (As Function)"
-
-#. RLb;
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetros:"
-
-#. 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>Texto</emph>: Expresión de cadena que se muestra como mensaje en el cuadro de diálogo. Los saltos de línea se pueden insertar con Chr$(13)."
-
-#. 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>TítuloDiálogo</emph>: Expresión de cadena que se muestra en la barra de título del diálogo. Si se omite, la barra de título muestra el nombre de la aplicación respectiva."
-
-#. 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>Tipo</emph>: Cualquier expresión entera que especifique el tipo de diálogo, así como el número y tipo de botones que mostrar y el tipo de icono. <emph>Tipo</emph> representa una combinación de patrones de bits, por lo que se pueden definir varios elementos sumando sus valores respectivos:"
-
-#. yRso
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3161832\n"
-"9\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr "0 : Mostrar sólo el botón Aceptar."
-
-#. Cut9
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153726\n"
-"10\n"
-"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1 : Mostrar los botones Aceptar y Cancelar."
-
-#. Y50i
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3149665\n"
-"11\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2 : Muestre los botones Cancelar, Reintentar y Cancelar."
-
-#. eVZ9
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3147318\n"
-"12\n"
-"help.text"
-msgid "3 : Display Yes, No and Cancel buttons."
-msgstr "3 : Mostrar los botones Sí, No y Cancelar."
-
-#. BpiU
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3155412\n"
-"13\n"
-"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4 : Mostrar los botones Sí y No."
-
-#. i(qv
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5 : Mostrar los botones Reintentar y Cancelar."
-
-#. 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ñadir el icono de Stop al diálogo."
-
-#. 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ñadir el icono de Pregunta al diálogo."
-
-#. 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ñadir el icono de Exclamación al diálogo."
-
-#. 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 : Añadir el icono de Información al diálogo."
-
-#. 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 : El primer botón del diálogo es el predeterminado."
-
-#. 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 : El segundo botón del diálogo es el predeterminado."
-
-#. 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 : El tercer botón del diálogo es el predeterminado."
-
-#. :)MV
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. )DA*
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr "Const sTexto1 = \"Se ha producido un error inesperado.\""
-
-#. 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 sTexto2 = \"Sin embargo, la ejecución del programa continuará.\""
-
-#. Okn.
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr "Const sTexto3 = \"Error\""
-
-#. Y);O
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hex Function [Runtime]"
-msgstr "Función Hex [Ejecución]"
-
-#. -C83
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Hex function</bookmark_value>"
-msgstr "<bookmark_value>Hex;función</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=\"Función Hex [Runtime]\">Función Hex [Ejecución]</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 "Devuelve una cadena que representa el valor hexadecimal de un número."
-
-#. WNYC
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. `+{l
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "Hex (Number)"
-msgstr "Hex (Número)"
-
-#. lGP=
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3147530\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. @0k^
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. sn@)
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Cualquier expresión numérica que desee convertir en número hexadecimal."
-
-#. hvZO
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. -;|Q
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
-"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
-msgstr "REM usa BasicFormulas de $[officename] Calc"
-
-#. 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 Devuelve un entero largo a partir de un valor hexadecimal."
-
-#. #\]H
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
-"help.text"
-msgid "' Calculates a hexadecimal value in integer."
-msgstr "REM Calcula un valor hexadecimal como entero."
-
-#. lIC[
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Numbers"
-msgstr "Conversión de números"
-
-#. 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=\"Conversión de números\">Conversión de números</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 "Las funciones siguientes convierten números de un formato numérico a otro."
-
-#. ip+X
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"tit\n"
-"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "Función InStr [Ejecución]"
-
-#. 2;*9
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"bm_id3155934\n"
-"help.text"
-msgid "<bookmark_value>InStr function</bookmark_value>"
-msgstr "<bookmark_value>InStr;función</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 Function [Runtime]\">Función InStr [Ejecución]</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 "Devuelve la posición de una cadena dentro de otra."
-
-#. 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 "La función Instr devuelve la posición en la que se encontró la coincidencia. Si la cadena no se encuentra, la función devuelve 0."
-
-#. e@O(
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 ([Inicio As Integer,] Texto1 As String, Texto2 As String[, Comparación])"
-
-#. gnRP
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148538\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. m!Y9
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
-"7\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. pR:[
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Inicio: </emph>Expresión numérica que indica la posición en una cadena en la que da comienzo la búsqueda de la subcadena especificada. Si este parámetro se omite, la búsqueda comienza desde el primer carácter de la cadena. El valor máximo es 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>Texto1:</emph> La expresión de cadena en la que se desee buscar."
-
-#. ~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>Texto2:</emph> La expresión de cadena que se desee buscar."
-
-#. 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>Comparar:</emph> Expresión numérica opcional que define el tipo de comparación. El valor de este parámetro puede ser 0 o 1. El valor predeterminado de 1 especifica una comparación de texto que no distingue entre mayúsculas y minúsculas. El valor de 0 especifica una comparación binaria que distingue entre mayúsculas y minúsculas."
-
-#. 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 "Para evitar un error en tiempo de ejecución, no defina el parámetro Comparación si se omite el primer parámetro de devolución."
-
-#. b.7S
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. s)0B
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"19\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "sEntrada = \"Office\""
-
-#. mcc%
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"20\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr "iPos = Instr(sEntrada,\"v\")"
-
-#. UonZ
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefDbl Statement [Runtime]"
-msgstr "Instrucción DefDbl [Ejecución]"
-
-#. +N)G
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "<bookmark_value>DefDbl;instrucción</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=\"Instrucción DefDbl [Ejecución]\">Instrucción DefDbl [Ejecución]</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 "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
-
-#. Hm9W
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. jIf=
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
-
-#. Cq/T
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3145069\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminada:"
-
-#. Rk7,
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3151210\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph>Tipo de variable predeterminada"
-
-#. H:HP
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3154123\n"
-"9\n"
-"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr "<emph>DefDbl:</emph> Doble"
-
-#. Sxnk
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. B$o|
-#: 03101400.xhp
-#, fuzzy
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. 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 es un tipo de variable doble implícito"
-
-#. EjV$
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Green Function [Runtime]"
-msgstr "Función Green [Ejecución]"
-
-#. J|~@
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Green function</bookmark_value>"
-msgstr "<bookmark_value>Green;función</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=\"Función Green [Runtime]\">Función Green [Runtime]</link>"
-
-#. }kMo
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153361\n"
-"2\n"
-"help.text"
-msgid "Returns the Green component of the given color code."
-msgstr "Devuelve el componente Verde del código de color dado."
-
-#. 2,-h
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ~mct
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153969\n"
-"4\n"
-"help.text"
-msgid "Green (Color As Long)"
-msgstr "Green (Color As Long)"
-
-#. G8:w
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. s,4~
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. U57e
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. 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>Color</emph>: Expresión de número entero largo que especifica un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"código de color\">código de color</link> para el que devolver el componente Verde."
-
-#. ~)l9
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
-
-#. 2*U[
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr "\"rojo = \" & 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 "\"verde= \" & 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 "\"azul= \" & blue(lVar) & Chr(13) , 64,\"colores\""
-
-#. Uh,(
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integrated Development Environment (IDE)"
-msgstr "Entorno de desarrollo integrado (IDE)"
-
-#. 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;Entorno de desarrollo integrado</bookmark_value><bookmark_value>IDE; Basic IDE</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=\"Entorno de desarrollo integrado (IDE)\">Entorno de desarrollo integrado (IDE)</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 "Esta sección describe el Entorno de desarrollo integrado para $[officename] Basic."
-
-#. K+tk
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Display Functions"
-msgstr "Funciones de visualización"
-
-#. 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=\"Funciones de visualización\">Funciones de visualización</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 "Esta sección describe las funciones de tiempo de ejecución usadas para enviar información a la pantalla."
-
-#. BidJ
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsError Function [Runtime]"
-msgstr "Función IsError [Ejecución]"
-
-#. {::)
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"bm_id4954680\n"
-"help.text"
-msgid "<bookmark_value>IsError function</bookmark_value>"
-msgstr "<bookmark_value>Función IsError</bookmark_value>"
-
-#. BnwH
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1054E\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Función IsError [Ejecución]</link>"
-
-#. +e~?
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Tests if a variable contains an error value."
-msgstr "Comprueba si una variable contiene un valor de error."
-
-#. ME?Z
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. K.1M
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "IsError (Var)"
-msgstr "IsError (Var)"
-
-#. X`?w
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. cyRK
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Bool"
-msgstr "booleano"
-
-#. _TYE
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. //kV
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
-msgstr "<emph>Var:</emph> cualquier variable que desee comprobar. Si la variable contiene un valor de error, la función devuelve True; de lo contrario, devuelve False."
-
-#. .kKY
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSolarVersion Function [Runtime]"
-msgstr "Función GetSolarVersion [Ejecución]"
-
-#. L4ST
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"bm_id3157898\n"
-"help.text"
-msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
-msgstr "<bookmark_value>GetSolarVersion;función</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 Function [Runtime]\">Función GetSolarVersion [Ejecución]</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 "Devuelve el número interno de la versión actual de $[officename]."
-
-#. Ug,8
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Valor de retorno:"
-
-#. B5E$
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. +b;P
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"Número de versión de la tecnología solar\""
-
-#. Ssl:
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "Función CreateUnoListener [Ejecución]"
-
-#. @9a~
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoListener;función</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 Function [Runtime]\">Función CreateUnoListener [Ejecución]</link>"
-
-#. +E:p
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr "Crea un caso de Listener."
-
-#. 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 "Muchas interfaces Uno permiten registrar listeners en una interfaz especial, lo que permite supervisar eventos específicos y llamar al método listener apropiado. La función CreateUnoListener espera a la interfaz listener llamada y después la pasa un objeto que ésta admita y que, a su vez, después se pasa al método para registrar el listener."
-
-#. ]wcM
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. PsGA
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3143228\n"
-"49\n"
-"help.text"
-msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr "oListener = CreateUnoListener( Nombreprefijo, NombreInterfazListener )"
-
-#. q!*Z
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3147574\n"
-"48\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 "El ejemplo siguiente se basa en un objeto de la biblioteca Basic."
-
-#. I06J
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149294\n"
-"44\n"
-"help.text"
-msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
-msgstr "El método CreateUnoListener requiere dos parámetros. El primero es un prefijo y se explica detalladamente a continuación; el segundo es el nombre cualificado por completo de la interfaz Listener que se desee usar."
-
-#. %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 continuación, el Listener debe añadirse al objeto Broadcaster lo que se consigue llamando al método apropiado para agregar un Listener. Estos métodos siempre siguen el patrón \"addFooListener\", donde \"Foo\" es el tipo de interfaz Listener sin la 'X'. En este ejemplo, el método addContainerListener se llama para registrar XContainerListener:"
-
-#. oUXC
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154940\n"
-"41\n"
-"help.text"
-msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
-msgstr "oLib = BasicLibraries.Library1 ' Library1 debe existir"
-
-#. 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 ) ' Registrar el listener"
-
-#. ?@;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 "Ahora Listener está registrado. Cuando se produce una acción, la Listener correspondiente llama al método apropiado desde la interfaz de com.sun.star.container.XContainerListener."
-
-#. hgcp
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148922\n"
-"38\n"
-"help.text"
-msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
-msgstr "El prefijo llama a Listeners registradas desde subrutinas Basic. El sistema en tiempo de ejecución de Basic busca subrutinas o funciones Basic que tengan el nombre \"PrefixListenerMethode\" y las llama cuando las encuentra. En caso contrario se produce un error de tiempo de ejecución."
-
-#. 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 "En este ejemplo, la interfaz Listener usa los métodos siguientes:"
-
-#. W+si
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"36\n"
-"help.text"
-msgid "disposing:"
-msgstr "disposing:"
-
-#. 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 "Interfaz base de Listener (com.sun.star.lang.XEventListener): intefaz base para todos las intefaces de Listener"
-
-#. /=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 "Método de la Interfaz com.sun.star.container.XContainerListener"
-
-#. 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 "Método de la interfaz com.sun.star.container.XContainerListener"
-
-#. 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 "Método de la interfaz com.sun.star.container.XContainerListener"
-
-#. %.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 "En este ejemplo, el prefijo es ContListener_. Por tanto, las subrutinas siguientes deben implementarse en Basic:"
-
-#. K1q;
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"27\n"
-"help.text"
-msgid "ContListener_disposing"
-msgstr "ContListener_disposing"
-
-#. XfDA
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"26\n"
-"help.text"
-msgid "ContListener_elementInserted"
-msgstr "ContListener_elementInserted"
-
-#. RW3*
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"25\n"
-"help.text"
-msgid "ContListener_elementRemoved"
-msgstr "ContListener_elementRemoved"
-
-#. Tgp9
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"24\n"
-"help.text"
-msgid "ContListener_elementReplaced"
-msgstr "ContListener_elementReplaced"
-
-#. ,e)L
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150592\n"
-"23\n"
-"help.text"
-msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
-msgstr "Existe un tipo de estructura de acción que contiene información sobre cada tipo de Listener. Cuando se llama a un método Listener, se pasa un caso de esta acción al método como parámetro. Los métodos Listener de Basic también pueden llamar a estos objetos de acción, siempre que se pase el parámetro apropiado en la declaración Sub. Por ejemplo:"
-
-#. jhdm
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"disposing\""
-msgstr "MsgBox \"disposing\""
-
-#. 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 "No es necesario incluir el parámetro de un objeto de acción si éste no se va a utilizar:"
-
-#. hTU(
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150042\n"
-"5\n"
-"help.text"
-msgid "' Minimal implementation of Sub disposing"
-msgstr "' Implementación mínima de disposing Sub"
-
-#. (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 "Los métodos Listener deben implementarse <emph>siempre</emph> para evitar errores en tiempo de ejecución de Basic."
-
-#. `|m-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"tit\n"
-"help.text"
-msgid "Write Statement [Runtime]"
-msgstr "Instrucción Write [Ejecución]"
-
-#. *fHF
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"bm_id3147229\n"
-"help.text"
-msgid "<bookmark_value>Write statement</bookmark_value>"
-msgstr "\\<bookmark_value\\>instrucción Write\\</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=\"Instrucción Write [Runtime]\">Instrucción Write [Runtime]</link>"
-
-#. T0)=
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "Writes data to a sequential file."
-msgstr "Escribe datos en un archivo secuencial."
-
-#. w:|.
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "<emph>Sintaxis</emph>:"
-
-#. EM+(
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3145785\n"
-"4\n"
-"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr "Write [#NombreArchivo], [ListaExpresión]"
-
-#. 0YCi
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NombreArchivo:</emph> Cualquier expresión numérica que contenga el número de archivo que estableció la instrucción Open para el archivo respectivo."
-
-#. ?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>ListaExpresiones:</emph> Variables o expresiones que se desee introducir en un archivo, separadas por comas."
-
-#. [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 "Si se omite la lista de expresiones, la instrucción <emph>Write</emph> añade una línea vacía al archivo."
-
-#. (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 "Para añadir una lista de expresiones a un archivo nuevo o existente, éste debe estar abierto con el modo <emph>Output</emph> o <emph>Append</emph>."
-
-#. 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 "Las cadenas que puedes escribir estan encapsulada por comillas y separado por comas. No necesitas poner estos delimitantes en una lista de expresión."
-
-#. 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 "Cada instrucción de \\<emph\\>Write\\</emph\\> genera un simbolo de salto de linea a la última entrada."
-
-#. 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 "Numeros con delimitadores decimales son convertidos de acuerdo ala configuración del idioma o regionalización."
-
-#. l[mK
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "<emph>Ejemplo:</emph>"
-
-#. jSzv
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetAttr Function [Runtime]"
-msgstr "Función GetAttr [Ejecución]"
-
-#. afc)
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"bm_id3150984\n"
-"help.text"
-msgid "<bookmark_value>GetAttr function</bookmark_value>"
-msgstr "<bookmark_value>GetAttr;función</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=\"Función GetAttr [Runtime]\">Función GetAttr [Runtime]</link>"
-
-#. Z)@W
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3154347\n"
-"2\n"
-"help.text"
-msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
-msgstr "Devuelve un patrón de bits que identifica el tipo de archivo o el nombre de un volumen o de un directorio."
-
-#. eO-k
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. /3bY
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3150359\n"
-"4\n"
-"help.text"
-msgid "GetAttr (Text As String)"
-msgstr "GetAttr (Texto As String)"
-
-#. JQ[K
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. cQ#K
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. !iW.
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. ?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 "Esta función determina los atributos de un archivo especificado y devuelve el patrón de bits que puede ayudar a identificar los atributos de archivo siguientes:"
-
-#. \,Nu
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
-"10\n"
-"help.text"
-msgid "Value"
-msgstr "Valor"
-
-#. GX1L
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3147349\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0 : Archivos normales."
-
-#. \EQj
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3147434\n"
-"12\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : Archivos de sólo lectura."
-
-#. fBfJ
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr "8 : Devuelve el nombre del volumen"
-
-#. [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 : Sólo devuelve el nombre del directorio."
-
-#. [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 : El archivo se cambió desde la última copia de seguridad (bit Archive)."
-
-#. 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 "Para saber si está activado algún bit de atributo, se utiliza el método de consulta siguiente:"
-
-#. u2OJ
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3153094\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. #*}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 ManejadorError REM Define destino para manejar errores"
-
-#. mzrg
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr "Instrucción Select...Case [Ejecución]"
-
-#. 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 statement</bookmark_value><bookmark_value>Case statement</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 Statement [Runtime]\">Instrucción Select...Case [Ejecución]</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 "Define uno o más bloques de instrucciones, dependiendo del valor de una expresión."
-
-#. rZ)m
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 condición Case expresión Bloque de instrucciones [Case expresión2 Bloque de instrucciones][Case Else] Bloque de instrucciones End Select"
-
-#. 6uEQ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Condición:</emph> Cualquier expresión que controla si se ejecutará el bloque de instrucciones que sigue a la cláusula Case correspondiente."
-
-#. @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>Expresión:</emph> Cualquier expresión que es compatible con la del tipo de la condición. El bloque de instrucciones que sigue a la cláusula Case se ejecuta sólo si la <emph>Condición</emph> coincide con la <emph>Expresión</emph>."
-
-#. la%;
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. j$^#
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Número de 1 a 5\""
-
-#. 9AoZ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3147349\n"
-"16\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Número de 6 a 8\""
-
-#. Z@kw
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152886\n"
-"18\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Mayor que 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 \"Fuera del rango de 1 a 10\""
-
-#. JUPU
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"tit\n"
-"help.text"
-msgid "ConvertFromURL Function [Runtime]"
-msgstr "Función ConvertFromURL [Ejecución]"
-
-#. -89,
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"bm_id3153894\n"
-"help.text"
-msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertFromURL;función</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 Function [Runtime]\">Función ConvertFromURL [Ejecución]</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 "Convierte un fichero URL en un nombre de archivo para el sistema."
-
-#. W{h)
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. UBU8
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3154142\n"
-"4\n"
-"help.text"
-msgid "ConvertFromURL(filename)"
-msgstr "ConvertFromURL(nombrearchivo)"
-
-#. c8wX
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. ;,Q^
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150669\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. .4o^
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. !,^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>NombreArchivo:</emph> Un nombre de archivo como cadena."
-
-#. tKSr
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 5UkN
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3148664\n"
-"10\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\carpeta\\mitexo.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 "Función FileLen [Ejecución]"
-
-#. $[Ck
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"bm_id3153126\n"
-"help.text"
-msgid "<bookmark_value>FileLen function</bookmark_value>"
-msgstr "<bookmark_value>FileLen;función</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=\"Función FileLen [Runtime]\">Función FileLen [Runtime]</link>"
-
-#. pp{J
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Returns the length of a file in bytes."
-msgstr "Devuelve la longitud de un archivo en bytes."
-
-#. XG0`
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. KP*?
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "FileLen (Text As String)"
-msgstr "FileLen (Texto As String)"
-
-#. If~!
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. t)Mo
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. -dIy
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. {+$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>Texto:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. $@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 "Esta función determina la longitud de un archivo. Si se llama a la función FileLen para un archivo abierto, ésta devuelve su longitud antes de que se abriera. Para determinar la longitud actual de un archivo abierto, se debe usar la función Lof."
-
-#. M1D@
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Ts!#
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr "Función ChDrive [Ejecución]"
-
-#. H1UI
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "<bookmark_value>Declaración ChDrive</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=\"Declaración ChDrive [Runtime]\">Declaración ChDrive [Ejecución]</link>"
-
-#. IG:s
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr "Cambia la unidad actual."
-
-#. ft.W
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. _FWx
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Texto As String"
-
-#. _a{/
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3156423\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. \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>Texto:</emph> Cualquier expresión de cadena que contenga la letra de la unidad nueva. Si se desea, puede usarse la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. (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 "La unidad debe tener asignada una letra mayúscula. En Windows, la letra que se asigna a la unidad está restringida por el valor de LASTDRV. Si el argumento de unidad es una cadena de varios caracteres, sólo es relevante la primera letra. Si se intenta acceder a una unidad no existente, se produce un error al que se puede responder con la instrucción OnError."
-
-#. TcF]
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3153188\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. [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 Sólo es posible si la unidad 'D' existe."
-
-#. fhf$
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"tit\n"
-"help.text"
-msgid "Kill Statement [Runtime]"
-msgstr "Instrucción Kill [Ejecución]"
-
-#. h1J~
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>Kill statement</bookmark_value>"
-msgstr "<bookmark_value>Kill;instrucción</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=\"Declaración Kill [Runtime]\">Declaración Kill [Runtime]</link>"
-
-#. .^6m
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3151211\n"
-"2\n"
-"help.text"
-msgid "Deletes a file from a disk."
-msgstr "Borra un archivo de un disco."
-
-#. I76E
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. [s!w
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "Kill File As String"
-msgstr "Kill Archivo As String"
-
-#. $Oo`
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "<emph>Parámetro</emph>:"
-
-#. ~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>Archivo:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. JL$]
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ]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 El archivo debe crearse con anterioridad"
-
-#. @UK:
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "Función FileDateTime [Ejecución]"
-
-#. U9c|
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "<bookmark_value>FileDateTime;función</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=\"Función FileDateTime [Runtime]\">Función FileDateTime [Runtime]</link>"
-
-#. WG[#
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "Returns a string that contains the date and the time that a file was created or last modified."
-msgstr "Devuelve una cadena que contiene la fecha y la hora en que se creó o se modificó por última vez un archivo."
-
-#. `eMw
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. o~Tl
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "FileDateTime (Texto As String)"
-
-#. Qtnl
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca (sin comodines). También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. 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 "Esta función determina la hora exacta de creación o de modificación más reciente de un archivo, devuelta en el formato \"MM.DD.AAAA HH.MM.SS\"."
-
-#. 3Jgr
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3146119\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. svVl
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr "Instrucción Option Explicit [Ejecución]"
-
-#. 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;instrucción</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 Statement [Runtime]\">Instrucción Option Explicit [Ejecución]</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 "Especifica que todas las variables del código del programa deben declararse de forma explícita con la instrucción Dim."
-
-#. -;@(
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Parámetros:"
-
-#. 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 "Esta instrucción debe agregarse antes del código del programa ejecutable en un módulo."
-
-#. 8FK)
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Esto provoca un error en tiempo de ejecución"
-
-#. 0dG5
-#: 03020100.xhp
-msgctxt ""
-"03020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening and Closing Files"
-msgstr "Apertura y cierre de archivos"
-
-#. 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=\"Apertura y cierre de archivos\">Apertura y cierre de archivos</link>"
-
-#. tlFQ
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"tit\n"
-"help.text"
-msgid "Right Function [Runtime]"
-msgstr "Función Right [Ejecución]"
-
-#. j$5T
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Right function</bookmark_value>"
-msgstr "<bookmark_value>Right;función</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 Function [Runtime]\">Función Right [Ejecución]</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 "Devuelve los \"n\" caracteres que se encuentran más a la derecha de una expresión de cadena."
-
-#. `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 "Consulte también: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Función Left</link>."
-
-#. ,1~)
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 (Texto As String, n As Integer)"
-
-#. #hV\
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 8)@y
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3156344\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. sZf=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena de la que se desee devolver los caracteres que se encuentren más a la derecha."
-
-#. .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> Expresión entera que defina el número de caracteres que se desee devolver. Si <emph>n</emph> = 0, se devuelve una cadena de longitud cero."
-
-#. `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 "El ejemplo siguiente convierte una fecha en formato AAAA-MM-DD al formato de fecha de EEUU (MM/DD/AAAA)."
-
-#. ?0|=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 "sEntrada = InputBox(\"Escriba una fecha en formato internacional 'AAAA-MM-DD'\")"
-
-#. \tNR
-#: 03120200.xhp
-msgctxt ""
-"03120200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Repeating Contents"
-msgstr "Repetición de contenidos"
-
-#. 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=\"Repeating Contents\">Repetición de contenidos</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 "Las funciones siguientes repiten el contenido de las cadenas."
-
-#. }/xl
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr "Operador \"/\" [Ejecución]"
-
-#. 8haF
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>operador \"/\";operadores matemáticos</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\">Operador \"/\" [Ejecución]</link>"
-
-#. b?Bi
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3149670\n"
-"2\n"
-"help.text"
-msgid "Divides two values."
-msgstr "Divide dos valores."
-
-#. D%wr
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. l2.l
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3153360\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 / Expression2"
-msgstr "Resultado = Expresión1 / Expresión2"
-
-#. \^HA
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3150359\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Resultado:</emph> Cualquier valor numérico que contenga el resultado de la división."
-
-#. 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>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea dividir."
-
-#. R4}.
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3154684\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. n0x~
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erl Function [Runtime]"
-msgstr "Función Erl [Ejecución]"
-
-#. RDO6
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Erl function</bookmark_value>"
-msgstr "<bookmark_value>Erl;función</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=\"Función Erl [Runtime]\">Función Erl [Ejecución]</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 "Devuelve el número de línea en que se produjo un error durante la ejecución de un programa."
-
-#. l1~c
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Valor de retorno:"
-
-#. (r_=
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3154924\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. W8*)
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "La función Erl sólo devuelve el número, no la etiqueta de línea."
-
-#. ;$v!
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 ManejadorError REM Configurar manejador de errores"
-
-#. Gj2+
-#: 03050100.xhp
-#, fuzzy
-msgctxt ""
-"03050100.xhp\n"
-"par_id3153188\n"
-"14\n"
-"help.text"
-msgid "' Error caused by non-existent file"
-msgstr "REM Error causado por archivo no existente"
-
-#. 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 \"Error \" & err & \": \" & Error$ + chr(13) + \"En la línea: \" + Erl + chr(13) + Now , 16 ,\"Se ha producido un error\""
-
-#. id,b
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Función Erase [Ejecución]"
-
-#. NS.M
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"bm_id624713\n"
-"help.text"
-msgid "<bookmark_value>Erase function</bookmark_value>"
-msgstr "<bookmark_value>Función Erase</bookmark_value>"
-
-#. s\R\
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Función Erase [Ejecución]</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 "Elimina el contenido de elementos de matriz de matrices con tamaño fijo; libera la memoria que utilizan las matrices de tamaño variable."
-
-#. Fpos
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ;~+9
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
-"help.text"
-msgid "Erase Arraylist"
-msgstr "Erase Arraylist"
-
-#. JZ.2
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. V_{~
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105ED\n"
-"help.text"
-msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
-msgstr "<emph>Arraylist</emph>: la lista de las matrices que se deben eliminar."
-
-#. $rw[
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exp Function [Runtime]"
-msgstr "Función Exp [Ejecución]"
-
-#. E@C,
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Exp function</bookmark_value>"
-msgstr "<bookmark_value>Exp;función</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=\"Función Exp [Runtime]\">Función Exp [Ejecución]</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 "Devuelve la base del logaritmo natural (e = 2,718282) elevado a una potencia."
-
-#. ztC0
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3150984\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. aW33
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "Exp (Number)"
-msgstr "Exp (Número)"
-
-#. [AK_
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3154347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. +V`}
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. _M+h
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. #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>Número:</emph> Cualquier expresión numérica que especifique la potencia a la que se desea elevar \"e\" (la base de los logaritmos naturales). La potencia debe ser para números de precisión simple menor o igual a 88,02969 y para números de precisión doble menor o igual a 709,782712893, ya que $[officename] Basic devuelve un error de desbordamiento si los números sobrepasan estos valores."
-
-#. yAj$
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3156280\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"Multiplicación por logaritmo\""
-
-#. hQ%;
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro"
-msgstr "Macro"
-
-#. 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>Macro; asignar</bookmark_value><bookmark_value>Acontecimiento; asignar macro</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=\"Macro\">Macro</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=\".\">Elija la macro que desea que se ejecute al seleccionar un determinado gráfico, marco u objeto OLE.</ahelp> Según el objeto que se seleccione, la función se ubica en la ficha <emph>Macro</emph> del diálogo <emph>Objeto</emph> o en el diálogo <emph>Asignar macro</emph>."
-
-#. AMJn
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150503\n"
-"3\n"
-"help.text"
-msgid "Event"
-msgstr "Acontecimiento"
-
-#. )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\" visibility=\"visible\">Lista la acción que es relevante para las macros que están asignadas actualmente al objeto seleccionado.</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 "La tabla siguiente describe las macros y las acciones que pueden enlazarse a objetos del documento:"
-
-#. XHvZ
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153360\n"
-"24\n"
-"help.text"
-msgid "Event"
-msgstr "<emph>Acontecimiento</emph>"
-
-#. `do8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154365\n"
-"25\n"
-"help.text"
-msgid "Event trigger"
-msgstr "Ejecutor de la acción"
-
-#. KMfc
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159149\n"
-"26\n"
-"help.text"
-msgid "OLE object"
-msgstr "<emph>Objeto OLE</emph>"
-
-#. LLWW
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
-"27\n"
-"help.text"
-msgid "Graphics"
-msgstr "<emph>Imagen</emph>"
-
-#. O,J\
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
-"28\n"
-"help.text"
-msgid "Frame"
-msgstr "<emph>Marco</emph>"
-
-#. T^VC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
-"help.text"
-msgid "AutoText"
-msgstr "<emph>AutoTexto</emph>"
-
-#. ^:mm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145785\n"
-"30\n"
-"help.text"
-msgid "ImageMap area"
-msgstr "<emph>Área ImageMap</emph>"
-
-#. e|]]
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
-"31\n"
-"help.text"
-msgid "Hyperlink"
-msgstr "<emph>Hiperenlace</emph>"
-
-#. TDq1
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155306\n"
-"32\n"
-"help.text"
-msgid "Click object"
-msgstr "Pulsar objeto"
-
-#. t-m.
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3152460\n"
-"33\n"
-"help.text"
-msgid "Object is selected."
-msgstr "El objeto se selecciona."
-
-#. .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 "Ratón sobre objeto"
-
-#. XCX8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145253\n"
-"38\n"
-"help.text"
-msgid "Mouse moves over the object."
-msgstr "El ratón se mueve sobre el objeto."
-
-#. ]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 "Ejecutar hiperenlace"
-
-#. dR:$
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154756\n"
-"45\n"
-"help.text"
-msgid "Hyperlink assigned to the object is clicked."
-msgstr "Se pulsa el hiperenlace asignado al objeto."
-
-#. 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 "El ratón abandona el objeto"
-
-#. ^!Sc
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147003\n"
-"51\n"
-"help.text"
-msgid "Mouse moves off of the object."
-msgstr "El ratón se mueve fuera del objeto."
-
-#. 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 "La carga de la imagen ha finalizado con éxito"
-
-#. a;K?
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153705\n"
-"58\n"
-"help.text"
-msgid "Graphics are loaded successfully."
-msgstr "Los gráficos se cargan satisfactoriamente."
-
-#. 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 "Interrumpida la carga de la imagen"
-
-#. .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 "El usuario detiene la carga de los gráficos (por ejemplo, al descargar una página)."
-
-#. 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 "Error al cargar la imagen"
-
-#. 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 "Los gráficos no se cargan satisfactoriamente, por ejemplo si uno de ellos no se encuentra."
-
-#. [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 "Entrada de caracteres alfa"
-
-#. ?Agm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155266\n"
-"67\n"
-"help.text"
-msgid "Text is entered from the keyboard."
-msgstr "Texto introducido desde el teclado."
-
-#. 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 "Entrada de caracteres no-alfa"
-
-#. 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 "Se introducen caracteres no imprimibles desde el teclado, por ejemplo tabuladores y saltos de línea."
-
-#. #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 "Modificar el tamaño del marco"
-
-#. k`-H
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153972\n"
-"73\n"
-"help.text"
-msgid "Frame is resized with the mouse."
-msgstr "El marco cambia de tamaño con el ratón."
-
-#. 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 "Desplazar marco"
-
-#. [?)-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154767\n"
-"76\n"
-"help.text"
-msgid "Frame is moved with the mouse."
-msgstr "El marco se mueve con el ratón."
-
-#. 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 "Antes de insertar el texto automático"
-
-#. Z?Ey
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147515\n"
-"79\n"
-"help.text"
-msgid "Before a text block is inserted."
-msgstr "Antes de que se inserte un bloque de texto."
-
-#. 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 "Tras insertar el texto automático"
-
-#. h5-4
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147502\n"
-"82\n"
-"help.text"
-msgid "After a text block is inserted."
-msgstr "Después de que se inserte un bloque de texto."
-
-#. )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 "Macros"
-
-#. 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 "Elija la macro que desee ejecutar cuando la acción seleccionada se produzca."
-
-#. 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 "Los marcos permiten enlazar acciones a una función, de forma que ésta pueda determinar si procesa la acción o lo hace $[officename] Writer."
-
-#. wDly
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
-"7\n"
-"help.text"
-msgid "Category"
-msgstr "Área"
-
-#. !#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\" visibility=\"visible\">Lista los documentos y aplicaciones abiertos de $[officename]. Pulse en el nombre de la ubicación donde desee guardar las macros.</ahelp>"
-
-#. jzO9
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3149744\n"
-"9\n"
-"help.text"
-msgid "Macro name"
-msgstr "Nombre de macro"
-
-#. 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\" visibility=\"visible\">Lista las macros disponibles. Pulse en la macro que desee asignar al objeto seleccionado.</ahelp>"
-
-#. =Xlw
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
-"11\n"
-"help.text"
-msgid "Assign"
-msgstr "Asignar"
-
-#. -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\" visibility=\"visible\">Asigna la macro seleccionada a la acción especificada.</ahelp> Las entradas de la macro asignada se establecen después de la acción."
-
-#. ;pyE
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
-"15\n"
-"help.text"
-msgid "Remove"
-msgstr "Borrar"
-
-#. ~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\" visibility=\"visible\">Borra la macro que está asignada al elemento seleccionado.</ahelp></variable>"
-
-#. L#[?
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159126\n"
-"85\n"
-"help.text"
-msgid "Macro selection"
-msgstr "Campo de selección de macros"
-
-#. 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\" visibility=\"visible\">Seleccione la biblioteca que desee asignar.</ahelp>"
-
-#. LWz%
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"tit\n"
-"help.text"
-msgid "Basics"
-msgstr "$[officename] Basic es modular"
-
-#. 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>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global y local</bookmark_value><bookmark_value>modulos;subroutinas y funciones</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=\"Basics\">Basic</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 "Esta sección proporciona los fundamentos para trabajar con $[officename] Basic."
-
-#. 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 "El código de $[officename] Basic se ba en subrutinas y funciones que se especifican entre secciones <emph>sub...end sub</emph> y <emph>function...end function</emph>. Cada Sub o Function puede llamar a otros módulos Sub y Function. Si se escribe código genérico para módulos Sub o Function, probablemente se podrá reutilizar en otros programas. Véase también <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedimientos y funciones\">Procedimientos y funciones</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 "Se aplican ciertas restricciones a los nombres de las variables públicas, subrutinas y funciones. No debe usar el mismo nombre que uno de los módulos de la misma biblioteca."
-
-#. UmDj
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150398\n"
-"3\n"
-"help.text"
-msgid "What is a Sub?"
-msgstr "¿Qué es una Sub?"
-
-#. 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 "<emph>Sub</emph> es la contracción de <emph>subrutina</emph>, que se utiliza para manejar una tarea concreta dentro de un programa. Las Sub se utilizan para dividir una tarea en procedimientos individuales. Dividir un programa en procedimientos y subprocedimientos mejora su legibilidad y reduce la posibilidad de errores. Una sub puede tomar algunos argumentos como parámetros, pero no devuelve ningún valor a la sub o función que la ha llamado, por ejemplo:"
-
-#. ~se.
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-msgstr "<emph>HacerAlgoConLosValores(MiPrimerValor,MiSegundoValor)</emph>"
-
-#. PkL]
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3156282\n"
-"5\n"
-"help.text"
-msgid "What is a Function?"
-msgstr "¿Qué es una Función?"
-
-#. _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 "Una <emph>función</emph> es esencialmente una sub que devuelve un valor. Las funciones se pueden usar en el lado derecho de una declaración de variable o en otros sitios en que normalmente se usarían valores, por ejemplo:"
-
-#. mvq+
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3146985\n"
-"7\n"
-"help.text"
-msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr "<emph>MiSegundoValor = MiFunción(MiPrimerValor)</emph>"
-
-#. ekL5
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3153364\n"
-"8\n"
-"help.text"
-msgid "Global and local variables"
-msgstr "Variables globales y locales"
-
-#. 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 "Las variables globales son válidas para todas las sub y funciones contenidas en un módulo. Se declaran al principio del módulo, antes de empiece la primera sub o función."
-
-#. 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 "Las variables que se declaran dentro de una sub o función sólo son válidas dentro de éstas. Estas variables invalidan las variables globales con el mismo nombre así como las locales con el mismo nombre que provengan de subs o funciones de jerarquía superior."
-
-#. JP5j
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
-"11\n"
-"help.text"
-msgid "Structuring"
-msgstr "Estructuración"
-
-#. 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 "Después de separar el programa en procedimientos y funciones (Subs y Functions), éstas se pueden guardar como archivos para reutilizarlas en otros proyectos. $[officename] Basic admite <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Módulos y bibliotecas</link>. Tanto subs como funciones siempre se incluyen en módulos. Los módulos pueden definirse para que sean globales o formen parte de un documento. Varios módulos pueden combinarse en una biblioteca."
-
-#. 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 "Las subs, las funciones, los módulos y las bibliotecas se puede copiar y trasladar de un archivo a otro mediante el diálogo <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>."
-
-#. fNo^
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"tit\n"
-"help.text"
-msgid "FindPropertyObject Function [Runtime]"
-msgstr "Función FindPropertyObject [Ejecución]"
-
-#. \20w
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
-msgstr "<bookmark_value>FindPropertyObject;función</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 Function [Runtime]\">Función FindPropertyObject [Ejecución]</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 "Permite direccionar los objetos en tiempo de ejecución como parámetros de cadena usando el nombre del objeto."
-
-#. RD=b
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "For instance, the command:"
-msgstr "Por ejemplo, el comando:"
-
-#. v](7
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3145610\n"
-"4\n"
-"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MiObj.Prop1.Comando = 5"
-
-#. mD[T
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3147265\n"
-"5\n"
-"help.text"
-msgid "corresponds to the following command block:"
-msgstr "corresponde al siguiente bloque de comando:"
-
-#. v8{;
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3153896\n"
-"6\n"
-"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim VarObj as Object"
-
-#. OjQB
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148664\n"
-"7\n"
-"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim PropObj as Object"
-
-#. +bc8
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "NombreObj As String = \"MiObj\""
-
-#. 7Zm#
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3154365\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "VarObj = FindObject( NombreObj As String )"
-
-#. y6,x
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148453\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "NombreProp 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 "PropObj = FindPropertyObject( VarObj, NombreProp As String )"
-
-#. q+97
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3159152\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "PropObj.Comando = 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 "Para crear nombres dinámicamente en tiempo de ejecución, use:"
-
-#. 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\" en un bucle para crear cinco nombres."
-
-#. 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 "Consulte también: <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 "Sintaxis:"
-
-#. 1lme
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3149560\n"
-"17\n"
-"help.text"
-msgid "FindPropertyObject( ObjVar, PropName As String )"
-msgstr "FindPropertyObject( VarObj, NombreProp As String )"
-
-#. sNv)
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
-"18\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>VarObj:</emph> Variable de object que se desea definir dinámicamente en tiempo de ejecución."
-
-#. 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>NombreProp:</emph> Cadena que especifica el nombre de la propiedad que se desea direccionar en tiempo de ejecución."
-
-#. gV$E
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"tit\n"
-"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr "Instrucción On...GoSub; Instrucción On...GoTo [Ejecución]"
-
-#. %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;instrucción</bookmark_value><bookmark_value>On...GoTo;instrucción</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 Statement; On...GoTo Statement [Runtime]\">Instrucción On...GoSub; Instrucción On...GoTo [Ejecución]</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 "Bifurca a una de varias líneas especificadas del código del programa, dependiendo del valor de una expresión numérica."
-
-#. d5P6
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 Etiqueta1[, Etiqueta2[, Etiqueta3[,...]]]"
-
-#. qn_D
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150769\n"
-"5\n"
-"help.text"
-msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr "On ExpresiónNum GoTo Etiqueta1[, Etiqueta2[, Etiqueta3[,...]]]"
-
-#. nHg$
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3156215\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>ExpresiónNum:</emph> Cualquier expresión numérica entre 0 y 255 que determine a qué línea bifurca el programa. Si ExpresiónNum es 0, la instrucción no se ejecuta. Si ExpresiónNum es mayor que 0, el programa salta a la etiqueta que tiene un número de posición que corresponde a la expresión (1 = Primera etiqueta; 2 = Segunda etiqueta)"
-
-#. 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>Etiqueta:</emph> Línea destino de acuerdo con la estructura <emph> GoTo </emph>o <emph>GoSub</emph>."
-
-#. 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 "Las convenciones de <emph>GoTo</emph> o <emph>GoSub </emph>son válidas."
-
-#. ]0KC
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 & \" De Sub 1 a\" : 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 & \" De Sub 2 a\" : 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 & \" Etiqueta 1\" : GoTo Final"
-
-#. QPh=
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3155764\n"
-"27\n"
-"help.text"
-msgid "sVar =sVar & \" Label 2\""
-msgstr "sVar =sVar & \" Etiqueta 2\""
-
-#. @h/x
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"tit\n"
-"help.text"
-msgid "String Function [Runtime]"
-msgstr "Función String [Ejecución]"
-
-#. X7i^
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"bm_id3147291\n"
-"help.text"
-msgid "<bookmark_value>String function</bookmark_value>"
-msgstr "<bookmark_value>String;función</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 Function [Runtime]\">Función String [Ejecución]</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 "Crea una cadena de acuerdo con el carácter especificado o el primer carácter de una expresión de cadena que se pasa a la función."
-
-#. @PWh
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 Integer, {expresión As Integer | carácter As String})"
-
-#. MxYH
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 8S)F
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. ([t)
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. (~#]
-#: 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> Expresión numérica que indica el número de caracteres que devolver en la cadena."
-
-#. %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>Expresión:</emph> Expresión numérica que define el código ASCII para el carácter."
-
-#. 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>Carácter:</emph> Cualquier carácter individual utilizado para crear la cadena de retorno o cualquier cadena de la que sólo se usará el primer carácter."
-
-#. %]k_
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Ipz^
-#: 01030100.xhp
-msgctxt ""
-"01030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "IDE Overview"
-msgstr "Resumen de IDE"
-
-#. *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=\"Resumen de IDE\">Resumen de IDE</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 "La <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Barra de macros\"><emph>Barra de macros</emph></link> de IDE incluye varios iconos para editar y comprobar programas."
-
-#. %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 "En la <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Ventana de edición\"><emph>Ventana de edición</emph></link> que se encuentra justo debajo de la Barra de macros, puede editar el código del programa Basic. La columna de la parte izquierda se utiliza para establecer puntos de interrupción en el código del programa."
-
-#. 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 "El <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Observador\"><emph>Observador</emph></link> está situado debajo de la ventana de edición, en la parte izquierda, y muestra el contenido de variables o matrices durante un proceso paso a paso."
-
-#. 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 "La ventana <emph>Pila de llamada</emph> de la derecha proporciona información sobre la pila de llamadas de SUBS y FUNCIONES cuando se ejecuta un programa."
-
-#. 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\">IDE Basic</link>"
-
-#. YH4;
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Watch Window"
-msgstr "Ventana Observador"
-
-#. ~-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\">Ventana Observador</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 "En la ventana de inspección se puede ver el valor de las variables durante la ejecución de un programa. Defina la variable en el cuadro de texto de inspección. Haga clic en <link href=\"text/sbasic/shared/02/11080000.xhp\">Habilitar inspección</link> para agregar la variable al cuadro de lista y ver los valores."
-
-#. %3-s
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
-"4\n"
-"help.text"
-msgid "Watch"
-msgstr "Observador"
-
-#. $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\" visibility=\"visible\">Escriba en este cuadro de texto la variable cuyo valor se visualizará en el cuadro de lista.</ahelp>"
-
-#. S%y$
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3148645\n"
-"6\n"
-"help.text"
-msgid "Remove Watch"
-msgstr "Eliminar observador"
-
-#. 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\" visibility=\"visible\">Elimina la variable seleccionada de la lista de variables observadas.</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\">Icono</alt></image>"
-
-#. KN[2
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"par_id3154012\n"
-"8\n"
-"help.text"
-msgid "Remove Watch"
-msgstr "Eliminar observador"
-
-#. Kdk,
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3154491\n"
-"10\n"
-"help.text"
-msgid "Editing the Value of a Watched Variable"
-msgstr "Edición del valor de una variable observada"
-
-#. 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\" visibility=\"visible\">Muestra la lista de las variables observadas. Pulse dos veces haciendo una pequeña pausa sobre una entrada para editar su valor.</ahelp> El valor nuevo se tomará como el de la variable para el programa."
-
-#. c890
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Eof Function [Runtime]"
-msgstr "Función Eof [Ejecución]"
-
-#. cih1
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"bm_id3154598\n"
-"help.text"
-msgid "<bookmark_value>Eof function</bookmark_value>"
-msgstr "<bookmark_value>función Eof</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=\"Función Eof [Runtime]\">Función Eof [Runtime]</link>"
-
-#. 7W^\
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3147182\n"
-"2\n"
-"help.text"
-msgid "Determines if the file pointer has reached the end of a file."
-msgstr "Determina si el puntero de archivo ha llegado al final de éste."
-
-#. cC?.
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. vX+:
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3147399\n"
-"4\n"
-"help.text"
-msgid "Eof (intexpression As Integer)"
-msgstr "Eof (ExpresiónEntero As Integer)"
-
-#. 3@`_
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. #nsX
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. R^im
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. .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 "ExpresiónEntero: Cualquier expresión de entero que produzca el número de un archivo abierto."
-
-#. *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 "EOF se utiliza para evitar errores al intentar obtener datos más allá del final de un archivo. Cuando se utiliza la instrucción Input o Get para leer de un archivo, el puntero de archivo se avanza según el número de bytes leídos. Cuando se llega al final del archivo, EOF devuelve el valor \"True\" (-1)."
-
-#. @B/d
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. p+0+
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. ILr{
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
-#. A{~`
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Strings"
-msgstr "Cadenas"
-
-#. 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=\"Strings\">Cadenas</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 "Las funciones e instrucciones siguientes validan y devuelven cadenas."
-
-#. 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 "Puede usar cadenas para editar texto desde programas de $[officename] Basic."
-
-#. r7k!
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Operador Not [Ejecución]"
-
-#. 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;operadores lógicos</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=\"Operador Not [Runtime]\">Operador Not [Ejecución]</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 "Se utiliza para negar una expresión invirtiendo sus valores de bit."
-
-#. bq^;
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. -kYc
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3150360\n"
-"4\n"
-"help.text"
-msgid "Result = Not Expression"
-msgstr "Resultado = Not Expresión"
-
-#. 9?Q^
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. `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>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la implicación."
-
-#. *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>Expresión:</emph> Cualquier expresión que desee negar."
-
-#. :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 "Cuando se niega una expresión lógica, el valor True cambia a False y viceversa."
-
-#. 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 "En una negación entre bits se invierten todos los bits individualmente."
-
-#. QNQ0
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Devuelve -11"
-
-#. +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 devuelve -1"
-
-#. 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 Devuelve -1"
-
-#. 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 Devuelve 0"
-
-#. yTdB
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sub Statement [Runtime]"
-msgstr "Instrucción Sub [Ejecución]"
-
-#. m:l.
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"bm_id3147226\n"
-"help.text"
-msgid "<bookmark_value>Sub statement</bookmark_value>"
-msgstr "<bookmark_value>Sub;instrucción</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 Statement [Runtime]\">Instrucción Sub [Ejecución]</link>"
-
-#. JoyK
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3153311\n"
-"2\n"
-"help.text"
-msgid "Defines a subroutine."
-msgstr "Define una subrutina."
-
-#. fHo^
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3149416\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. 1w~c
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3147530\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr "bloque de instrucciones"
-
-#. u(Lq
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. riZ8
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3150792\n"
-"10\n"
-"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine ."
-msgstr "<emph>Nombre:</emph> Nombre de la subrutina."
-
-#. 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>NombVar: </emph>Parámetro que desee pasar a la subrutina."
-
-#. ;kA(
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3154908\n"
-"12\n"
-"help.text"
-msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr "<emph>Tipo:</emph> Palabra clave de declaración de tipo."
-
-#. 9ODJ
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. C[M!
-#: 03090409.xhp
-#, fuzzy
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr "REM algunas instrucciones"
-
-#. U*3`
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#. 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=\"Sintaxis\">Sintaxis</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 "Esta sección describe los elementos de sintaxis básicos de $[officename] Basic. Para obtener información más detallada consulte la Guía de $[officename] Basic que está disponible de forma separada."
-
-#. `*=K
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exit Statement [Runtime]"
-msgstr "Instrucción Exit [Ejecución]"
-
-#. xAc7
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"bm_id3152924\n"
-"help.text"
-msgid "<bookmark_value>Exit statement</bookmark_value>"
-msgstr "<bookmark_value>Exit;instrucción</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 Statement [Runtime]\">Instrucción Exit [Ejecución]</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 "Sale de un bucle <emph>Do...Loop</emph> o <emph>For...Next</emph>, o de una función o subrutina."
-
-#. #wuZ
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. mW@i
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3159157\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr "consulte Parámetros"
-
-#. 0GXS
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3148943\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. #\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 "Sólo es válido en una instrucción <emph>Do...Loop</emph> para salir del bucle. La ejecución del programa continúa con la instrucción que sigue a Loop. Si las instrucciones <emph>Do...Loop</emph> están anidadas, el control se transfiere al bucle del nivel inmediatamente superior."
-
-#. }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 "Sólo es válido en un bucle <emph>For...Next</emph> para salir del bucle. La ejecución del programa continúa con la instrucción que sigue a la instrucción <emph>Next</emph>. En instrucciones anidadas, el control se transfiere al bucle del nivel inmediatamente superior."
-
-#. $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 "Sale del procedimiento <emph>Function</emph> inmediatamente. La ejecución del programa continúa con la instrucción que sigue a la llamada <emph>Function</emph>."
-
-#. @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 "Sale de la subrutina inmediatamente. La ejecución del programa continúa con la instrucción que sigue a la llamada <emph>Sub</emph>."
-
-#. 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 "La instrucción Exit no define el final de una estructura; no debe confundirse con la instrucción End."
-
-#. ^3GV
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. =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 siPaso = 0 to 10 REM Rellenar matriz con datos de prueba"
-
-#. 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 BuscaLin busca en MatrizTexto:sLista() una EntradaTexto:"
-
-#. 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 Devuelve el índice de la entrada o 0 (Nulo)"
-
-#. .(J;
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM encontrado sElemen"
-
-#. F(Y.
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Put Statement [Runtime]"
-msgstr "Instrucción Put [Ejecución]"
-
-#. g4XU
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"bm_id3150360\n"
-"help.text"
-msgid "<bookmark_value>Put statement</bookmark_value>"
-msgstr "<bookmark_value>Put;función</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=\"Instrucción Put [Runtime]\">Instrucción Put [Runtime]</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 "Escribe un registro en un archivo relativo o una secuencia de bytes en un archivo binario."
-
-#. 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 "Consulte también: instrucción <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link>"
-
-#. NM0O
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "<emph>Sintaxis</emph>:"
-
-#. P3l@
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155132\n"
-"5\n"
-"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr "Put [#] NúmeroArchivo As Integer, [posición], Variable"
-
-#. PS/H
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NúmeroArchivo:</emph> Cualquier expresión entera que defina el archivo en el que se desee escribir."
-
-#. 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>Posición: </emph>En archivos relativos (archivos de acceso aleatorio), el número del registro que se desee escribir."
-
-#. 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 "En archivos binarios (acceso binario), la posición del byte del archivo en que se desee empezar a escribir."
-
-#. 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>Variable:</emph> Nombre de la variable que se desee escribir en el archivo."
-
-#. ?|_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 "Nota para archivos relativos: Si el contenido de esta variable no coincide con la longitud del registro que se especifica en la cláusula <emph>Len</emph> de la instrucción <emph>Open</emph>, el espacio entre el final del registro escrito recientemente y el siguiente se rellena con los datos existentes del archivo al que está escribiendo."
-
-#. 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 "Nota para archivos binarios: El contenido de las variables se escribe en la posición especificada y el puntero del archivo se inserta directamente después del último byte. No se deja espacio entre los registros."
-
-#. I?3@
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "<emph>Ejemplo:</emph>"
-
-#. +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 sTexto As Variant REM Debe ser de tipo variante"
-
-#. 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 #iNumero,1 REM Posición en la que empezar a escribir"
-
-#. 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 #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar línea con texto"
-
-#. 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 "Print #iNumero, \"Esta es la segunda línea de texto\""
-
-#. /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 "Print #iNumero, \"Esta es la tercera línea de texto\""
-
-#. h}3w
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Put #iNumero,,\"Esto es un texto nuevo\""
-
-#. 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 #iNumero,20,\"Este es el texto del registro 20\""
-
-#. +mnY
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileExists Function [Runtime]"
-msgstr "Función FileExists [Ejecución]"
-
-#. Lj0M
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"bm_id3148946\n"
-"help.text"
-msgid "<bookmark_value>FileExists function</bookmark_value>"
-msgstr "<bookmark_value>FileExists;función</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=\"Función FileExists [Runtime]\">Función FileExists [Runtime]</link>"
-
-#. ^mpM
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3153361\n"
-"2\n"
-"help.text"
-msgid "Determines if a file or a directory is available on the data medium."
-msgstr "Determina si un archivo o directorio están disponibles en el soporte de datos."
-
-#. BY[,
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. \flG
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "FileExists(FileName As String | DirectoryName As String)"
-msgstr "FileExists(NombreArchivo As String | NombreDirectorio As String)"
-
-#. J`nQ
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3154126\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. C#o)
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Lógico"
-
-#. .L1G
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "NombreArchivo | NombreDirectorio: Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. Mm7J
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "<emph>Ejemplo:</emph>"
-
-#. qali
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr "Organizar bibliotecas y módulos"
-
-#. 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>bibliotecas;organizando</bookmark_value><bookmark_value>módulos;organizando</bookmark_value><bookmark_value>copiando;modulos</bookmark_value><bookmark_value>agregando bibliotecas</bookmark_value><bookmark_value>quitando;bibliotecas/modules/diálogos</bookmark_value><bookmark_value>diálogos;organizando</bookmark_value><bookmark_value>moviendo;módulos</bookmark_value><bookmark_value>organizando;módulos/bibliotecas/diálogos</bookmark_value><bookmark_value>renombrando módulos y diálogos</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\">Organizar bibliotecas y módulos</link></variable>"
-
-#. ]aYp
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
-"help.text"
-msgid "Organizing Libraries"
-msgstr "Organización de bibliotecas"
-
-#. OuP%
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
-"help.text"
-msgid "Creating a New Library"
-msgstr "Creación de una biblioteca nueva"
-
-#. 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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. PL?O
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153726\n"
-"8\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
-
-#. (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 "Seleccione el lugar en que desea anexar la biblioteca en la lista <emph>Ubicación</emph>. Si selecciona Macros y diálogos de %PRODUCTNAME, la biblioteca pertenecerá a la aplicación de $[officename] y quedará disponible para todos los documentos. Si selecciona un documento, la biblioteca se anexará a este documento y sólo estará disponible desde él."
-
-#. ;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 "Pulse en <emph>Nueva</emph> e inserte un nombre para crear una biblioteca nueva."
-
-#. 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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. %|vY
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
-
-#. 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 "Seleccione el lugar en que desea anexar la biblioteca en la lista <emph>Ubicación</emph>. Si selecciona Macros y diálogos de %PRODUCTNAME, la biblioteca pertenecerá a la aplicación de $[officename] y quedará disponible para todos los documentos. Si selecciona un documento, la biblioteca se anexará a este documento y sólo estará disponible desde él."
-
-#. 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 "Pulse en <emph>Adjuntar</emph> y seleccione una biblioteca externa que añadir."
-
-#. [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 "Seleccione todas las bibliotecas que adjuntar en el diálogo <emph>Añadir biblioteca</emph>. El diálogo muestra todas las bibliotecas que están contenidas en el archivo seleccionado."
-
-#. `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 "Si desea insertar la biblioteca sólo como referencia, marque la casilla <emph>Insertar como referencia (sólo lectura)</emph>. Las bibliotecas de sólo lectura son completamente funcionales, pero no pueden modificarse desde Basic IDE."
-
-#. 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 "Marque la casilla <emph>Reemplazar bibliotecas existentes</emph> si desea que se sobrescriban las bibliotecas existentes que tienen el mismo nombre."
-
-#. 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 "Pulse en <emph>Aceptar</emph> para adjuntar la biblioteca."
-
-#. }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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. U=g}
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147006\n"
-"71\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
-
-#. $$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 "Pulse <emph>Borrar</emph>."
-
-#. 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 "Pulse en <emph>Aceptar</emph> para adjuntar la biblioteca."
-
-#. ,,=|
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3159100\n"
-"17\n"
-"help.text"
-msgid "Deleting a Library"
-msgstr "Supresión de una biblioteca"
-
-#. +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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. D08Z
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146808\n"
-"57\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
-
-#. }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 "Seleccione la biblioteca que se debe eliminar de la lista."
-
-#. TA!q
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150361\n"
-"20\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Pulse en <emph>Borrar</emph>."
-
-#. ,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 "Nota: En cuanto se borra una biblioteca, todos los módulos existentes y sus SUBS y FUNCIONES correspondientes se borran de forma permanente."
-
-#. 3L1.
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
-"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr "La biblioteca predeterminada \"Standard\" no puede borrarse."
-
-#. 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 "Si se borra una biblioteca que se ha insertado como referencia, sólo se borra la referencia pero no la biblioteca en sí."
-
-#. iN[6
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
-"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr "Organización de módulos y diálogos"
-
-#. 8?ao
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
-"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr "Creación de un módulo o diálogo nuevos"
-
-#. 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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. .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 "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
-
-#. 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 "Seleccione la biblioteca en la que se inserta el módulo y haga clic en <emph>Nuevo</emph>."
-
-#. 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 "Escriba un nombre para el módulo o el diálogo y pulse <emph>Aceptar</emph>."
-
-#. l~Nj
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
-"help.text"
-msgid "Renaming a Module or Dialog"
-msgstr "Cambio de nombre de un módulo o diálogo"
-
-#. 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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. 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 "Haga doble clic en el módulo cuyo nombre debe cambiarse, con una pausa entre los clics. Especifique el nombre nuevo."
-
-#. (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 "En el IDE de StarOffice Basic, con el botón derecho haga clic en el nombre del módulo o diálogo en las fichas de la parte inferior de la pantalla, seleccione <emph>Cambiar nombre</emph> y escriba el nombre nuevo."
-
-#. 8:An
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
-"help.text"
-msgid "Press Enter to confirm your changes."
-msgstr "Pulse Intro para confirmar los cambios."
-
-#. Bp+R
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
-"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr "Supresión de un módulo o diálogo"
-
-#. 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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. 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 "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
-
-#. 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 "Seleccione el módulo o diálogo que se debe eliminar de la lista. Haga doble clic para mostrar las subentradas, si es necesario."
-
-#. FcC%
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Pulse <emph>Borrar</emph>."
-
-#. 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 "Al borrar un módulo se borran permanentemente todos sus procedimientos y funciones."
-
-#. 0@-2
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
-"help.text"
-msgid "Organizing Projects among Documents or Templates"
-msgstr "Organización de proyectos entre documentos y plantillas"
-
-#. ~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 "Desplazamiento o copia de módulos entre documentos, plantillas y la aplicación."
-
-#. 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 "Abra todos los documentos o plantillas entre los que desee desplazar o copiar módulos o diálogos."
-
-#. @]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 "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
-
-#. (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 "Para colocar un módulo o diálogo en otro documento, haga clic en el objeto pertinente de la lista y arrástrelo a la nueva posición. Una línea horizontal indica la posición de destino del objeto seleccionado mientras se arrastra. Mantenga pulsada la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Control</defaultinline></switchinline> mientras arrastra para copiar el objeto en lugar de desplazarlo."
-
-#. eMk|
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"tit\n"
-"help.text"
-msgid "CurDir Function [Runtime]"
-msgstr "Función CurDir [Ejecución]"
-
-#. uJw/
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"bm_id3153126\n"
-"help.text"
-msgid "<bookmark_value>CurDir function</bookmark_value>"
-msgstr "<bookmark_value>CurDir;función</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\">Función CurDir [Ejecución]</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 "Devuelve una cadena variante que representa la ruta de acceso actual de la unidad especificada."
-
-#. $iX6
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. I:!1
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3153381\n"
-"4\n"
-"help.text"
-msgid "CurDir [(Text As String)]"
-msgstr "CurDir [(Texto As String)]"
-
-#. Ej$E
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. OG7l
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. R+,b
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que especifique una unidad existente (por ejemplo, \"C\" para la primera partición de la primera unidad de disco duro)."
-
-#. 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 "Si no se ha especificado ninguna unidad o ésta es una cadena de longitud cero (\"\"), CurDir devuelve la ruta de acceso para la unidad actual. $[officename] Basic informa de un error si la sintaxis de la descripción de la unidad es incorrecta, ésta no existe o su letra es posterior a la definida en CONFIG.SYS con la instrucción Lastdrive."
-
-#. S?AJ
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "This function is not case-sensitive."
-msgstr "Esta función no distingue entre mayúsculas y minúsculas."
-
-#. 8aCU
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3155411\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. nbp_
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Log Function [Runtime]"
-msgstr "Función Log [Ejecución]"
-
-#. 4z--
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Log function</bookmark_value>"
-msgstr "<bookmark_value>Log;función</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=\"Función Log [Runtime]\">Función Log [Ejecución]</link>"
-
-#. gJAD
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145066\n"
-"2\n"
-"help.text"
-msgid "Returns the natural logarithm of a number."
-msgstr "Devuelve el logaritmo natural de un número."
-
-#. V9I-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. |Ki8
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3154760\n"
-"4\n"
-"help.text"
-msgid "Log (Number)"
-msgstr "Log (Número)"
-
-#. MW9A
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3149457\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. rx$}
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. @}Zb
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. [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>Número:</emph> Cualquier expresión numérica de la que se desee calcular el logaritmo natural."
-
-#. [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 "El logaritmo natural es aquel cuya base es e. La base e es una constante con el valor aproximado de 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 "Puede calcular logaritmos en cualquier base (n) para cualquier número (x) dividiendo el logaritmo natural de x por el logaritmo natural de n, como se muestra a continuación:"
-
-#. 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 "Ejemplo:"
-
-#. 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,\"Multiplicación por función logarítmica\""
-
-#. u3Ax
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr "Instrucción IIf [Ejecución]"
-
-#. Z`dN
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "<bookmark_value>IIf;instrucción</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 Statement [Runtime]\">Instrucción IIf [Ejecución]</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 "Devuelve uno de dos resultados posibles de la función, dependiendo del valor lógico de la expresión evaluada."
-
-#. |Msl
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. wDDm
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr "IIf (Expresión, ExpresiónCierta, ExpresiónFalsa)"
-
-#. ]Vpm
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Expresión:</emph> Cualquier expresión que desee evaluar. Si la expresión se evalúa como <emph>Cierta</emph>, la función devuelve el resultado de ExpresiónCierta, en caso contrario devuelve el valor de ExpresiónFalsa."
-
-#. 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>ExpresiónCierta, ExpresiónFalsa:</emph> Cualquier expresión, una de ellas se devolverá como resultado de la función, según el resultado de la evaluación lógica."
-
-#. eKDx
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"tit\n"
-"help.text"
-msgid "Switch Function [Runtime]"
-msgstr "Función Switch [Ejecución]"
-
-#. .3@(
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"bm_id3148554\n"
-"help.text"
-msgid "<bookmark_value>Switch function</bookmark_value>"
-msgstr "<bookmark_value>Switch;función</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 Function [Runtime]\">Función Switch [Ejecución]</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 "Evalúa una lista de argumentos que se compone de una expresión seguida por un valor. La función Switch devuelve un valor que está asociado con la expresión que pasa esta función."
-
-#. R;j,
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 (Expresión1, Valor1[, Expresión2, Valor2[..., Expresión_n, Valor_n]])"
-
-#. :E+8
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3149119\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "La función <emph>Switch</emph> evalúa las expresiones de izquierda a derecha y devuelve el valor que está asignado a la expresión de la función. Si expresión y valor no se dan por parejas, se produce un error en tiempo de ejecución."
-
-#. 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>Expresión:</emph> La expresión que se desea evaluar."
-
-#. 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>Valor:</emph> El valor que desee devolver si la expresión es cierta (True)."
-
-#. 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 "En el ejemplo siguiente, la función <emph>Switch</emph> asigna el género apropiado al nombre que se pasa a la función:"
-
-#. #JHo
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. XFem
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr "sGenero = ObtIndGenero( \"Juan\" )"
-
-#. 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 "ObtIndGenero = Switch(sNombre = \"María\", \"femenino\", sNombre = \"Juan\", \"masculino\")"
-
-#. xWtf
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"tit\n"
-"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "Función QBColor [Ejecución]"
-
-#. _;[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=\"Función QBColor [Runtime]\">Función QBColor [Runtime]</link>"
-
-#. K8-Z
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150359\n"
-"2\n"
-"help.text"
-msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
-msgstr "Devuelve el código <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> del color que se ha pasado como valor a través de un sistema de programación antiguo basado en MS-DOS."
-
-#. fsHX
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. R;\S
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
-"4\n"
-"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr "QBColor (NúmeroColor As Integer)"
-
-#. )m7t
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3145172\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. r~G\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. KbV1
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. \;{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>NúmeroColor</emph>: Cualquier expresión de entero que especifique el valor del color que se ha pasado desde un sistema de programación antiguo basado en MS-DOS."
-
-#. 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>NúmeroColor</emph> pueden asignársele los valores siguientes:"
-
-#. =I;?
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "0 : Black"
-msgstr "0 : Negro"
-
-#. },S\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146975\n"
-"11\n"
-"help.text"
-msgid "1 : Blue"
-msgstr "1 : Azul"
-
-#. GP_C
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3151116\n"
-"12\n"
-"help.text"
-msgid "2 : Green"
-msgstr "2 : Verde"
-
-#. Mg{r
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3155412\n"
-"13\n"
-"help.text"
-msgid "3 : Cyan"
-msgstr "3 : Cián"
-
-#. 7]ZD
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3155306\n"
-"14\n"
-"help.text"
-msgid "4 : Red"
-msgstr "4 : Rojo"
-
-#. HlQZ
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3153364\n"
-"15\n"
-"help.text"
-msgid "5 : Magenta"
-msgstr "5 : Magenta"
-
-#. :${o
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146119\n"
-"16\n"
-"help.text"
-msgid "6 : Yellow"
-msgstr "6 : Amarillo"
-
-#. 9KFI
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154730\n"
-"17\n"
-"help.text"
-msgid "7 : White"
-msgstr "7 : Blanco"
-
-#. E4jJ
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3153877\n"
-"18\n"
-"help.text"
-msgid "8 : Gray"
-msgstr "8 : Gris"
-
-#. 5#s\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3147124\n"
-"19\n"
-"help.text"
-msgid "9 : Light Blue"
-msgstr "9 : Azul claro"
-
-#. K.l,
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3145646\n"
-"20\n"
-"help.text"
-msgid "10 : Light Green"
-msgstr "10 : Verde claro"
-
-#. bR*(
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3149958\n"
-"21\n"
-"help.text"
-msgid "11 : Light Cyan"
-msgstr "11 : Cián claro"
-
-#. Z.3/
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154943\n"
-"22\n"
-"help.text"
-msgid "12 : Light Red"
-msgstr "12 : Rojo claro"
-
-#. !{[D
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150715\n"
-"23\n"
-"help.text"
-msgid "13 : Light Magenta"
-msgstr "13 : Magenta claro"
-
-#. bdzd
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146970\n"
-"24\n"
-"help.text"
-msgid "14 : Light Yellow"
-msgstr "14 : Amarillo claro"
-
-#. p`D#
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150750\n"
-"25\n"
-"help.text"
-msgid "15 : Bright White"
-msgstr "15 : Blanco brillante"
-
-#. {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 "Esta función sólo se usa para convertir desde aplicaciones BASIC antiguas basadas en MS-DOS que utilizan los códigos de color anteriores. La función devuelve un valor entero largo que indica el color que usar en $[officename] IDE."
-
-#. |597
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"27\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. /*$1
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3149566\n"
-"33\n"
-"help.text"
-msgid "MsgBox stext,0,\"Color \" & iColor"
-msgstr "MsgBox stext,0,\"Color \" & iColor"
-
-#. MCTP
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"tit\n"
-"help.text"
-msgid "WeekDay Function [Runtime]"
-msgstr "Función WeekDay [Ejecución]"
-
-#. U)N@
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>WeekDay function</bookmark_value>"
-msgstr "<bookmark_value>WeekDay;función</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=\"Función WeekDay [Runtime]\">Función WeekDay [Runtime]</link>"
-
-#. Ir|M
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3146795\n"
-"2\n"
-"help.text"
-msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Devuelve el número correspondiente al día de la semana representado por un número de fecha serie que genera la función DateSerial o DateValue."
-
-#. EGfU
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. %Zp{
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3149655\n"
-"4\n"
-"help.text"
-msgid "WeekDay (Number)"
-msgstr "WeekDay (Número)"
-
-#. ?1`$
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3148799\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. {F[)
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. f?+Z
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. +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>Número:</emph> Expresión entera que contenga el número de fecha serie que se utilice para determinar el día de la semana (1-7)."
-
-#. 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 "El ejemplo siguiente determina el día de la semana con la función WeekDay cuando se escribe una fecha."
-
-#. .g5#
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 Devuelve y muestra el día de la semana"
-
-#. SX7#
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3151117\n"
-"16\n"
-"help.text"
-msgid "sDay=\"Sunday\""
-msgstr "sDay=\"domingo\""
-
-#. :?Uh
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153952\n"
-"18\n"
-"help.text"
-msgid "sDay=\"Monday\""
-msgstr "sDay=\"lunes\""
-
-#. l[k*
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153157\n"
-"20\n"
-"help.text"
-msgid "sDay=\"Tuesday\""
-msgstr "sDay=\"martes\""
-
-#. +.CF
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154942\n"
-"22\n"
-"help.text"
-msgid "sDay=\"Wednesday\""
-msgstr "sDay=\"miércoles\""
-
-#. (uJb
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3155416\n"
-"24\n"
-"help.text"
-msgid "sDay=\"Thursday\""
-msgstr "sDay=\"jueves\""
-
-#. WZ3:
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154015\n"
-"26\n"
-"help.text"
-msgid "sDay=\"Friday\""
-msgstr "sDay=\"viernes\""
-
-#. ^.r6
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153707\n"
-"28\n"
-"help.text"
-msgid "sDay=\"Saturday\""
-msgstr "sDay=\"sábado\""
-
-#. 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,\"Hoy es \""
-
-#. o7kz
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Environ Function [Runtime]"
-msgstr "Función Environ [Ejecución]"
-
-#. `6?t
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"bm_id3155364\n"
-"help.text"
-msgid "<bookmark_value>Environ function</bookmark_value>"
-msgstr "<bookmark_value>Environ;función</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 Function [Runtime]\">Función Environ [Ejecución]</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 "Devuelve el valor de una variable de entorno en forma de cadena. Las variables de entorno dependen del tipo de sistema operativo del que se disponga."
-
-#. {plO
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3150670\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. L_au
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3159176\n"
-"5\n"
-"help.text"
-msgid "Environ (Environment As String)"
-msgstr "Environ (Entorno As String)"
-
-#. x(Zn
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3159157\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. lPJF
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3148473\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. $*kl
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3145609\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Entorno: Variable de entorno de la que se desee devolver el valor."
-
-#. ^FcI
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. ,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,\"Directorio de archivos temporales:\""
-
-#. *27t
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr "Funciones de entrada/salida de archivos"
-
-#. 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=\"Funciones de entrada/salida de archivos\">Funciones de entrada/salida de archivos</link>"
-
-#. W)3#
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error Function [Runtime]"
-msgstr "Función Error [Ejecución]"
-
-#. J`3j
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Error function</bookmark_value>"
-msgstr "<bookmark_value>Función error;función</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=\"Función Error [Runtime]\">Función Error [Ejecución]</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 "Devuelve el mensaje de error que corresponde a un código de error dado."
-
-#. P3U*
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. Id#@
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "Error (Expression)"
-msgstr "Error (Expresión)"
-
-#. X]y/
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. *]@p
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. 8)sH
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. ?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>Expresión:</emph> Cualquier expresión numérica que contenga el código de error del mensaje que se desea devolver."
-
-#. 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 "Si no se pasa ningún parámetro; la función Error devuelve el mensaje de error más reciente que se haya producido durante la ejecución del programa."
-
-#. Xs$]
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"tit\n"
-"help.text"
-msgid "RmDir Statement [Runtime]"
-msgstr "Instrucción RmDir [Ejecución]"
-
-#. m{V6
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "<bookmark_value>RmDir;instrucción</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=\"Instrucción RmDir [Runtime]\">Instrucción RmDir [Ejecución]</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 "Borra un directorio de un soporte de datos."
-
-#. [*b!
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 1Fh1
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "RmDir Text As String"
-msgstr "RmDir Texto As String"
-
-#. !jBm
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que especifique el nombre y ruta del directorio que se desee borrar. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. )_((
-#: 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 "Si la ruta de acceso no se determina, la <emph>instrucción RmDir</emph> busca el directorio que se desea borrar en la ruta actual. Si no lo encuentra, aparece un mensaje de error."
-
-#. J0+e
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 5unp
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loc Function [Runtime]"
-msgstr "Función Loc [Ejecución]"
-
-#. (LT+
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"bm_id3148663\n"
-"help.text"
-msgid "<bookmark_value>Loc function</bookmark_value>"
-msgstr "<bookmark_value>Loc;función</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=\"Función Loc [Runtime]\">Función Loc [Runtime]</link>"
-
-#. I9zU
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3154138\n"
-"2\n"
-"help.text"
-msgid "Returns the current position in an open file."
-msgstr "Devuelve la posición actual en un archivo abierto."
-
-#. Y(_f
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. dJiE
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3150768\n"
-"4\n"
-"help.text"
-msgid "Loc(FileNumber)"
-msgstr "Loc (NúmeroArchivo)"
-
-#. 9=h;
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3150440\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. ;o;.
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. nJ4!
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NúmeroArchivo:</emph> Cualquier expresión numérica que contenga el número de archivo que estableció la instrucción Open para el archivo respectivo."
-
-#. 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 "Si se utiliza la función Loc para un archivo de acceso aleatorio abierto, ésta devuelve el número del último registro leído o escrito más recientemente."
-
-#. 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 "Para un archivo secuencial, la función Loc devuelve la posición en un archivo dividido por 128. Para archivos binarios, se devuelve el byte que se haya leído o escrito más recientemente."
-
-#. :+cT
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr "Instrucción DefErr [Ejecución]"
-
-#. )$\i
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "<bookmark_value>Instrucción DefErr</bookmark_value>"
-
-#. 6dqk
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Instrucción DefErr [Ejecución]</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 "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefErr establece el tipo de variable predeterminado según un intervalo de letras."
-
-#. CSP0
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. v-4v
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-
-#. 4^va
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
-
-#. .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> palabra clave que define el tipo de variable predeterminado."
-
-#. ^qP=
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
-
-#. Xl4Y
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> Error"
-
-#. nHhz
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. \#If
-#: 03101120.xhp
-#, fuzzy
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. r(KR
-#: 03101120.xhp
-#, fuzzy
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "eErr=Error ' eErr is an implicit error variable"
-msgstr "eErr=Error REM eErr es un error de variable implícito"
-
-#. _{Fm
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Operador Imp [Ejecución]"
-
-#. -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;operadores lógicos</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=\"Operador Imp [Runtime]\">Operador Imp [Ejecución]</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 "Lleva a cabo una implicación lógica en dos expresiones."
-
-#. 6%L+
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. _jB{
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Imp Expression2"
-msgstr "Resultado = Expresión1 Imp Expresión2"
-
-#. [HH=
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3151212\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Resultado: Cualquier variable numérica que contenga el resultado de la implicación."
-
-#. +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>Expresión1, Expresión2:</emph> Las expresiones que se desee evaluar con el operador Imp."
-
-#. ;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 "Si se utiliza el operador Imp en expresiones lógicas, sólo se devuelve False si el resultado de la primera expresión es True y el de la segunda es False."
-
-#. 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 "Si se utiliza el operador Imp en expresiones de bits, para cada posición toman el valor cero los bits del resultado que tienen el valor 1 en la primera expresión y el valor 0 en la segunda."
-
-#. uqRM
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. %-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 devuelve -1"
-
-#. 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 devuelve -1"
-
-#. 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 devuelve 0"
-
-#. 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 devuelve -1"
-
-#. %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 devuelve -1"
-
-#. KKSB
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "Función CVar [Ejecución]"
-
-#. .qLY
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "<bookmark_value>Función CVar</bookmark_value>"
-
-#. h9lv
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Función CVar [Ejecución]</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 "Convierte una expresión de cadena o una expresión numérica en una expresión del tipo variant."
-
-#. )X%G
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. D#-1
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVar(Expression)"
-msgstr "CVar(Expression)"
-
-#. 5l]p
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 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 "Parámetro:"
-
-#. 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 "Expression: cualquier cadena o expresión numérica que desee convertir."
-
-#. /H.Y
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Operador Mod [Ejecución]"
-
-#. h4uc
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>MOD;operadores matemáticos</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=\"Operador Mod [Runtime]\">Operador Mod [Ejecución]</link>"
-
-#. Ck2L
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3148686\n"
-"2\n"
-"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Devuelve el resto entero de una división."
-
-#. R8@z
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "<emph>Sintaxis</emph>:"
-
-#. C].}
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultado = Expresión1 MOD Expresión2"
-
-#. zWL7
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3149657\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. K?.L
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. PyKi
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la operación MOD."
-
-#. ^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>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea dividir."
-
-#. qK0e
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 devuelve 0"
-
-#. 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 devuelve 4"
-
-#. 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 devuelve 0"
-
-#. 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 devuelve 2"
-
-#. 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 devuelve 5"
-
-#. 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 devuelve 0,5"
-
-#. 2r$T
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr "Instrucción FileCopy [Ejecución]"
-
-#. 1#A\
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"bm_id3154840\n"
-"help.text"
-msgid "<bookmark_value>FileCopy statement</bookmark_value>"
-msgstr "<bookmark_value>FileCopy;instrucción</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=\"Declaración FileCopy [Runtime]\">Declaración FileCopy [Ejecución]</link>"
-
-#. _*#T
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3149497\n"
-"2\n"
-"help.text"
-msgid "Copies a file."
-msgstr "Copia un archivo."
-
-#. Soc{
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3147443\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. :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 TextoDesde As String, TextoHasta As String"
-
-#. $U-z
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3153825\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. )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>TextoDesde:</emph> Cualquier expresión de cadena que especifique el nombre del archivo que se desee borrar. La expresión puede contener información opcional de ruta de acceso y unidad. Si se desea, puede escribirse una ruta en la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-
-#. 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>TextoHasta:</emph> Cualquier expresión de cadena que especifique dónde se desea copiar el archivo origen. La expresión puede contener la unidad de destino, la ruta de acceso y el nombre del archivo o la ruta de acceso en notación URL."
-
-#. 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 "La instrucción FileCopy sólo se puede usar para copiar archivos que no estén abiertos."
-
-#. =A3r
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. VlwV
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefInt Statement [Runtime]"
-msgstr "Instrucción DefInt [Ejecución]"
-
-#. 7b8!
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefInt statement</bookmark_value>"
-msgstr "<bookmark_value>DefInt;instrucción</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=\"DefDbl Statement [Runtime]\">Instrucción DefInt [Ejecución]</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 "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
-
-#. T[4C
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ?|oE
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
-
-#. t7,x
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
-
-#. 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> Palabra clave que define el tipo de variable predeterminada:"
-
-#. Sn_3
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3154365\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph> Tipo de variable predeterminada"
-
-#. rN68
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3125863\n"
-"9\n"
-"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr "<emph>DefInt:</emph> Entero"
-
-#. !Ogk
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3154123\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. \Tl@
-#: 03101500.xhp
-#, fuzzy
-msgctxt ""
-"03101500.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types"
-msgstr "REM Añadir prefijo a definiciones para tipos de variable"
-
-#. ?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 iCount es una variable entera implícita"
-
-#. Gk7X
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Function [Runtime]"
-msgstr "Función Seek [Ejecución]"
-
-#. %kbY
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"bm_id3154367\n"
-"help.text"
-msgid "<bookmark_value>Seek function</bookmark_value>"
-msgstr "<bookmark_value>Seek;función</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=\"Función Seek [Runtime]\">Función Seek [Runtime]</link>"
-
-#. _~\w
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3156280\n"
-"2\n"
-"help.text"
-msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
-msgstr "Devuelve la posición de la siguiente escritura o lectura de un archivo abierto con la instrucción Open."
-
-#. 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 "Para archivos de acceso aleatorio, la función Seek devuelve el número del registro siguiente que leer."
-
-#. 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 "En todos los demás archivos, la función devuelve la posición en bytes en la que se producirá la operación siguiente."
-
-#. _\+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 "Consulte también: <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 "Sintaxis:"
-
-#. +0\/
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3145365\n"
-"7\n"
-"help.text"
-msgid "Seek (FileNumber)"
-msgstr "Seek (NúmeroArchivo)"
-
-#. @Q+}
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3148575\n"
-"8\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. JOE@
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3159156\n"
-"9\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. F=1h
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
-"10\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. {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>NúmeroArchivo:</emph> El número de canal de datos usado en la instrucción Open."
-
-#. h_4u
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Minute Function [Runtime]"
-msgstr "Función Minute [Ejecución]"
-
-#. Bd\*
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"bm_id3155419\n"
-"help.text"
-msgid "<bookmark_value>Minute function</bookmark_value>"
-msgstr "<bookmark_value>Minute;función</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=\"Función Minute [Runtime]\">Función Minute [Ejecución]</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 "Devuelve el minuto de la hora que corresponde al valor de hora serie que han generado las funciones TimeSerial o TimeValue."
-
-#. \5a`
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. -$3q
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Minute (Number)"
-msgstr "Minute (Número)"
-
-#. F55p
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 3-mK
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. l+%6
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3153193\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Número:</emph> Expresión numérica que contiene el valor de tiempo serie que se usa para devolver el valor de minuto."
-
-#. 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 "Esta función es la inversa a <emph>TimeSerial</emph>. Devuelve el minuto del valor de tiempo serie que han generado las funciones <emph>TimeSerial</emph> o <emph>TimeValue </emph>. Por ejemplo, la expresión:"
-
-#. )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 "devuelve el valor 30."
-
-#. ?RoA
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3150010\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 3.o(
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3159154\n"
-"13\n"
-"help.text"
-msgid "Sub ExampleMinute"
-msgstr "Sub EjemploMinute"
-
-#. 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 \"El minuto actual es \"& 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 "Instrucción Option Base [Ejecución]"
-
-#. 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;instrucción</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 Statement [Runtime]\">Instrucción Option Base [Ejecución]</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 "Define el límite inferior predeterminado para matrices entre 0 y 1."
-
-#. R$18
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. {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 "Parámetros:"
-
-#. 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 "Esta instrucción debe agregarse antes del código del programa ejecutable en un módulo."
-
-#. :023
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. g(cb
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sqr Function [Runtime]"
-msgstr "Función Sqr [Ejecución]"
-
-#. k*k8
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
-msgstr "<bookmark_value>Sqr;función</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=\"Función Sqr [Runtime]\">Función Sqr [Ejecución]</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 "Calcula la raíz cuadrada de una expresión numérica."
-
-#. iLvT
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ;%u(
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3149415\n"
-"4\n"
-"help.text"
-msgid "Sqr (Number)"
-msgstr "Sqr (Número)"
-
-#. Qh_d
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. A[Sa
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Doble"
-
-#. VHkI
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3147265\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. :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>Número:</emph> Cualquier expresión numérica de la que se desee calcular la raíz cuadrada."
-
-#. 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 "La raíz cuadrada de un número es aquél que multiplicado por sí mismo produce el número inicial, por ejemplo: la raíz cuadrada de 36 es 6."
-
-#. V(aP
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. G#ns
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSystemTicks Function [Runtime]"
-msgstr "Función GetSystemTicks [Ejecución]"
-
-#. JmsU
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "<bookmark_value>GetSystemTicks;función</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 Function [Runtime]\">Función GetSystemTicks [Ejecución]</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 "Devuelve el número de ticks del sistema que proporciona el sistema operativo. Esta función puede utilizarse para optimizar algunos procesos."
-
-#. 1)M[
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Valor de retorno:"
-
-#. :MmI
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. |vjc
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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,\"La pausa ha durado\""
-
-#. ]FSS
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"tit\n"
-"help.text"
-msgid "If...Then...Else Statement [Runtime]"
-msgstr "Instrucción If...Then...Else [Ejecución]"
-
-#. N?bi
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "<bookmark_value>If;instrucción</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 Statement [Runtime]\">Instrucción If...Then...Else [Ejecución]</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 "Define uno o más bloques de instrucciones que sólo se desea ejecutar cuando una condición dada es cierta."
-
-#. o,L]
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3146957\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Parámetros:"
-
-#. 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 "La instrucción <emph>If...Then</emph> ejecuta bloques de programa cuando se dan ciertas condiciones. Cuando $[officename] Basic encuentra una instrucción <emph>If</emph>, la condición se comprueba. Si resulta ser cierta, se ejecutan todas las instrucciones posteriores hasta que se encuentre una instrucción <emph>Else</emph> o <emph> ElseIf</emph>. Si la condición es falsa y a continuación hay una instrucción <emph>ElseIf</emph>, $[officename] Basic comprueba la condición siguiente y ejecuta las instrucciones siguientes si la condición resulta ser cierta. Si resulta falsa el programa continúa con la siguiente instrucción <emph>ElseIf</emph> o <emph>Else</emph>. Las instrucciones que siguen a <emph>Else</emph> sólo se ejecutan si ninguna de las condiciones comprobadas anteriormente era cierta. Cuando se han evaluado todas las condiciones y se han ejecutado las instrucciones correspondientes, el programa continúa con la instrucción que sigue a <emph>EndIf</emph>."
-
-#. 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 "Es posible anidar varias instrucciones <emph>If...Then</emph>."
-
-#. 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 "Las instrucciones <emph>Else</emph> y <emph>ElseIf</emph> son opcionales."
-
-#. 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 "Se puede usar <emph>GoTo</emph> y <emph>GoSub</emph> para salir de un bloque <emph>If...Then</emph>, pero no para saltar dentro de una estructura <emph>If...Then</emph>."
-
-#. )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 "El ejemplo siguiente permite introducir una fecha de caducidad de un producto y determina si ésta ya ha pasado."
-
-#. wJyu
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. +^+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 "sFecha = InputBox(\"Escriba la fecha de caducidad (MM.DD.AAAA)\")"
-
-#. *iaE
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3155601\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"The expiration date has passed\""
-msgstr "MsgBox \"La fecha de caducidad ya ha pasado\""
-
-#. 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 \"La fecha de caducidad no ha pasado aún\""
-
-#. bJo#
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3154754\n"
-"25\n"
-"help.text"
-msgid "MsgBox \"The expiration date is today\""
-msgstr "MsgBox \"La fecha de caducidad es hoy\""
-
-#. KQy5
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Space Function [Runtime]"
-msgstr "Función Space [Ejecución]"
-
-#. 4e\A
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
-msgstr "<bookmark_value>Space;función</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 Function [Runtime]\">Función Space [Ejecución]</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 "Devuelve una cadena que se compone de una cantidad determinada de espacios."
-
-#. ENzK
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3153394\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. ]rDk
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Space (n As Long)"
-msgstr "Space (n As Integer)"
-
-#. [Q9!
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. hP/B
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3149233\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Cadena"
-
-#. \I*\
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "n: expresión numérica que define el número de espacios en la cadena."
-
-#. G-u{
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3154760\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. [ohz
-#: 03120201.xhp
-#, fuzzy
-msgctxt ""
-"03120201.xhp\n"
-"par_id3154216\n"
-"18\n"
-"help.text"
-msgid "MsgBox sOut,0,\"Info:\""
-msgstr "msgBox sOut,0,\"Información:\""
-
-#. ud2N
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateSerial Function [Runtime]"
-msgstr "Función DateSerial [Ejecución]"
-
-#. (;mq
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>DateSerial function</bookmark_value>"
-msgstr "<bookmark_value>DateSerial;función</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=\"Función DateSerial [Runtime]\">Función DateSerial [Runtime]</link>"
-
-#. /C8R
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3143267\n"
-"2\n"
-"help.text"
-msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
-msgstr "Devuelve un valor de <emph>Fecha</emph> para un año, mes o día especificados."
-
-#. 6)x+
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 16Aq
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3149670\n"
-"4\n"
-"help.text"
-msgid "DateSerial (year, month, day)"
-msgstr "DateSerial (año, mes, día)"
-
-#. YfZR
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. tfLz
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Fecha"
-
-#. Cg}F
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. |#.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>Año:</emph> Expresión entera que indica un año. Todos los valores entre 0 y 99 se interpretan como los años 1900-1999. Para años que se encuentren fuera de este rango, deben especificarse los cuatro dígitos."
-
-#. 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>Mes:</emph> Expresión entera que indica el mes del año especificado. El rango aceptable va de 1 a 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>Día:</emph> Expresión entera que indica el día del mes especificado. El rango aceptado es de 1-31. No se devuelve error cuando se introduce un día no existente para un mes más corto que 31 días."
-
-#. ~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 "La función <emph>DateSerial</emph> devuelve el número de días entre el 30 de diciembre de 1899 y la fecha dada. Este valor se puede usar para calcular la diferencia entre dos fechas."
-
-#. 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 "La función <emph>DateSerial</emph> devuelve el tipo de datos Variante con VarType 7 (Fecha). Internamente, este valor se almacena como valor Doble, de manera que cuando la fecha dada es 1/1/1900 el valor que devuelve es 2. Los valores negativos corresponden a fechas anteriores al 30 de diciembre de 1899 (no incluida)"
-
-#. 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 "Si se define una fecha que se encuentra fuera del rango aceptable, $[officename] Basic devuelve un mensaje de error."
-
-#. 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 "Aunque se define la función <emph>DateValue</emph> como cadena que contiene la fecha, la función <emph>DateSerial</emph> evalúa todos los parámetros (año, mes, día) como expresiones numéricas independientes."
-
-#. Kka:
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. }C@a
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr "msgbox lFecha REM devuelve 23476"
-
-#. Zova
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
-msgstr "msgbox sDate REM devuelve 04/09/1964"
-
-#. Bb:\
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Statement [Runtime]"
-msgstr "Función Seek [Ejecución]"
-
-#. *]FY
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "<bookmark_value>declaración Seek</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=\"Declaración Seek [Runtime]\">Declaración Seek [Runtime]</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 "Define la posición de la siguiente escritura o lectura de un archivo abierto con la instrucción Open."
-
-#. 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 "Para archivos de acceso aleatorio, la instrucción Seek define el número del siguiente registro al que se accederá."
-
-#. (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 "Para el resto de archivos, la instrucción Seek define la posición de byte en la que ocurrirá la siguiente operación."
-
-#. 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 "Consulte también: <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 "Sintaxis:"
-
-#. JWE*
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145273\n"
-"7\n"
-"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
-msgstr "Seek[#NúmeroArchivo], Posición (As Long)"
-
-#. S.k*
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3154321\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NúmeroArchivo: </emph> El número de canal de datos usado en la instrucción Open."
-
-#. (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>Posición: </emph>Posición para la siguiente escritura o lectura. La posición puede ser un número entre 1 y 2.147.483.647. Según el tipo de archivo, la posición indica el número del registro (Archivos en modo Random) o la posición del byte (Archivos en modo Binary, Output, Append o Input). El primer byte de un archivo es la posición 1, el segundo la posición 2, etc."
-
-#. [MY-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeValue Function [Runtime]"
-msgstr "Función TimeValue [Ejecución]"
-
-#. PsO_
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"bm_id3149670\n"
-"help.text"
-msgid "<bookmark_value>TimeValue function</bookmark_value>"
-msgstr "<bookmark_value>TimeValue;función</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=\"Función TimeValue [Runtime]\">Función TimeValue [Ejecución]</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 "Calcula un valor de hora serie a partir de la hora, minuto y segundos especificados (parámetros que se pasan como cadenas) y que representa la hora en un valor numérico simple. Este valor puede usarse para calcular la diferencia entre dos horas."
-
-#. )8tS
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 1fr:
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156282\n"
-"4\n"
-"help.text"
-msgid "TimeValue (Text As String)"
-msgstr "TimeValue (Texto As String)"
-
-#. mmV6
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3153969\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. GY0]
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Fecha"
-
-#. B2h+
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Texto:</emph> Cualquier expresión de cadena que contenga la hora que se desea calcular en el formato \"HH:MM:SS\"."
-
-#. 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 "Con esta función puede convertirse cualquier hora en un valor simple, para calcular diferencias entre horas."
-
-#. 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 "Esta función TimeValue devuelve el tipo Variante con VarType 7 (Fecha) y almacena este valor internamente como número de precisión doble entre 0 y 0,9999999999."
-
-#. 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 diferencia de lo que ocurre con las funciones DateSerial o DateValue, en las que los valores de fecha serie producen días relativos a una fecha fija, con los valores que devuelve la función TimeValue se pueden realizar cálculos pero no evaluarlos."
-
-#. 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 "En la función TimeSerial pueden pasarse parámetros individuales (hora, minuto, segundo) como expresiones numéricas independientes. Sin embargo, para la función TimeValue puede pasarse una cadena como parámetro que contiene la hora."
-
-#. Q)]1
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. zM_r
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr "a1 = \"hora inicial\""
-
-#. 2oKl
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr "b1 = \"hora final\""
-
-#. rmLY
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr "c1 = \"tiempo total\""
-
-#. Z.y=
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"tit\n"
-"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "Función StrComp [Runtime]"
-
-#. CC\x
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "<bookmark_value>StrComp function</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 Function [Runtime]\">Función StrComp [Runtime]</link>"
-
-#. 0r40
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3155805\n"
-"2\n"
-"help.text"
-msgid "Compares two strings and returns an integer value that represents the result of the comparison."
-msgstr "Compara dos cadenas y devuelve un valor entero que representa el resultado de la comparación."
-
-#. |X$;
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 (Texto1 As String, Texto2 As String[, Comparación])"
-
-#. KfS*
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3147574\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. $5X4
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. O}wp
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parámetro:"
-
-#. QH#C
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3153061\n"
-"8\n"
-"help.text"
-msgid "<emph>Text1:</emph> Any string expression"
-msgstr "<emph>Texto1:</emph> Cualquier expresión de cadena"
-
-#. SY/P
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3147560\n"
-"9\n"
-"help.text"
-msgid "<emph>Text2:</emph> Any string expression"
-msgstr "<emph>Texto2:</emph> Cualquier expresión de cadena"
-
-#. 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>Comparación:</emph> Este parámetro opcional configura el método de comparación. Si Comparación = 1, la comparación de cadena distingue entre mayúsculas/minúsculas. Si Comparación = 0, no se hace distinción entre letras en mayúsculas o minúsculas."
-
-#. jbv%
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
-"help.text"
-msgid "Return value"
-msgstr "Valor de retorno:"
-
-#. jeqN
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
-"27\n"
-"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "Si Texto1 < Texto2 la función devuelve -1"
-
-#. w9pI
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
-"28\n"
-"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "Si Texto1 = Texto2 la función devuelve 0"
-
-#. yp$4
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
-"29\n"
-"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "Si Texto1 > Texto2 la función devuelve 1"
-
-#. bG*e
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. Uoks
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Función Len [Ejecución]"
-
-#. c.3*
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"bm_id3154136\n"
-"help.text"
-msgid "<bookmark_value>Len function</bookmark_value>"
-msgstr "<bookmark_value>Len;función</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 Function [Runtime]\">Función Len [Ejecución]</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 "Devuelve el número de caracteres en una cadena o el de bytes que hacen falta para almacenar una variable."
-
-#. @qQd
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. \hI]
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Len (Text As String)"
-msgstr "Len (Texto As String)"
-
-#. $[PH
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. /jNM
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. a8p6
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "Texto: Cualquier expresión de cadena o variable de otro tipo."
-
-#. olSh
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3153360\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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(sTexto) REM Devuelve 9"
-
-#. hsi1
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr "Instrucción Wait [Ejecución]"
-
-#. kck9
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"bm_id3154136\n"
-"help.text"
-msgid "<bookmark_value>Wait statement</bookmark_value>"
-msgstr "<bookmark_value>Wait;instrucción</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 Statement [Runtime]\">Instrucción Wait [Ejecución]</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 "Interrumpe la ejecución del programa durante la cantidad de tiempo especificada en milisegundos."
-
-#. !Ef:
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 2eYY
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Wait millisec"
-msgstr "Wait miliseg"
-
-#. a#sq
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3148943\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>miliseg:</emph> Expresión numérica que contenga la cantidad de tiempo (en milisegundos) que se haya de esperar antes de que se ejecute el programa."
-
-#. E)gJ
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. /=$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,\"La pausa ha durado\""
-
-#. XIQ;
-#: 03010300.xhp
-msgctxt ""
-"03010300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Color Functions"
-msgstr "Funciones de color"
-
-#. 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=\"Funciones de color\">Funciones de color</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 "Aquí encontrará todas las funciones utilizadas para definir colores."
-
-#. AmO,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetGuiType Function [Runtime]"
-msgstr "Función GetGuiType [Ejecución]"
-
-#. bl~d
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetGuiType function</bookmark_value>"
-msgstr "<bookmark_value>GetGuiType function</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 Function [Runtime]\">Función GetGuiType [Ejecución]</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 "Devuelve un valor numérico que especifica la interfaz gráfica de usuario."
-
-#. 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 "Esta función en tiempo de ejecución sólo se proporciona para compatibilidad con versiones anteriores. El valor de retorno no se define en entornos cliente-servidor."
-
-#. ?+CP
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3154894\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. @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 "Valor de retorno:"
-
-#. ;]ge
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3153748\n"
-"7\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. e)M,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3149177\n"
-"8\n"
-"help.text"
-msgid "Return values:"
-msgstr "Valores de retorno:"
-
-#. 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 "Ejemplo:"
-
-#. F2{f
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Err Function [Runtime]"
-msgstr "Función Err [Ejecución]"
-
-#. :SH}
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"bm_id3156343\n"
-"help.text"
-msgid "<bookmark_value>Err function</bookmark_value>"
-msgstr "<bookmark_value>Err;función</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=\"Función Err [Runtime]\">Función Err [Ejecución]</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 "Devuelve un código que identifica el error que se ha producido durante la ejecución del programa."
-
-#. 9Z~W
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Valor de retorno:"
-
-#. ,dy5
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3150869\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Entero"
-
-#. 7./6
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3153193\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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 "La función Err se usa en rutinas de manejo de errores para determinar el error y la acción correctiva."
-
-#. OiQ;
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3147317\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 ManejadorError REM Configurar manejador de errores"
-
-#. ~\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 El error se produce debido a un archivo no existente"
-
-#. 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 \"Error \" & Err & \": \" & Error$ + chr(13) + \"En la línea: \" + Erl + chr(13) + Now , 16 ,\"se ha producido un error\""
-
-#. H92G
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"tit\n"
-"help.text"
-msgid "FindObject Function [Runtime]"
-msgstr "Función FindObject [Ejecución]"
-
-#. l~kA
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"bm_id3145136\n"
-"help.text"
-msgid "<bookmark_value>FindObject function</bookmark_value>"
-msgstr "<bookmark_value>FindObject;función</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 Function [Runtime]\">Función FindObject [Ejecución]</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 "Permite direccionar un objeto en tiempo de ejecución como parámetro de cadena usando su nombre."
-
-#. C=)n
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150669\n"
-"3\n"
-"help.text"
-msgid "For example, the following command:"
-msgstr "Por ejemplo, el comando siguiente:"
-
-#. 7|dd
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3148473\n"
-"4\n"
-"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MiObj.Prop1.Comando = 5"
-
-#. z}9d
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3156023\n"
-"5\n"
-"help.text"
-msgid "corresponds to the command block:"
-msgstr "corresponde al bloque de comando:"
-
-#. q\f?
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3153896\n"
-"6\n"
-"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim VarObj as Object"
-
-#. *-#Y
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154760\n"
-"7\n"
-"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim PropObj as Object"
-
-#. 9kw%
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3145069\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "NombreObj As String = \"MiObj\""
-
-#. 5MFi
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154939\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "VarObj = FindObject( NombreObj As String )"
-
-#. n/;m
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150793\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "NombreProp 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 "PropObj = FindPropertyObject( VarObj, NombreProp As String )"
-
-#. 5l1~
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3156424\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "PropObj.Comando = 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 "Esto permite crear nombres dinámicamente en tiempo de ejecución. Por ejemplo:"
-
-#. 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\" en un bucle para crear cinco nombres de control."
-
-#. 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 "Consulte también: <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 "Sintaxis:"
-
-#. -Dr{
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3151042\n"
-"17\n"
-"help.text"
-msgid "FindObject( ObjName As String )"
-msgstr "FindObject( NombreObj As String )"
-
-#. +i2+
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"hd_id3159254\n"
-"18\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NombreObj:</emph> Cadena que especifica el nombre del objeto que se desea direccionar en tiempo de ejecución."
-
-#. X1SM
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Lof Function [Runtime]"
-msgstr "Función Lof [Ejecución]"
-
-#. N+%!
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Lof function</bookmark_value>"
-msgstr "<bookmark_value>Lof;función</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=\"Función Lof [Runtime]\">Función Lof [Runtime]</link>"
-
-#. ;zDY
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3146794\n"
-"2\n"
-"help.text"
-msgid "Returns the size of an open file in bytes."
-msgstr "Devuelve el tamaño de un archivo abierto en bytes."
-
-#. dOb_
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. CG`}
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150359\n"
-"4\n"
-"help.text"
-msgid "Lof (FileNumber)"
-msgstr "Lof (NúmeroArchivo)"
-
-#. |PP#
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
-#. 8#Jz
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Largo"
-
-#. ;|I)
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>NúmeroArchivo:</emph> Cualquier expresión numérica que contenga el número de archivo especificado en la instrucción Open."
-
-#. $/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 "Para obtener la longitud de un archivo que no está abierto, se utiliza la función <emph>FileLen</emph>."
-
-#. ;O~]
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 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 sTexto As Variant REM Debe ser una variante"
-
-#. CMs=
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"19\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumero,1 REM Posición al principio"
-
-#. 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 #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar con texto"
-
-#. #)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 "Print #iNumero, \"Esta es la segunda línea de texto\""
-
-#. :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 "Print #iNumero, \"Esta es la tercera línea de texto\""
-
-#. *%(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 #iNumero,,\"Esto es una línea de texto nueva\""
-
-#. 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 #iNumero,20,\"Este es el texto del registro 20\""
-
-#. D^Pt
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Statement [Runtime]"
-msgstr "Instrucción Call [Ejecución]"
-
-#. Mb!h
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>Call statement</bookmark_value>"
-msgstr "<bookmark_value>Call;instrucción</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 Statement [Runtime]\">Instrucción Call [Ejecución]</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 "Transfiere el control del programa a una subrutina, función o procedimiento DLL."
-
-#. 6b7_
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. S:MD
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "[Call] Name [Parameter]"
-msgstr "[Llamada] Nombre [Parámetro]"
-
-#. wm!w
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Nombre:</emph> Nombre de la subrutina, función o DLL a la que se desee llamar"
-
-#. 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>Parámetro:</emph> Parámetros que pasar al procedimiento. El tipo y número de parámetros depende de la rutina que se esté ejecutando."
-
-#. 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 "Cuando se llama a un procedimiento puede incluirse una palabra clave opcionalmente. Si la función se ejecuta como expresión, los parámetros deben incluirse entre corchetes en la instrucción. Si se llama a una DLL, antes debe especificarse en la instrucción <emph>Declare</emph>."
-
-#. |%|f
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. L4H-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Beep Statement [Runtime]"
-msgstr "Instrucción Beep [Ejecución]"
-
-#. x@2f
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"bm_id3143284\n"
-"help.text"
-msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "<bookmark_value>Beep;instrucción</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 Statement [Runtime]\">Instrucción Beep [Ejecución]</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 "Hace sonar un tono a través del altavoz del ordenador. El tono depende del sistema y no puede modificarse el volumen ni la modulación."
-
-#. @5\F
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 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 "Ejemplo:"
-
-#. 2Xt}
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefCur Statement [Runtime]"
-msgstr "Instrucción DefCur [Ejecución]"
-
-#. O:Fv
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"bm_id9555345\n"
-"help.text"
-msgid "<bookmark_value>DefCur statement</bookmark_value>"
-msgstr "<bookmark_value>Instrucción DefCur</bookmark_value>"
-
-#. )Z;o
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Instrucción DefCur [Ejecución]</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 "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefCur establece el tipo de variable predeterminado según un intervalo de letras."
-
-#. :*3[
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. (iOC
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-
-#. _ZX\
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. 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>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
-
-#. 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> palabra clave que define el tipo de variable predeterminado."
-
-#. D^*{
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
-
-#. -A3K
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "<emph>DefCur:</emph> moneda"
-
-#. (!8V
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. lY@;
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "Definiciones de prefijos REM para tipos de variables:"
-
-#. 2OZW
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "cCur=Currency REM cCur is an implicit currency variable"
-msgstr "cCur=Currency REM cCur es una variable de moneda implícita"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/01.po b/source/es/helpcontent2/source/text/sbasic/shared/01.po
index 40c71b7c9e6..8027053b31e 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 19:49+0200\n"
"Last-Translator: Alexandro <jza@openoffice.org>\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 "Añadir bibliotecas"
-#. .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>bibliotecas; agregando</bookmark_value><bookmark_value>insertando ; bibliotecas de Basic</bookmark_value>"
-#. CN={
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Append libraries"
msgstr "Añadir bibliotecas"
-#. \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=\".\">Busque la biblioteca de <item type=\"productname\">%PRODUCTNAME</item> Basic que desee agregar a la lista y haga clic en Abrir.</ahelp>"
-#. b4dU
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "File name:"
msgstr "Nombre del archivo:"
-#. =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\" visibility=\"visible\">Aquí se le mostrará el nombre del archivo seleccionado; en el listado verá las bibliotecas contenidas en el archivo mencionado.</ahelp> Marque la casilla delante del nombre para seleccionar las bibliotecas que desee añadir."
-#. a5g^
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. \0}K
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Insert as reference (read-only)"
msgstr "Insertar como referencia (solo leer)"
-#. =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\" visibility=\"visible\">Añade la biblioteca seleccionada como archivo de sólo lectura. La biblioteca se vuelve a cargar cada vez que se inicia $[officename].</ahelp>"
-#. )%r6
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Replace existing libraries"
msgstr "Reemplazar bibliotecas existentes"
-#. 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\" visibility=\"visible\">Sustituye una biblioteca que tiene el mismo nombre por la biblioteca actual.</ahelp>"
-#. XC4I
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Change Password"
msgstr "Cambiar contraseña"
-#. !7=R
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Change Password"
msgstr "Cambiar contraseña"
-#. 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\">Protege la biblioteca seleccionada con una contraseña.</ahelp> Puede escribir una nueva contraseña o bien cambiar la actual."
-#. =zh;
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Old password"
msgstr "Anterior"
-#. C1w5
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "Password"
msgstr "Contraseña"
-#. 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\">Escriba la contraseña actual para la biblioteca seleccionada.</ahelp>"
-#. M!3.
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -192,7 +174,6 @@ msgctxt ""
msgid "New password"
msgstr "Contraseña nueva"
-#. [cDa
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "Password"
msgstr "Contraseña"
-#. 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\">Escriba una nueva contraseña para la biblioteca seleccionada.</ahelp>"
-#. k\py
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -222,7 +201,6 @@ msgctxt ""
msgid "Confirm"
msgstr "Confirmar"
-#. `;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\">Vuelva a escribir la nueva contraseña para la biblioteca seleccionada.</ahelp>"
-#. 8r@,
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -241,7 +218,6 @@ msgctxt ""
msgid "Macro"
msgstr "Macro"
-#. 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>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
-#. )|q9
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "Macro"
msgstr "Macro"
-#. 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=\".\">Abre el diálogo <emph>Macro</emph>, en el cual se pueden crear, editar, organizar y ejecutar macros de $[officename] Basic.</ahelp></variable>"
-#. Uo4h
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Macro name"
msgstr "Nombre de la macro"
-#. 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 "Macro desde / Guardar macro en"
-#. 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\">Enumera las bibliotecas y los módulos que permiten abrir y guardar macros. Para guardar una macro en un documento específico, abra dicho documento y abra este diálogo.</ahelp>"
-#. R\Zh
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -321,7 +290,6 @@ msgctxt ""
msgid "Run / Save"
msgstr "Ejecutar / Guardar"
-#. 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 "Asignar"
-#. 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 "Editar"
-#. @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=\".\">Inicia el editor de $[officename] Basic y abre la macro seleccionada para editarla.</ahelp>"
-#. QLOo
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -381,7 +344,6 @@ msgctxt ""
msgid "New/Delete"
msgstr "Nuevo/Borrar"
-#. 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 "Para crear una macro nueva, seleccione el módulo \"Standard\" en la lista <emph>Macro desde</emph> y después pulse en <emph>Nuevo</emph>. Si desea crear un módulo nuevo, selecciónelo en la lista <emph>Macro desde</emph> y después pulse en <emph>Nuevo</emph>."
-#. 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 "Para borrar una macro, selecciónela y después pulse en <emph>Borrar</emph>."
-#. }[Zm
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -421,7 +380,6 @@ msgctxt ""
msgid "Organizer"
msgstr "Administrar"
-#. 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\">Abre el diálogo <emph>Organizador de macros</emph>, en el que se pueden agregar, editar o borrar módulos de macro, diálogos y bibliotecas.</ahelp>"
-#. =Obx
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -442,7 +399,6 @@ msgctxt ""
msgid "Module/Dialog"
msgstr "Módulo/Diálogo"
-#. 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\">Enumera las macros y los diálogos de la aplicación actual y de cualquier documento abierto.</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 "Puedes arrastrar un modulo o dialogo entre las bibliotecas."
-#. 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 "Si desea copiar un diálogo o un módulo, mantenga pulsada la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline> mientras arrastra y coloca."
-#. or6H
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -482,7 +435,6 @@ msgctxt ""
msgid "Edit"
msgstr "Editar"
-#. 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\">Abre la macro o el diálogo seleccionados para editarlos.</ahelp>"
-#. !W)e
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -502,7 +453,6 @@ msgctxt ""
msgid "New"
msgstr "Nuevo"
-#. 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\">Abre el editor de $[officename] Basic y crea un módulo.</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\">Abre el editor de $[officename] Basic y crea un diálogo.</ahelp>"
-#. 7Qm,
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -532,7 +480,6 @@ msgctxt ""
msgid "Libraries tab page"
msgstr "Bibliotecas de registro"
-#. 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\">Permite administrar las bibliotecas de macros.</ahelp>"
-#. #9[q
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -552,7 +498,6 @@ msgctxt ""
msgid "Location"
msgstr "Ubicación"
-#. 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\">Seleccione la ubicación que contiene las bibliotecas de macros que desee organizar.</ahelp>"
-#. oQ{[
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -572,7 +516,6 @@ msgctxt ""
msgid "Library"
msgstr "Biblioteca"
-#. 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\">Enumera las bibliotecas de macros de la aplicación actual.</ahelp>"
-#. hC!7
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -592,7 +534,6 @@ msgctxt ""
msgid "Edit"
msgstr "Editar"
-#. 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\">Abre el editor de $[officename] Basic para poder modificar la biblioteca seleccionada.</ahelp>"
-#. rF:C
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -612,7 +552,6 @@ msgctxt ""
msgid "Password"
msgstr "Contraseña"
-#. `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\">Asigna o edita la <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"contraseña\">contraseña</link> de la biblioteca seleccionada.</ahelp>"
-#. ^WNj
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -632,7 +570,6 @@ msgctxt ""
msgid "New"
msgstr "Nuevo"
-#. 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\">Crea una biblioteca.</ahelp>"
-#. JUE+
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -652,7 +588,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. 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\">Escriba un nombre para la biblioteca o el módulo nuevos.</ahelp>"
-#. 7n@i
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -672,7 +606,6 @@ msgctxt ""
msgid "Append"
msgstr "Adjuntar"
-#. (a+o
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/02.po b/source/es/helpcontent2/source/text/sbasic/shared/02.po
index d2e3d1b1f9b..fce0bc07525 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/es/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: 2012-08-07 08:53+0200\n"
"Last-Translator: Adolfo <fitoschido@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 "Guardar el texto fuente como"
-#. E\X)
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Guardar el texto fuente como</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\">Guarda el código fuente de la macro Basic seleccionada.</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\">Icono</alt></image>"
-#. rA6P
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Save Source As"
msgstr "Guardar el texto fuente como"
-#. m7Y?
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "Insert Source Text"
msgstr "Insertar texto fuente"
-#. 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=\"Insert Source Text\">Insertar texto fuente</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\">Abre el texto fuente Basic en la ventana Basic IDE.</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 "Sitúe el cursor en el código en que desee insertar el texto fuente y pulse en el icono <emph>Insertar el texto fuente</emph>. Busque el archivo que contiene el texto fuente Basic que desee insertar y pulse <emph>Abrir</emph>."
-#. )$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\">Icono</alt></image>"
-#. ?kcg
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -121,7 +110,6 @@ msgctxt ""
msgid "Insert source text"
msgstr "Insertar texto fuente"
-#. NBtE
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Export Dialog"
msgstr "Exportar diálogo"
-#. 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=\"Exportar diálogo\">Exportar diálogo</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=\".\">En el editor de diálogos, este comando accede a un diálogo de \"Guardar como\" para exportar el diálogo BASIC actual.</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\">Ícono</alt></image>"
-#. zh\b
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Export Dialog"
msgstr "Exportar diálogo"
-#. WFFz
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "Stop"
msgstr "Detener"
-#. ]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>macros; detener</bookmark_value><bookmark_value>programas; detener macros</bookmark_value><bookmark_value>detener; macros</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=\"Stop\">Detener</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\">Parar la ejecución del macro ejecutando.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> También puede oprimir el Shift+Ctrl+Q.</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\">Icon</alt></image>"
-#. B)rU
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -226,7 +204,6 @@ msgctxt ""
msgid "Stop"
msgstr "Detener"
-#. Fe+=
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "Macros"
msgstr "Macros"
-#. 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=\"Macros\">Macros</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\">Abre el diálogo <emph>Macro</emph>.</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\">Símbolo</alt></image>"
-#. ]=U2
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -274,7 +247,6 @@ msgctxt ""
msgid "Macros"
msgstr "Macros"
-#. OW3h
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Step Out"
msgstr "Salto atrá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=\"Step Out\">Salto atrá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\">Retrocede a la rutina anterior de la macro actual.</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\">Icono</alt></image>"
-#. T~f{
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Step Out"
msgstr "Salto atrás"
-#. ]H~@
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -331,7 +298,6 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Buscar paréntesis"
-#. 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=\"Find Parentheses\">Buscar paréntesis</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\">Resalta el texto que está incluido entre dos paréntesis. Sitúe el cursor de texto delante de un paréntesis de apertura o cierre y pulse este icono.</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\">Icono</alt></image>"
-#. qU^Q
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -370,7 +333,6 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Buscar paréntesis"
-#. SW_#
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -379,7 +341,6 @@ msgctxt ""
msgid "Modules"
msgstr "Módulos"
-#. 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=\"Modules\">Módulos</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\">Pulse aquí para abrir el diálogo <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Administrar</emph></link>.</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\">Icono</alt></image>"
-#. :Sm8
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -418,7 +376,6 @@ msgctxt ""
msgid "Modules"
msgstr "Módulos"
-#. D^@5
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -427,7 +384,6 @@ msgctxt ""
msgid "Procedure Step"
msgstr "Paso a paso"
-#. 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=\"Procedure Step\">Paso a paso</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\">Ejecuta la macro y se detiene después del siguiente procedimiento.</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 "Este comando se puede usar junto con el comando <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Inspección</link> para solucionar errores."
-#. 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\">Icono</alt></image>"
-#. Wf7j
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -476,7 +428,6 @@ msgctxt ""
msgid "Procedure Step"
msgstr "Paso a paso"
-#. -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=\"Single Step function\">Función Paso Único</link>"
-#. WB=B
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -495,7 +445,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr "Catálogo de objetos"
-#. 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=\"Object Catalog\">Catálogo de objetos</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\">Abre el diálogo <emph>Objetos</emph>, en el que pueden verse objetos Basic.</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 "Pulse dos veces el nombre de una función o sub para cargar el módulo que contenga esta función o sub y para colocar el cursor. Pulse el nombre de un módulo o diálogo y pulse el símbolo <emph>Mostrar</emph> para cargar y visualizar ese módulo o diálogo."
-#. 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\">Icono</alt></image>"
-#. P6dB
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -544,7 +489,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr "Catálogo de objetos"
-#. JC8D
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -554,7 +498,6 @@ msgctxt ""
msgid "Show"
msgstr "Mostrar"
-#. 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\">Muestra el diálogo o el texto de origen del objeto seleccionado.</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\">Icono</alt></image>"
-#. Lk\=
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -583,7 +524,6 @@ msgctxt ""
msgid "Show"
msgstr "Mostrar"
-#. !zr*
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -593,7 +533,6 @@ msgctxt ""
msgid "Window Area"
msgstr "Area de ventana"
-#. 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\">Muestra una lista jerárquica de los diálogos, módulos y bibliotecas de macros vigentes de $[officename]. Si desea ver en pantalla el contenido de un elemento de la ventana, haga doble clic en el nombre, o seleccione el nombre y haga clic en el icono <emph>Mostrar</emph>.</ahelp>"
-#. 9L8N
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -612,7 +550,6 @@ msgctxt ""
msgid "Breakpoint"
msgstr "Punto de ruptura"
-#. 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=\"Punto de ruptura\">Punto de ruptura</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 visibility=\"visible\" hid=\".uno:ToggleBreakPoint\">Inserta un punto de ruptura en la línea de programa.</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 "El punto de ruptura se inserta en la posición del cursor. Los puntos de ruptura se utilizan para interrumpir un programa justo antes de que se produzca un error. Después puede resolver los problemas del programa ejecutándolo en modo <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Paso único</link> hasta que se produzca el error. También puede usar el icono <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Observador</link> para comprobar el contenido de las variables pertinentes."
-#. 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\">Icono</alt></image>"
-#. ^|Vc
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -661,7 +594,6 @@ msgctxt ""
msgid "Breakpoint"
msgstr "Punto de ruptura"
-#. |iJW
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -670,7 +602,6 @@ msgctxt ""
msgid "Compile"
msgstr "Compilar"
-#. 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=\"Compile\">Compilar</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\">Compila la macro Basic.</ahelp> Después de efectuar cambios en una macro o si ésta utiliza pasos únicos o de procedimiento, es necesario compilarla."
-#. 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\">Símbolo</alt></image>"
-#. O,\{
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -709,7 +637,6 @@ msgctxt ""
msgid "Compile"
msgstr "Compilar"
-#. Uk)m
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -718,7 +645,6 @@ msgctxt ""
msgid "Insert Controls"
msgstr "Insertar campos de control"
-#. 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>controles; en el editor de diálogo</bookmark_value><bookmark_value>presione el botón de control en el editor de diálogo</bookmark_value><bookmark_value>icono de control</bookmark_value><bookmark_value>botones; controles</bookmark_value><bookmark_value>imagen de control</bookmark_value><bookmark_value>casilla de verificación de control</bookmark_value><bookmark_value>botón de radio de control</bookmark_value><bookmark_value>botón de opciones de control</bookmark_value><bookmark_value>texto dijo de control</bookmark_value><bookmark_value>campo de etiqueta de control</bookmark_value><bookmark_value>editar; controles</bookmark_value><bookmark_value>cuadro de texto; controles</bookmark_value><bookmark_value>cuadro de listas; controles</bookmark_value><bookmark_value>cuadro combinado de control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>barra de desplazamiento horizontal de control</bookmark_value><bookmark_value>barra de desplazamiento vertical de control</bookmark_value><bookmark_value>cuadro de grupo de control</bookmark_value><bookmark_value>barra de progreso de control</bookmark_value><bookmark_value>línea fija de control</bookmark_value><bookmark_value>línea horizontal de control</bookmark_value><bookmark_value>línea de control</bookmark_value><bookmark_value>línea vertical de control</bookmark_value><bookmark_value>campo fecha de control</bookmark_value><bookmark_value>campo hora de control</bookmark_value><bookmark_value>campo numérico de control</bookmark_value><bookmark_value>campo moneda de control</bookmark_value><bookmark_value>campo formato de control</bookmark_value><bookmark_value>campo trama de control</bookmark_value><bookmark_value>campo máscara de control</bookmark_value><bookmark_value>selección archivo de control</bookmark_value><bookmark_value>selección de opciones para controles</bookmark_value><bookmark_value>modo prueba de control</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=\"Insert Controls\">Insertar campos de control</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\">Abre la barra <emph>Cuadro de herramientas</emph>.</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\">Icono</alt></image>"
-#. d^%%
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -766,7 +688,6 @@ msgctxt ""
msgid "Insert Controls"
msgstr "Insertar campos de control"
-#. 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 "En modo de edición, pulse dos veces en un campo de control para abrir el <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">diálogo de propiedades</link>."
-#. 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 "En modo de edición, también puede pulsarse con el botón derecho en un campo de control y elegir el comando cortar, copiar y pegar."
-#. .wq5
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -796,7 +715,6 @@ msgctxt ""
msgid "Button"
msgstr "Botón"
-#. :]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\">Icono</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\">Añade un botón de comando.</ahelp> Los botones de comando se pueden usar para ejecutar un comando para una acción definida, como una pulsación del ratón."
-#. 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 "Si lo desea, puede agregar texto o un gráfico al botón."
-#. (PH8
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -835,7 +750,6 @@ msgctxt ""
msgid "Image Control"
msgstr "Campo gráfico de control"
-#. 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\">Icono</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\">Añade un campo de control que muestra un gráfico.</ahelp>"
-#. .cg!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -864,7 +776,6 @@ msgctxt ""
msgid "Check Box"
msgstr "Casilla de verificación"
-#. 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\">Icono</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\">Añade una casilla de verificación que puede usarse para activar o desactivar una función.</ahelp>"
-#. ?jng
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -893,7 +802,6 @@ msgctxt ""
msgid "Option Button"
msgstr "Campo de opción"
-#. 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\">Icono</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\">Añade un botón que permite al usuario seleccionar entre varias opciones.</ahelp> Los botones de opción agrupados deben tener índices de tabulación consecutivos. Normalmente están rodeados por un cuadro de grupo. Si se dispone de dos grupos de botones de opción, debe insertarse un índice de tabulación entre los índices de los dos grupos en el marco del grupo."
-#. DgqV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -922,7 +828,6 @@ msgctxt ""
msgid "Label Field"
msgstr "Etiqueta"
-#. 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\">Icono</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\">Añade un campo para mostrar etiquetas.</ahelp> Estas etiquetas son sólo para mostrar texto predefinido y no para introducir texto."
-#. ).Z!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -951,7 +854,6 @@ msgctxt ""
msgid "Text Box"
msgstr "Campo de texto"
-#. 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\">Icono</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\">Añade un campo de entrada en el que se puede introducir y editar texto.</ahelp>"
-#. VOOz
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -980,7 +880,6 @@ msgctxt ""
msgid "List Box"
msgstr "Listado"
-#. 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\">Icono</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\">Añade un cuadro en el que se puede pulsar una entrada de la lista.</ahelp>"
-#. o_e5
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1009,7 +906,6 @@ msgctxt ""
msgid "Combo Box"
msgstr "Cuadro combinado"
-#. 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\">Icono</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\">Añade un cuadro combinado. Un cuadro combinado es un listado de una línea en el que el usuario puede pulsar y elegir una entrada de la lista.</ahelp> Si se desea, se pueden convertir las entradas del cuadro combinado como \"de sólo lectura\"."
-#. (u;0
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1038,7 +932,6 @@ msgctxt ""
msgid "Horizontal Scrollbar"
msgstr "Barra de desplazamiento horizontal"
-#. ]: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\">Icono</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\">Añade una barra de desplazamiento horizontal al diálogo.</ahelp>"
-#. l;Z)
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1067,7 +958,6 @@ msgctxt ""
msgid "Vertical Scrollbar"
msgstr "Barra de desplazamiento vertical"
-#. 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\">Icono</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\">Añade una barra de desplazamiento vertical al diálogo.</ahelp>"
-#. oQZR
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1096,7 +984,6 @@ msgctxt ""
msgid "Group Box"
msgstr "Marco de grupo"
-#. 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\">Icono</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\">Añade un marco que puede usarse para agrupar visualmente campos de control similares, como botones de opción.</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 "Para definir dos grupos distintos de botones de opción, asegúrese que el índice de tabulación del marco de grupo esté entre los de los dos grupos."
-#. *FXh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1135,7 +1019,6 @@ msgctxt ""
msgid "Progress Bar"
msgstr "Barra de progresión"
-#. ^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\">Icono</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\">Añade una barra de progresión al diálogo.</ahelp>"
-#. VvkD
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1164,7 +1045,6 @@ msgctxt ""
msgid "Horizontal Line"
msgstr "Línea horizontal"
-#. 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\">Icono</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 visibility=\"visible\" hid=\".uno:HFixedLine\">Añade una línea horizontal al diálogo.</ahelp>"
-#. K6mZ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1193,7 +1071,6 @@ msgctxt ""
msgid "Vertical Line"
msgstr "Línea vertical"
-#. !: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\">Icono</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\">Añade una línea vertical al diálogo.</ahelp>"
-#. fswV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1222,7 +1097,6 @@ msgctxt ""
msgid "Date Field"
msgstr "Campo de fecha"
-#. 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\">Icono</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\">Añade un campo de fecha.</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 "Si se asigna la propiedad \"dropdown\" al campo de fecha, los usuarios pueden desplegar un calendario para seleccionar una fecha."
-#. Qcxc
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1261,7 +1132,6 @@ msgctxt ""
msgid "Time Field"
msgstr "Campo horario"
-#. 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\">Icono</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\">Añade un campo de hora.</ahelp>"
-#. #y3Q
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1290,7 +1158,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr "Campo numérico"
-#. %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\">Icono</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\">Añade un campo numérico.</ahelp>"
-#. L5os
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1319,7 +1184,6 @@ msgctxt ""
msgid "Currency Field"
msgstr "Campo de moneda"
-#. }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\">Icono</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\">Añade un campo de moneda.</ahelp>"
-#. 6qW?
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1348,7 +1210,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr "Campo formateado"
-#. *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\">Icono</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 visibility=\"visible\" hid=\".uno:InsertFormattedField\">Añade un campo de texto en el que se puede definir el formato del texto que se introduce o se produce así como cualquier valor de límite.</ahelp>"
-#. [kT*
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1377,7 +1236,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr "Campo enmascarado"
-#. 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\">Icono</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\">Agrega un campo enmascarado.</ahelp> Un campo enmascarado consta de una máscara de entrada y de una máscara literal. La máscara de entrada determina los datos de usuario que se pueden entrar. La máscara literal define el estado del campo enmascarado al cargar el formulario."
-#. 426M
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1406,7 +1262,6 @@ msgctxt ""
msgid "File Selection"
msgstr "Selección de archivo"
-#. @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\">Icono</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\">Agrega que un boton que abre un diálogo de selección d archivo.</ahelp>"
-#. fWcI
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1435,7 +1288,6 @@ msgctxt ""
msgid "Select"
msgstr "Selección"
-#. 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\">Icono</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=\".\">Activa o desactiva el modo de selección. En este modo puede seleccionar los controles de un diálogo para que pueda modificarlos.</ahelp>"
-#. E;`\
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1464,7 +1314,6 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. 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\">Icono</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\">Abre un diálogo en que se pueden editar las <link href=\"text/sbasic/shared/01170100.xhp\" name=\"propiedades\">propiedades</link> del campo de control seleccionado.</ahelp>"
-#. `d,p
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1493,7 +1340,6 @@ msgctxt ""
msgid "Activate Test Mode"
msgstr "Activar modo de prueba"
-#. 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\">Icono</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\">Comienza el modo de prueba. Haz clic del dialogo cerca del ícono para finalizar el modo de prueba.</ahelp>"
-#. \EjX
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1521,7 +1365,6 @@ msgctxt ""
msgid "Manage Language"
msgstr "Maneja idioma"
-#. 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\">Icono de manejo de idioma</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\">Abre un <link href=\"text/sbasic/guide/translation.xhp\">diálogo</link> para activar y manejar multiples recursos de dialogos para multiples idiomas.</ahelp>"
-#. )+wE
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1548,7 +1389,6 @@ msgctxt ""
msgid "Tree Control"
msgstr "Control Árbol"
-#. 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_\">Icono de manejo de idioma</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=\".\">Agregue un control árbol que puede mostrar una lista jerarquizada. Puede poblarlo la lista a través de llamadas API a (XtreeControl).</ahelp>"
-#. .-9]
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1575,7 +1413,6 @@ msgctxt ""
msgid "Library"
msgstr "Biblioteca"
-#. .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=\"Library\">Biblioteca</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\">Seleccione la biblioteca que desee usar.</ahelp> El primer módulo de la biblioteca que seleccione se muestra en el Basic IDE."
-#. 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\">Biblioteca de cuadros de lista</alt></image>"
-#. G7cZ
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1614,7 +1448,6 @@ msgctxt ""
msgid "Library List Box"
msgstr "Listado Biblioteca"
-#. )g^4
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1623,7 +1456,6 @@ msgctxt ""
msgid "Import Dialog"
msgstr "Importar diálogo"
-#. 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=\"Importar diálogo\">Importar diálogo</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=\".\">Accede a un diálogo \"Abrir\" para importar un archivo de diálogo BASIC.</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 "Si el diálogo que se importa tiene el mismo nombre que otro existente en la biblioteca, verá un mensaje que le permitirá renombrar el diálogo a importar. En este caso, al diálogo se le dará el siguiente nombre \"automático\" que esté libre, de la misma forma que cuando se crea un nuevo diálogo. También puede reemplazar el diálogo existente con el que se está importando. Si hace clic en \"Cancelar\" el diálogo no se importará."
-#. ,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 "Los diálogos pueden contener datos de regionalización. Cuando se importa un diálogo puede ocurrir que no coincida el estado de regionalización del diálogo."
-#. 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 "Cuando la biblioteca contiene idiomas adicionales a los del diálogo importado, o si el diálogo importado no contiene ninguna regionalización, se agregarán sin aviso previo todos los idiomas adicionales al diálogo importado, usando las cadenas de la configuración regional predeterminada del diálogo."
-#. 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 "Si el diálogo importado contiene idiomas adicionales a los de la biblioteca, o si la biblioteca no contiene ninguna regionalización, verá un mensaje con los botones \"Agregar\", \"Omitir\", y \"Cancelar\"."
-#. ?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 "Agregar: Los idiomas adicionales del diálogo importado se agregarán a los de los diálogos existentes. Los recursos del idioma predeterminado de la biblioteca se usarán para los nuevos idiomas. Es lo mismo que cuando agrega los idiomas manualmente."
-#. 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 "Omitir: La configuración de idiomas de la biblioteca permanecerá intacta. No se copiarán a la biblioteca los recursos de los idiomas omitidos, pero permanecerán en los archivos fuente del diálogo importado."
-#. `+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\">Ícono</alt></image>"
-#. SPk$
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1716,7 +1539,6 @@ msgctxt ""
msgid "Import Dialog"
msgstr "Importar diálogo"
-#. f8n[
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1725,7 +1547,6 @@ msgctxt ""
msgid "Single Step"
msgstr "Paso único"
-#. =,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=\"Single Step\">Paso único</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\">Ejecuta la macro y se detiene después del siguiente comando.</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 "Este comando se puede usar junto con el comando <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Inspección</link> para solucionar errores."
-#. 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\">Icono</alt></image>"
-#. )n/o
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1774,7 +1591,6 @@ msgctxt ""
msgid "Single Step"
msgstr "Paso único"
-#. 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=\"Procedure Step function\">Función Paso de procedimiento</link>"
-#. \S,v
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1793,7 +1608,6 @@ msgctxt ""
msgid "Run"
msgstr "Ejecutar"
-#. [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=\"Run\">Ejecutar</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\">Ejecuta la primera macro del módulo actual.</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\">Símbolo</alt></image>"
-#. R\\7
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1832,7 +1643,6 @@ msgctxt ""
msgid "Run"
msgstr "Ejecutar"
-#. aTFB
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1841,7 +1651,6 @@ msgctxt ""
msgid "Enable Watch"
msgstr "Habilitar inspección"
-#. 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=\"Enable Watch\">Habilitar inspección</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\">Haga clic en este icono para ver las variables de una macro. El contenido de la variable se muestra en una ventana aparte.</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 "Haga clic en el nombre de una variable para seleccionarla; a continuación, haga clic en el icono <emph>Habilitar inspección</emph>. El valor que se asigna a la variable se muestra junto a su nombre. Este valor se actualiza de forma constante."
-#. (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\">Icono</alt></image>"
-#. DgVG
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1890,7 +1695,6 @@ msgctxt ""
msgid "Enable Watch"
msgstr "Habilitar inspección"
-#. 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 "Para anular la inspección de variables, seleccione la variable en la ventana de inspección y haga clic en el icono <emph>Habilitar inspección</emph>."
-#. }5yB
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1909,7 +1712,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Administrar puntos de interrupción"
-#. ^_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=\"Manage Breakpoints\">Administrar puntos de interrupción</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=\".\">Abre un diálogo para administrar los puntos de interrupción.</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\">Ícono</alt></image>"
-#. k/,B
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1948,7 +1747,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Gestión de los puntos de ruptura"
-#. JlBc
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
diff --git a/source/es/helpcontent2/source/text/scalc.po b/source/es/helpcontent2/source/text/scalc.po
index 5ed8d46bafa..c2dac24a26e 100644
--- a/source/es/helpcontent2/source/text/scalc.po
+++ b/source/es/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2012-07-15 10:28+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \T}c
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Status Bar"
msgstr "Barra de estado"
-#. ?yL}
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Barra de estado</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 "La <emph>barra de estado</emph> muestra información acerca de la hoja actual."
-#. An|1
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Digital Signature"
msgstr "Firma digital"
-#. 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 "Ver tambien <link href=\"text/shared/guide/digital_signatures.xhp\">Firmas digitales</link>."
-#. ]^#L
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Data"
msgstr "Datos"
-#. 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=\"Data\">Datos</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=\".\">Use el menú <emph>Datos</emph> para editar los datos en la hoja actual. Puede definir rangos, ordenar y filtrar los datos, calcular resultados, esquematizar datos, y crear una tabla dinámica.</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=\"Define Range\">Definir rango</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=\"Select Range\">Seleccionar rango</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=\"Sort\">Ordenar</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=\"Subtotals\">Subtotales</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=\"Validity\">Validez</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=\"Multiple Operations\">Operaciones múltiples</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\">Texto a Columnas</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=\"Consolidate\">Consolidar</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=\"Refresh Range\">Actualizar rango</link>"
-#. YL}+
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Tools"
msgstr "Herramientas"
-#. 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=\"Tools\">Herramientas</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=\".\">El menú <emph>Herramientas</emph> contiene comandos para comprobar la ortografía, encontrar referencias de hojas, encontrar errores y definir escenarios.</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 "También se pueden crear y asignar macros y configurar el aspecto de las barras de herramientas, menús y teclado, así como establecer las opciones predeterminadas de las aplicaciones de $[officename]."
-#. 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=\"Goal Seek\">Buscar objetivo</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=\"Scenarios\">Escenarios</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=\"AutoCorrect\">Opciones de autocorrección</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=\"Customize\">Personalizar</link>"
-#. t.#m
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -268,7 +242,6 @@ msgctxt ""
msgid "$[officename] Calc Features"
msgstr "Características de $[officename] Calc"
-#. 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=\"$[officename] Calc Features\">Características de $[officename] Calc</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 "$[officename] Calc es una aplicación de hojas de cálculo que puede usar para calcular, analizar y gestionar datos. También puede importar y modificar hojas de cálculo de Microsoft Excel."
-#. t_d^
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Calculations"
msgstr "Cálculos"
-#. 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 "$[officename] Calc incorpora <link href=\"text/scalc/01/04060100.xhp\" name=\"funciones\">funciones</link>, incluidas funciones estadísticas y financieras, que se pueden utilizar para crear fórmulas que realicen cálculos complejos sobre los datos."
-#. 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 "También pueden utilizarse los <link href=\"text/scalc/01/04060000.xhp\" name=\"Asistentes\">Asistente para funciones</link> como ayuda para la creación de fórmulas."
-#. pG$k
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -328,7 +296,6 @@ msgctxt ""
msgid "What-If Calculations"
msgstr "Cálculos qué-pasaría-si"
-#. `\\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 "Una función interesante es la posibilidad de ver inmediatamente el resultado de los cambios realizados en uno de los factores que integran un cálculo. Por ejemplo, puede ver cómo el cambio del período en el cálculo de un préstamo afecta al interés o a las cantidades de la amortización. Además, puede gestionar tablas mayores usando varias situaciones hipotéticas predefinidas."
-#. jpCj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -348,7 +314,6 @@ msgctxt ""
msgid "Database Functions"
msgstr "Funciones de las bases de datos"
-#. YBoo
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -358,7 +323,6 @@ msgctxt ""
msgid "Use spreadsheets to arrange, store, and filter your data."
msgstr "Utilice las hojas de cálculo para organizar, almacenar y filtrar datos."
-#. 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 "$[officename] Calc permite arrastrar y colocar tablas de bases de datos; también se puede utilizar una hoja de cálculo como fuente de datos para la creación de cartas en serie en $[officename] Writer."
-#. f@fj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -378,7 +341,6 @@ msgctxt ""
msgid "Arranging Data"
msgstr "Estructurar datos"
-#. \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 "Bastan unas pocas pulsaciones del ratón para reorganizar la hoja de cálculo a fin de que muestre u oculte áreas de datos determinadas, para dar formato según condiciones especiales o para calcular con rapidez subtotales y totales."
-#. z;ki
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -398,7 +359,6 @@ msgctxt ""
msgid "Dynamic Charts"
msgstr "Gráficos dinámicos"
-#. 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 "$[officename] Calc permite presentar datos de una hoja de cálculo en diagramas dinámicos que se actualizan automáticamente cuando cambian los datos."
-#. U3BR
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "Opening and Saving Microsoft Files"
msgstr "Abrir y guardar archivos de Microsoft"
-#. 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 "Utilice los filtros de $[officename] para convertir archivos de Excel o para abrir y guardar en otros varios <link href=\"text/shared/00/00000020.xhp\" name=\"formatos\">formatos</link>."
-#. y0IT
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -437,7 +394,6 @@ msgctxt ""
msgid "Text Formatting Bar"
msgstr "Barra Formato de texto"
-#. -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=\"Text Formatting Bar\">Barra Formato de texto</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\">La barra <emph>Formato de texto</emph> que se muestra cuando se coloca el cursor en un objeto de texto, por ejemplo, un marco de texto o un objeto de dibujo, contiene comandos de formato y alineación.</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=\"Font Color\">Color de fuente</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=\"Line Spacing: 1\">Interlineado: 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=\"Line Spacing: 1.5\">Interlineado: 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=\"Line Spacing: 2\">Interlineado: 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=\"Align Left\">Alinear a la izquierda</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=\"Centered\">Centrado</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=\"Align Right\">Alinear a la derecha</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=\"Justify\">Justificado</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=\"Superscript\">Superíndice</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=\"Subscript\">Subíndice</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=\"Character\">Carácter</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=\"Paragraph\">Párrafo</link>"
-#. nG=N
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -586,7 +528,6 @@ msgctxt ""
msgid "Drawing Object Properties Bar"
msgstr "Barra Propiedades del objeto de dibujo"
-#. 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=\"Drawing Object Properties Bar\">Barra Propiedades del objeto de dibujo</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\">La barra <emph>Propiedades del objeto de dibujo</emph> para los objetos seleccionados en la hoja contiene comandos de formato y alineación.</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=\"Line Style\">Estilo de línea</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=\"Line Width\">Ancho de línea</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=\"Line Color\">Color de línea</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=\"Background Color\">Color de fondo</link>"
-#. 51A$
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -655,7 +590,6 @@ msgctxt ""
msgid "Insert"
msgstr "Insertar"
-#. 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=\"Insert\">Insertar</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=\".\">El menú Insertar contiene comandos para insertar nuevos elementos, como celdas, filas, hojas y nombres de celda en la hoja actual.</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=\"Cells\">Celdas</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=\"Sheet\">Hoja</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=\"Special Character\">Símbolos</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=\"Hyperlink\">Hipervínculo</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=\"Function\">Función</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=\"Function List\">Lista de funciones</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=\"Comment\">Comentarios</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=\"Chart\">Gráfico</link>"
-#. JP9/
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -764,7 +688,6 @@ msgctxt ""
msgid "Inserts a chart."
msgstr "Inserta un gráfico"
-#. 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=\"Floating Frame\">Marco flotante</link>"
-#. TxB%
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -783,7 +705,6 @@ msgctxt ""
msgid "Tools Bar"
msgstr "Barra Herramientas"
-#. 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=\"Tools Bar\">Barra Herramientas</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\">Utilice la barra Herramientas para acceder a los comandos que se utilizan con mayor frecuencia.</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=\"Controls\">Controles</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=\"Choose Themes\">Elegir temas</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=\"Advanced Filter\">Filtro avanzado</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\">Inicio</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=\"Euro Converter\">Convertidor de Euros</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\">Definir</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=\"Goal Seek\">Buscar objetivo</link>"
-#. 2Qne
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -876,7 +788,6 @@ msgctxt ""
msgid "Format"
msgstr "Formato"
-#. 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=\"Format\">Formato</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\">El menú <emph>Formato</emph> contiene comandos para dar formato a las celdas seleccionadas, los <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objetos</link> y el contenido de las celdas del documento.</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=\"Cells\">Celdas</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=\"Page\">Página</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=\"Character\">Carácter</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=\"Paragraph\">Párrafo</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=\"AutoFormat\">AutoFormato</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=\"Conditional Formatting\">Formateado condicionado</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=\"Control\">Control</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=\"Form\">Formulario</link>"
-#. 55S8
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -985,7 +886,6 @@ msgctxt ""
msgid "Window"
msgstr "Ventana"
-#. %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=\"Window\">Ventana</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\">Contiene comandos para manipular y mostrar ventanas de documentos.</ahelp>"
-#. =4re
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1014,7 +912,6 @@ msgctxt ""
msgid "Page Preview Bar"
msgstr "Barra Vista previa"
-#. 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=\"Page Preview Bar\">Barra Vista previa</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\">La barra <emph>Vista previa</emph> aparece al seleccionar <emph>Archivo - Vista previa</emph>.</ahelp>"
-#. (E;-
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1044,7 +939,6 @@ msgctxt ""
msgid "Full Screen"
msgstr "Pantalla completa"
-#. 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 "Oculta los menús y barras de herramientas. Para salir del modo de pantalla completa, haga clic en el botón <emph>Pantalla completa On/Off</emph>."
-#. [)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=\"Format Page\">Formato de página</link>"
-#. Lbp0
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1073,7 +965,6 @@ msgctxt ""
msgid "Margins"
msgstr "Márgenes"
-#. 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 "Muestra u oculta los márgenes de la página. Los márgenes pueden arrastrarse con el ratón, y también pueden ajustarse en la pestaña <emph>Página</emph> del diálogo <emph>Estilo de página</emph>."
-#. r;,N
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1092,7 +982,6 @@ msgctxt ""
msgid "Scaling Factor"
msgstr "Factor de escala"
-#. 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 "Esta diapositiva define la escala de la página de la hoja de cálculo impresa. El factor de escala puede ser establecido en la pestaña <emph> Hoja</emph> del diálogo <emph>Estilo de página </emph> , también."
-#. FngN
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1111,7 +999,6 @@ msgctxt ""
msgid "Close Preview"
msgstr "Cerrar Vista Previa"
-#. .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 "Para salir de la vista preliminar de la página, haga click en el botón <emph>Cerrar Vista Preliminar</emph>."
-#. Bb3m
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1129,7 +1015,6 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. ;!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=\"View\">Ver</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=\".\">Este menú contiene comandos para controlar la visualización de las pantallas del documento.</ahelp>"
-#. 7Bqn
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1158,7 +1041,6 @@ msgctxt ""
msgid "Normal"
msgstr "Normal"
-#. =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=\".\">Muestra la vista normal de la hoja.</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=\"Zoom\">Zoom</link>"
-#. gsc:
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1186,7 +1066,6 @@ msgctxt ""
msgid "Edit"
msgstr "Editar"
-#. 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=\"Edit\">Editar</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=\".\">Este menú contiene comandos para editar los contenidos del documento actual.</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=\"Paste Special\">Pegado especial</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=\"Compare Document\">Comparar documento</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=\"Find & Replace\">Buscar y reemplazar</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=\"Headers & Footers\">Encabezamientos y pies de página</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=\"Delete Contents\">Eliminar contenidos</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=\"Delete Cells\">Eliminar celdas</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=\"Links\">Vínculos</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=\"ImageMap\">Mapa de imagen</link>"
-#. ExHP
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1295,7 +1164,6 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "Barra Formato"
-#. 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=\"Formatting Bar\">Barra de formato</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\">La barra <emph>Formato</emph> contiene los comandos básicos para aplicar el formato manualmente.</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=\"Font Color\">Color de fuente</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=\"Align Left\">Alineado a la izquierda</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=\"Align Center Horizontally\">Alineación centrada horizontal</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=\"Align Right\">Alinear a la derecha</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=\"Justify\">Justificado</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=\"Align Top\">Alinear arriba</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=\"Align Center Vertically\">Alinear centro vertical</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=\"Align Bottom\">Alinear abajo</link>"
-#. YmpL
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1404,7 +1262,6 @@ msgctxt ""
msgid "Number Format : Date"
msgstr "Formato numérico: Fecha"
-#. 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=\".\">Aplica el formato de fecha a las celdas seleccionadas.</ahelp>"
-#. }VJQ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1422,7 +1278,6 @@ msgctxt ""
msgid "Number Format: Exponential"
msgstr "Formato numérico: Exponencial"
-#. !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=\".\">Aplica el formato exponencial a las celdas seleccionadas.</ahelp>"
-#. p27,
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1440,7 +1294,6 @@ msgctxt ""
msgid "Additional icons"
msgstr "Iconos adicionales"
-#. *(!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 "Si está activada la compatibilidad con <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link>, en pantalla aparecen dos iconos más."
-#. f,eh
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1458,7 +1310,6 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "De izquierda a derecha"
-#. `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\">icono de izquierda a derecha</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\">El texto se escribe de izquierda a derecha.</ahelp>"
-#. IOMq
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1485,7 +1334,6 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De derecha a izquierda"
-#. ]_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\">icono de derecha a izquierda</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\">El texto de idiomas con diseño complejo de texto (CTL) se escribe de derecha a izquierda.</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\">Alinea el contenido de la celda a la izquierda.</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\">Alinea el concepto de la celda a la derecha.</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\">Horizontalmente centra el contendio de la celda.</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\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
-#. 1r0%
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1548,7 +1390,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Calc Help"
msgstr "Bienvenido a la ayuda de $[officename] Calc"
-#. nH=N
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1558,7 +1399,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Calc Help"
msgstr "Bienvenido a la ayuda de $[officename] Calc"
-#. uffg
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1568,7 +1408,6 @@ msgctxt ""
msgid "How to Work With $[officename] Calc"
msgstr "Cómo trabajar con $[officename] Calc"
-#. +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=\"List of Functions by Category\">Lista de funciones por categoría</link>"
-#. 6=g#
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1588,7 +1426,6 @@ msgctxt ""
msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr "Menús, barras de herramientas y teclas en $[officename] Calc"
-#. p3Y6
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1598,7 +1435,6 @@ msgctxt ""
msgid "Help about the Help"
msgstr "Ayuda de la Ayuda"
-#. MO6?
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1607,7 +1443,6 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. 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=\"Menus\">Menús</link></variable>"
-#. tquf
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1627,7 +1461,6 @@ msgctxt ""
msgid "The following menu commands are available for spreadsheets."
msgstr "Las siguientes órdenes de menú están disponibles para hojas de cálculo."
-#. ]O/]
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
@@ -1636,7 +1469,6 @@ msgctxt ""
msgid "Formula Bar"
msgstr "Barra de fórmulas"
-#. 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=\"Formula Bar\">Barra de fórmulas</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\">Use esta barra para escribir fórmulas.</ahelp>"
-#. qp0T
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1665,7 +1495,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barras de herramientas"
-#. 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=\"Toolbars\">Barras de herramientas</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 "En este submenú se enumeran las barras de herramientas disponibles en las hojas de cálculo.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-#. D,cp
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1694,7 +1521,6 @@ msgctxt ""
msgid "File"
msgstr "Archivo"
-#. 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=\"File\">Archivo</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=\".\">Estos comandos aplican para el documento actual, abrir un documento nuevo, o cerrar la aplicación.</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=\"Open\">Abrir</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=\"Save As\">Guardar como</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=\"Versions\">Versiones</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=\"Properties\">Propiedades</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=\"Print\">Imprimir</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=\"Printer Setup\">Configuración de la impresora</link>"
-#. L1i_
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -1783,7 +1601,6 @@ msgctxt ""
msgid "Picture Bar"
msgstr "Barra Imagen"
-#. 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=\"Picture Bar\">Barra de imagen</link>"
-#. ick9
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index 8a847362068..14d7b8d951a 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/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-08-07 08:55+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\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 "Menú Ventana"
-#. @l#5
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Window Menu"
msgstr "Menú Ventana"
-#. 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\">Menú <emph>Ventana - Dividir</emph></variable>"
-#. ]g{~
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
msgstr "<variable id=\"fefix\">Menú <emph>Ventana - Fijar</emph></variable>"
-#. UNTD
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Data Menu"
msgstr "Menú Datos"
-#. ;o)Y
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Data Menu"
msgstr "Menú Datos"
-#. 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\">Seleccione <emph>Datos - Texto a Columnas</emph></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\">Menú <emph>Datos - Definir área</emph></variable>"
-#. =R:C
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -102,7 +93,6 @@ msgctxt ""
msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
msgstr "<variable id=\"dbrba\">Menú <emph>Datos - Seleccionar área</emph></variable>"
-#. aVd7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
msgstr "<variable id=\"dnsrt\">Menú <emph>Datos - Ordenar</emph></variable>"
-#. 8#D|
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
msgstr "Seleccione la pestaña <emph>Datos - Ordenar - Ordenar Criterios</emph>"
-#. sBbC
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "On Standard bar, click"
msgstr "En la barra Estándar, haga clic en"
-#. 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\">Icono</alt></image>"
-#. $sCd
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "Orden ascendente"
-#. 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\">Icono</alt></image>"
-#. RQ+1
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr "Orden descendente"
-#. 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\">Elija <emph>Datos - Ordenar - Opciones</emph></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\">Menú <emph>Datos - Filtro</emph></variable>"
-#. rgU6
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -200,7 +181,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
msgstr "Menú <emph>Datos - Filtro - Filtro automático</emph>"
-#. jDL/
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -210,7 +190,6 @@ msgctxt ""
msgid "On Tools bar or Table Data bar, click"
msgstr "En la barra Herramientas o Datos de tabla, haga clic en"
-#. 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\">Símbolo</alt></image>"
-#. 6wp6
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Filtro automático"
-#. 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\">Menú <emph>Datos - Filtro - Filtro especial</emph></variable>"
-#. oEjJ
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
msgstr "Menú <emph>Datos - Filtro - Filtro estándar...</emph> - Botón <emph>Opciones</emph>"
-#. =H]U
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
msgstr "Menú <emph>Datos - Filtro - Filtro especial... - </emph>botón <emph>Opciones</emph>"
-#. 3RE#
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
msgstr "Menú <emph>Datos - Filtro - Eliminar filtro</emph>"
-#. 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 "<emph>Barra de base de datos - </emph>Símbolo<emph> Eliminar filtro/orden</emph>"
-#. 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\">Símbolo</alt></image>"
-#. ~L,7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Remove Filter/Sort"
msgstr "Eliminar filtro/orden"
-#. 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\">Menú <emph>Datos - Filtro - Ocultar AutoFiltro</emph></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\">Menú <emph>Datos - Subtotales</emph></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\">Seleccione las pestañas <emph>Datos - Subtotales - Grupo 1, Grupo 2, Grupo 3</emph></variable>"
-#. =0o(
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -339,7 +306,6 @@ msgctxt ""
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
msgstr "<variable id=\"dntopi\">Seleccione la pestaña <emph>Datos - Subtotales - Opciones</emph></variable>"
-#. 2E4E
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
msgstr "<variable id=\"datengueltig\">Menú <emph>Datos - Validez</emph></variable>"
-#. :,?t
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -360,7 +325,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr "<variable id=\"datengueltigwerte\">Seleccione la pestaña <emph>Datos - Validez - Criterios</emph></variable>"
-#. 4rb^
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -371,7 +335,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr "<variable id=\"datengueltigeingabe\">Seleccione la pestaña <emph>Datos - Validez - Ayuda de entrada</emph></variable>"
-#. *,n#
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -381,7 +344,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr "<variable id=\"datengueltigfehler\">Seleccione la pestaña <emph>Datos - Validez - Alerta de error</emph></variable>"
-#. 1s|:
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -391,7 +353,6 @@ msgctxt ""
msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
msgstr "<variable id=\"dnmfo\">Menú <emph>Datos - Operaciones múltiples</emph></variable>"
-#. ;C/L
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -401,7 +362,6 @@ msgctxt ""
msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
msgstr "<variable id=\"dnksd\">Menú <emph>Datos - Consolidar</emph></variable>"
-#. pMb?
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -411,7 +371,6 @@ msgctxt ""
msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
msgstr "<variable id=\"dngld\">Menú <emph>Datos - Consolidar</emph></variable>"
-#. A4B5
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -421,7 +380,6 @@ msgctxt ""
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
msgstr "<variable id=\"dngda\">Escoge <emph>Datos - Esquema - Ocultar detalles</emph></variable>"
-#. DUOo
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -431,7 +389,6 @@ msgctxt ""
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
msgstr "<variable id=\"dngde\">Escoge <emph>Datos - Esquema - Mostrar detalles</emph></variable>"
-#. Z;s}
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -441,7 +398,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr "Escoge <emph>Datos - Esquema - Agrupar</emph>"
-#. g9Wm
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -451,7 +407,6 @@ msgctxt ""
msgid "F12"
msgstr "Tecla (F12)"
-#. f#3$
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -461,7 +416,6 @@ msgctxt ""
msgid "On <emph>Tools</emph> bar, click"
msgstr "Símbolo de la barra de herramientas:"
-#. _fJr
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -470,7 +424,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\">Símbolo</alt></image>"
-#. #bgs
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -480,7 +433,6 @@ msgctxt ""
msgid "Group"
msgstr "Agrupar"
-#. O-~Y
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -490,7 +442,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
msgstr "Escoge <emph>Datos - Esquema - Desagrupar</emph>"
-#. d/BO
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -500,7 +451,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F12"
-#. so_9
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -510,7 +460,6 @@ msgctxt ""
msgid "On <emph>Tools</emph> bar, click"
msgstr "Símbolo de la barra de herramientas:"
-#. g$#7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -519,7 +468,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\">Símbolo</alt></image>"
-#. -Q!,
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -529,7 +477,6 @@ msgctxt ""
msgid "Ungroup"
msgstr "Eliminar grupo"
-#. D9yU
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -539,7 +486,6 @@ msgctxt ""
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr "<variable id=\"dnglagl\">Choose <emph>Datos - Esquema - Esquema automático</emph></variable>"
-#. o`u;
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -549,7 +495,6 @@ msgctxt ""
msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
msgstr "<variable id=\"dnglef\">Seleccione <emph>Datos - Piloto de datos - Eliminar</emph></variable>"
-#. slNR
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -558,7 +503,6 @@ msgctxt ""
msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
msgstr "<variable id=\"dngdrill\">Elija <emph>Datos - Grupo y esquema - Mostrar detalles</emph> (para algunas tablas dinámicas)</variable>"
-#. :M`i
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -568,7 +512,6 @@ msgctxt ""
msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndtpt\">Elija <emph>Datos - Tabla dinámica</emph></variable>"
-#. g6T(
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -578,7 +521,6 @@ msgctxt ""
msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
msgstr "<variable id=\"dndpa\">Elija <emph>Datos - Tabla dinámica - Crear</emph></variable>"
-#. eiV?
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -588,7 +530,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\">Elija <emph>Datos - Tabla dinámica - Crear</emph>, en el diálogo Seleccionar origen elija la opción <emph>Origen de datos registrado en $[officename]</emph>.</variable>"
-#. +QIS
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -598,7 +539,6 @@ msgctxt ""
msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
msgstr "Elija <emph>Datos - Tabla dinámica - Crear</emph>, en el diálogo Seleccionar origen elija la opción <emph>Selección actual</emph>."
-#. 67Id
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -608,7 +548,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 "Elija <emph>Datos -Tabla dinámica - Crear</emph>, en el diálogo Seleccionar origen elija la opción <emph>Origen de datos registrado en $[officename]</emph>, pulse <emph>Aceptar</emph> para ver el diálogo <emph>Seleccionar origen de datos</emph>."
-#. Mr.H
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -618,7 +557,6 @@ msgctxt ""
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
msgstr "<variable id=\"dndpak\">Elija <emph>Datos - Tabla dinámica - Actualizar</emph></variable>"
-#. 26r^
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -628,7 +566,6 @@ msgctxt ""
msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
msgstr "<variable id=\"dndploe\">Elija <emph>Datos - Tabla dinámica - Eliminar</emph></variable>"
-#. gA9I
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -638,7 +575,6 @@ msgctxt ""
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
msgstr "<variable id=\"dndakt\">Menú <emph>Datos - Actualizar área</emph></variable>"
-#. k2o*
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -647,7 +583,6 @@ msgctxt ""
msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
msgstr "<variable id=\"grouping\">Seleccione <emph>Datos - Esquema - Grupo</emph></variable>"
-#. Sj%-
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -656,7 +591,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "Menú Formato"
-#. /_ii
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -666,7 +600,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "Menú Formato"
-#. Ye{j
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -676,7 +609,6 @@ msgctxt ""
msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
msgstr "<variable id=\"fozelle\">Menú <emph>Formato - Celda</emph></variable>"
-#. 1Rqp
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -686,7 +618,6 @@ msgctxt ""
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr "<variable id=\"fozelstz\">Seleccione la pestaña <emph>Formato - Celdas - Protección de celda</emph></variable>"
-#. /.33
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -696,7 +627,6 @@ msgctxt ""
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
msgstr "<variable id=\"fozei\">Menú <emph>Formato - Fila</emph></variable>"
-#. ~7Wo
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -706,7 +636,6 @@ msgctxt ""
msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
msgstr "<variable id=\"fozeiophoe\">Menú <emph>Formato - Fila - Altura óptima</emph></variable>"
-#. Z%@Z
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -716,7 +645,6 @@ msgctxt ""
msgid "Choose <emph>Format - Row - Hide</emph>"
msgstr "Menú <emph>Formato - Fila - Ocultar</emph>"
-#. !s(r
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -726,7 +654,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Hide</emph>"
msgstr "Menú <emph>Formato - Columna - Ocultar</emph>"
-#. YIK=
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -736,7 +663,6 @@ msgctxt ""
msgid "Choose <emph>Format - Sheet - Hide</emph>"
msgstr "Menú <emph>Formato - Hoja de cálculo - Ocultar</emph>"
-#. #idk
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -746,7 +672,6 @@ msgctxt ""
msgid "Choose <emph>Format - Row - Show</emph>"
msgstr "Menú <emph>Formato - Fila - Mostrar</emph>"
-#. cj,D
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -756,7 +681,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Show</emph>"
msgstr "Menú <emph>Formato - Columna - Mostrar</emph>"
-#. cJ13
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -766,7 +690,6 @@ msgctxt ""
msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
msgstr "<variable id=\"fospa\">Menú <emph>Formato - Columna</emph></variable>"
-#. W@Z0
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -776,7 +699,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
msgstr "Menú <emph>Formato - Columna - Ancho óptimo...</emph>"
-#. DLTx
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -786,7 +708,6 @@ msgctxt ""
msgid "Double-click right column separator in column headers"
msgstr "Pulse dos veces en el separador derecho de los títulos de columnas"
-#. aB7/
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -796,7 +717,6 @@ msgctxt ""
msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
msgstr "<variable id=\"fot\">Menú <emph>Formato - Hoja de cálculo</emph></variable>"
-#. }3]`
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -806,7 +726,6 @@ msgctxt ""
msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
msgstr "<variable id=\"fotu\">Menú <emph>Formato - Hoja de cálculo - Cambiar nombre</emph></variable>"
-#. +@gC
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -816,7 +735,6 @@ msgctxt ""
msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
msgstr "<variable id=\"fotenb\">Menú <emph>Formato - Hoja de cálculo - Mostrar</emph></variable>"
-#. u.;w
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -825,7 +743,6 @@ msgctxt ""
msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
msgstr "<variable id=\"foste\">Seleccione <emph>Formato - Página</emph></variable>"
-#. G_rh
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -835,7 +752,6 @@ msgctxt ""
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
msgstr "<variable id=\"fostel\">Seleccione la pestaña<emph>Formato - Página - Hoja</emph></variable>"
-#. D;sc
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -845,7 +761,6 @@ msgctxt ""
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
msgstr "<variable id=\"fodrbe\">Seleccione <emph>Formato - Áreas de impresión</emph></variable>."
-#. =-j\
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -855,7 +770,6 @@ msgctxt ""
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
msgstr "<variable id=\"fodrfe\">Seleccione <emph>Formato - Áreas de impresión - Definir</emph></variable>."
-#. 7^yS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -865,7 +779,6 @@ msgctxt ""
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
msgstr "<variable id=\"fodrhin\">Seleccione <emph>Formato - Áreas de impresión - Agregar</emph></variable>"
-#. +{C^
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -875,7 +788,6 @@ msgctxt ""
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
msgstr "<variable id=\"fodbah\">Seleccione <emph>Formato - Áreas de impresión - Borrar</emph></variable>"
-#. V8ib
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -885,7 +797,6 @@ msgctxt ""
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
msgstr "<variable id=\"fodbbe\">Seleccione <emph>Formato - Áreas de impresión - Editar</emph></variable>"
-#. gaR-
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -895,7 +806,6 @@ msgctxt ""
msgid "Choose <emph>Format - AutoFormat</emph>"
msgstr "Menú <emph>Formato - AutoFormato...</emph>"
-#. E)b+
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -905,7 +815,6 @@ msgctxt ""
msgid "On the Tools bar, click"
msgstr "En la barra Herramientas, haga clic en"
-#. A3[3
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -914,7 +823,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\">Icono</alt></image>"
-#. ~W\I
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -924,7 +832,6 @@ msgctxt ""
msgid "AutoFormat"
msgstr "AutoFormato"
-#. ixYZ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -934,7 +841,6 @@ msgctxt ""
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr "<variable id=\"bedingte\">Seleccione <emph>Formato - Formato condicional</emph></variable>"
-#. s_F\
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -943,7 +849,6 @@ msgctxt ""
msgid "Insert Menu"
msgstr "Menú Insertar"
-#. aX:O
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -953,7 +858,6 @@ msgctxt ""
msgid "Insert Menu"
msgstr "Menú Insertar"
-#. dg]o
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -963,7 +867,6 @@ msgctxt ""
msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
msgstr "<variable id=\"eimaum\">Elija <emph>Insertar - Salto manual</emph></variable>"
-#. -:0c
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -973,7 +876,6 @@ msgctxt ""
msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
msgstr "<variable id=\"eimaumze\">Elija <emph>Insertar - Salto manual - Salto de fila</emph></variable>"
-#. j$4R
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -983,7 +885,6 @@ msgctxt ""
msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
msgstr "<variable id=\"eimaumsp\">Elija <emph>Insertar - Salto manual - Salto de columna</emph></variable>"
-#. 67cT
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -993,7 +894,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Cells</emph>"
msgstr "Elija <emph>Insertar - Celdas</emph>"
-#. IXVn
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1003,7 +903,6 @@ msgctxt ""
msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
msgstr "Abra la barra de herramientas <emph>Insertar celdas</emph> de la barra Herramientas:"
-#. l67|
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1012,7 +911,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\">Icono</alt></image>"
-#. ?mkp
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1022,7 +920,6 @@ msgctxt ""
msgid "Insert Cells"
msgstr "Insertar celdas"
-#. 3Eh+
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1031,7 +928,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\">Icono</alt></image>"
-#. pr]!
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1041,7 +937,6 @@ msgctxt ""
msgid "Insert Cells Down"
msgstr "Insertar celdas, hacia abajo"
-#. =(n1
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1050,7 +945,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\">Icono</alt></image>"
-#. PF1C
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1060,7 +954,6 @@ msgctxt ""
msgid "Insert Cells Right"
msgstr "Insertar celdas, hacia la derecha"
-#. 9i9%
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1069,7 +962,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\">Icono</alt></image>"
-#. 5A4i
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1079,7 +971,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "Insertar filas"
-#. 77Kf
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1088,7 +979,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\">Icono</alt></image>"
-#. MxfX
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1098,7 +988,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Insertar columnas"
-#. IpVE
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1108,7 +997,6 @@ msgctxt ""
msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
msgstr "<variable id=\"eizei\">Menú <emph>Insertar - Filas</emph></variable>"
-#. 86R`
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1118,7 +1006,6 @@ msgctxt ""
msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
msgstr "<variable id=\"eispa\">Menú <emph>Insertar - Columnas</emph></variable>"
-#. F[Io
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1128,7 +1015,6 @@ msgctxt ""
msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
msgstr "<variable id=\"eitab\">Menú <emph>Insertar - Hoja de cálculo</emph></variable>"
-#. ?dja
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1137,7 +1023,6 @@ msgctxt ""
msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
msgstr "<variable id=\"eitabfile\">Elija <emph>Insertar - Hoja desde archivo</emph></variable>"
-#. pfW;
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1147,7 +1032,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Function</emph>"
msgstr "Menú <emph>Insertar - Función...</emph>"
-#. u^p.
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1157,7 +1041,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F2"
-#. bB^S
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1167,7 +1050,6 @@ msgctxt ""
msgid "On <emph>Formula Bar</emph>, click"
msgstr "En la <emph>barra de fórmulas</emph>, haga clic en"
-#. O@He
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1176,7 +1058,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\">Icono</alt></image>"
-#. eQ;P
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1186,7 +1067,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "Asistente para funciones"
-#. (ftC
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1196,7 +1076,6 @@ msgctxt ""
msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
msgstr "<variable id=\"eikada\"><emph>Insertar - Función</emph> - Categoría <emph>Base de datos</emph></variable>"
-#. l^0(
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1206,7 +1085,6 @@ msgctxt ""
msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
msgstr "<variable id=\"eikadaze\"><emph>Insertar - Función</emph> - Categoría <emph>FechayHora</emph></variable>"
-#. hIwc
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1216,7 +1094,6 @@ msgctxt ""
msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
msgstr "<variable id=\"eikafi\"><emph>Insertar - Función</emph> - Categoría <emph>Finanzas</emph></variable>"
-#. !0p8
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1226,7 +1103,6 @@ msgctxt ""
msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
msgstr "<variable id=\"eikain\"><emph>Insertar - Función</emph> - Categoría <emph>Información</emph></variable>"
-#. sy^H
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1236,7 +1112,6 @@ msgctxt ""
msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
msgstr "<variable id=\"eikalo\"><emph>Insertar - Función</emph> - Categoría <emph>Lógico</emph></variable>"
-#. )B^,
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1246,7 +1121,6 @@ msgctxt ""
msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
msgstr "<variable id=\"eikama\"><emph>Insertar - Función</emph> - Categoría <emph>Matemático</emph></variable>"
-#. !.2q
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1256,7 +1130,6 @@ msgctxt ""
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
msgstr "<variable id=\"eikamatrix\"><emph>Insertar - Función</emph> - Categoría <emph>Matriz</emph></variable>"
-#. rPve
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1266,7 +1139,6 @@ msgctxt ""
msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
msgstr "<variable id=\"eikasta\"><emph>Insertar - Función</emph> - Categoría <emph>Estadística</emph></variable>"
-#. NnfJ
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1276,7 +1148,6 @@ msgctxt ""
msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
msgstr "<variable id=\"eikatext\"><emph>Insertar - Función</emph> - Categoría <emph>Texto</emph></variable>"
-#. P{pi
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1286,7 +1157,6 @@ msgctxt ""
msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
msgstr "<variable id=\"efefft\"><emph>Insertar - Función</emph> - Categoría<emph>Hoja de cálculo</emph></variable>"
-#. gY/;
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1296,7 +1166,6 @@ msgctxt ""
msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addin\"><emph>Insertar - Función</emph> - Categoría <emph>Add-In</emph></variable>"
-#. 6=\,
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1306,7 +1175,6 @@ msgctxt ""
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\"><emph>Insertar - Función</emph> - Categoría <emph>Add-In</emph></variable>"
-#. B1cI
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1316,7 +1184,6 @@ msgctxt ""
msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
msgstr "<variable id=\"funktionsliste\">Menú<emph> Insertar - Lista de funciones</emph></variable>"
-#. *MEy
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1326,7 +1193,6 @@ msgctxt ""
msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
msgstr "<variable id=\"einamen\">Menú <emph>Insertar - Nombres</emph></variable>"
-#. A{04
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1336,7 +1202,6 @@ msgctxt ""
msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
msgstr "<variable id=\"eiextdata\">Seleccione <emph>Insertar - Vínculo a datos externos</emph></variable>"
-#. ORCG
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1346,7 +1211,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Names - Define</emph>"
msgstr "Menú <emph>Insertar - Nombres - Definir...</emph>"
-#. m^`J
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1356,7 +1220,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F3"
-#. )Yo.
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1366,7 +1229,6 @@ msgctxt ""
msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
msgstr "<variable id=\"einaei\">Menú <emph>Insertar - Nombres - Pegar</emph></variable>"
-#. t~nH
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1376,7 +1238,6 @@ msgctxt ""
msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
msgstr "<variable id=\"einaueb\">Menú <emph>Insertar - Nombres - Aplicar</emph></variable>"
-#. Brvg
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1386,7 +1247,6 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\">Menú<emph> Insertar - Nombres - Etiquetas</emph></variable>"
-#. %;qZ
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1395,7 +1255,6 @@ msgctxt ""
msgid "View Menu"
msgstr "Menú Ver"
-#. n62C
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1405,7 +1264,6 @@ msgctxt ""
msgid "View Menu"
msgstr "Menú Ver"
-#. ^x;(
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1415,7 +1273,6 @@ msgctxt ""
msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
msgstr "<variable id=\"aspze\">Elija <emph>Ver - Títulos de filas/columnas</emph></variable>"
-#. s`(z
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1425,7 +1282,6 @@ msgctxt ""
msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
msgstr "<variable id=\"awehe\">Elija <emph>Ver - Destacar valores</emph></variable>"
-#. 6D#n
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1435,7 +1291,6 @@ msgctxt ""
msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
msgstr "<variable id=\"rechenleiste\">Elija <emph>Ver - Barras de herramientas - Barra de fórmulas</emph></variable>"
-#. BW?#
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1445,7 +1300,6 @@ msgctxt ""
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
msgstr "<variable id=\"seumvo\">Elija <emph>Ver - Previsualización del salto de página</emph></variable>"
-#. +9f6
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1454,7 +1308,6 @@ msgctxt ""
msgid "Tools Menu"
msgstr "Menú Herramientas"
-#. d|:s
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1464,7 +1317,6 @@ msgctxt ""
msgid "Tools Menu"
msgstr "Menú Herramientas"
-#. oiIq
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1474,7 +1326,6 @@ msgctxt ""
msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
msgstr "<variable id=\"exdektv\">Menú <emph>Herramientas - Detective</emph></variable>"
-#. 1u_t
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1484,7 +1335,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
msgstr "Menú <emph>Herramientas - Detective - Rastrear los precedentes</emph>"
-#. *h7$
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1494,7 +1344,6 @@ msgctxt ""
msgid "Shift+F7"
msgstr "Mayús+F7"
-#. ,3PU
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1504,7 +1353,6 @@ msgctxt ""
msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
msgstr "<variable id=\"silbentrennungc\">Menú <emph>Herramientas - Idioma - División de palabras</emph></variable>"
-#. :]Pl
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1514,7 +1362,6 @@ msgctxt ""
msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
msgstr "<variable id=\"exdvore\">Menú <emph>Herramientas - Detective - Eliminar rastro a precedentes</emph></variable>"
-#. C9sy
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1524,7 +1371,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
msgstr "Menú <emph>Herramientas - Detective - Rastrear los dependientes</emph>"
-#. 4fQ-
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1534,7 +1380,6 @@ msgctxt ""
msgid "Shift+F5"
msgstr "Tecla (Mayús)(F5)"
-#. N@yh
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1544,7 +1389,6 @@ msgctxt ""
msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
msgstr "<variable id=\"exdszne\">Menú <emph>Herramientas</emph> - <emph>Detective - Eliminar rastro a dependientes</emph></variable>"
-#. 4[c@
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1554,7 +1398,6 @@ msgctxt ""
msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
msgstr "<variable id=\"exdase\">Menú <emph>Herramientas</emph> - <emph>Detective - Eliminar todos los rastros</emph></variable>"
-#. Wa9S
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1564,7 +1407,6 @@ msgctxt ""
msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
msgstr "<variable id=\"exdszfe\">Menú <emph>Herramientas</emph> - <emph>Detective - Rastrear error</emph></variable>"
-#. SEF:
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1574,7 +1416,6 @@ msgctxt ""
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
msgstr "<variable id=\"fuellmodus\">Menú <emph>Herramientas - Detective - Modo de relleno</emph></variable>"
-#. EY1M
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1584,7 +1425,6 @@ msgctxt ""
msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
msgstr "<variable id=\"dateneinkreisen\">Menú <emph>Herramientas - Detective - Marcar datos incorrectos</emph></variable>"
-#. NW5)
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1594,7 +1434,6 @@ msgctxt ""
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
msgstr "<variable id=\"spurenaktualisieren\">Menú <emph>Herramientas - Detective - Actualizar rastros</emph></variable>"
-#. 4B=D
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1604,7 +1443,6 @@ msgctxt ""
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
msgstr "<variable id=\"automatisch\">Menú <emph>Herramientas - Detective - Actualizar automáticamente</emph></variable>"
-#. zS5z
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1614,7 +1452,6 @@ msgctxt ""
msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
msgstr "<variable id=\"exzws\">Menú <emph>Herramientas - Buscar valor destino</emph></variable>"
-#. 9dak
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1623,7 +1460,6 @@ msgctxt ""
msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
msgstr "<variable id=\"solver\">Escoja Herramientas - Solver</variable>"
-#. 00qI
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1632,7 +1468,6 @@ msgctxt ""
msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
msgstr "<variable id=\"solver_options\">Herramientas - Solver - Opciones</variable>"
-#. Kg56
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1642,7 +1477,6 @@ msgctxt ""
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
msgstr "<variable id=\"exsze\">Menú <emph>Herramientas - Escenarios</emph></variable>"
-#. *[le
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1652,7 +1486,6 @@ msgctxt ""
msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
msgstr "<variable id=\"exdos\">Menú <emph>Herramientas - Proteger documento</emph></variable>"
-#. T#lL
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1662,7 +1495,6 @@ msgctxt ""
msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
msgstr "<variable id=\"exdst\">Menú <emph>Herramientas - Proteger documento - Hoja de cálculo</emph></variable>"
-#. GM$X
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1672,7 +1504,6 @@ msgctxt ""
msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
msgstr "<variable id=\"exdsd\">Menú <emph>Herramientas - Proteger documento - Documento</emph></variable>"
-#. ,J^R
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1682,7 +1513,6 @@ msgctxt ""
msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
msgstr "<variable id=\"zellinhalte\">Menú <emph>Herramientas - Contenidos de celdas</emph></variable>"
-#. O57m
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1692,7 +1522,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
msgstr "Menú <emph>Herramientas - Contenidos de celdas - Recalcular</emph>"
-#. y]eB
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1702,7 +1531,6 @@ msgctxt ""
msgid "F9"
msgstr "Tecla (F9)"
-#. *I5/
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1712,7 +1540,6 @@ msgctxt ""
msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
msgstr "<variable id=\"exatmb\">Menú <emph>Herramientas - Contenidos de celdas - Cálculo automático</emph></variable>"
-#. .Uai
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1722,7 +1549,6 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr "<variable id=\"autoeingabe\">Menú <emph>Herramientas - Contenidos de celdas - Entrada automática</emph></variable>"
-#. c15k
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1731,7 +1557,6 @@ msgctxt ""
msgid "To access this function..."
msgstr "Para acceder a esta función..."
-#. Ya[K
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1741,7 +1566,6 @@ msgctxt ""
msgid "<variable id=\"wie\">To access this function... </variable>"
msgstr "<variable id=\"wie\">Para acceder a este función...</variable>"
-#. CTE7
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1750,7 +1574,6 @@ msgctxt ""
msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
msgstr "<variable id=\"moreontop\">Más información al principio de la página. </variable>"
-#. u\5L
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1759,7 +1582,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\">En las funciones de %PRODUCTNAME Calc, los parámetros marcados como \"opcionales\" se pueden omitir únicamente si no les sigue ningún parámetro. Por ejemplo, en una función que tiene cuatro parámetros cuyos dos últimos están marcados como \"opcionales\", se puede omitir el parámetro 4 o los parámetros 3 y 4; sin embargo, no se puede omitir solamente el parámetro 3. </variable>"
-#. nhr%
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1768,7 +1590,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\">Códigos superiores a 127 pueden depender del mapa de caracteres de su sistema (por ejemplo ISO-8859-1, ISO-8859-2, Windows-1252, Windows-1250), y pueden no ser portables.</variable>"
-#. qn-9
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1777,7 +1598,6 @@ msgctxt ""
msgid "Edit Menu"
msgstr "Menú Editar"
-#. Dm:%
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1787,7 +1607,6 @@ msgctxt ""
msgid "Edit Menu"
msgstr "Menú Editar"
-#. bMB1
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1797,7 +1616,6 @@ msgctxt ""
msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
msgstr "<variable id=\"kopffuss\">Menú <emph>Editar - Encabezamientos y pies de página</emph></variable>"
-#. DT_R
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1807,7 +1625,6 @@ msgctxt ""
msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
msgstr "<variable id=\"bkopfzeile\">Seleccione las pestañas<emph>Editar - Encabezamientos y pies de página - Encabezamiento/Pie de página</emph></variable>"
-#. loXu
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1817,7 +1634,6 @@ msgctxt ""
msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
msgstr "<variable id=\"bausfullen\">Elija <emph>Editar - Rellenar</emph></variable>"
-#. `/-d
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1827,7 +1643,6 @@ msgctxt ""
msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
msgstr "<variable id=\"bausunten\">Elija <emph>Editar - Rellenar - Abajo</emph></variable>"
-#. a_6Q
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1837,7 +1652,6 @@ msgctxt ""
msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
msgstr "<variable id=\"bausrechts\">Elija <emph>Editar - Rellenar - Derecha</emph></variable>"
-#. Kyj.
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1847,7 +1661,6 @@ msgctxt ""
msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
msgstr "<variable id=\"bausoben\">Elija <emph>Editar - Rellenar - Arriba</emph></variable>"
-#. d3DK
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1857,7 +1670,6 @@ msgctxt ""
msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
msgstr "<variable id=\"bauslinks\">Elija <emph>Editar - Rellenar - Izquierda</emph></variable>"
-#. V,qL
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1867,7 +1679,6 @@ msgctxt ""
msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
msgstr "<variable id=\"baustab\">Elija <emph>Editar - Rellenar - Hoja de cálculo</emph></variable>"
-#. j,uR
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1877,7 +1688,6 @@ msgctxt ""
msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
msgstr "<variable id=\"bausreihe\">Elija <emph>Editar - Rellenar - Serie</emph></variable>"
-#. F}HZ
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1887,7 +1697,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Delete Contents</emph>"
msgstr "Elija <emph>Editar - Eliminar contenidos</emph>"
-#. 2f]Y
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1897,7 +1706,6 @@ msgctxt ""
msgid "Backspace"
msgstr "Retroceso"
-#. vYP%
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1907,7 +1715,6 @@ msgctxt ""
msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
msgstr "<variable id=\"bzelo\">Elija <emph>Editar - Eliminar celdas</emph></variable>"
-#. WA]R
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1917,7 +1724,6 @@ msgctxt ""
msgid "Choose <emph>Edit – Sheet - Delete</emph>"
msgstr "Elija <emph>Editar - Hojas - Eliminar</emph>"
-#. tRoj
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1927,7 +1733,6 @@ msgctxt ""
msgid "Open context menu for a sheet tab"
msgstr "Abra el menú contextual para una pestaña de la hoja"
-#. qh1b
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1937,7 +1742,6 @@ msgctxt ""
msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
msgstr "Elija <emph>Editar - Hojas - Mover/Copiar</emph>"
-#. (K;T
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1947,7 +1751,6 @@ msgctxt ""
msgid "Open context menu for a sheet tab"
msgstr "Abra el menú contextual de las pestañas de la hoja de cálculo"
-#. 78Ae
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1957,7 +1760,6 @@ msgctxt ""
msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
msgstr "<variable id=\"bmaumloe\">Elija <emph>Editar - Eliminar salto manual</emph></variable>"
-#. }VH9
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1967,7 +1769,6 @@ msgctxt ""
msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
msgstr "<variable id=\"bzeilum\">Elija <emph>Editar - Eliminar salto manual - Salto de fila</emph></variable>"
-#. 6ae`
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 60d7fe00c6e..00885290dc8 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2012-08-07 09:14+0200\n"
"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. QYJU
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Link to External Data"
msgstr "Vínculo a datos externos"
-#. 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\">Localice el archivo que contiene los datos que desee insertar.</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=\"Datos externos\">Vínculo a datos externos</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\">Inserta datos de un archivo HTML, Calc o Excel en la hoja actual como vínculo. Los datos deben estar en un área con nombre.</ahelp>"
-#. =859
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "URL of external data source."
msgstr "URL de la fuente de datos eterna."
-#. 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\">Introduzca el URL o el nombre del archivo que contiene los datos que desea insertar, a continuación, pulse la tecla \"Entrar\".</ahelp>"
-#. )R`2
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Available tables/ranges"
msgstr "Hojas/Áreas disponibles"
-#. 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\">Seleccione la tabla o el área de datos que desee insertar.</ahelp>"
-#. laKi
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Update every"
msgstr "Actualizar cada"
-#. 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\">Escriba el número de segundos que se debe esperar antes de recargar los datos externos en el documento actual.</ahelp>"
-#. C6?=
#: func_minute.xhp
#, fuzzy
msgctxt ""
@@ -124,7 +113,6 @@ msgctxt ""
msgid "MINUTE"
msgstr "MINUTO"
-#. -^KR
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "<bookmark_value>MINUTE function</bookmark_value>"
msgstr "<bookmark_value>MINUTO</bookmark_value>"
-#. ~mNL
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTO</link></variable>"
-#. [l#*
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">Calcula el minuto que corresponde a un valor de tiempo interno.</ahelp> El minuto es devuelto como un número entre 0 y 59."
-#. Mcxu
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. (eMS
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "MINUTE(Number)"
msgstr "MINUTO(Número)"
-#. =;Sc
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el número de minutos."
-#. mb:f
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Examples"
msgstr "Ejemplos"
-#. p:bx
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
msgstr "<item type=\"input\">=MINUTO(8.999)</item> devuelve 58"
-#. dy#.
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
msgstr "<item type=\"input\">=MINUTO(8.9999)</item> devuelve 59"
-#. ]KX1
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
msgstr "<item type=\"input\">=MINUTO(AHORA())</item> devuelve el valor del minuto actual."
-#. rV:w
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -232,7 +210,6 @@ msgctxt ""
msgid "Page Preview"
msgstr "Vista previa"
-#. 5l=F
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -241,7 +218,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
msgstr "<link href=\"text/scalc/01/01120000.xhp\">Vista previa</link>"
-#. Hak7
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
msgstr "<ahelp hid=\".uno:PrintPreview\">Muestra una previsualización de la hoja impresa o cierra la misma.</ahelp>"
-#. =XAh
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -259,7 +234,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 "Use los iconos en la <emph>barra de vista previa</emph> para mostrar las páginas del documento o para imprimir el documento."
-#. }DY5
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -268,7 +242,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"
@@ -277,7 +250,6 @@ msgctxt ""
msgid "You cannot edit your document while you are in the page preview."
msgstr "No podrá editar el documento mientras este en una vista previa."
-#. k(Sy
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -286,7 +258,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\">Para salir de la vista previa, haga clic en el botón de <emph>Cerrar vista preliminar</emph>.</ahelp>"
-#. e$RS
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -295,7 +266,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=\"Barra de objetos de vista previa\">Barra de objetos de vista previa</link>"
-#. 39Th
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -304,7 +274,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. _oe!
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -313,7 +282,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>ordenamiento; opciones para intervalos de bases de datos</bookmark_value><bookmark_value>ordenamiento; idiomas asiáticos</bookmark_value><bookmark_value>Idiomas asiáticos;ordenamiento</bookmark_value><bookmark_value>reglas de ordenamiento de agenda telefónica</bookmark_value><bookmark_value>algoritmo de ordenamiento natural</bookmark_value>"
-#. 8gK}
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -323,7 +291,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Opciones\">Opciones</link>"
-#. cm2V
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -333,7 +300,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
msgstr "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Establece opciones de ordenación adicionales.</ahelp>"
-#. Yd(:
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -343,7 +309,6 @@ msgctxt ""
msgid "Case Sensitivity"
msgstr "Distinción entre mayúsculas y minúsculas"
-#. G^pd
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -353,7 +318,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\">Ordena alfabéticamente, primero las mayúsculas y, luego, las minúsculas. Los idiomas asiáticos se rigen por criterios especiales.</ahelp>"
-#. **Qs
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -362,7 +326,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 "Nota para los idiomas asiáticos: Marque <emph>Mayúsculas/minúsculas</emph> para aplicar intercalación en varios niveles. En la intercalación en varios niveles, en primer lugar las entradas se comparan en sus formas originales con las mayúsculas y minúsculas, y se omiten los signos diacríticos. Si se consideran iguales, los signos diacríticos se tienen en cuenta en la comparación de segundo nivel. Si las formas siguen siendo idénticas, se tienen en cuenta mayúsculas y minúsculas, el ancho de los caracteres y las diferencias de los caracteres kana japoneses en la comparación de tercer nivel."
-#. _,YN
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Range contains column/row labels"
msgstr "El rango contiene etiquetas de columna/fila"
-#. lyff
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -382,7 +344,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\"> Omite de la operación de ordenación la primera fila o la primera columna de la selección.</ahelp> La opción <emph>Dirección</emph> situada en la parte inferior del diálogo define el nombre y la función de esta casilla de verificación."
-#. !/$e
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -393,7 +354,6 @@ msgctxt ""
msgid "Include formats"
msgstr "Incluir formatos"
-#. ,Dqn
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -403,7 +363,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\"> Conserva el formato actual de las celdas.</ahelp>"
-#. }49$
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -412,7 +371,6 @@ msgctxt ""
msgid "Enable natural sort"
msgstr ""
-#. rE(#
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -421,7 +379,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_NATURALSORT\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
msgstr ""
-#. x2`R
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -431,7 +388,6 @@ msgctxt ""
msgid "Copy sort results to:"
msgstr "Copiar resultados de clasificación en:"
-#. ?;^Z
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -441,7 +397,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\"> Copia la lista ordenada en el rango de celdas especificado.</ahelp>"
-#. R^:,
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -451,7 +406,6 @@ msgctxt ""
msgid "Sort results"
msgstr "Resultados de clasificación"
-#. :AAm
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -461,7 +415,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\">Seleccione un <link href=\"text/scalc/01/12010000.xhp\" name=\"rango de celdas\">rango de celdas</link> con nombre para mostrar la lista ordenada, o especifique un rango de celdas en el cuadro de entrada.</ahelp>"
-#. w!C(
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -471,7 +424,6 @@ msgctxt ""
msgid "Sort results"
msgstr "Resultados de clasificación"
-#. O-ia
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -481,7 +433,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\"> Especifique el rango de celdas en el que desee mostrar la lista ordenada o seleccione un rango con nombre de la lista.</ahelp>"
-#. zyZB
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -491,7 +442,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "Orden de clasificación definido por el usuario"
-#. Gx/-
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -501,7 +451,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\"> Haga clic aquí y seleccione el orden de clasificación personalizado que desee.</ahelp>"
-#. Gt1J
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -511,7 +460,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "Orden de clasificación definido por el usuario"
-#. 3FT%
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -521,7 +469,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\"> Puede seleccionarse el criterio de ordenamiento personalizado que se desea aplicar. Para definir un criterio de ordenamiento personalizado, elija <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Listas ordenadas\">%PRODUCTNAME Calc - Listas ordenadas</link> .</ahelp>"
-#. -.fx
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -531,7 +478,6 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. n*y+
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -541,7 +487,6 @@ msgctxt ""
msgid "Language"
msgstr "Idioma"
-#. 85/q
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -551,7 +496,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\"> Seleccione el idioma de las reglas de clasificación.</ahelp>"
-#. .F;_
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -562,7 +506,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. :r?_
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -572,7 +515,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\"> Seleccione una opción de ordenación para el idioma.</ahelp> Por ejemplo, seleccione la opción \"listín telefónico\" para el idioma alemán si desea incluir el carácter especial umlaut para la ordenación alfabética."
-#. =viP
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -583,7 +525,6 @@ msgctxt ""
msgid "Direction"
msgstr "Dirección"
-#. dP))
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -593,7 +534,6 @@ msgctxt ""
msgid "Top to Bottom (Sort Rows)"
msgstr "De arriba abajo (Ordenar filas)"
-#. BeT/
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -603,7 +543,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\"> Ordena las filas según los valores en las columnas activas del rango seleccionado.</ahelp>"
-#. asPV
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -613,7 +552,6 @@ msgctxt ""
msgid "Left to Right (Sort Columns)"
msgstr "De izquierda a derecha (Ordenar columnas)"
-#. l#*i
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -623,7 +561,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\"> Ordena las columnas según los valores en las filas activas del rango seleccionado.</ahelp>"
-#. -6JV
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -634,7 +571,6 @@ msgctxt ""
msgid "Data area"
msgstr "Área de datos"
-#. kJBY
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -644,7 +580,6 @@ msgctxt ""
msgid "Displays the cell range that you want to sort."
msgstr "Muestra el rango de celdas que se desea ordenar."
-#. Db]B
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -653,7 +588,6 @@ msgctxt ""
msgid "Refresh Range"
msgstr "Actualizar área"
-#. !^_S
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -662,7 +596,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
msgstr "<bookmark_value>áreas de base de datos;actualizar</bookmark_value>"
-#. n?E@
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -672,7 +605,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=\"Actualizar área\">Actualizar área</link>"
-#. !I(f
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -682,7 +614,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\">Actualiza un área de datos insertada desde una base de datos externa. Los datos de la hoja se actualizan de forma que coincidan con los de la base de datos externa.</ahelp></variable>"
-#. Sm(4
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -691,7 +622,6 @@ msgctxt ""
msgid "Hide AutoFilter"
msgstr "Ocultar Filtro automático"
-#. [\!H
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -700,7 +630,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
msgstr "<bookmark_value>áreas de bases de datos;ocultar Filtro automático</bookmark_value>"
-#. dm*/
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -710,7 +639,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=\"Ocultar AutoFiltro\">Ocultar AutoFiltro</link>"
-#. n;QZ
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -720,7 +648,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\">Oculta los botones del Filtro automático en el área seleccionada.</ahelp>"
-#. noNP
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -729,7 +656,6 @@ msgctxt ""
msgid "Insert Sheet"
msgstr "Insertar hoja"
-#. GCi5
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -738,7 +664,6 @@ msgctxt ""
msgid "<bookmark_value>sheets;creating</bookmark_value>"
msgstr "<bookmark_value>Hojas; creación</bookmark_value>"
-#. 6YO[
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -748,7 +673,6 @@ msgctxt ""
msgid "Insert Sheet"
msgstr "Insertar hoja"
-#. 5Ro*
#: 04050000.xhp
#, fuzzy
msgctxt ""
@@ -759,7 +683,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\">Defina las opciones de uso para insertar una nueva hoja.</ahelp> Puede crear una nueva hoja, o insertar una hoja existente desde un archivo. </variable>"
-#. !/:r
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -769,7 +692,6 @@ msgctxt ""
msgid "Position"
msgstr "Posición"
-#. |YCT
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -779,7 +701,6 @@ msgctxt ""
msgid "Specifies where the new sheet is to be inserted into your document."
msgstr "Especifica dónde se insertará la hoja nueva dentro del documento."
-#. WNB6
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -789,7 +710,6 @@ msgctxt ""
msgid "Before current sheet"
msgstr "Delante de la hoja actual"
-#. `E8X
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -799,7 +719,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\">Inserta una hoja nueva justo antes de la hoja actual.</ahelp>"
-#. rZoI
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -809,7 +728,6 @@ msgctxt ""
msgid "After current sheet"
msgstr "Detrás de la hoja actual"
-#. xsa;
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -819,7 +737,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\">Inserta una hoja nueva justo después de la hoja actual.</ahelp>"
-#. L??V
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -829,7 +746,6 @@ msgctxt ""
msgid "Sheet"
msgstr "Hoja"
-#. D;3$
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -839,7 +755,6 @@ msgctxt ""
msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
msgstr "Especifica si se insertará en el documento una hoja nueva o una hoja ya existente."
-#. r;U+
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -849,7 +764,6 @@ msgctxt ""
msgid "New sheet"
msgstr "Nueva hoja"
-#. r%y,
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -859,7 +773,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\">Crea una hoja. En el campo <emph>Nombre</emph>, asigne un nombre a la hoja. Se permiten los caracteres alfabéticos, numéricos, los espacios y el carácter de subrayado. </ahelp>"
-#. N6U[
#: 04050000.xhp
#, fuzzy
msgctxt ""
@@ -870,7 +783,6 @@ msgctxt ""
msgid "No. of sheets"
msgstr "Núm. de hojas"
-#. #4rf
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -880,7 +792,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\">Especifica el número de hojas que se deben crear.</ahelp>"
-#. KWT_
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -890,7 +801,6 @@ msgctxt ""
msgid "Name"
msgstr "Nombre"
-#. VA@l
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -900,7 +810,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\">Especifica el nombre de la nueva hoja.</ahelp>"
-#. bJR-
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -910,7 +819,6 @@ msgctxt ""
msgid "From File"
msgstr "A partir de archivo"
-#. .YdN
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -920,7 +828,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\">Inserta una hoja de un archivo en el documento activo.</ahelp>"
-#. _4dL
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -930,7 +837,6 @@ msgctxt ""
msgid "Browse"
msgstr "Examinar"
-#. XhN2
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -940,7 +846,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\">Abre un diálogo para la selección de un archivo.</ahelp>"
-#. jR:5
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -950,7 +855,6 @@ msgctxt ""
msgid "Available Sheets"
msgstr "Hojas disponibles"
-#. f#6`
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -960,7 +864,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\">Si ha seleccionado un archivo utilizando el botón <emph>Examinar</emph>, las hojas que contenga se mostrarán en la lista. La ruta del archivo se mostrará debajo de la lista. Seleccione en la lista la hoja que desea insertar.</ahelp>"
-#. .wP]
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -970,7 +873,6 @@ msgctxt ""
msgid "Link"
msgstr "Vínculo"
-#. *#Hu
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -980,7 +882,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\">Seleccione para insertar la hoja como vínculo en lugar de como copia. Los vínculos se pueden actualizar para que muestren el contenido nuevo.</ahelp>"
-#. +?HC
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -989,7 +890,6 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "Proteger hoja"
-#. Inp6
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -999,7 +899,6 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "Proteger tabla"
-#. fTi?
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1009,7 +908,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\">Protege las celdas de la hoja actual contra posibles modificaciones.</ahelp></variable> Elija <emph>Herramientas - Proteger documento - Hoja de cálculo</emph> para abrir el diálogo <emph>Proteger hoja</emph>, que permite especificar la protección de la hoja con o sin contraseña."
-#. Ad^k
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1019,7 +917,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 "Para proteger celdas contra modificaciones deberá seleccionar la opción <emph>Protegido</emph> en la pestaña <link href=\"text/scalc/01/05020600.xhp\" name=\"Formato - Celda - Protección de celda\"><emph>Formato - Celda - Protección de celda</emph></link> o en el menú contextual <emph>Formatear celdas</emph>."
-#. tka+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1029,7 +926,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 "Se pueden definir celdas o áreas de celdas no protegidas en una hoja protegida mediante los menús <emph>Herramientas - Proteger documento - Hoja</emph> y <emph>Formato - Celdas - Protección de celda</emph>:"
-#. !#5\
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1039,7 +935,6 @@ msgctxt ""
msgid "Select the cells that will be unprotected"
msgstr "Seleccione las celdas que deban desprotegerse"
-#. a]fW
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1049,7 +944,6 @@ msgctxt ""
msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
msgstr "Seleccione <emph>Formato - Celda - Protección de celda</emph>. Deseleccione la casilla de verificación <emph>Protegido</emph> y pulse <emph>Aceptar</emph>."
-#. SH5b
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1059,7 +953,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 "Active la protección de la hoja en el menú <emph>Herramientas - Proteger documento - Hoja de cálculo</emph>. De forma inmediata, únicamente podrá editar el área seleccionada en el paso 1."
-#. BDHR
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1069,7 +962,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 "Para convertir un área de celdas no protegida en un área protegida, selecciónela. A continuación seleccione la casilla de verificación <emph>Protegido</emph> de la pestaña <emph>Formato - Celda - Protección de celda</emph>. Para terminar, abra el menú <emph>Herramientas - Proteger documento - Hoja de cálculo</emph>. El área que anteriormente podía editarse está ahora protegida."
-#. Zl~3
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1079,7 +971,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 "La protección de la hoja afecta también al menú contextual de las pestañas de hoja situadas en la parte inferior de la pantalla. No es posible seleccionar los comandos <emph>Borrar</emph> y <emph>Renombrar</emph>."
-#. 8dZ\
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1089,7 +980,6 @@ msgctxt ""
msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
msgstr "Si una hoja está protegida, no es posible modificar ni borrar los estilos de celda."
-#. Y|5:
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1099,7 +989,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 "Una hoja o un área protegidas no pueden modificarse mientras no se desactive la protección. Para desactivar la protección, elija la orden <emph>Herramientas - Proteger documento - Hoja de cálculo</emph>. Si no se ha definido una contraseña, la protección de la hoja de cálculo se desactiva de forma inmediata. Si la hoja está protegida con una contraseña se abre el diálogo <emph>Desproteger hoja</emph>, en el que se debe escribir la contraseña."
-#. a3|+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1109,7 +998,6 @@ msgctxt ""
msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
msgstr "Una vez guardada una hoja protegida, se debe utilizar la orden <emph>Archivo - Guardar como</emph> para volverla a guardar."
-#. FYEm
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1119,7 +1007,6 @@ msgctxt ""
msgid "Password (optional)"
msgstr "Contraseña (opcional)"
-#. /%d+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1129,7 +1016,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\">Permite escribir una contraseña para proteger la hoja contra cambios no autorizados.</ahelp>"
-#. )n/C
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1139,7 +1025,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 "Se puede proteger totalmente el trabajo mediante la combinación de ambas opciones en el menú <emph>Herramientas - Proteger documento</emph>, incluida la protección mediante contraseña. Para impedir totalmente que se abra el documento, seleccione la casilla de verificación <emph>Guardar con contraseña</emph> en el diálogo <emph>Guardar como</emph> antes de pulsar el botón <emph>Guardar</emph>."
-#. -JE8
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1148,7 +1033,6 @@ msgctxt ""
msgid "Trace Dependents"
msgstr "Rastrear los dependientes"
-#. npdN
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1157,7 +1041,6 @@ msgctxt ""
msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
msgstr "<bookmark_value>celdas;rastrear los dependientes</bookmark_value>"
-#. #c4v
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1167,7 +1050,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=\"Rastrear los dependientes\">Rastrear los dependientes</link>"
-#. ]SS,
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1177,7 +1059,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\">Genera unas líneas terminadas en flechas que conectan la celda actual con las celdas de fórmula que utilizan el valor de la celda actual.</ahelp>"
-#. /7n]
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1187,7 +1068,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 "El área de todas las celdas que se utilizan junto con la celda activa en una fórmula queda resaltada con un marco azul."
-#. e^:o
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1197,7 +1077,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 "Esta función opera por niveles. Por ejemplo, si ya se ha activado un nivel de rastreo para mostrar los precedentes (o dependientes), al volver a activar la función <emph>Rastrear</emph>."
-#. `%/w
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1206,7 +1085,6 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "Operaciones múltiples"
-#. noO9
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1216,7 +1094,6 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "Operaciones múltiples"
-#. fccg
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1226,7 +1103,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\">Aplica la misma fórmula a distintas celdas, pero con diferentes valores de los parámetros .</ahelp></variable>"
-#. p+Z2
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1236,7 +1112,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 "Los cuadros <emph>Fila</emph> o <emph>Columna</emph> deben contener una referencia a la primera celda del área seleccionada."
-#. }fjc
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1246,7 +1121,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 "Si exporta una hoja de cálculo que contenga operaciones múltiples a Microsoft Excel, la ubicación de las celdas que contienen la fórmula debe estar totalmente definida de forma relativa al área de datos."
-#. 3\*@
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1256,7 +1130,6 @@ msgctxt ""
msgid "Defaults"
msgstr "Valores predeterminados"
-#. p]Z^
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1266,7 +1139,6 @@ msgctxt ""
msgid "Formulas"
msgstr "Fórmulas"
-#. W*q;
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1276,7 +1148,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\"> Ingresa las referencias de las celdas para que las celdas contengan fórmulas que quiera usar en operaciones múltiples .</ahelp>"
-#. guHC
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1286,7 +1157,6 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. $~]p
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1296,7 +1166,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\">Ingresa la referencia a la celda de entrada que quiere usar como variable para las filas en la tabla de datos .</ahelp>"
-#. 3VcJ
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1306,7 +1175,6 @@ msgctxt ""
msgid "Column"
msgstr "Columna"
-#. I\8/
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1316,7 +1184,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\" visibility=\"visible\">Escriba la referencia de la celda de entrada que desee utilizar como variable para las columnas en la tabla de datos.</ahelp>"
-#. $S#A
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1325,7 +1192,6 @@ msgctxt ""
msgid "TODAY"
msgstr "HOY"
-#. wm5a
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1334,7 +1200,6 @@ msgctxt ""
msgid "<bookmark_value>TODAY function</bookmark_value>"
msgstr "<bookmark_value>HOY</bookmark_value>"
-#. 1DU2
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1344,7 +1209,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\">HOY</link></variable>"
-#. ]($[
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1354,7 +1218,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\">Devuelve la fecha actual del sistema.</ahelp> El valor se actualiza cuando se vuelve a abrir el documento o se modifican los valores de éste."
-#. Vt.A
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1364,7 +1227,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 1VYg
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1374,7 +1236,6 @@ msgctxt ""
msgid "TODAY()"
msgstr "HOY()"
-#. wPIN
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1384,7 +1245,6 @@ msgctxt ""
msgid "TODAY is a function without arguments."
msgstr "HOY es una función sin argumentos."
-#. ,$VW
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1394,7 +1254,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ~Rh-
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1404,7 +1263,6 @@ msgctxt ""
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr "<item type=\"input\">HOY()</item> devuelve la fecha actual del sistema operativo."
-#. wthR
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1413,7 +1271,6 @@ msgctxt ""
msgid "Financial Functions Part One"
msgstr "Funciones financieras, Parte Uno"
-#. 1\BA
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1422,7 +1279,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>funciones financieras</bookmark_value><bookmark_value>funciones;funciones financieras</bookmark_value><bookmark_value>Asistente para funciones;financieras</bookmark_value><bookmark_value>amortizaciones, véase también depreciaciones</bookmark_value>"
-#. I5ps
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1432,7 +1288,6 @@ msgctxt ""
msgid "Financial Functions Part One"
msgstr "Funciones financieras, primera parte"
-#. 7QG#
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1442,7 +1297,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\">Esta categoría contiene las funciones matemáticas de finanzas de <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
-#. @*+,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1451,7 +1305,6 @@ msgctxt ""
msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
msgstr "<bookmark_value>AMORTIZ.PROGRE</bookmark_value> <bookmark_value>depreciaciones;amortizaciones degresivas</bookmark_value>"
-#. r$G4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1461,7 +1314,6 @@ msgctxt ""
msgid "AMORDEGRC"
msgstr "AMORTIZ.PROGRE"
-#. Rr!o
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1471,7 +1323,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\">Calcula el importe de la depreciación en un período de liquidación en forma de amortización degresiva.</ahelp> A diferencia de AMORTIZ.LIN, en esta función se utiliza un coeficiente de depreciación independiente de la vida útil depreciable."
-#. OC55
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1481,7 +1332,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 8`l,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1491,7 +1341,6 @@ msgctxt ""
msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORTIZ.PROGRE(Costo; Fecha de compra; Primer período; Valor de salvamento; Período; Tasa; Base)"
-#. .\84
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1501,7 +1350,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the acquisition costs."
msgstr "<emph>Costo</emph> son los costos de adquisición."
-#. #uKI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1511,7 +1359,6 @@ msgctxt ""
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph>FechaDeCompra</emph> es la fecha de la adquisición."
-#. 1)vG
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1521,7 +1368,6 @@ msgctxt ""
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph>PrimerPeriodo </emph>es la fecha de vencimiento del primer periodo de liquidación."
-#. ^E-5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1531,7 +1377,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "<emph>Salvamento</emph> es el valor de salvamento del activo de capital al final de la vida de amortización."
-#. 1lBc
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1541,7 +1386,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "<emph>Periodo</emph> es el periodo de liquidación a considerar."
-#. zXhT
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1551,7 +1395,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph>Tasa</emph> es la tasa de amortización."
-#. ,5a4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1560,7 +1403,6 @@ msgctxt ""
msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
msgstr "<bookmark_value>AMORTIZ.LIN</bookmark_value> <bookmark_value>depreciaciones;amortizaciones lineales</bookmark_value>"
-#. =(RL
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1570,7 +1412,6 @@ msgctxt ""
msgid "AMORLINC"
msgstr "AMORTIZ.LIN"
-#. MW^S
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1580,7 +1421,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\">Calcula el importe de la depreciación en un período de liquidación en forma de amortización lineal. Si el activo fijo se adquiere durante el período de liquidación, se tiene en cuenta el importe proporcional de la depreciación.</ahelp>"
-#. :lQY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1590,7 +1430,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. `-8J
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1600,7 +1439,6 @@ msgctxt ""
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORTIZ.LIN(Costos; Fecha de compra; Primer periodo; Valor de salvamento; Periodo; Tasa; Base)"
-#. lXZF
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1610,7 +1448,6 @@ msgctxt ""
msgid "<emph>Cost</emph> means the acquisition costs."
msgstr "<emph>Costo</emph> significa el costo de adquisición."
-#. kl9m
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1620,7 +1457,6 @@ msgctxt ""
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph>FechaDeCompra</emph> es la fecha de la adquisición."
-#. cj,V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1630,7 +1466,6 @@ msgctxt ""
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph>PrimerPeriodo</emph> es la fecha de vencimiento del primer periodo de liquidación."
-#. \c85
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1640,7 +1475,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "<emph>Salvamento</emph> es el valor de salvamento del activo de capital al final de su vida de amortización."
-#. A~03
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1650,7 +1484,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "<emph>Periodo</emph> es el periodo de liquidación a considerar."
-#. 8gE+
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1660,7 +1493,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph>Tasa</emph> es la tasa de amortización."
-#. .w{T
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1669,7 +1501,6 @@ msgctxt ""
msgid "<bookmark_value>ACCRINT function</bookmark_value>"
msgstr "<bookmark_value>INT.ACUM</bookmark_value>"
-#. \$:(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1679,7 +1510,6 @@ msgctxt ""
msgid "ACCRINT"
msgstr "INT.ACUM"
-#. C:9A
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1688,7 +1518,6 @@ msgctxt ""
msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
msgstr "<bookmark_value>interés acumulado;pagos periódicos</bookmark_value>"
-#. xdh!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1698,7 +1527,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\">Calcula el interés acumulado de un valor en el caso de pagos periódicos de intereses.</ahelp>"
-#. xp-.
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1708,7 +1536,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. dc@f
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1718,7 +1545,6 @@ msgctxt ""
msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
msgstr "ACCRINT(Emisión; PrimerInterest; Liquidación; Tasa; ValorPar; Frecuencia; Bases)"
-#. 8\TV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1728,7 +1554,6 @@ msgctxt ""
msgid "<emph>Issue</emph> is the issue date of the security."
msgstr "<emph>Emisión</emph> es la fecha de emisión de la garantía."
-#. K1ay
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1738,7 +1563,6 @@ msgctxt ""
msgid "<emph>FirstInterest</emph> is the first interest date of the security."
msgstr "<emph>PrimerInterés</emph> es la fecha del primer interés de la garantía."
-#. n6hk
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1748,7 +1572,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
msgstr "<emph>Liquidación</emph> es la fecha en que se deben calcular los intereses devengados hasta ese momento"
-#. /pZV
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -1759,7 +1582,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph>Tasa</emph> es la tasa nominal anual de interés (tasa de interés del vale)"
-#. =ys1
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1769,7 +1591,6 @@ msgctxt ""
msgid "<emph>Par</emph> is the par value of the security."
msgstr "<emph>Nominal</emph> es el valor nominal de la garantía."
-#. gY.;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1779,7 +1600,6 @@ msgctxt ""
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frecuencia</emph> es la cantidad de pagos de interés al año (1, 2 o 4)."
-#. 0Ev`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1789,7 +1609,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. JpK?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1799,7 +1618,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 "Se emite un título el 28-02-2001. El primer interés se establece para el 31-08-2001. La fecha de liquidación es el 01-05-2001. El interés es del 0,1 % o del 10 %, y el valor nominal es de 1.000 unidades monetarias. El interés se paga semestralmente (la frecuencia es 2). La base es el método estadounidense (0). ¿Qué interés se ha acumulado?"
-#. :l*K
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1809,7 +1627,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 "<item type=\"input\">=INT.ACUM(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> devuelve 16,94444."
-#. G*JF
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1818,7 +1635,6 @@ msgctxt ""
msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
msgstr "<bookmark_value>INT.ACUM.V</bookmark_value> <bookmark_value>interés acumulado;pago único</bookmark_value>"
-#. N9.;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1828,7 +1644,6 @@ msgctxt ""
msgid "ACCRINTM"
msgstr "INT.ACUM.V"
-#. Na,;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1838,7 +1653,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\">Calcula el interés acumulado de un valor en el caso de un pago único en la fecha de liquidación.</ahelp>"
-#. ![r/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1848,7 +1662,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 2j\k
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1858,7 +1671,6 @@ msgctxt ""
msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
msgstr "INT.ACUM.V(Emisión; Liquidación; Tasa; Valor Nominal; Bases)"
-#. Q)\%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1868,7 +1680,6 @@ msgctxt ""
msgid "<emph>Issue</emph> is the issue date of the security."
msgstr "<emph>Emisión</emph> es la fecha de emisión de la garantía."
-#. Yog@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1878,7 +1689,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
msgstr "<emph>Liquidación</emph> es la fecha en que se deben calcular los intereses devengados hasta ese momento."
-#. u~1b
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1888,7 +1698,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
msgstr "<emph>Tasa</emph> es la tasa nominal anual de interés (tasa de interés del vale)."
-#. `?X8
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1898,7 +1707,6 @@ msgctxt ""
msgid "<emph>Par</emph> is the par value of the security."
msgstr "<emph>Nominal</emph> es el valor nominal de la garantía."
-#. c8[,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1908,7 +1716,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Z2!`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1918,7 +1725,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 "Se emite un título el 01-04-2001. La fecha de vencimiento se establece para el 15-06-2001. El interés es del 0,1 % o 10 % y el valor nominal es de 1.000 unidades monetarias. La base del cálculo diario /anual es el cálculo diario (3). ¿Qué interés se ha acumulado?"
-#. gf!~
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1928,7 +1734,6 @@ msgctxt ""
msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
msgstr "<item type=\"input\">=INT.ACUM.V(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> devuelve 20,54795."
-#. X}ik
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1937,7 +1742,6 @@ msgctxt ""
msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
msgstr "<bookmark_value>función CANTIDAD.RECIBIDA</bookmark_value><bookmark_value>monto recibida por títulos a interés fijo</bookmark_value>"
-#. 7*4!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1947,7 +1751,6 @@ msgctxt ""
msgid "RECEIVED"
msgstr "CANTIDAD.RECIBIDA"
-#. 1b\Q
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1957,7 +1760,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\">Calcula la cantidad recibida que se paga por un valor a interés fijo en un momento determinado.</ahelp>"
-#. e4V{
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1967,7 +1769,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. $q15
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1977,7 +1778,6 @@ msgctxt ""
msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgstr "CANTIDAD.RECIBIDA(\"Liquidación\"; \"Vencimiento\"; Inversión; Descuenta; Bases)"
-#. ~A_l
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1987,7 +1787,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Liquidación</emph> es la fecha de compra de la garantía."
-#. GNI-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1997,7 +1796,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Vencimiento</emph> es la fecha cuando la garantía vence (expira)."
-#. YzM,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2007,7 +1805,6 @@ msgctxt ""
msgid "<emph>Investment</emph> is the purchase sum."
msgstr "<emph>Inversión</emph> es el valor de la compra."
-#. 2J_U
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2018,7 +1815,6 @@ msgctxt ""
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr "<emph>Descuento</emph> es el porcentaje de descuento en la adquisición de la garantía."
-#. ;$Yn
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2028,7 +1824,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 6rFu
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2038,7 +1833,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 "Fecha de liquidación: 15 de febrero de 1999, fecha de vencimiento: 15 de mayo de 1999, cantidad de inversión: 1000 unidades monetarias, Tasa de descuento: 5,75 por ciento, Bases: Balance_diario/360 = 2."
-#. 3Xk6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2048,7 +1842,6 @@ msgctxt ""
msgid "The amount received on the maturity date is calculated as follows:"
msgstr "La cantidad de liquidación en la fecha de vencimiento se calcula de esta forma:"
-#. (E2#
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2058,7 +1851,6 @@ msgctxt ""
msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
msgstr "<item type=\"input\">=CANTIDAD.RECIBIDA (\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> devuelve 1.014,420266."
-#. 5mI*
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2067,7 +1859,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>función VA</bookmark_value><bookmark_value>valores actuales</bookmark_value><bookmark_value>calcular;valores actuales</bookmark_value>"
-#. m`g)
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2077,7 +1868,6 @@ msgctxt ""
msgid "PV"
msgstr "VA"
-#. {vFT
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2087,7 +1877,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\">Calcula el valor efectivo resultante de una inversión fruto de una serie de pagos regulares.</ahelp>"
-#. %6(t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2097,7 +1886,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 "Utilice esta función para calcular la suma de dinero que debe invertir hoy a un interés fijo para recibir pagos regulares (anualidades) durante un determinado número de períodos. Opcionalmente, también es posible definir el importe que debe quedar disponible al final de estos períodos. Se puede especificar también si el importe que debe satisfacerse se abona respectivamente al inicio o al final de un período."
-#. %]V(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2107,7 +1895,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 "Indique los valores en forma de números, expresiones o referencias. Si, por ejemplo, percibe intereses anuales del 8% pero desea definir como período el mes, introduzca 8%/12 en el campo <emph>Tasa</emph> y <item type=\"productname\">%PRODUCTNAME</item> Calc calcula automáticamente el factor correcto."
-#. d;8V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2117,7 +1904,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. GOZ\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2127,7 +1913,6 @@ msgctxt ""
msgid "PV(Rate; NPer; Pmt; FV; Type)"
msgstr "VA(tASA; NPer; Cuota Fija; Valor Futuro; Tipo)"
-#. T`]H
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2137,7 +1922,6 @@ msgctxt ""
msgid "<emph>Rate</emph> defines the interest rate per period."
msgstr "<emph>Tasa</emph> es la tasa de interés por período."
-#. -J_A
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2148,7 +1932,6 @@ msgctxt ""
msgid "<emph>NPer</emph> is the total number of periods (payment period)."
msgstr "<emph>NPer</emph> es la cantidad total de periodos de pagos (periodo de pago)."
-#. T[z]
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2158,7 +1941,6 @@ msgctxt ""
msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr "<emph>Pago</emph> es el pago regular realizado en cada periodo."
-#. F\``
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2168,7 +1950,6 @@ msgctxt ""
msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
msgstr "<emph>VF</emph> (opcional) define el valor futuro que queda tras el pago de la última cuota."
-#. KvVY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2178,7 +1959,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 "<emph>Tipo</emph> (opcional) es la fecha de vencimiento para los pagos. Tipo = 1 significa que el vencimiento tiene lugar al inicio del período, mientras que Tipo = 0 (el valor predeterminado) indica que el vencimiento se produce al final del período."
-#. a$95
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2187,7 +1967,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"
@@ -2197,7 +1976,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. )t#a
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2207,7 +1985,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 "¿Cuál es el valor efectivo de una inversión si se abonan 500 unidades monetarias al mes y el tipo de interés anual es del 8%? Siendo el período de pago de 48 meses y el valor final 20.000 unidades monetarias:"
-#. kcoo
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2217,7 +1994,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\">=VA(8%/12;48;500;20000)</item> = -35.019,37 unidades monetarias. En las condiciones especificadas, se tienen que depositar 35,019.37 unidades monetarias el día de hoy, si se desea recibir 500 unidades monetarias mensualmente por 48 meses, quedando 20.000 unidades pendientes al final. La verificación cruzada indica que 48 x 500 unidades monetarias + 20.000 unidades monetarias = 44.000 unidades monetarias. La diferencia entre este monto y las 35.000 unidades depositadas representa el interés pagado."
-#. fk1I
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2227,7 +2003,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 "Si en lugar de introducir valores directamente lo hace en forma de referencia en la fórmula, puede efectuar cálculos estimativos del tipo \"Qué pasaría si...\" Recuerde definir las referencias a las constantes como referencias absolutas. En las funciones de amortización se encuentran ejemplos de este tipo de aplicación."
-#. Y1:q
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2236,7 +2011,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>calcular; depreciaciones</bookmark_value> <bookmark_value>SYD</bookmark_value> <bookmark_value>depreciaciones; degresión aritmética</bookmark_value> <bookmark_value>depreciaciones de aritmética decrecientes</bookmark_value>"
-#. EX64
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2246,7 +2020,6 @@ msgctxt ""
msgid "SYD"
msgstr "SYD"
-#. 0]jM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2256,7 +2029,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DIA\">Calcula la tasa de depreciación de aritmética decreciente.</ahelp>"
-#. N6FW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2266,7 +2038,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 "Utilice esta función para calcular el importe de amortización de un período determinado durante el período de amortización completo de un objeto. La amortización digital reduce el importe de amortización de un período a otro en un importe fijo."
-#. b$}d
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2276,7 +2047,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 2\#;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2286,7 +2056,6 @@ msgctxt ""
msgid "SYD(Cost; Salvage; Life; Period)"
msgstr "SYD(Costo; Valor de salvamento; Vida; Periodo)"
-#. G#8X
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2296,7 +2065,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph>Costo</emph> es el costo inicial de un activo."
-#. %pSx
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2306,7 +2074,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
msgstr "<emph>Salvamento</emph> es el valor de un activo tras la amortización."
-#. D~eo
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2316,7 +2083,6 @@ msgctxt ""
msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
msgstr "<emph>Vida</emph> es el periodo que fija el intervalo de tiempo durante el cual un activo se amortiza."
-#. \AJe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2326,7 +2092,6 @@ msgctxt ""
msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
msgstr "<emph>Período</emph> define el período para el que debe calcularse la amortización."
-#. A;KY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2336,7 +2101,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. `i_-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2346,7 +2110,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 "Un equipo de vídeo con un precio de compra de 50.000 unidades monetarias debe depreciarse anualmente durante 5 años. El valor de salvamento debe ser de 10.000 unidades monetarias. Determine la amortización correspondiente al primer año."
-#. lZ$N
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2356,7 +2119,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>=13.333,33 unidades monetarias. El monto de la amortización para el primer año es de 13.333,33 unidades monetarias."
-#. =c6%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2366,7 +2128,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 "Es recomendable definir una tabla de amortización para ver fácilmente todas las tasas de amortización por período. Si introduce una tras otra las diferentes fórmulas de cálculo de amortización de $[officename] Calc, se muestra también la forma de amortización más ventajosa en cada caso. Cree una tabla del modo siguiente:"
-#. rL)0
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2377,7 +2138,6 @@ msgctxt ""
msgid "<emph>A</emph>"
msgstr "<emph>A</emph>"
-#. GXc*
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2388,7 +2148,6 @@ msgctxt ""
msgid "<emph>B</emph>"
msgstr "<emph>B</emph>"
-#. 4$P,
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2399,7 +2158,6 @@ msgctxt ""
msgid "<emph>C</emph>"
msgstr "<emph>C</emph>"
-#. BQgN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2409,7 +2167,6 @@ msgctxt ""
msgid "<emph>D</emph>"
msgstr "<emph>D</emph>"
-#. @16!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2419,7 +2176,6 @@ msgctxt ""
msgid "<emph>E</emph>"
msgstr "<emph>E</emph>"
-#. rrCO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2429,7 +2185,6 @@ msgctxt ""
msgid "1"
msgstr "1"
-#. eB=4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2439,7 +2194,6 @@ msgctxt ""
msgid "<item type=\"input\">Initial Cost</item>"
msgstr "<item type=\"input\">Costo inicial</item>"
-#. !R-(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2449,7 +2203,6 @@ msgctxt ""
msgid "<item type=\"input\">Salvage Value</item>"
msgstr "<item type=\"input\">Valor de salvamento</item>"
-#. bLUQ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2459,7 +2212,6 @@ msgctxt ""
msgid "<item type=\"input\">Useful Life</item>"
msgstr "<item type=\"input\">Vida útil</item>"
-#. R@o-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2469,7 +2221,6 @@ msgctxt ""
msgid "<item type=\"input\">Time Period</item>"
msgstr "<item type=\"input\">Intervalo de tiempo</item>"
-#. ZD2_
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2479,7 +2230,6 @@ msgctxt ""
msgid "<item type=\"input\">Deprec. SYD</item>"
msgstr "<item type=\"input\">Amortiz. SYD</item>"
-#. /W^[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2489,7 +2239,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. ,G((
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2499,7 +2248,6 @@ msgctxt ""
msgid "<item type=\"input\">50,000 currency units</item>"
msgstr "<item type=\"input\">50.000 unidades monetarias</item>"
-#. =;.9
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2509,7 +2257,6 @@ msgctxt ""
msgid "<item type=\"input\">10,000 currency units</item>"
msgstr "<item type=\"input\">10.000 unidades monetarias</item>"
-#. A0!p
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2519,7 +2266,6 @@ msgctxt ""
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
-#. Cy-A
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2530,7 +2276,6 @@ msgctxt ""
msgid "<item type=\"input\">1</item>"
msgstr "<item type=\"input\">1</item>"
-#. P_qN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2540,7 +2285,6 @@ msgctxt ""
msgid "<item type=\"input\">13,333.33 currency units</item>"
msgstr "<item type=\"input\">13.333,33 unidades monetarias</item>"
-#. __,K
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2550,7 +2294,6 @@ msgctxt ""
msgid "3"
msgstr "3"
-#. nX5{
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2561,7 +2304,6 @@ msgctxt ""
msgid "<item type=\"input\">2</item>"
msgstr "<item type=\"input\">2</item>"
-#. ^$J?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2571,7 +2313,6 @@ msgctxt ""
msgid "<item type=\"input\">10,666.67 currency units</item>"
msgstr "<item type=\"input\">10.666,67 unidades monetarias</item>"
-#. ,Vis
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2581,7 +2322,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. _eUq
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2592,7 +2332,6 @@ msgctxt ""
msgid "<item type=\"input\">3</item>"
msgstr "<item type=\"input\">3</item>"
-#. oeV[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2602,7 +2341,6 @@ msgctxt ""
msgid "<item type=\"input\">8,000.00 currency units</item>"
msgstr "<item type=\"input\">8.000,00 unidades monetarias</item>"
-#. O@6/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2612,7 +2350,6 @@ msgctxt ""
msgid "5"
msgstr "5"
-#. p5)F
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2623,7 +2360,6 @@ msgctxt ""
msgid "<item type=\"input\">4</item>"
msgstr "<item type=\"input\">4</item>"
-#. V-fz
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2633,7 +2369,6 @@ msgctxt ""
msgid "<item type=\"input\">5,333.33 currency units</item>"
msgstr "<item type=\"input\">5.333,33 unidades monetarias</item>"
-#. g.o(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2643,7 +2378,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. /(mH
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2653,7 +2387,6 @@ msgctxt ""
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
-#. xyG;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2663,7 +2396,6 @@ msgctxt ""
msgid "<item type=\"input\">2,666.67 currency units</item>"
msgstr "<item type=\"input\">2.666,67 unidades monetarias</item>"
-#. `H[1
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2673,7 +2405,6 @@ msgctxt ""
msgid "7"
msgstr "7"
-#. G^_z
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2684,7 +2415,6 @@ msgctxt ""
msgid "<item type=\"input\">6</item>"
msgstr "<item type=\"input\">6</item>"
-#. .hLP
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2694,7 +2424,6 @@ msgctxt ""
msgid "<item type=\"input\">0.00 currency units</item>"
msgstr "<item type=\"input\">0,00 unidades monetarias</item>"
-#. zg$v
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2704,7 +2433,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. hQd3
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2715,7 +2443,6 @@ msgctxt ""
msgid "<item type=\"input\">7</item>"
msgstr "<item type=\"input\">7</item>"
-#. |led
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2725,7 +2452,6 @@ msgctxt ""
msgid "9"
msgstr "9"
-#. RWJ%
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2736,7 +2462,6 @@ msgctxt ""
msgid "<item type=\"input\">8</item>"
msgstr "<item type=\"input\">8</item>"
-#. Lu3H
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2746,7 +2471,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. f#E[
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2757,7 +2481,6 @@ msgctxt ""
msgid "<item type=\"input\">9</item>"
msgstr "<item type=\"input\">9</item>"
-#. @$)Y
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2767,7 +2490,6 @@ msgctxt ""
msgid "11"
msgstr "11"
-#. @p.{
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2778,7 +2500,6 @@ msgctxt ""
msgid "<item type=\"input\">10</item>"
msgstr "<item type=\"input\">10</item>"
-#. jQlr
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2788,7 +2509,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. i,0U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2798,7 +2518,6 @@ msgctxt ""
msgid "13"
msgstr "13"
-#. \H1t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2808,7 +2527,6 @@ msgctxt ""
msgid "<item type=\"input\">>0</item>"
msgstr "<item type=\"input\">0</item>"
-#. _UZm
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2818,7 +2536,6 @@ msgctxt ""
msgid "<item type=\"input\">Total</item>"
msgstr "<item type=\"input\">Total</item>"
-#. CR-V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2828,7 +2545,6 @@ msgctxt ""
msgid "<item type=\"input\">40,000.00 currency units</item>"
msgstr "<item type=\"input\">40.000,00 unidades monetarias</item>"
-#. Lc?B
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2838,7 +2554,6 @@ msgctxt ""
msgid "The formula in E2 is as follows:"
msgstr "La fórmula de E2 es la siguiente:"
-#. =E:Z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2848,7 +2563,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"
@@ -2858,7 +2572,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 "Esta fórmula se duplica en la columna E hasta la celda E10 (seleccionar E2 y arrastrar la esquina inferior derecha hacia abajo con el ratón)."
-#. \o(F
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2868,7 +2581,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 "En la celda E13 se encuentra la fórmula que suma todos los importes de la amortización para su comprobación. Se sirve de la función SUMAR.SI porque los valores negativos en E8:E11 no deben tenerse en cuenta. La condición >0 se encuentra en la celda A13. La fórmula de E13 es la siguiente:"
-#. %UQ7
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2878,7 +2590,6 @@ msgctxt ""
msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
msgstr "<item type=\"input\">=SUMAR.SI(E2:E11;A13)</item>"
-#. 2CcL
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2888,7 +2599,6 @@ msgctxt ""
msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
msgstr "A continuación podrá ver la amortización a 10 años, consultarla con un valor de salvamento de 1 unidad monetaria, introducir otros precios de compra, etc."
-#. ;oxa
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2897,7 +2607,6 @@ msgctxt ""
msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
msgstr "<bookmark_value>TASA.DESC</bookmark_value> <bookmark_value>provisiones</bookmark_value> <bookmark_value>descuentos</bookmark_value>"
-#. 5bnr
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2907,7 +2616,6 @@ msgctxt ""
msgid "DISC"
msgstr "TASA.DESC"
-#. \*eA
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2917,7 +2625,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\">Calcula la provisión (descuento) de un valor en forma de porcentaje.</ahelp>"
-#. .X*5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2927,7 +2634,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. R*WI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2937,7 +2643,6 @@ msgctxt ""
msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgstr "DISC(\"Liquidación\"; \"Vencimiento\"; Precio; Redención; Bases)"
-#. .OW:
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2947,7 +2652,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Liquidación</emph> es la fecha de compra de la garantía."
-#. -+Ru
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2957,7 +2661,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Vencimiento</emph> es la fecha cuando la garantía vence (expira)."
-#. R^Wx
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2967,7 +2670,6 @@ msgctxt ""
msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
msgstr "<emph>Precio</emph> es el precio de la garantía por cada 100 unidades monetarias de valor nominal."
-#. ]R%U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2977,7 +2679,6 @@ msgctxt ""
msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
msgstr "<emph>Rescate</emph> es el valor de rescate de la garantía por cada 100 unidades monetarias de valor nominal."
-#. l:=\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2987,7 +2688,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. L;mS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2997,7 +2697,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 "Se compra un valor el 25-01-2001; la fecha de vencimiento es el 15-11-2001. El precio (precio de compra) es 97, el valor de rendimiento es 100. Con el cálculo diario (base 3) ¿cuál es la liquidación (descuento)?"
-#. I@jX
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3007,7 +2706,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 "<item type=\"input\">=TASA.DESC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> devuelve alrededor de 0,0372 % 3,72 %."
-#. QTD6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3016,7 +2714,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>DURACIÓN_ADD</bookmark_value> <bookmark_value>funciones de Microsoft Excel</bookmark_value> <bookmark_value>duraciones;títulos con interés fijo</bookmark_value>"
-#. mmXB
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3026,7 +2723,6 @@ msgctxt ""
msgid "DURATION_ADD"
msgstr "DURACION_ADD"
-#. IIAg
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3036,7 +2732,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\">Calcula la duración, en años, de un valor de interés fijo.</ahelp>"
-#. ~,TK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3046,7 +2741,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. l/NM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3056,7 +2750,6 @@ msgctxt ""
msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
msgstr "DURATION_ADD(\"Liquidación\"; \"Vencimiento\"; Cupón; Rendimiento; Frecuencia; Bases)"
-#. jXBs
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3066,7 +2759,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Liquidación</emph> es la fecha de compra de la garantía."
-#. +CPb
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3076,7 +2768,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Vencimiento</emph> es la fecha cuando la garantía vence (expira)."
-#. @0U6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3086,7 +2777,6 @@ msgctxt ""
msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
msgstr "<emph>Vale</emph> es la tasa anual de interés del vale (tasa nominal de interés)"
-#. 9(f@
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -3097,7 +2787,6 @@ msgctxt ""
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph>Rendimeinto</emph> es la ganancia anual de la garantía."
-#. n!}5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3107,7 +2796,6 @@ msgctxt ""
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frecuencia</emph> es la cantidad de pagos de intereses por año (1, 2 o 4)."
-#. oo5*
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3117,7 +2805,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. \]aV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3127,7 +2814,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 "Un valor se compra el 01-01-2001; la fecha de vencimiento es el 01-01-2006. El interés nominal asciende al 8 %. La rentabilidad es del 9 %. El interés se paga semestralmente (la frecuencia es 2). ¿Cuál es la duración al realizar un cálculo (base 3) diario?"
-#. cZUK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3137,7 +2823,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\">=DURACION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-#. fh~n
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3146,7 +2831,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>interés efectivo anual</bookmark_value> <bookmark_value>calcular; interés efectivo anual</bookmark_value> <bookmark_value>interés efectivo anual</bookmark_value> <bookmark_value>INT.EFECTIVO</bookmark_value>"
-#. -@V2
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3156,7 +2840,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr "INT.EFECTIVO"
-#. ddI;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3166,7 +2849,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\">Calcula el interés efectivo anual respecto a una tasa de interés nominal.</ahelp>"
-#. 0Bxj
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3176,7 +2858,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 "Como la tasa de interés nominal se basa en un vencimiento de intereses al final del período de cálculo y en cambio, por lo general, los intereses se abonan mensual o trimestralmente, incluso en otros períodos anteriores al final del período de cálculo (es decir, se pagan por adelantado), los intereses efectivos se incrementan con el número de pagos parciales de intereses."
-#. PUf%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3186,7 +2867,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. uj$c
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3196,7 +2876,6 @@ msgctxt ""
msgid "EFFECTIVE(Nom; P)"
msgstr "EFFECTIVE(Nom; P)"
-#. sI18
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3206,7 +2885,6 @@ msgctxt ""
msgid "<emph>Nom</emph> is the nominal interest."
msgstr "<emph>Nom</emph> es el interés nominal."
-#. iKAO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3216,7 +2894,6 @@ msgctxt ""
msgid "<emph>P</emph> is the number of interest payment periods per year."
msgstr "<emph>P</emph> es la cantidad de periodos de pago de intereses por año."
-#. 0epW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3226,7 +2903,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ;f86
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3236,7 +2912,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 "Si los intereses nominales anuales son del 9,75 % y se han previsto cuatro períodos de cálculo de intereses, ¿cuál es la tasa de interés real (intereses efectivos)?"
-#. [CGO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3246,7 +2921,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\">=INT.EFECTIVO(9.75%;4)</item> = 10,11% La tasa anual de interés efectivo es por lo tanto de 10,11%."
-#. :XdW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3255,7 +2929,6 @@ msgctxt ""
msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
msgstr "<bookmark_value>tasas de intereses efectivas</bookmark_value><bookmark_value>función INT.EFECTIVO_ADD</bookmark_value>"
-#. )\E?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3265,7 +2938,6 @@ msgctxt ""
msgid "EFFECT_ADD"
msgstr "INT.EFECTIVO_ADD"
-#. i9Mi
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3275,7 +2947,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\">Calcula la tasa efectiva de interés anual a partir de la tasa de interés nominal y el número de pagos de intereses por año.</ahelp>"
-#. US8W
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3285,7 +2956,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. JV%e
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3295,7 +2965,6 @@ msgctxt ""
msgid "EFFECT_ADD(NominalRate; NPerY)"
msgstr "EFFECT_ADD(NominalRate; NPerY)"
-#. S}1]
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3305,7 +2974,6 @@ msgctxt ""
msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
msgstr "<emph>TasaNominal</emph> es la tasa nominal anual de interés."
-#. 7(fZ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3315,7 +2983,6 @@ msgctxt ""
msgid "<emph>NPerY </emph>is the number of interest payments per year."
msgstr "<emph>NPerY </emph>es el número de pagos de intereses por año."
-#. {[Ri
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3325,7 +2992,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 4pIi
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3335,7 +3001,6 @@ msgctxt ""
msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
msgstr "¿Cuál es el interés efectivo con un interés nominal del 5,25% y un pago trimestral?"
-#. o\6Y
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3345,7 +3010,6 @@ msgctxt ""
msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
msgstr "<item type=\"input\">=INT.EFECTIVO_ADD(0,0525;4)</item> devuelve 0,053543 % o 5,3543 %."
-#. e9@.
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3354,7 +3018,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>calcular; depreciaciones degresivas aritméticas</bookmark_value><bookmark_value>depreciaciones degresivas aritméticas</bookmark_value><bookmark_value>depreciaciones;degresivas aritméticas</bookmark_value><bookmark_value>función DDB</bookmark_value>"
-#. YWE(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3364,7 +3027,6 @@ msgctxt ""
msgid "DDB"
msgstr "DDB"
-#. %!`t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3374,7 +3036,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\">Devuelve la depreciación de un activo en un período específico según el método aritmético degresivo.</ahelp>"
-#. xyW/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3384,7 +3045,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 "Esta forma de depreciación es la adecuada si precisa un valor más alto de depreciación inicial, a diferencia de la depreciación lineal. El valor de depreciación disminuye con cada período; suele utilizarse en aquellos activos que pierden más valor poco después de su adquisición (por ejemplo, automóviles o equipos informáticos). Tenga en cuenta que el valor contable nunca llegará a cero con este tipo de cálculo."
-#. (v63
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3394,7 +3054,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ^oSK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3404,7 +3063,6 @@ msgctxt ""
msgid "DDB(Cost; Salvage; Life; Period; Factor)"
msgstr "DDB(Costo; Valor de salvamento; Vida; Periodo; Factor)"
-#. =6WI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3414,7 +3072,6 @@ msgctxt ""
msgid "<emph>Cost</emph> fixes the initial cost of an asset."
msgstr "<emph>Costo</emph> fija el costo inicial de un activo."
-#. +FAM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3424,7 +3081,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
msgstr "<emph>Salvamento</emph> fija el valor de un activo al final de su vida."
-#. ^![5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3434,7 +3090,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 "<emph>Vida</emph> es el número de períodos (por ejemplo, años o meses) que definen la duración del uso del activo."
-#. Cg7W
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3444,7 +3099,6 @@ msgctxt ""
msgid "<emph>Period</emph> states the period for which the value is to be calculated."
msgstr "<emph>Período</emph> define el período para el que debe calcularse el valor."
-#. /xo3
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3454,7 +3108,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 "<emph>Factor</emph> (opcional) es el factor por el que disminuye la amortización. Si no se indica un valor, el factor predeterminado es 2."
-#. M{Le
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3464,7 +3117,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Y?Sd
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3474,7 +3126,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 "Un equipo informático con un precio de compra de 75.000 unidades monetarias debe amortizarse mensualmente durante 5 años. El valor residual debe ser 1 unidad monetaria. El factor es 2."
-#. soHN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3484,7 +3135,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\">=DDB(75000;1;60;12;2) </item>= 1.721,81 unidades monetarias. Por lo tanto, la amortización degresiva en plazos dobles en el mes doce tras la compra es de 1.721,81 unidades monetarias."
-#. O*T\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3493,7 +3143,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>calcular; depreciaciones degresivas geométricas</bookmark_value><bookmark_value>depreciaciones degresivas geométricas</bookmark_value><bookmark_value>depreciaciones;degresivas geométricas</bookmark_value><bookmark_value>función DB</bookmark_value>"
-#. %Ikt
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3503,7 +3152,6 @@ msgctxt ""
msgid "DB"
msgstr "DB"
-#. t_N@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3513,7 +3161,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\">Devuelve la depreciación de un activo en un período específico según el método de amortización por doble disminución de saldo.</ahelp>"
-#. MWFb
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3523,7 +3170,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 "Utilice este modo de amortización para obtener, al contrario que con el modo lineal, un valor de amortización mayor al inicio de la amortización. Con cada período de amortización, dicho valor se reduce en las amortizaciones ya deducidas del valor de compra."
-#. r4H9
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3533,7 +3179,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ~}oe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3543,7 +3188,6 @@ msgctxt ""
msgid "DB(Cost; Salvage; Life; Period; Month)"
msgstr "DB(Costo; Valor de salvamento; Vida; Periodo; Mes)"
-#. 5$n?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3553,7 +3197,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph>Costo</emph> es el costo inicial de un activo."
-#. ,;Hm
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -3564,7 +3207,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr "<emph>Salvamento</emph> es el valor de un activo al final de la amortización."
-#. 6-?+
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3574,7 +3216,6 @@ msgctxt ""
msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
msgstr "<emph>Vida</emph> define el período durante el cual se amortiza un activo."
-#. 3X(U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3584,7 +3225,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 "<emph>Período</emph> es la duración de cada período. La duración debe indicarse en la misma unidad de tiempo que el periodo de amortización."
-#. RRGl
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3594,7 +3234,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 "<emph>Mes</emph> (opcional) indica la cantidad de meses para el primer año de amortización. Si no se indica nada, se usa el valor 12 como predeterminado."
-#. fksJ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3604,7 +3243,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Q1ta
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3614,7 +3252,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 "Un equipo informático con un coste de compra inicial de 25.000 unidades monetarias debe amortizarse en un período de tres años. El Valor de salvamento al final de la amortización debe ser de 1.000 unidades monetarias. La duración de un período es de 30 días."
-#. \^n8
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3624,7 +3261,6 @@ msgctxt ""
msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
msgstr "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1.075,00 unidades monetarias"
-#. ZzOv
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3634,7 +3270,6 @@ msgctxt ""
msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
msgstr "La amortización geométrica decreciente del equipo informático es de 1.075,00 unidades monetarias."
-#. _Tmw
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3643,7 +3278,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>TIR</bookmark_value> <bookmark_value>calcular;interés interno, pagos regulares</bookmark_value> <bookmark_value>interés interno;pagos regulares</bookmark_value>"
-#. moxf
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3653,7 +3287,6 @@ msgctxt ""
msgid "IRR"
msgstr "TIR"
-#. ~8]~
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3663,7 +3296,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\">Calcula la tasa interna de retorno de una inversión.</ahelp> Los valores representan el efectivo a intervalos regulares: al menos un valor debe ser negativo (pagos) y al menos un valor debe ser positivo (ingreso)."
-#. u^rP
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3673,7 +3305,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. u,f-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3683,7 +3314,6 @@ msgctxt ""
msgid "IRR(Values; Guess)"
msgstr "TIR(Valores; Valor de Referencia)"
-#. bupc
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3693,7 +3323,6 @@ msgctxt ""
msgid "<emph>Values</emph> represents an array containing the values."
msgstr "<emph>Valores</emph> representa a una matriz que contiene los valores."
-#. GM,/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3703,7 +3332,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 "<emph>Estimación</emph> (opcional) es el valor estimado. Se usa un método iterativo para calcular la tasa interna de retorno. Si solamente se pueden proporcionar algunos valores, se deben proporcionar valores estimados iniciales para permitir la iteración."
-#. i]q`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3713,7 +3341,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. p0Vv
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3723,7 +3350,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 "Bajo el supuesto de que los contenidos de las celdas sean: A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> y A4=<item type=\"input\">1000</item>, la formula <item type=\"input\">=TIR(A1:A4)</item> da un resultado de 11,33%."
-#. {g)4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3732,7 +3358,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>calcular;interés de cuota de amortización no modificada</bookmark_value><bookmark_value>interés de cuota de amortización no modificada</bookmark_value><bookmark_value>función INT.PAGO.DIR</bookmark_value>"
-#. G9nS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3742,7 +3367,6 @@ msgctxt ""
msgid "ISPMT"
msgstr "INT.PAGO.DIR"
-#. k;r?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3752,7 +3376,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Calcula el nivel de interés en el caso de cuotas de amortización invariables.</ahelp>"
-#. SqG`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3762,7 +3385,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. lLr5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3772,7 +3394,6 @@ msgctxt ""
msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgstr "INT.PAGO.DIR(Tasa; Periodo; TotalPeriodos; Inversión)"
-#. ]G#Z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3782,7 +3403,6 @@ msgctxt ""
msgid "<emph>Rate</emph> sets the periodic interest rate."
msgstr "<emph>Tasa</emph> establece la tasa periódica de interés."
-#. 741_
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3792,7 +3412,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the number of installments for calculation of interest."
msgstr "<emph>Período</emph> es el número de cuotas para el cálculo de intereses."
-#. ^(fn
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3802,7 +3421,6 @@ msgctxt ""
msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
msgstr "<emph>PeríodosTotales</emph> es la cantidad total de periodos de liquidación."
-#. pg-I
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3812,7 +3430,6 @@ msgctxt ""
msgid "<emph>Invest</emph> is the amount of the investment."
msgstr "<emph>Inversión</emph> es la cantidad invertida."
-#. dFrU
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3822,7 +3439,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. O+s=
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3832,7 +3448,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 "Para un crédito de 120.000 unidades monetarias, un período de dos años y cuotas mensuales con una tasa de interés anual del 12%, se necesita conocer el nivel de interés al cabo de 1,5 años."
-#. {=KQ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3842,7 +3457,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\">=INT.PAGO.DIR(1%;18;24;120000)</item> = -300 unidades monetarias. El interés mensual después de 1,5 años, alcanza las 300 unidades monetarias."
-#. diGS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3852,7 +3466,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Funciones financieras, segunda parte</link>"
-#. Roe2
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3862,7 +3475,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Funciones financieras, tercera parte</link>"
-#. Z:J+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3871,7 +3483,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr "Funciones add-in, lista de funciones de análisis, segunda parte"
-#. iW/n
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3880,7 +3491,6 @@ msgctxt ""
msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
msgstr "<bookmark_value>números imaginarios en funciones de análisis</bookmark_value> <bookmark_value>números complejos en funciones de análisis</bookmark_value>"
-#. dP]@
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3890,7 +3500,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr "Categoría Add-in, lista de las funciones de análisis, parte 2"
-#. K9pt
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3900,7 +3509,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Categoría Estadística</link>"
-#. |EZT
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3910,7 +3518,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Funciones de análisis, parte 1</link>"
-#. Jdb}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3920,7 +3527,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Regresar a la página general</link>"
-#. YW3S
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3929,7 +3535,6 @@ msgctxt ""
msgid "<bookmark_value>IMABS function</bookmark_value>"
msgstr "<bookmark_value>IM.ABS</bookmark_value>"
-#. yr4F
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3939,7 +3544,6 @@ msgctxt ""
msgid "IMABS"
msgstr "IM.ABS"
-#. c}7B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3949,7 +3553,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\">El resultado es el valor absoluto de un número complejo.</ahelp>"
-#. ZJnF
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3959,7 +3562,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. tF(H
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3969,7 +3571,6 @@ msgctxt ""
msgid "IMABS(\"ComplexNumber\")"
msgstr "IM.ABS(\"Número Complejo\")"
-#. Pbj$
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3979,7 +3580,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 "<variable id=\"complex\"><emph>NúmeroComplejo</emph> es un número complejo que se introduce como \"x+yi\" o \"x+yj\". </variable>"
-#. 47dA
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3989,7 +3589,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. xDjT
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3999,7 +3598,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
msgstr "<item type=\"input\">=IM.ABS(\"5+12j\")</item> devuelve 13."
-#. .v\a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4008,7 +3606,6 @@ msgctxt ""
msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
msgstr "<bookmark_value>IMAGINARIO</bookmark_value>"
-#. _{du
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4018,7 +3615,6 @@ msgctxt ""
msgid "IMAGINARY"
msgstr "IMAGINARIO"
-#. f|kj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4028,7 +3624,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\">El resultado es el coeficiente imaginario de un número complejo.</ahelp>"
-#. .K@E
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4038,7 +3633,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ``OR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4048,7 +3642,6 @@ msgctxt ""
msgid "IMAGINARY(\"ComplexNumber\")"
msgstr "IMAGINARIO(\"Número Complejo\")"
-#. p+0l
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4058,7 +3651,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 4pmW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4068,7 +3660,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
msgstr "<item type=\"input\">=IMAGINARIO(\"4+3j\")</item> devuelve 3."
-#. .Xk|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4077,7 +3668,6 @@ msgctxt ""
msgid "<bookmark_value>IMPOWER function</bookmark_value>"
msgstr "<bookmark_value>IM.POT</bookmark_value>"
-#. N;+R
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4087,7 +3677,6 @@ msgctxt ""
msgid "IMPOWER"
msgstr "IM.POT"
-#. ^,Ii
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4097,7 +3686,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\">El resultado es la potencia entera de un número complejo.</ahelp>"
-#. ru1v
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4107,7 +3695,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. X0:n
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4117,7 +3704,6 @@ msgctxt ""
msgid "IMPOWER(\"ComplexNumber\"; Number)"
msgstr "IM.POT(\"Número Complejo\"; Número)"
-#. l[jL
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4127,7 +3713,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the exponent."
msgstr "<emph>Número</emph> es el exponente."
-#. [jZm
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4137,7 +3722,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 8sJW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4147,7 +3731,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
msgstr "<item type=\"input\">=IM.POT(\"2+3i\";2)</item> devuelve -5+12i."
-#. =$,4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4156,7 +3739,6 @@ msgctxt ""
msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
msgstr "<bookmark_value>IM.ANGULO</bookmark_value>"
-#. P@dE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4166,7 +3748,6 @@ msgctxt ""
msgid "IMARGUMENT"
msgstr "IM.ANGULO"
-#. fBXH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4176,7 +3757,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\">El resultado es el argumento (ángulo phi) de un número complejo.</ahelp>"
-#. [:aj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4186,7 +3766,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. XkL:
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4196,7 +3775,6 @@ msgctxt ""
msgid "IMARGUMENT(\"ComplexNumber\")"
msgstr "IM.ÁNGULO(\"Número Complejo\")"
-#. +%4]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4206,7 +3784,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. /Uh0
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4216,7 +3793,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
msgstr "<item type=\"input\">=IM.ÁNGULO(\"3+4j\")</item> devuelve 0,927295."
-#. ?%5,
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4225,7 +3801,6 @@ msgctxt ""
msgid "<bookmark_value>IMCOS function</bookmark_value>"
msgstr "<bookmark_value>IM.COS</bookmark_value>"
-#. aN^x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4235,7 +3810,6 @@ msgctxt ""
msgid "IMCOS"
msgstr "IM.COS"
-#. ak:N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4245,7 +3819,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\">El resultado es el coseno de un número complejo.</ahelp>"
-#. |\J~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4255,7 +3828,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ;YK6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4265,7 +3837,6 @@ msgctxt ""
msgid "IMCOS(\"ComplexNumber\")"
msgstr "IM.COS(\"Número Complejo\")"
-#. vE8E
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4275,7 +3846,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ST,k
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4285,7 +3855,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
msgstr "<item type=\"input\">=IM.COS(\"3+4j\")</item> devuelve -27,03-3,85i (redondeado)."
-#. ?SN`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4294,7 +3863,6 @@ msgctxt ""
msgid "<bookmark_value>IMDIV function</bookmark_value>"
msgstr "<bookmark_value>IM.DIV</bookmark_value>"
-#. ^uW6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4304,7 +3872,6 @@ msgctxt ""
msgid "IMDIV"
msgstr "IM.DIV"
-#. ok;C
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4314,7 +3881,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\">El resultado es la división de dos números complejos.</ahelp>"
-#. Ir6=
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4324,7 +3890,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. d.mw
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4334,7 +3899,6 @@ msgctxt ""
msgid "IMDIV(\"Numerator\"; \"Denominator\")"
msgstr "IM.DIV(\"Numerador\"; \"Denominador\")"
-#. eVGm
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4344,7 +3908,6 @@ msgctxt ""
msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
msgstr "<emph>Numerador</emph>, <emph>Denominador</emph> son números complejos que se especifican con el formato \"x+yi\" o \"x+yj\"."
-#. KdFy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4354,7 +3917,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. =X,{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4364,7 +3926,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
msgstr "<item type=\"input\">=IM.DIV(\"-238+240i\";\"10+24i\")</item> devuelve 5+12i."
-#. .N=v
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4373,7 +3934,6 @@ msgctxt ""
msgid "<bookmark_value>IMEXP function</bookmark_value>"
msgstr "<bookmark_value>IM.EXP</bookmark_value>"
-#. C,e]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4383,7 +3943,6 @@ msgctxt ""
msgid "IMEXP"
msgstr "IM.EXP"
-#. Ns_|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4393,7 +3952,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\">El resultado es la potencia de e y el número complejo.</ahelp> La constante e tiene un valor aproximado de 2,71828182845904."
-#. =la?
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4403,7 +3961,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. aA,g
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4413,7 +3970,6 @@ msgctxt ""
msgid "IMEXP(\"ComplexNumber\")"
msgstr "IM.EXP(\"Número Complejo\")"
-#. JA;u
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4423,7 +3979,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. krfb
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4433,7 +3988,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
msgstr "<item type=\"input\">=IM.EXP(\"1+j\") </item>devuelve 1,47+2,29j (redondeado)."
-#. R9Y4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4442,7 +3996,6 @@ msgctxt ""
msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
msgstr "<bookmark_value>IM.CONJUGADA</bookmark_value>"
-#. (d^s
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4452,7 +4005,6 @@ msgctxt ""
msgid "IMCONJUGATE"
msgstr "IM.CONJUGADA"
-#. 5UYj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4462,7 +4014,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\">El resultado es el complemento complejo conjugado de un número complejo.</ahelp>"
-#. lab)
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4472,7 +4023,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 22-V
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4482,7 +4032,6 @@ msgctxt ""
msgid "IMCONJUGATE(\"ComplexNumber\")"
msgstr "IM.CONJUGADA(\"Número Complejo\")"
-#. ;m14
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4492,7 +4041,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ~P#o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4502,7 +4050,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
msgstr "<item type=\"input\">=IM.CONJUGADA(\"1+j\")</item> devuelve 1-j."
-#. %|E^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4511,7 +4058,6 @@ msgctxt ""
msgid "<bookmark_value>IMLN function</bookmark_value>"
msgstr "<bookmark_value>IM.LN</bookmark_value>"
-#. hIk0
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4521,7 +4067,6 @@ msgctxt ""
msgid "IMLN"
msgstr "IM.LN"
-#. 8@Us
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4531,7 +4076,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\">El resultado es el logaritmo natural (en base e) de un número complejo.</ahelp> La constante e tiene un valor aproximado de 2,71828182845904."
-#. 9G0y
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4541,7 +4085,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. zTJy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4551,7 +4094,6 @@ msgctxt ""
msgid "IMLN(\"ComplexNumber\")"
msgstr "IM.LN(\"Número Complejo\")"
-#. ,j8k
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4561,7 +4103,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Ydkk
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4571,7 +4112,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
msgstr "<item type=\"input\">=IM.LN(\"1+j\") </item>devuelve 0,35+0,79j (redondeado)."
-#. =2|m
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4580,7 +4120,6 @@ msgctxt ""
msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
msgstr "<bookmark_value>IM.LOG10</bookmark_value>"
-#. Ga:t
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4590,7 +4129,6 @@ msgctxt ""
msgid "IMLOG10"
msgstr "IM.LOG10"
-#. +^su
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4600,7 +4138,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\">El resultado es el logaritmo común (en base 10) de un número complejo.</ahelp>"
-#. .S-8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4610,7 +4147,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. #0nW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4620,7 +4156,6 @@ msgctxt ""
msgid "IMLOG10(\"ComplexNumber\")"
msgstr "IM.LOG10(\"Número Complejo\")"
-#. GK(\
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4630,7 +4165,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. x!}l
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4640,7 +4174,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
msgstr "<item type=\"input\">=IM.LOG10(\"1+j\")</item> devuelve 0,15+0,34j (redondeado)."
-#. @,de
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4649,7 +4182,6 @@ msgctxt ""
msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
msgstr "<bookmark_value>IM.LOG2</bookmark_value>"
-#. d_#4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4659,7 +4191,6 @@ msgctxt ""
msgid "IMLOG2"
msgstr "IM.LOG2"
-#. GLT_
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4669,7 +4200,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\">El resultado es el logaritmo binario de un número complejo.</ahelp>"
-#. pSL[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4679,7 +4209,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. B(ex
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4689,7 +4218,6 @@ msgctxt ""
msgid "IMLOG2(\"ComplexNumber\")"
msgstr "IM.LOG2(\"Número Complejo\")"
-#. vF(~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4699,7 +4227,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. +?4D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4709,7 +4236,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
msgstr "<item type=\"input\">=IM.LOG2(\"1+j\")</item> devuelve 0,50+1,13j (redondeado)."
-#. b2W[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4718,7 +4244,6 @@ msgctxt ""
msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
msgstr "<bookmark_value>IM.PRODUCT</bookmark_value>"
-#. ZQeP
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4728,7 +4253,6 @@ msgctxt ""
msgid "IMPRODUCT"
msgstr "IM.PRODUCT"
-#. r,w!
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4738,7 +4262,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\">El resultado es el producto de un máximo de 29 números complejos.</ahelp>"
-#. DTu}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4748,7 +4271,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. `0XR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4758,7 +4280,6 @@ msgctxt ""
msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgstr "IM.PRODUCT(\"Número Complejo\"; \"Número Complejo1\"; ...)"
-#. {#{|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4768,7 +4289,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Q.:B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4778,7 +4298,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
msgstr "<item type=\"input\">=IM.PRODUCT(\"3+4j\";\"5-3j\")</item> devuelve 27+11j."
-#. i;Rd
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4787,7 +4306,6 @@ msgctxt ""
msgid "<bookmark_value>IMREAL function</bookmark_value>"
msgstr "<bookmark_value>IM.REAL</bookmark_value>"
-#. c;-c
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4797,7 +4315,6 @@ msgctxt ""
msgid "IMREAL"
msgstr "IM.REAL"
-#. 5$EU
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4807,7 +4324,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\">El resultado es el coeficiente real de un número complejo.</ahelp>"
-#. [LO^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4817,7 +4333,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ?*r`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4827,7 +4342,6 @@ msgctxt ""
msgid "IMREAL(\"ComplexNumber\")"
msgstr "IM.REAL(\"Número Complejo\")"
-#. }I_#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4837,7 +4351,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. xg8A
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4847,7 +4360,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
msgstr "<item type=\"input\">=IM.REAL(\"1+3j\")</item> devuelve 1."
-#. NqFi
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4856,7 +4368,6 @@ msgctxt ""
msgid "<bookmark_value>IMSIN function</bookmark_value>"
msgstr "<bookmark_value>IM.SENO</bookmark_value>"
-#. !gJ;
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4866,7 +4377,6 @@ msgctxt ""
msgid "IMSIN"
msgstr "IM.SENO"
-#. rZqN
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4876,7 +4386,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\">El resultado es el seno de un número complejo.</ahelp>"
-#. }pI^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4886,7 +4395,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. .)dY
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4896,7 +4404,6 @@ msgctxt ""
msgid "IMSIN(\"ComplexNumber\")"
msgstr "IM.SENO(\"Número Complejo\")"
-#. !Rac
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4906,7 +4413,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. *v[p
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4916,7 +4422,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
msgstr "<item type=\"input\">=IM.SENO(\"3+4j\")</item> devuelve 3,85+27,02j (redondeado)."
-#. R4q#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4925,7 +4430,6 @@ msgctxt ""
msgid "<bookmark_value>IMSUB function</bookmark_value>"
msgstr "<bookmark_value>IM.SUSTR</bookmark_value>"
-#. X07e
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4935,7 +4439,6 @@ msgctxt ""
msgid "IMSUB"
msgstr "IM.SUSTR"
-#. `hfp
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4945,7 +4448,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\">El resultado es la sustracción de dos números complejos.</ahelp>"
-#. N0*)
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4955,7 +4457,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. `\am
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4965,7 +4466,6 @@ msgctxt ""
msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgstr "IM.SUSTR(\"Número Complejo1\"; \"Número Complejo2\")"
-#. zyu1
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4975,7 +4475,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ,t[[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4985,7 +4484,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
msgstr "<item type=\"input\">=IM.SUB(\"13+4j\";\"5+3j\")</item> devuelve 8+7j."
-#. ^I`7
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4994,7 +4492,6 @@ msgctxt ""
msgid "<bookmark_value>IMSUM function</bookmark_value>"
msgstr "<bookmark_value>IM.SUM</bookmark_value>"
-#. T9j+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5004,7 +4501,6 @@ msgctxt ""
msgid "IMSUM"
msgstr "IM.SUM"
-#. HQhC
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5014,7 +4510,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\">El resultado es la suma de un máximo de 29 números complejos.</ahelp>"
-#. ?9KF
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5024,7 +4519,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ?mWo
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5034,7 +4528,6 @@ msgctxt ""
msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgstr "IM.SUM(\"Número Complejo1\"; \"Número Complejo2\"; ...)"
-#. 4Kh7
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5044,7 +4537,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 2!.}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5054,7 +4546,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
msgstr "<item type=\"input\">=IM.SUM(\"13+4j\";\"5+3j\")</item> devuelve 18+7j."
-#. R_!G
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5063,7 +4554,6 @@ msgctxt ""
msgid "<bookmark_value>IMSQRT function</bookmark_value>"
msgstr "<bookmark_value>IM.RAIZ2</bookmark_value>"
-#. ngD_
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5073,7 +4563,6 @@ msgctxt ""
msgid "IMSQRT"
msgstr "IM.RAIZ2"
-#. c=_#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5083,7 +4572,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\">El resultado es la raíz cuadrada de un número complejo.</ahelp>"
-#. (fze
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5093,7 +4581,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 8mXE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5103,7 +4590,6 @@ msgctxt ""
msgid "IMSQRT(\"ComplexNumber\")"
msgstr "IM.RAIZ2(\"Número Complejo\")"
-#. kmH4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5113,7 +4599,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 3/W#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5123,7 +4608,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
msgstr "<item type=\"input\">=IM.RAIZ2(\"3+4i\")</item> devuelve 2+1i."
-#. .[-x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5132,7 +4616,6 @@ msgctxt ""
msgid "<bookmark_value>COMPLEX function</bookmark_value>"
msgstr "<bookmark_value>COMPLEJO</bookmark_value>"
-#. u*FR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5142,7 +4625,6 @@ msgctxt ""
msgid "COMPLEX"
msgstr "COMPLEJO"
-#. !I7]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5152,7 +4634,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\">El resultado es un número complejo creado a partir de un coeficiente real y un coeficiente imaginario.</ahelp>"
-#. d+C2
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5162,7 +4643,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ?n\o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5172,7 +4652,6 @@ msgctxt ""
msgid "COMPLEX(RealNum; INum; Suffix)"
msgstr "COMPLEJO(NúmeroReal; INum; Sufijo)"
-#. g0N%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5182,7 +4661,6 @@ msgctxt ""
msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
msgstr "<emph>NúmeroReal</emph> es el coeficiente real de un número complejo."
-#. DB^W
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5192,7 +4670,6 @@ msgctxt ""
msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
msgstr "<emph>INum</emph> es el coeficiente imaginario de un número complejo."
-#. nXY5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5202,7 +4679,6 @@ msgctxt ""
msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
msgstr "<emph>Sufijo</emph> es una lista de opciones, \"i\" o \"j\"."
-#. IF5N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5212,7 +4688,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. VAJv
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5222,7 +4697,6 @@ msgctxt ""
msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
msgstr "<item type=\"input\">=COMPLEJO(3;4;\"j\")</item> devuelve 3+4j."
-#. !Qa8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5231,7 +4705,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
msgstr "<bookmark_value>OCT.A.BIN</bookmark_value> <bookmark_value>convertir;números octales, en números binarios</bookmark_value>"
-#. 5Co{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5241,7 +4714,6 @@ msgctxt ""
msgid "OCT2BIN"
msgstr "OCT.A.BIN"
-#. /koO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5251,7 +4723,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\">El resultado es el número binario para el número octal introducido.</ahelp>"
-#. #PEK
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5261,7 +4732,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. W6Ik
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5271,7 +4741,6 @@ msgctxt ""
msgid "OCT2BIN(Number; Places)"
msgstr "OCT.A.BIN(Número; Decimales)"
-#. s#LX
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5281,7 +4750,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 "<emph>Número</emph> es el número octal. El número puede tener un máximo de 10 cifras. El bit más importante es el de signo, los siguientes bits devuelven el valor. Los números negativos se especifican como un complemento de dos."
-#. -!YD
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5291,7 +4759,6 @@ msgctxt ""
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "<emph>Cifras</emph> es el número de espacios totales."
-#. rH{w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5301,7 +4768,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Ta.K
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5311,7 +4777,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
msgstr "<item type=\"input\">=OCT.A.BIN(3;3)</item> devuelve 011."
-#. J|^^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5320,7 +4785,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
msgstr "<bookmark_value>OCT.A.DEC</bookmark_value> <bookmark_value>convertir;números octales, en números decimales</bookmark_value>"
-#. ;p+9
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5330,7 +4794,6 @@ msgctxt ""
msgid "OCT2DEC"
msgstr "OCT.A.DEC"
-#. Q9,F
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5340,7 +4803,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\">El resultado es el número decimal que corresponda al número octal introducido.</ahelp>"
-#. `vLO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5350,7 +4812,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. paw.
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5360,7 +4821,6 @@ msgctxt ""
msgid "OCT2DEC(Number)"
msgstr "OCT.A.DEC(Número)"
-#. 3y[a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5370,7 +4830,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 "<emph>Número</emph> es el número octal. El número puede tener un máximo de 10 cifras. El bit más importante es el de signo, los siguientes bits devuelven el valor. Los números negativos se especifican como un complemento de dos."
-#. uR3[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5380,7 +4839,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. aT6~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5390,7 +4848,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
msgstr "<item type=\"input\">=OCT.A.DEC(144)</item> devuelve 100."
-#. v02G
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5399,7 +4856,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
msgstr "<bookmark_value>OCT.A.HEX</bookmark_value> <bookmark_value>convertir;números octales, en números hexadecimales</bookmark_value>"
-#. WHV+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5409,7 +4865,6 @@ msgctxt ""
msgid "OCT2HEX"
msgstr "OCT.A.HEX"
-#. ^Vsb
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5419,7 +4874,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\"> El resultado es el número hexadecimal que corresponda al número octal introducido.</ahelp>"
-#. _q=f
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5429,7 +4883,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. W!k\
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5439,7 +4892,6 @@ msgctxt ""
msgid "OCT2HEX(Number; Places)"
msgstr "OCT.A.DEC(Número; Decimales)"
-#. D=iE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5449,7 +4901,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 "<emph>Número</emph> es el número octal. El número puede tener un máximo de 10 cifras. El bit más importante es el de signo, los siguientes bits devuelven el valor. Los números negativos se especifican como un complemento de dos."
-#. CU%x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5459,7 +4910,6 @@ msgctxt ""
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "<emph>Cifras</emph> es el número de espacios totales."
-#. -\AS
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5469,7 +4919,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. :??o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5479,7 +4928,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=OCT.A.HEX(144;4)</item> devuelve 0064."
-#. Oxe5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5488,7 +4936,6 @@ msgctxt ""
msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
msgstr "<bookmark_value>CONVERTIR_ADD</bookmark_value>"
-#. bF`i
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5498,7 +4945,6 @@ msgctxt ""
msgid "CONVERT_ADD"
msgstr "CONVERTIR_ADD"
-#. 8lar
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5508,7 +4954,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\">Convierte un valor expresado en una unidad de medida en el valor correspondiente en otra unidad.</ahelp> Escriba las unidades de medida directamente en forma de texto entre comillas o bien en forma de referencia. Si escribe las unidades de medida en celdas, deberán corresponderse exactamente con la lista siguiente; tenga en cuenta la distinción entre mayúsculas y minúsculas: Por ejemplo, para escribir una l minúscula (de \"litro\") en una celda, escriba un apóstrofo ' y a continuación una l."
-#. /CZy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5518,7 +4963,6 @@ msgctxt ""
msgid "Property"
msgstr "<emph>Propiedad</emph>"
-#. !IU[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5528,7 +4972,6 @@ msgctxt ""
msgid "Units"
msgstr "<emph>Unidades</emph>"
-#. OMR(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5538,7 +4981,6 @@ msgctxt ""
msgid "Weight"
msgstr "Medida"
-#. |03L
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5548,7 +4990,6 @@ msgctxt ""
msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
msgstr ""
-#. h6.j
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5558,7 +4999,6 @@ msgctxt ""
msgid "Length"
msgstr "Longitud"
-#. ))Ac
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5568,7 +5008,6 @@ msgctxt ""
msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
msgstr ""
-#. o@Ae
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5578,7 +5017,6 @@ msgctxt ""
msgid "Time"
msgstr "Hora"
-#. rxtc
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5588,7 +5026,6 @@ msgctxt ""
msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgstr ""
-#. ,2\Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5598,7 +5035,6 @@ msgctxt ""
msgid "Pressure"
msgstr "Presión"
-#. Y)9h
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5608,7 +5044,6 @@ msgctxt ""
msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
msgstr ""
-#. jpbH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5618,7 +5053,6 @@ msgctxt ""
msgid "Force"
msgstr "Fuerza"
-#. OS=Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5628,7 +5062,6 @@ msgctxt ""
msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
msgstr ""
-#. SFT/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5638,7 +5071,6 @@ msgctxt ""
msgid "Energy"
msgstr "Energía"
-#. ;?$9
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5648,7 +5080,6 @@ msgctxt ""
msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
msgstr ""
-#. g^s4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5658,7 +5089,6 @@ msgctxt ""
msgid "Power"
msgstr "Potencia"
-#. ls/T
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5668,7 +5098,6 @@ msgctxt ""
msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgstr ""
-#. B}10
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5678,7 +5107,6 @@ msgctxt ""
msgid "Field strength"
msgstr "Potencia de campo"
-#. ;trl
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5688,7 +5116,6 @@ msgctxt ""
msgid "<emph>T</emph>, <emph>ga</emph>"
msgstr ""
-#. iA}M
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5698,7 +5125,6 @@ msgctxt ""
msgid "Temperature"
msgstr "Temperatura"
-#. }}.-
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5708,7 +5134,6 @@ msgctxt ""
msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
msgstr ""
-#. CwZZ
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5718,7 +5143,6 @@ msgctxt ""
msgid "Volume"
msgstr "Volumen"
-#. ai=Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5728,7 +5152,6 @@ msgctxt ""
msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
msgstr ""
-#. V%6T
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5738,7 +5161,6 @@ msgctxt ""
msgid "Area"
msgstr "Superficie"
-#. Ou^e
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5748,7 +5170,6 @@ msgctxt ""
msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
msgstr ""
-#. fa9a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5758,7 +5179,6 @@ msgctxt ""
msgid "Speed"
msgstr "Velocidad"
-#. 1,g6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5768,7 +5188,6 @@ msgctxt ""
msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgstr ""
-#. T4!i
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5778,7 +5197,6 @@ msgctxt ""
msgid "Information"
msgstr ""
-#. +3_[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5788,7 +5206,6 @@ msgctxt ""
msgid "<emph>bit</emph>, <emph>byte</emph>"
msgstr ""
-#. WM,+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5798,7 +5215,6 @@ msgctxt ""
msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
msgstr ""
-#. /4GN
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5808,7 +5224,6 @@ msgctxt ""
msgid "Prefix"
msgstr ""
-#. 2Kh,
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5817,7 +5232,6 @@ msgctxt ""
msgid "Multiplier"
msgstr ""
-#. Zh6D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5826,7 +5240,6 @@ msgctxt ""
msgid "Y (yotta)"
msgstr ""
-#. _M\3
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5835,7 +5248,6 @@ msgctxt ""
msgid "10^24"
msgstr ""
-#. 5fPf
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5844,7 +5256,6 @@ msgctxt ""
msgid "Z (zetta)"
msgstr ""
-#. c2S|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5853,7 +5264,6 @@ msgctxt ""
msgid "10^21"
msgstr ""
-#. KFj(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5862,7 +5272,6 @@ msgctxt ""
msgid "E (exa)"
msgstr ""
-#. +C$w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5871,7 +5280,6 @@ msgctxt ""
msgid "10^18"
msgstr ""
-#. ?w[`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5880,7 +5288,6 @@ msgctxt ""
msgid "P (peta)"
msgstr ""
-#. ufpO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5889,7 +5296,6 @@ msgctxt ""
msgid "10^15"
msgstr ""
-#. ,2kG
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5898,7 +5304,6 @@ msgctxt ""
msgid "T (tera)"
msgstr ""
-#. gjd?
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5907,7 +5312,6 @@ msgctxt ""
msgid "10^12"
msgstr ""
-#. ]X#N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5916,7 +5320,6 @@ msgctxt ""
msgid "G (giga)"
msgstr ""
-#. ;F2Y
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5925,7 +5328,6 @@ msgctxt ""
msgid "10^9"
msgstr ""
-#. ^(w#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5934,7 +5336,6 @@ msgctxt ""
msgid "M (mega)"
msgstr ""
-#. }1Ir
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5943,7 +5344,6 @@ msgctxt ""
msgid "10^6"
msgstr ""
-#. :I50
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5952,7 +5352,6 @@ msgctxt ""
msgid "k (kilo)"
msgstr ""
-#. oU3N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5961,7 +5360,6 @@ msgctxt ""
msgid "10^3"
msgstr ""
-#. fJhr
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5970,7 +5368,6 @@ msgctxt ""
msgid "h (hecto)"
msgstr ""
-#. P.cu
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5979,7 +5376,6 @@ msgctxt ""
msgid "10^2"
msgstr ""
-#. 5`1D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5988,7 +5384,6 @@ msgctxt ""
msgid "e (deca)"
msgstr ""
-#. IQ1(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5997,7 +5392,6 @@ msgctxt ""
msgid "10^1"
msgstr ""
-#. V^]8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6006,7 +5400,6 @@ msgctxt ""
msgid "d (deci)"
msgstr ""
-#. zQvg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6015,7 +5408,6 @@ msgctxt ""
msgid "10^-1"
msgstr ""
-#. 6:^.
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6024,7 +5416,6 @@ msgctxt ""
msgid "c (centi)"
msgstr ""
-#. /dJ/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6033,7 +5424,6 @@ msgctxt ""
msgid "10^-2"
msgstr ""
-#. #umi
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6042,7 +5432,6 @@ msgctxt ""
msgid "m (milli)"
msgstr ""
-#. :A_{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6051,7 +5440,6 @@ msgctxt ""
msgid "10^-3"
msgstr ""
-#. Qz+j
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6060,7 +5448,6 @@ msgctxt ""
msgid "u (micro)"
msgstr ""
-#. =5]X
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6069,7 +5456,6 @@ msgctxt ""
msgid "10^-6"
msgstr ""
-#. _f5[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6078,7 +5464,6 @@ msgctxt ""
msgid "n (nano)"
msgstr ""
-#. bh|Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6087,7 +5472,6 @@ msgctxt ""
msgid "10^-9"
msgstr ""
-#. M=KH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6096,7 +5480,6 @@ msgctxt ""
msgid "p (pico)"
msgstr ""
-#. F]OI
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6105,7 +5488,6 @@ msgctxt ""
msgid "10^-12"
msgstr ""
-#. 79A%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6114,7 +5496,6 @@ msgctxt ""
msgid "f (femto)"
msgstr ""
-#. )mK=
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6123,7 +5504,6 @@ msgctxt ""
msgid "10^-15"
msgstr ""
-#. Z4g!
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6132,7 +5512,6 @@ msgctxt ""
msgid "a (atto)"
msgstr ""
-#. mt2U
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6141,7 +5520,6 @@ msgctxt ""
msgid "10^-18"
msgstr ""
-#. @o;S
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6150,7 +5528,6 @@ msgctxt ""
msgid "z (zepto)"
msgstr ""
-#. 6c#B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6159,7 +5536,6 @@ msgctxt ""
msgid "10^-21"
msgstr ""
-#. W]6z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6168,7 +5544,6 @@ msgctxt ""
msgid "y (yocto)"
msgstr ""
-#. RvLO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6177,7 +5552,6 @@ msgctxt ""
msgid "10^-24"
msgstr ""
-#. ,1Tx
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6186,7 +5560,6 @@ msgctxt ""
msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
msgstr "Las unidades de información \"bit\" y \"byte\" también pueden estar prefijadas por uno de los siguientes prefijos IEC 60027-2 / IEEE 1541:"
-#. z.j`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6195,7 +5568,6 @@ msgctxt ""
msgid "ki kibi 1024"
msgstr "ki kibi 1024"
-#. I!{B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6204,7 +5576,6 @@ msgctxt ""
msgid "Mi mebi 1048576"
msgstr "Mi mebi 1048576"
-#. z!-H
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6213,7 +5584,6 @@ msgctxt ""
msgid "Gi gibi 1073741824"
msgstr "Gi gibi 1073741824"
-#. TsMM
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6222,7 +5592,6 @@ msgctxt ""
msgid "Ti tebi 1099511627776"
msgstr "Ti tebi 1099511627776"
-#. a+z/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6231,7 +5600,6 @@ msgctxt ""
msgid "Pi pebi 1125899906842620"
msgstr "Pi pebi 1125899906842620"
-#. NZX}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6240,7 +5608,6 @@ msgctxt ""
msgid "Ei exbi 1152921504606850000"
msgstr "Ei exbi 1152921504606850000"
-#. .C5P
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6249,7 +5616,6 @@ msgctxt ""
msgid "Zi zebi 1180591620717410000000"
msgstr "Zi zebi 1180591620717410000000"
-#. =Yde
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6258,7 +5624,6 @@ msgctxt ""
msgid "Yi yobi 1208925819614630000000000"
msgstr "Yi yobi 1208925819614630000000000"
-#. .;X[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6268,7 +5633,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. UL[:
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6278,7 +5642,6 @@ msgctxt ""
msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
msgstr "CONVERTIR_ADD(Número; \"DeUnidad\"; \"AUnidad\")"
-#. ABdH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6288,7 +5651,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the number to be converted."
msgstr "<emph>Número</emph> es el número que se va a convertir."
-#. *sy5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6298,7 +5660,6 @@ msgctxt ""
msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
msgstr "<emph>DeUnidad</emph> es la unidad desde la que se efectúa la conversión."
-#. D~!/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6308,7 +5669,6 @@ msgctxt ""
msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
msgstr "<emph>AUnidad</emph> es la unidad a la que se efectúa la conversión. Ambas unidades deben ser del mismo tipo."
-#. Z)xx
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6318,7 +5678,6 @@ msgctxt ""
msgid "Examples"
msgstr "Ejemplos"
-#. k8ZZ
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6328,7 +5687,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 "<item type=\"input\">=CONVERTIR_ADD(10;\"HP\";\"PS\") </item>devuelve, redondeado a dos posiciones decimales, 10,14. 10 HP equivalen a 10,14 PS."
-#. PoqM
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6338,7 +5696,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 "<item type=\"input\">=CONVERTIR_ADD(10;\"km\";\"mi\") </item>devuelve, redondeado a dos posiciones decimales, 6,21. 10 kilómetros equivalen a 6,21 millas. La k es el carácter de prefijo permitido para el factor 10^3."
-#. ~UAK
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6347,7 +5704,6 @@ msgctxt ""
msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
msgstr "<bookmark_value>FACT.DOBLE</bookmark_value> <bookmark_value>factoriales;números con incrementos de dos</bookmark_value>"
-#. 7-aR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6357,7 +5713,6 @@ msgctxt ""
msgid "FACTDOUBLE"
msgstr "FACT.DOBLE"
-#. n}:w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6367,7 +5722,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">El resultado es el factorial del número en incrementos de 2.</ahelp>"
-#. aRge
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6377,7 +5731,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ;^,]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6387,7 +5740,6 @@ msgctxt ""
msgid "FACTDOUBLE(Number)"
msgstr "FACT.DOBLE(Número)"
-#. gRz^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6397,7 +5749,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 "Devuelve <emph>Número</emph> <emph>!!</emph>, el factorial doble de <emph>Número</emph>, donde <emph>Número</emph> es un número entero mayor o igual a cero."
-#. b,GG
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6406,7 +5757,6 @@ msgctxt ""
msgid "For even numbers FACTDOUBLE(n) returns:"
msgstr "For even numbers FACTDOUBLE(n) returns:"
-#. V3VO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6415,7 +5765,6 @@ msgctxt ""
msgid "2*4*6*8* ... *n"
msgstr "2*4*6*8* ... *n"
-#. A(_X
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6424,7 +5773,6 @@ msgctxt ""
msgid "For odd numbers FACTDOUBLE(n) returns:"
msgstr "For odd numbers FACTDOUBLE(n) returns:"
-#. 1h9%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6433,7 +5781,6 @@ msgctxt ""
msgid "1*3*5*7* ... *n"
msgstr "1*3*5*7* ... *n"
-#. Gn=2
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6442,7 +5789,6 @@ msgctxt ""
msgid "FACTDOUBLE(0) returns 1 by definition."
msgstr "FACT.DOBLE(0) devuelve 1 por definición."
-#. wazA
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6452,7 +5798,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. V!73
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6461,7 +5806,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
msgstr "<item type=\"input\">=FACT.DOBLE(5)</item> devuelve 15."
-#. FPLH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6471,7 +5815,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
msgstr "<item type=\"input\">=FACT.DOBLE(6)</item> devuelve 48."
-#. N,^$
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6480,7 +5823,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
msgstr "<item type=\"input\">=FACT.DOBLE(0)</item> devuelve 1."
-#. ]yA\
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6489,7 +5831,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. 0#X4
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6498,7 +5839,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. -gM\
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6507,7 +5847,6 @@ msgctxt ""
msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
msgstr "El diálogo de opciones para el <link href=\"text/scalc/01/solver.xhp\">Solucionador</link> se usa para definir algunas opciones."
-#. (fsu
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6516,7 +5855,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\">Seleccione un motor del solucionador. El cuadro de lista se desactiva si solamente hay un motor del solucionador instalado. Dichos motores se pueden instalar como extensiones.</ahelp>"
-#. ]Tyr
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6525,7 +5863,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Configurar el solucionador actual.</ahelp>"
-#. uYrq
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6534,7 +5871,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\">Si la entrada actual en el cuadro de lista de Configuración permite editar un valor, entonces podrá pulsar en el botón de Editar. Se abre un diálogo donde puede cambiar el valor.</ahelp>"
-#. RATU
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6543,7 +5879,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca o cambie el valor.</ahelp>"
-#. Xlzq
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6552,7 +5887,6 @@ msgctxt ""
msgid "Use the Options dialog to configure the current solver engine."
msgstr "Use el diálogo de Opciones para configurar el motor del solucionador."
-#. gPHa
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6561,7 +5895,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 "Puede instalar más motores del solucionador como extensiones, si están disponibles. Abra Herramientas - Gestor de extensiones y navegue al sitio web de extensiones para buscar extensiones."
-#. /Iui
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6570,7 +5903,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 "Seleccione el motor de solver para usar y para configurar de la caja de lista. La caja de lista esta deshabilitada si solo existe un motor de solver instalado."
-#. O#FW
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6579,7 +5911,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 "En la caja de Settings, cheque todas las configuraciones que quiera para usar la operación predeterminada de busqueda de meta. Si la opcion actual ofrece diferentes valores, el botón Editar esta activa. Haga clic en Editar para abrir un diálogo donde puedes cambiar el valor."
-#. .d2]
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6588,7 +5919,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 "De clic en OK para aceptar los cambios y regrese al diálogo de <link href=\"text/scalc/01/solver.xhp\">Solver</link>."
-#. GEc#
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6597,7 +5927,6 @@ msgctxt ""
msgid "Add"
msgstr "Agregar"
-#. QD2P
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6607,7 +5936,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Agregar</link>"
-#. -u9*
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6617,7 +5945,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr "<ahelp hid=\".uno:AddPrintArea\">Agrega la selección actual a las áreas de impresión definidas.</ahelp>"
-#. %tLG
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6626,7 +5953,6 @@ msgctxt ""
msgid "Styles and Formatting"
msgstr "Estilo y formato"
-#. TSmh
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6635,7 +5961,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>Estilista, véase la ventana Estilo y formato</bookmark_value> <bookmark_value>ventana Estilo y formato</bookmark_value> <bookmark_value>formatos;ventana Estilo y formato</bookmark_value> <bookmark_value>formato;ventana Estilo y formato</bookmark_value> <bookmark_value>bote de pintura para aplicar estilos</bookmark_value>"
-#. (cTK
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6645,7 +5970,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=\"Estilo y formato\">Estilo y formato</link>"
-#. xlQ=
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6655,7 +5979,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 "Utilice la ventana Estilo y formato para asignar estilos a objetos y secciones de texto. Los estilos se pueden actualizar y modificar; también se pueden crear otros estilos."
-#. PA9%
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6665,7 +5988,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 "La ventana acoplable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"\">ventana acoplable</link> Estilo y formato puede estar abierta mientras se edita el documento."
-#. Kr@m
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6675,7 +5997,6 @@ msgctxt ""
msgid "How to apply a cell style:"
msgstr "Cómo aplicar un estilo de celda:"
-#. :A/X
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6685,7 +6006,6 @@ msgctxt ""
msgid "Select the cell or cell range."
msgstr "Seleccione la celda o el rango de celdas."
-#. jZT^
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6695,7 +6015,6 @@ msgctxt ""
msgid "Double-click the style in the Styles and Formatting window."
msgstr "Haga doble clic en el estilo en la ventana Estilo y formato."
-#. S.qt
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6705,7 +6024,6 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Estilos de celda"
-#. 1Ih_
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6715,7 +6033,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\">Muestra la lista de los estilos de celda disponibles para el <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"formato de celdas indirecto\">formato de celdas indirecto</link>.</ahelp>"
-#. X`SF
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6724,7 +6041,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\">Símbolo</alt></image>"
-#. =57p
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6734,7 +6050,6 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Estilo de celda"
-#. EUvs
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6744,7 +6059,6 @@ msgctxt ""
msgid "Page Styles"
msgstr "Estilos de página"
-#. )gk:
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6754,7 +6068,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
msgstr "<ahelp hid=\".uno:PageStyle\">Muestra los estilos de página disponibles para el formato de páginas indirecto.</ahelp>"
-#. jCFp
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6763,7 +6076,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\">Símbolo</alt></image>"
-#. fM(3
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6773,7 +6085,6 @@ msgctxt ""
msgid "Page Styles"
msgstr "Estilos de página"
-#. Id%4
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6783,7 +6094,6 @@ msgctxt ""
msgid "Fill Format Mode"
msgstr "Modo regadera"
-#. ?rGb
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6793,7 +6103,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\">Activa y desactiva el color de fondo. Utilice el símbolo de bote de pintura para asignar el estilo seleccionado en la ventana Estilo y formato.</ahelp>"
-#. oXV\
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6802,7 +6111,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\">Símbolo</alt></image>"
-#. @FQ:
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6812,7 +6120,6 @@ msgctxt ""
msgid "Fill Format Mode"
msgstr "Modo regadera"
-#. n0{=
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6822,7 +6129,6 @@ msgctxt ""
msgid "How to apply a new style with the paint can:"
msgstr "Cómo aplicar estilos mediante el símbolo bote de pintura:"
-#. dfE8
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6832,7 +6138,6 @@ msgctxt ""
msgid "Select the desired style from the Styles and Formatting window."
msgstr "Seleccione un estilo en la ventana Estilo y formato."
-#. N0}T
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6842,7 +6147,6 @@ msgctxt ""
msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr "Pulse en el símbolo <emph>Modo Regadera</emph>."
-#. #`p$
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6852,7 +6156,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 "Pulse la celda que desee formatear o arrastre el ratón sobre un área para dar formato a ésta. Repita la acción para otras celdas y rangos."
-#. oM^o
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6862,7 +6165,6 @@ msgctxt ""
msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
msgstr "Vuelva a pulsar en el símbolo de <emph>Modo regadera</emph> para salir de este modo."
-#. #DB-
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6872,7 +6174,6 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Nuevo estilo a partir de la selección"
-#. 0~78
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6882,7 +6183,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\">Crea un estilo nuevo basado en el formato del objeto seleccionado.</ahelp> Asigne un nombre al estilo en el diálogo <link href=\"text/shared/01/05140100.xhp\" name=\"Crear estilo\">Crear estilo</link>."
-#. 4E-.
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6891,7 +6191,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\">Símbolo</alt></image>"
-#. $9cJ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6901,7 +6200,6 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Nuevo estilo a partir de selección"
-#. Ei!D
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6911,7 +6209,6 @@ msgctxt ""
msgid "Update Style"
msgstr "Actualizar estilo"
-#. lXLT
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6921,7 +6218,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\">Actualiza el estilo seleccionado en la ventana Estilo y formato con el formato actual del objeto seleccionado.</ahelp>"
-#. m$D?
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6930,7 +6226,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\">Símbolo</alt></image>"
-#. 3z1F
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6940,7 +6235,6 @@ msgctxt ""
msgid "Update Style"
msgstr "Actualizar estilo"
-#. Gmp.
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6949,7 +6243,6 @@ msgctxt ""
msgid "Style List"
msgstr "Lista de estilos"
-#. PVr@
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6958,7 +6251,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\">Muestra la lista de los estilos de la categoría de estilo seleccionada.</ahelp>"
-#. ^!rg
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6967,7 +6259,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 "En el <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> se pueden elegir los comandos para crear un estilo nuevo, borrar alguno creado por el usuario o modificar el estilo seleccionado."
-#. =(qI
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6977,7 +6268,6 @@ msgctxt ""
msgid "Style Groups"
msgstr "Grupos de estilos"
-#. N{sQ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6987,7 +6277,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Enumera los grupos de estilos disponibles.</ahelp>"
-#. Pz,8
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -6996,7 +6285,6 @@ msgctxt ""
msgid "Creating Names"
msgstr "Crear nombres"
-#. ]es#
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7005,7 +6293,6 @@ msgctxt ""
msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
msgstr "<bookmark_value>áreas de celdas;crear nombres automáticamente</bookmark_value><bookmark_value>nombres;para áreas de celdas</bookmark_value>"
-#. G6JW
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7015,7 +6302,6 @@ msgctxt ""
msgid "Creating Names"
msgstr "Creación de nombres"
-#. TX+3
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7025,7 +6311,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\">Permite asignar un nombre a varias áreas de celdas de forma automática.</ahelp></variable>"
-#. Wlle
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7035,7 +6320,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 "Seleccione una zona que contenga todas las áreas a las que desee asignar un nombre. A continuación elija <emph>Insertar - Nombres - Definir</emph>. Se abre el diálogo <emph>Definir nombres</emph> que permite seleccionar las opciones de nombre deseadas."
-#. ]4+?
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7045,7 +6329,6 @@ msgctxt ""
msgid "Create names from"
msgstr "Nombre a partir de"
-#. oJxl
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7055,7 +6338,6 @@ msgctxt ""
msgid "Defines which part of the spreadsheet is to be used for creating the name."
msgstr "Define qué parte de la hoja de cálculo se utilizará para definir el nombre."
-#. ]e)G
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7065,7 +6347,6 @@ msgctxt ""
msgid "Top row"
msgstr "Fila superior"
-#. Nu,c
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7075,7 +6356,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\">Crea los nombres de área a partir de la fila de encabezado del área seleccionada.</ahelp> Cada columna recibe un nombre y una referencia de celda propios."
-#. ]f3A
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7085,7 +6365,6 @@ msgctxt ""
msgid "Left Column"
msgstr "Columna izquierda"
-#. 3(7g
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7095,7 +6374,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\">Crea los nombres de área a partir de las entradas en la primera columna del área de hoja seleccionada.</ahelp> Cada fila recibe un nombre y una referencia de celda propios."
-#. ;w]C
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7105,7 +6383,6 @@ msgctxt ""
msgid "Bottom row"
msgstr "Fila inferior"
-#. 8Gi5
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7115,7 +6392,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\">Crea los nombres de área a partir de las entradas en la última fila del área de hoja seleccionada.</ahelp> Cada columna recibe un nombre y una referencia de celda propios."
-#. x*Q4
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7125,7 +6401,6 @@ msgctxt ""
msgid "Right Column"
msgstr "Columna derecha"
-#. ;jq|
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7135,7 +6410,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\">Crea los nombres de área a partir de las entradas en la última columna del área de hoja seleccionada.</ahelp> Cada fila recibe un nombre y una referencia de celda propios."
-#. H;lm
#: 02170000.xhp
#, fuzzy
msgctxt ""
@@ -7145,7 +6419,6 @@ msgctxt ""
msgid "Delete Sheet"
msgstr "Eliminar hoja"
-#. Qmmk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7154,7 +6427,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
msgstr "<bookmark_value>hojas de cálculo;eliminar</bookmark_value><bookmark_value>hojas;eliminar</bookmark_value><bookmark_value>eliminar;hojas de cálculo</bookmark_value>"
-#. j8@!
#: 02170000.xhp
#, fuzzy
msgctxt ""
@@ -7165,7 +6437,6 @@ msgctxt ""
msgid "Delete Sheet"
msgstr "Eliminar hoja"
-#. ?w3]
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7175,7 +6446,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\" visibility=\"visible\">Borra la hoja actual tras una pregunta de confirmación.</ahelp></variable>"
-#. i7qp
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7185,7 +6455,6 @@ msgctxt ""
msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
msgstr "No se puede eliminar una hoja de cálculo mientras esté activada la opción <emph>Editar - Cambios - Registrar</emph>."
-#. Ib[_
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7195,7 +6464,6 @@ msgctxt ""
msgid "Yes"
msgstr "Sí"
-#. ixgk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7205,7 +6473,6 @@ msgctxt ""
msgid "Deletes the current sheet."
msgstr "Elimina la hoja actual."
-#. 2E-d
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7215,7 +6482,6 @@ msgctxt ""
msgid "No"
msgstr "No"
-#. 5g6Q
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7225,7 +6491,6 @@ msgctxt ""
msgid "Cancels the dialog. No delete is performed."
msgstr "Cancela el diálogo. No se lleva a cabo ninguna operación de borrado."
-#. e;Z0
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7234,7 +6499,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. H8;K
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7243,7 +6507,6 @@ msgctxt ""
msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
msgstr "<bookmark_value>calcular;subtotales</bookmark_value><bookmark_value>subtotales;opciones de ordenación</bookmark_value><bookmark_value>opciones;cálculo de subtotales</bookmark_value>"
-#. GKt]
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7253,7 +6516,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Opciones\">Opciones</link>"
-#. %HYN
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7263,7 +6525,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\">Especifique la configuración para calcular y mostrar subtotales.</ahelp>"
-#. A4L0
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7273,7 +6534,6 @@ msgctxt ""
msgid "Page break between groups"
msgstr "Nueva página entre grupos"
-#. U{hV
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7283,7 +6543,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\">Inserta una página nueva después de cada grupo de datos cuyo subtotal se ha calculado.</ahelp>"
-#. o7v}
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7294,7 +6553,6 @@ msgctxt ""
msgid "Case sensitive"
msgstr "Mayúsculas/minúsculas"
-#. R;IQ
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7304,7 +6562,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\">Recalcula los subtotales al cambiar la combinación de mayúsculas y minúsculas de una etiqueta de datos.</ahelp>"
-#. #:oS
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7314,7 +6571,6 @@ msgctxt ""
msgid "Pre-sort area according to groups"
msgstr "Ordenar primero el área por grupos"
-#. H33o
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7324,7 +6580,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\">Ordena el área seleccionada en el cuadro <emph>Agrupar por</emph> de las pestañas del Grupo, en función de las columnas seleccionadas.</ahelp>"
-#. 9S.~
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7334,7 +6589,6 @@ msgctxt ""
msgid "Sort"
msgstr "Ordenar"
-#. vJKo
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7345,7 +6599,6 @@ msgctxt ""
msgid "Include formats"
msgstr "Incluir formatos"
-#. q:@M
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7355,7 +6608,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\">Tiene en cuenta los atributos de formato al ordenar.</ahelp>"
-#. d6a,
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7366,7 +6618,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "Orden de clasificación definido por el usuario"
-#. hW+h
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7376,7 +6627,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\">Usa un orden de clasificación personalizado, que se haya definido en el cuadro de diálogo \"Opciones\" en <emph>%PRODUCTNAME Calc - Listas ordenadas</emph>.</ahelp>"
-#. _rFe
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7386,7 +6636,6 @@ msgctxt ""
msgid "Ascending"
msgstr "Ascendente"
-#. F)Ad
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7396,7 +6645,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\">El ordenamiento comienza con el valor más bajo. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se pueden definir las opciones predeterminadas en Herramientas - Opciones - Configuración de idioma - Idiomas."
-#. oxcm
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7406,7 +6654,6 @@ msgctxt ""
msgid "Descending"
msgstr "Descendente"
-#. V\jb
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7416,7 +6663,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\">El ordenamiento comienza con el valor más alto. Se pueden definir los criterios del ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se pueden definir las opciones predeterminadas en Herramientas - Opciones - Configuración de idioma - Idiomas."
-#. r!TU
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7425,7 +6671,6 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "Add-in para programar en $[officename] Calc"
-#. f07|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7434,7 +6679,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>programar; add-ins</bookmark_value><bookmark_value>bibliotecas compartidas; programar</bookmark_value><bookmark_value>funciones DLL externas</bookmark_value><bookmark_value>funciones; DLL de complemento add-in de $[officename] Calc</bookmark_value><bookmark_value>add-ins; para programar</bookmark_value>"
-#. ]=|@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7444,7 +6688,6 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "Add-in para programar en $[officename] Calc"
-#. 0h//
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7454,7 +6697,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 "El método para ampliar Calc mediante add-ins que se describe a continuación no está actualizado. Para garantizar la compatibilidad con los add-ins existentes, las interfaces siguen siendo válidas y compatibles. Sin embargo, para programar add-ins nuevos se requieren nuevas <link href=\"text/shared/guide/integratinguno.xhp\" name=\"funciones API\">funciones API</link>."
-#. PX9%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7464,7 +6706,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 "$[officename] Calc se puede expandir mediante Add-Ins, módulos externos de programación que proporcionan funciones adicionales para trabajar con las hojas de cálculo. Dichas funciones se muestran en el <emph>Asistente para funciones</emph> de la categoría <emph>Add-In</emph>. Si desea programar un add-in, aquí se indican las funciones que debe exportar la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL externa</defaultinline></switchinline> para poder adjuntar el add-in de forma satisfactoria."
-#. qE7_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7474,7 +6715,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 "$[officename] busca en la carpeta definida en <emph>Herramientas - Opciones - $[officename] - Rutas - Módulos </emph>una <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL</defaultinline></switchinline>. Para que $[officename] reconozca ésta, la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>DLL</defaultinline></switchinline> debe tener ciertas propiedades, como se explica a continuación. Esta información permite programar sus propios add-ins para el <emph>Asistente para funciones</emph> de $[officename] Calc."
-#. HTB9
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7484,7 +6724,6 @@ msgctxt ""
msgid "The Add-In Concept"
msgstr "El concepto de Add-in"
-#. 12.b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7494,7 +6733,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 "Cada biblioteca Add-in incluye diversas funciones. Algunas funciones se utilizan con fines administrativos. Puede elegir casi cualquier nombre para sus propias funciones. No obstante, se han de seguir reglas específicas relativas al paso de parámetros. Los convenios exactos de asignación de nombres y llamada de las funciones varían de una plataforma a otra."
-#. /.c;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7504,7 +6742,6 @@ msgctxt ""
msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
msgstr "Funciones de la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>DLL de add-in</defaultinline></switchinline>"
-#. 4KJZ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7514,7 +6751,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 "Como mínimo deben existir las funciones administrativas <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> y <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link>. Con ellas se pueden determinar las funciones, los tipos de parámetros y los valores de retorno. Como valores de retorno se admiten los tipos Doble y Cadena. Como parámetros, las áreas de celdas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">doble matriz</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">matriz de cadenas</link> y <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">matriz de celdas</link> se admiten adicionalmente."
-#. epi_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7524,7 +6760,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 "Los parámetros se transmiten por referencia. Por tanto, en principio los valores podrían ser modificados. Sin embargo, $[officename] Calc no admite ningún cambio, dado que no es recomendable que se produzcan modificaciones dentro de una hoja de cálculo."
-#. OG)d
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7534,7 +6769,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 "Las bibliotecas se pueden volver a cargar durante el tiempo de ejecución y su contenido lo pueden analizar las funciones administrativas. Para cada función hay información disponible sobre el número y los tipos de parámetros, los nombres de funciones internas y externas, así como un número administrativo."
-#. JPh:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7544,7 +6778,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 "Las funciones se activan simultáneamente y devuelven el resultado de modo inmediato. También es posible utilizar funciones de tiempo real (funciones asíncronas), pero debido a su complejidad no serán abordadas en esta Ayuda."
-#. %0.J
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7554,7 +6787,6 @@ msgctxt ""
msgid "General information about the interface"
msgstr "Aspectos generales sobre la interfaz"
-#. -j#p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7564,7 +6796,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 "El número máximo de parámetros en una función Add-in acoplada a $[officename] Calc es 16: un valor de retorno y un máximo de 15 parámetros de entrada de funciones."
-#. D6Q*
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7574,7 +6805,6 @@ msgctxt ""
msgid "The data types are defined as follows:"
msgstr "Los tipos de datos se definen del modo siguiente:"
-#. 7[R#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7584,7 +6814,6 @@ msgctxt ""
msgid "<emph>Data types</emph>"
msgstr "<emph>Tipos de datos</emph>"
-#. .Vi.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7594,7 +6823,6 @@ msgctxt ""
msgid "<emph>Definition</emph>"
msgstr "<emph>Definición</emph>"
-#. V+3!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7604,7 +6832,6 @@ msgctxt ""
msgid "CALLTYPE"
msgstr "CALLTYPE"
-#. Pzi:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7614,7 +6841,6 @@ msgctxt ""
msgid "Under Windows: FAR PASCAL (_far _pascal)"
msgstr "con Windows: FAR PASCAL (_far _pascal)"
-#. T)%D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7624,7 +6850,6 @@ msgctxt ""
msgid "Other: default (operating system specific default)"
msgstr "en los demás casos: Predeterminado (según el sistema operativo)"
-#. {u8x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7634,7 +6859,6 @@ msgctxt ""
msgid "USHORT"
msgstr "USHORT"
-#. ku,@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7644,7 +6868,6 @@ msgctxt ""
msgid "2 Byte unsigned Integer"
msgstr "entero sin signo de 2 bytes"
-#. [#o}
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7654,7 +6877,6 @@ msgctxt ""
msgid "DOUBLE"
msgstr "double"
-#. Od^3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7664,7 +6886,6 @@ msgctxt ""
msgid "8 byte platform-dependent format"
msgstr "formato dependiente de la plataforma, de 8 bytes"
-#. v4kn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7674,7 +6895,6 @@ msgctxt ""
msgid "Paramtype"
msgstr "Paramtype"
-#. J[t7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7684,7 +6904,6 @@ msgctxt ""
msgid "Platform-dependent like int"
msgstr "dependiente de la plataforma, como int"
-#. ]Jmz
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7694,7 +6913,6 @@ msgctxt ""
msgid "PTR_DOUBLE =0 pointer to a double"
msgstr "PTR_DOUBLE =0 puntero a un double"
-#. d\d;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7704,7 +6922,6 @@ msgctxt ""
msgid "PTR_STRING =1 pointer to a zero-terminated string"
msgstr "PTR_STRING =1 puntero sobre una cadena de caracteres limitada temporalmente a cero"
-#. pT9k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7714,7 +6931,6 @@ msgctxt ""
msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
msgstr "PTR_DOUBLE_ARR =2 puntero a un array de tipo double"
-#. 0Ci?
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7724,7 +6940,6 @@ msgctxt ""
msgid "PTR_STRING_ARR =3 pointer to a string array"
msgstr "PTR_STRING_ARR =3 puntero a un array de tipo string"
-#. );D8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7734,7 +6949,6 @@ msgctxt ""
msgid "PTR_CELL_ARR =4 pointer to a cell array"
msgstr "PTR_CELL_ARR =4 puntero a un array de tipo cell"
-#. *.4r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7744,7 +6958,6 @@ msgctxt ""
msgid "NONE =5"
msgstr "NINGUNO =5"
-#. *}c#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7754,7 +6967,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Biblioteca compartida</caseinline><defaultinline>Funciones de DLL</defaultinline></switchinline>"
-#. S4Rn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7764,7 +6976,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 "A continuación, se presenta una descripción de dichas funciones, que pueden activarse en la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL externa</defaultinline></switchinline>."
-#. FiKx
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7774,7 +6985,6 @@ msgctxt ""
msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
msgstr "Las indicaciones siguientes se aplican a todas las funciones de <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL</defaultinline></switchinline>:"
-#. h+|/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7784,7 +6994,6 @@ msgctxt ""
msgid "void CALLTYPE fn(out, in1, in2, ...)"
msgstr "void CALLTYPE fn(salida, entrada1, entrada2, ...)"
-#. ,tb,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7794,7 +7003,6 @@ msgctxt ""
msgid "Output: Resulting value"
msgstr "Salida: Resultado"
-#. *7on
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7804,7 +7012,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 "Entrada: Cualquier número de tipos (double&, char*, double*, char**, área de celdas), donde <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">área de celdas</link> es una matriz de tipos matriz de double (entero de doble precisión), matriz de cadenas o matriz de celdas."
-#. SLns
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7814,7 +7021,6 @@ msgctxt ""
msgid "GetFunctionCount()"
msgstr "GetFunctionCount()"
-#. !A-T
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7824,7 +7030,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 "Origina un número de funciones que no incluyen las de administración, en el parámetro de referencia. Cada función tiene asignado un número único comprendido entre 0 y nCount-1. Este código se utiliza posteriormente para las funciones <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> y <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link>."
-#. w;R_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7834,7 +7039,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>Sintaxis</emph>"
-#. {D9q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7844,7 +7048,6 @@ msgctxt ""
msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
-#. )Pss
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7854,7 +7057,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>Parámetros</emph>"
-#. _)5W
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7864,7 +7066,6 @@ msgctxt ""
msgid "USHORT &nCount:"
msgstr "USHORT &nCount:"
-#. XL\g
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7874,7 +7075,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 "Salida: Referencia a una variable que debe contener el número de funciones Add-in. Por ejemplo, si Add-in ofrece 5 funciones en $[officename] Calc, nCount=5."
-#. yZ:4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7884,7 +7084,6 @@ msgctxt ""
msgid "GetFunctionData()"
msgstr "GetFunctionData()"
-#. K2nJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7894,7 +7093,6 @@ msgctxt ""
msgid "Determines all the important information about an Add-In function."
msgstr "Determina toda la información importante acerca de una función Add-in."
-#. [I`-
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7904,7 +7102,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>Sintaxis</emph>"
-#. _zz3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7914,7 +7111,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"
@@ -7924,7 +7120,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>Parámetros</emph>"
-#. (t.v
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7934,7 +7129,6 @@ msgctxt ""
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
-#. )Fq6
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7944,7 +7138,6 @@ msgctxt ""
msgid "Input: Function number between 0 and nCount-1, inclusively."
msgstr "Entrada: Número de función comprendido entre 0 y nCount-1, ambos incluidos."
-#. ;:0r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7954,7 +7147,6 @@ msgctxt ""
msgid "char* pFuncName:"
msgstr "char* pFuncName:"
-#. 0pxr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7964,7 +7156,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 "Salida: Nombre de la función que ve el programador, como se denomina en la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>DLL</defaultinline></switchinline>. Este nombre no determina el nombre que se utiliza en el <emph>Asistente para funciones</emph>."
-#. i(i4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7974,7 +7165,6 @@ msgctxt ""
msgid "USHORT& nParamCount:"
msgstr "USHORT& nParamCount:"
-#. ?C#E
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7984,7 +7174,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 "Salida: Número de parámetros de la función Add-in. Dicho número debe ser superior a 0, ya que siempre hay un resultado; el valor máximo es 16."
-#. qJ$`
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7994,7 +7183,6 @@ msgctxt ""
msgid "Paramtype* peType:"
msgstr "Paramtype* peType:"
-#. HBX!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8004,7 +7192,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 "Salida: Puntero sobre un array que contiene exactamente 16 variables del tipo paramtype. Las primeras entradas de nParamCount se completan con el tipo del parámetro correspondiente."
-#. 7gZ,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8014,7 +7201,6 @@ msgctxt ""
msgid "char* pInternalName:"
msgstr "char* pInternalName:"
-#. *R\g
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8024,7 +7210,6 @@ msgctxt ""
msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
msgstr "Salida: Nombre de la función que ve el usuario, como aparece en el <emph>Asistente para funciones</emph>. Puede contener el carácter umlaut."
-#. VgFb
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8034,7 +7219,6 @@ msgctxt ""
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr "Los parámetros pFuncName y pInternalName son arrays de char que están implementados en $[officename] Calc con el tamaño 256."
-#. ^Kjm
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8044,7 +7228,6 @@ msgctxt ""
msgid "GetParameterDescription()"
msgstr "GetParameterDescription()"
-#. n~v6
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8054,7 +7237,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 "Proporciona una breve descripción de la función Add-in y de sus parámetros. Si lo desea, esta función puede utilizar para mostrar una descripción de función y parámetros en el <emph>Asistente para funciones</emph>."
-#. \RJ?
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8064,7 +7246,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>Sintaxis</emph>"
-#. orb/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8074,7 +7255,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"
@@ -8084,7 +7264,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>Parámetros</emph>"
-#. bOOu
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8094,7 +7273,6 @@ msgctxt ""
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
-#. =A-K
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8104,7 +7282,6 @@ msgctxt ""
msgid "Input: Number of the function in the library; between 0 and nCount-1."
msgstr "Entrada: Número de la función dentro de la biblioteca, comprendido entre 0 y nCount-1."
-#. xm`1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8114,7 +7291,6 @@ msgctxt ""
msgid "USHORT& nParam:"
msgstr "USHORT& nParam:"
-#. /kUh
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8124,7 +7300,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 "Entrada: Indica el parámetro al cual debe referirse la descripción; los parámetros comienzan por 1. Si el parámetro nParam es 0, debe ofrecerse la descripción de la propia función en pDesc; en este caso, pName carece de significado."
-#. 9m`Q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8134,7 +7309,6 @@ msgctxt ""
msgid "char* pName:"
msgstr "char* pName:"
-#. {8\r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8144,7 +7318,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 "Salida: Acepta el nombre y el tipo de parámetro; por ejemplo, la palabra \"número\" o \"cadena de caracteres\" o \"fecha\", etc. En $[officename] Calc está implementado como char[256]."
-#. ?f8r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8154,7 +7327,6 @@ msgctxt ""
msgid "char* pDesc:"
msgstr "char* pDesc:"
-#. hjz+
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8164,7 +7336,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 "Salida: Acepta la descripción del parámetro; por ejemplo, \"valor según el cual debe calcularse el universo\". En $[officename] Calc está implementado como char[256]."
-#. @LnV
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8174,7 +7345,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 "pName y pDesc son matrices de caracteres de tamaño 256, implementadas en $[officename] Calc. Tenga en cuenta que el espacio disponible en el <emph>Asistente para funciones</emph> es limitado y que no es posible utilizar la totalidad de los 256 caracteres."
-#. o!{-
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8184,7 +7354,6 @@ msgctxt ""
msgid "Cell areas"
msgstr "Áreas de celdas"
-#. SrC.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8194,7 +7363,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 "Las tablas siguientes contienen información sobre las estructuras de datos que debe ofrecer un módulo de programa externo para poder transmitir áreas de celdas. En función del tipo de datos, $[officename] Calc distingue entre tres arrays diferentes."
-#. 9gO~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8204,7 +7372,6 @@ msgctxt ""
msgid "Double Array"
msgstr "Array de tipo doble"
-#. 2Nl[
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8214,7 +7381,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 "Un área de celda puede transmitirse como parámetro con los valores del tipo número/double. En $[officename] Calc, un double array se define de la forma siguiente:"
-#. B3if
#: 04060112.xhp
#, fuzzy
msgctxt ""
@@ -8225,7 +7391,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>Desplazamiento</emph>"
-#. -u,r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8235,7 +7400,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>Nombre</emph>"
-#. jvQ)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8245,7 +7409,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Descripción</emph>"
-#. H%)_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8255,7 +7418,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. ?=~l
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8265,7 +7427,6 @@ msgctxt ""
msgid "Col1"
msgstr "Col1"
-#. sfDe
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8275,7 +7436,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "Número de columna de la esquina superior izquierda del área de celdas. La numeración comienza por 0."
-#. i_97
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8285,7 +7445,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. s^T[
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8295,7 +7454,6 @@ msgctxt ""
msgid "Row1"
msgstr "Row1"
-#. N3|:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8305,7 +7463,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "Número de fila de la esquina superior izquierda del área de celdas, contado a partir de 0."
-#. 8Z}9
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8315,7 +7472,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. e\;#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8325,7 +7481,6 @@ msgctxt ""
msgid "Tab1"
msgstr "Tab1"
-#. TX4%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8335,7 +7490,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "Número de hoja de la esquina superior izquierda del área de celdas, contado a partir de 0."
-#. )ab!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8345,7 +7499,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. })Wh
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8355,7 +7508,6 @@ msgctxt ""
msgid "Col2"
msgstr "Col2"
-#. {Pal
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8365,7 +7517,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "Número de columna de la esquina inferior derecha del área de celdas. La numeración comienza por 0."
-#. 4Bp#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8375,7 +7526,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. /ftp
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8385,7 +7535,6 @@ msgctxt ""
msgid "Row2"
msgstr "Fila2"
-#. KOj.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8395,7 +7544,6 @@ msgctxt ""
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "Número de fila de la esquina inferior derecha del área de celdas, contado a partir de 0."
-#. X,#=
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8405,7 +7553,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. a)`u
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8415,7 +7562,6 @@ msgctxt ""
msgid "Tab2"
msgstr "Tab2"
-#. ex(i
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8425,7 +7571,6 @@ msgctxt ""
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "Número de hoja de la esquina inferior derecha del área de celdas, contado a partir de 0."
-#. yll8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8435,7 +7580,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. ,Lox
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8445,7 +7589,6 @@ msgctxt ""
msgid "Count"
msgstr "Count"
-#. y~bv
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8455,7 +7598,6 @@ msgctxt ""
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "Número total de cada uno de los siguientes elementos. Las celdas vacías no están incluidas en el recuento y no se transmiten."
-#. 0pBT
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8465,7 +7607,6 @@ msgctxt ""
msgid "14"
msgstr "14"
-#. Y6(X
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8475,7 +7616,6 @@ msgctxt ""
msgid "Col"
msgstr "Col"
-#. 0E5|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8485,7 +7625,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "Número de columna del elemento. La numeración comienza por 0."
-#. 8CsM
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8495,7 +7634,6 @@ msgctxt ""
msgid "16"
msgstr "16"
-#. T0J\
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8505,7 +7643,6 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. pa54
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8515,7 +7652,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "Número de fila del elemento, contado a partir de 0."
-#. [!ln
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8525,7 +7661,6 @@ msgctxt ""
msgid "18"
msgstr "18"
-#. ]W4/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8535,7 +7670,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tab"
-#. 8T/b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8545,7 +7679,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "Número de hoja del elemento, contado a partir de 0."
-#. [_r2
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8555,7 +7688,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. oB\p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8565,7 +7697,6 @@ msgctxt ""
msgid "Error"
msgstr "Error"
-#. ZC,)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8575,7 +7706,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 "Número de error; el valor 0 está reservado para \"ningún error\". Si el elemento procede de una celda de fórmula, el valor del error está determinado por la fórmula."
-#. 84R5
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8585,7 +7715,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. qEhY
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8595,7 +7724,6 @@ msgctxt ""
msgid "Value"
msgstr "Value"
-#. dh(a
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8605,7 +7733,6 @@ msgctxt ""
msgid "8 byte IEEE variable of type double/floating point"
msgstr "Variable IEEE de 8 bytes del tipo double/coma flotante"
-#. 6ssq
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8615,7 +7742,6 @@ msgctxt ""
msgid "30"
msgstr "30"
-#. ^d[(
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8625,7 +7751,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. ~Y=_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8635,7 +7760,6 @@ msgctxt ""
msgid "Next element"
msgstr "Elemento siguiente"
-#. {n3}
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8645,7 +7769,6 @@ msgctxt ""
msgid "String Array"
msgstr "String array"
-#. =~81
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8655,7 +7778,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 "Un área de celdas que contiene valores de tipo texto es transmitido como string array. En $[officename] Calc, un array de string se define como sigue:"
-#. ^[Q|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8665,7 +7787,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>Offset</emph>"
-#. *;0x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8675,7 +7796,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>Nombre</emph>"
-#. #!I7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8685,7 +7805,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Descripción</emph>"
-#. Rbe0
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8695,7 +7814,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. A`GJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8705,7 +7823,6 @@ msgctxt ""
msgid "Col1"
msgstr "Col1"
-#. ei)b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8715,7 +7832,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "Número de columna de la esquina superior izquierda del área de celdas. La numeración comienza por 0."
-#. IXjJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8725,7 +7841,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. zY+I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8735,7 +7850,6 @@ msgctxt ""
msgid "Row1"
msgstr "Row1"
-#. HnMQ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8745,7 +7859,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "Número de fila de la esquina superior izquierda del área de celdas, contado a partir de 0."
-#. p/E#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8755,7 +7868,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. 0b/D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8765,7 +7877,6 @@ msgctxt ""
msgid "Tab1"
msgstr "Tab1"
-#. o4K8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8775,7 +7886,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "Número de hoja de la esquina superior izquierda del área de celdas, contado a partir de 0."
-#. =GUV
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8785,7 +7895,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. (zF0
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8795,7 +7904,6 @@ msgctxt ""
msgid "Col2"
msgstr "Col2"
-#. .GiB
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8805,7 +7913,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "Número de columna de la esquina inferior derecha del área de celdas. La numeración comienza por 0."
-#. |L-4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8815,7 +7922,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. o8]=
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8825,7 +7931,6 @@ msgctxt ""
msgid "Row2"
msgstr "Fila2"
-#. hx!.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8835,7 +7940,6 @@ msgctxt ""
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "Número de fila de la esquina inferior derecha del área de celdas, contado a partir de 0."
-#. [yi,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8845,7 +7949,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. Vio^
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8855,7 +7958,6 @@ msgctxt ""
msgid "Tab2"
msgstr "Tab2"
-#. @^yr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8865,7 +7967,6 @@ msgctxt ""
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "Número de hoja de la esquina inferior derecha del área de celdas, contado a partir de 0."
-#. -b}X
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8875,7 +7976,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. 0.?G
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8885,7 +7985,6 @@ msgctxt ""
msgid "Count"
msgstr "Count"
-#. #u6l
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8895,7 +7994,6 @@ msgctxt ""
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "Número total de cada uno de los siguientes elementos. Las celdas vacías no están incluidas en el recuento y no se transmiten."
-#. +D1U
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8905,7 +8003,6 @@ msgctxt ""
msgid "14"
msgstr "14"
-#. hg5]
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8915,7 +8012,6 @@ msgctxt ""
msgid "Col"
msgstr "Col"
-#. JG#I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8925,7 +8021,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "Número de columna del elemento. La numeración comienza por 0."
-#. 5+CL
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8935,7 +8030,6 @@ msgctxt ""
msgid "16"
msgstr "16"
-#. Q.#D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8945,7 +8039,6 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. G99P
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8955,7 +8048,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "Número de fila del elemento, contado a partir de 0."
-#. xsm^
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8965,7 +8057,6 @@ msgctxt ""
msgid "18"
msgstr "18"
-#. %4|p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8975,7 +8066,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tab"
-#. hnr,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8985,7 +8075,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "Número de hoja del elemento, contado a partir de 0."
-#. !T`@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8995,7 +8084,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. %M?x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9005,7 +8093,6 @@ msgctxt ""
msgid "Error"
msgstr "Error"
-#. jj1H
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9015,7 +8102,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 "Número de error; el valor 0 está reservado para \"ningún error\". Si el elemento procede de una celda de fórmula, el valor del error está determinado por la fórmula."
-#. t*;k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9025,7 +8111,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. Xil1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9035,7 +8120,6 @@ msgctxt ""
msgid "Len"
msgstr "Len"
-#. e-7j
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9045,7 +8129,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 "Tamaño del siguiente string, incluido el byte cero de cierre. Si el tamaño es un valor impar, incluido el byte cero de cierre, se añade al string un segundo byte cero para convertirlo en par. Por tanto, Len se calcula con la fórmula ((StrLen+2)&~1)."
-#. |hb;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9055,7 +8138,6 @@ msgctxt ""
msgid "24"
msgstr "24"
-#. #:41
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9065,7 +8147,6 @@ msgctxt ""
msgid "String"
msgstr "String"
-#. 3(BM
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9075,7 +8156,6 @@ msgctxt ""
msgid "String with closing zero byte"
msgstr "Sucesión de caracteres con byte cero de cierre"
-#. :1E3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9085,7 +8165,6 @@ msgctxt ""
msgid "24+Len"
msgstr "24+Largo"
-#. 6swn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9095,7 +8174,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. oR=o
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9105,7 +8183,6 @@ msgctxt ""
msgid "Next element"
msgstr "Elemento siguiente"
-#. @H/t
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9115,7 +8192,6 @@ msgctxt ""
msgid "Cell Array"
msgstr "Cell array"
-#. QMp%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9125,7 +8201,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 "Se utilizan matrices de celdas para llamar a áreas de celdas que contienen tanto datos de texto como numéricos. En $[officename] Calc una matriz de celdas se define de la siguiente forma:"
-#. _yc7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9135,7 +8210,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>Offset</emph>"
-#. TijD
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9145,7 +8219,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>Nombre</emph>"
-#. @B6+
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9155,7 +8228,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Descripción</emph>"
-#. G4+U
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9165,7 +8237,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. d=(S
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9175,7 +8246,6 @@ msgctxt ""
msgid "Col1"
msgstr "Col1"
-#. CTEe
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9185,7 +8255,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "Número de columna de la esquina superior izquierda del área de celdas. La numeración comienza por 0."
-#. y(@Z
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9195,7 +8264,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. t-,O
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9205,7 +8273,6 @@ msgctxt ""
msgid "Row1"
msgstr "Row1"
-#. v}To
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9215,7 +8282,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "Número de fila de la esquina superior izquierda del área de celdas, contado a partir de 0."
-#. {Pr|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9225,7 +8291,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. yL3I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9235,7 +8300,6 @@ msgctxt ""
msgid "Tab1"
msgstr "Tab1"
-#. 40/,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9245,7 +8309,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "Número de hoja de la esquina superior izquierda del área de celdas, contado a partir de 0."
-#. ~0Vt
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9255,7 +8318,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. .sqA
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9265,7 +8327,6 @@ msgctxt ""
msgid "Col2"
msgstr "Col2"
-#. v|$m
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9275,7 +8336,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "Número de columna de la esquina inferior derecha del área de celdas. La numeración comienza por 0."
-#. 4X#3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9285,7 +8345,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. HZ+o
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9295,7 +8354,6 @@ msgctxt ""
msgid "Row2"
msgstr "Row2"
-#. ;+4.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9305,7 +8363,6 @@ msgctxt ""
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "Número de fila de la esquina inferior derecha del rango de celdas, contado a partir de 0."
-#. L[}k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9315,7 +8372,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. C2A:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9325,7 +8381,6 @@ msgctxt ""
msgid "Tab2"
msgstr "Tab2"
-#. (U0B
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9335,7 +8390,6 @@ msgctxt ""
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "Número de hoja de la esquina inferior derecha del área de celdas, contado a partir de 0."
-#. Di`(
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9345,7 +8399,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. ]i./
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9355,7 +8408,6 @@ msgctxt ""
msgid "Count"
msgstr "Count"
-#. g*4)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9365,7 +8417,6 @@ msgctxt ""
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "Número total de cada uno de los siguientes elementos. Las celdas vacías no están incluidas en el recuento y no se transmiten."
-#. d~{B
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9375,7 +8426,6 @@ msgctxt ""
msgid "14"
msgstr "14"
-#. [cSn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9385,7 +8435,6 @@ msgctxt ""
msgid "Col"
msgstr "Col"
-#. +YB4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9395,7 +8444,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "Número de columna del elemento. La numeración comienza por 0."
-#. :^x)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9405,7 +8453,6 @@ msgctxt ""
msgid "16"
msgstr "16"
-#. FCC8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9415,7 +8462,6 @@ msgctxt ""
msgid "Row"
msgstr "Row"
-#. K[1q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9425,7 +8471,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "Número de fila del elemento, contado a partir de 0."
-#. 5@Na
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9435,7 +8480,6 @@ msgctxt ""
msgid "18"
msgstr "18"
-#. |nA~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9445,7 +8489,6 @@ msgctxt ""
msgid "Tab"
msgstr "Tab"
-#. =d5p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9455,7 +8498,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "Número de hoja del elemento, contado a partir de 0."
-#. W:Wr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9465,7 +8507,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. R.+I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9475,7 +8516,6 @@ msgctxt ""
msgid "Error"
msgstr "Error"
-#. tC`_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9485,7 +8525,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 "Número de error; el valor 0 está reservado para \"ningún error\". Si el elemento procede de una celda de fórmula, el valor del error está determinado por la fórmula."
-#. E:D1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9495,7 +8534,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. O]eT
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9505,7 +8543,6 @@ msgctxt ""
msgid "Type"
msgstr "Tipo"
-#. SZ?]
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9515,7 +8552,6 @@ msgctxt ""
msgid "Type of cell content, 0 == Double, 1 == String"
msgstr "Tipo de contenido de la celda, 0 == double, 1 == string"
-#. \)8W
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9525,7 +8561,6 @@ msgctxt ""
msgid "24"
msgstr "24"
-#. YFU~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9535,7 +8570,6 @@ msgctxt ""
msgid "Value or Len"
msgstr "Value or Len"
-#. S$R*
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9545,7 +8579,6 @@ msgctxt ""
msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
msgstr "Si el tipo == 0: Variable IEEE de 8 bytes del tipo double/coma flotante"
-#. Swqx
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9555,7 +8588,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 "Si el tipo == 1: Tamaño del siguiente string, incluido el byte cero de cierre. Si el tamaño es un valor impar, incluido el byte cero de cierre, se añade al string un segundo byte cero para convertirlo en par. Por tanto, Len se calcula con la fórmula ((StrLen+2)&~1)."
-#. {LyP
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9565,7 +8597,6 @@ msgctxt ""
msgid "26 if type==1"
msgstr "26 if Type==1"
-#. a=]|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9575,7 +8606,6 @@ msgctxt ""
msgid "String"
msgstr "String"
-#. @2%E
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9585,7 +8615,6 @@ msgctxt ""
msgid "If type == 1: String with closing zero byte"
msgstr "Si el tipo == 1: Sucesión de caracteres con byte cero de cierre"
-#. :#*h
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9595,7 +8624,6 @@ msgctxt ""
msgid "32 or 26+Len"
msgstr "32 or 26+Len"
-#. NlMG
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9605,7 +8633,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. V?eC
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9615,7 +8642,6 @@ msgctxt ""
msgid "Next element"
msgstr "Elemento siguiente"
-#. W.-Z
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9624,7 +8650,6 @@ msgctxt ""
msgid "Statistical Functions Part Four"
msgstr "Funciones estadísticas, cuarta parte"
-#. @Ck8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9634,7 +8659,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=\"Funciones estadísticas, cuarta parte\">Funciones estadísticas, cuarta parte</link></variable>"
-#. NUsc
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9643,7 +8667,6 @@ msgctxt ""
msgid "<bookmark_value>MAX function</bookmark_value>"
msgstr "<bookmark_value>MÁX</bookmark_value>"
-#. ,Qs.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9653,7 +8676,6 @@ msgctxt ""
msgid "MAX"
msgstr "MÁX"
-#. ;Zdg
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9663,7 +8685,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MAX\">Devuelve el valor máximo de una lista de argumentos.</ahelp>"
-#. 8#N|
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9672,7 +8693,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 "Devuelve 0 si no ha encontrado un valor numérico y un error en el(los) rango(s) de celdas pasando como referencia(s) de celda(s). Las celdas de Texto son ignoradas por MÍN() y MÁX(). Las funciones MÍNA() y MÁXA() devuelven 0 si no encuentran un valor (numérico o texto) y un error. Pasando un argumento de cadena literal para MIN() o MAX(), por ejemplo. MÍN(\"cadena\"), sigue resultando en un error."
-#. h%f*
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9682,7 +8702,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. Tkh1
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9692,7 +8711,6 @@ msgctxt ""
msgid "MAX(Number1; Number2; ...Number30)"
msgstr "MÁX(Número1; Número2; ...; Número30)"
-#. I/$L
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -9703,7 +8721,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos numéricos."
-#. hHHp
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9713,7 +8730,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 9:A5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9723,7 +8739,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MÁX(A1;A2;A3;50;100;200)</item> devuelve el valor máximo de la lista."
-#. o4*?
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9733,7 +8748,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MÁX(A1:B100)</item> devuelve el valor máximo de la lista."
-#. wVN{
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9742,7 +8756,6 @@ msgctxt ""
msgid "<bookmark_value>MAXA function</bookmark_value>"
msgstr "<bookmark_value>MÁXA</bookmark_value>"
-#. Zva\
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9752,7 +8765,6 @@ msgctxt ""
msgid "MAXA"
msgstr "MÁXA"
-#. K{5@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9762,7 +8774,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\">Devuelve el valor máximo de una lista de argumentos. A diferencia de MÁX, esta función admite texto. El valor del texto es 0.</ahelp>"
-#. VVSH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9771,7 +8782,6 @@ msgctxt ""
msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
msgstr "Las funciones MÍNA() and MÁXA() devuelven 0 si no hay valor (numérico o texto) y si no se ha encontrado error."
-#. \5N@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9781,7 +8791,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. WFLu
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9791,7 +8800,6 @@ msgctxt ""
msgid "MAXA(Value1; Value2; ... Value30)"
msgstr "MÁXA(Valor1; Valor2; ... Valor30)"
-#. StIA
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9801,7 +8809,6 @@ msgctxt ""
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>Valor1; Valor2;... Valor30</emph> son los valores o rangos. Al texto se asigna el valor 0."
-#. 8dcR
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9811,7 +8818,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 60bC
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9821,7 +8827,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MÁXA(A1;A2;A3;50;100;200;\"Texto\")</item> devuelve el valor máximo de la lista."
-#. 18L]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9831,7 +8836,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MÁXA(A1:B100)</item> devuelve el valor máximo de la lista."
-#. /nRB
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9840,7 +8844,6 @@ msgctxt ""
msgid "<bookmark_value>MEDIAN function</bookmark_value>"
msgstr "<bookmark_value>MEDIANA</bookmark_value>"
-#. U9T_
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9850,7 +8853,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr "MEDIANA"
-#. F8Cq
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9860,7 +8862,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\">Calcula la mediana (punto medio) de un grupo de números. En un grupo que contiene una cantidad de valores impar, la mediana es el número que se encuentra en medio; en un grupo que contiene una cantidad de valores par, es la mediana de los dos valores del medio.</ahelp>"
-#. )eb:
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9870,7 +8871,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. !c1a
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9880,7 +8880,6 @@ msgctxt ""
msgid "MEDIAN(Number1; Number2; ...Number30)"
msgstr "MEDIANA(Número1; Número2; ...; Número30)"
-#. Qb-2
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9890,7 +8889,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
msgstr "<emph>Número1; Número2;...Número30</emph> son los valores o rangos, que representan una muestra. Cada número se puede reemplazar por una referencia."
-#. 9P;G
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9900,7 +8898,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. MIu4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9910,7 +8907,6 @@ msgctxt ""
msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
msgstr "para un número impar: <item type=\"input\">=MEDIANA(1;5;9;20;21)</item> devuelve 9 como valor mediano."
-#. YIaj
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9920,7 +8916,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 "para un número par:<item type=\"input\">=MEDIAN(1;5;9;20)</item> devuelve el promedio de los dos valores medios de 5 a 9, es decir 7."
-#. k$d^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9929,7 +8924,6 @@ msgctxt ""
msgid "<bookmark_value>MIN function</bookmark_value>"
msgstr "<bookmark_value>MÍN</bookmark_value>"
-#. 3}Mb
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9939,7 +8933,6 @@ msgctxt ""
msgid "MIN"
msgstr "MÍN"
-#. /*[Y
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9949,7 +8942,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MIN\">Devuelve el valor mínimo de una lista de argumentos.</ahelp>"
-#. sgdn
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9958,7 +8950,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 "Devuelve 0 si el valor no es numérico y no se encontró error en el rango(s) de celdas definidas como celdas de referencia(s). La celdas con texto son ignoradas por MÍNIMO() y MÁXIMO(). Las funciones MÍNIMOA() y MÁXIMOA() devuelven 0 si el valor no es (numérico o texto) y no se encontró error. Pasar como argumento una cadena de caracteres a la función MÍNIMO() o MÁXIMO(), ej: MÍNIMO(\"caracteres\"), el resultado será un error."
-#. JUVS
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9968,7 +8959,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. utYF
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9978,7 +8968,6 @@ msgctxt ""
msgid "MIN(Number1; Number2; ...Number30)"
msgstr "MÍN(Número1; Número2; ...; Número30)"
-#. zD$%
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9988,7 +8977,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Número1; Número2;...Número30</emph> son los valores o rangos numéricos."
-#. #Ic!
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9998,7 +8986,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Q2J-
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10008,7 +8995,6 @@ msgctxt ""
msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
msgstr "<item type=\"input\">=MÍN(A1:B100)</item> devuelve el valor más pequeño de la lista."
-#. d*$4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10017,7 +9003,6 @@ msgctxt ""
msgid "<bookmark_value>MINA function</bookmark_value>"
msgstr "<bookmark_value>MÍNA</bookmark_value>"
-#. 0Gy$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10027,7 +9012,6 @@ msgctxt ""
msgid "MINA"
msgstr "MÍNA"
-#. Z!-`
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10037,7 +9021,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\">Devuelve el valor mínimo de una lista de argumentos. También puede introducir texto. El valor del texto es 0.</ahelp>"
-#. 8,0J
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10046,7 +9029,6 @@ msgctxt ""
msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
msgstr "Las funciones MÍNA() y MÁXA() devuelven 0 si no encuentran un valor (numérico o texto) y un error."
-#. q(U5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10056,7 +9038,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ;F+A
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10066,7 +9047,6 @@ msgctxt ""
msgid "MINA(Value1; Value2; ... Value30)"
msgstr "MÍNA(Valor1; Valor2; ... Valor30)"
-#. 9IC1
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10076,7 +9056,6 @@ msgctxt ""
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>Valor1; Valor2;... Valor30</emph> son los valores o rangos. Al texto se asigna el valor 0."
-#. [JI$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10086,7 +9065,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. snBh
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10096,7 +9074,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
msgstr "<item type=\"input\">=MÍNA(1;\"Texto\";20)</item> devuelve 0."
-#. 1!o;
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10106,7 +9083,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
msgstr "<item type=\"input\">=MÍNA(A1:B100)</item> devuelve el valor más pequeño de la lista."
-#. !Sr0
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10115,7 +9091,6 @@ msgctxt ""
msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
msgstr "<bookmark_value>DESVPROM</bookmark_value><bookmark_value>promedios;funciones estadísticas</bookmark_value>"
-#. 1E8p
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10125,7 +9100,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr "DESVPROM"
-#. W?oJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10135,7 +9109,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\">Devuelve la media de las desviaciones absolutas de puntos de datos a partir de su media.</ahelp> Muestra la dispersión de un grupo de datos."
-#. 4@RB
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10145,7 +9118,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 3a[6
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10155,7 +9127,6 @@ msgctxt ""
msgid "AVEDEV(Number1; Number2; ...Number30)"
msgstr "DESVPROM(Número1; Número2; ...; Número30)"
-#. AQ%t
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10165,7 +9136,6 @@ msgctxt ""
msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos, que representan una muestra. Cada número se puede reemplazar por una referencia."
-#. {qIP
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10175,7 +9145,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. GIVz
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10185,7 +9154,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
msgstr "<item type=\"input\">=DESVPROM(A1:A50)</item>"
-#. Dk:4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10194,7 +9162,6 @@ msgctxt ""
msgid "<bookmark_value>AVERAGE function</bookmark_value>"
msgstr "<bookmark_value>PROMEDIO</bookmark_value>"
-#. (MXx
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10204,7 +9171,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr "PROMEDIO"
-#. 2D6O
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10214,7 +9180,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Calcula la media de los argumentos.</ahelp>"
-#. ,B+Q
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10224,7 +9189,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. )p?t
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10234,7 +9198,6 @@ msgctxt ""
msgid "AVERAGE(Number1; Number2; ...Number30)"
msgstr "PROMEDIO(Número1; Número2; ...; Número30)"
-#. F2e=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10244,7 +9207,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
msgstr "<emph>Número1; Número2;... Número0</emph> son los valores o rangos numéricos."
-#. GIb6
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10254,7 +9216,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. t1F8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10264,7 +9225,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
msgstr "<item type=\"input\">=PROMEDIO(A1:A50)</item>"
-#. SH)u
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10273,7 +9233,6 @@ msgctxt ""
msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
msgstr "<bookmark_value>PROMEDIOA</bookmark_value>"
-#. ^ImW
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10283,7 +9242,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr "PROMEDIOA"
-#. IR0/
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10293,7 +9251,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\">Calcula la media de los argumentos. El valor del texto es 0.</ahelp>"
-#. RY8o
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10303,7 +9260,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. PzAJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10313,7 +9269,6 @@ msgctxt ""
msgid "AVERAGEA(Value1; Value2; ... Value30)"
msgstr "PROMEDIO(Valor1; Valor2; ... Valor30)"
-#. .phJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10323,7 +9278,6 @@ msgctxt ""
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>Valor1; Valor2;... Valor30</emph> son los valores o rangos. Al texto se asigna el valor 0."
-#. 8[6}
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10333,7 +9287,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. yH@,
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10343,7 +9296,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
msgstr "<item type=\"input\">=PROMEDIO(A1:A50)</item>"
-#. XT0/
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10352,7 +9304,6 @@ msgctxt ""
msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
msgstr "<bookmark_value>MODA</bookmark_value><bookmark_value>valor más común</bookmark_value>"
-#. mD\T
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10362,7 +9313,6 @@ msgctxt ""
msgid "MODE"
msgstr "MODA"
-#. bWP]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10372,7 +9322,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\">Devuelve el valor más común de un grupo de datos.</ahelp> Si hay varios valores con la misma frecuencia, devuelve el inferior. Si ningún valor se repite dos veces, se muestra un mensaje de error."
-#. }TY*
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10382,7 +9331,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. uwSI
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10392,7 +9340,6 @@ msgctxt ""
msgid "MODE(Number1; Number2; ...Number30)"
msgstr "MODO(Número1; Número2; ...; Número30)"
-#. G,8(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10402,7 +9349,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos numéricos."
-#. mw5k
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10412,7 +9358,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. B.6h
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10422,7 +9367,6 @@ msgctxt ""
msgid "<item type=\"input\">=MODE(A1:A50)</item>"
msgstr "<item type=\"input\">=MODO(A1:A50)</item>"
-#. 3Jf5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10431,7 +9375,6 @@ msgctxt ""
msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
msgstr "<bookmark_value>NEGBINOMDIST</bookmark_value><bookmark_value>distribución binomial negativa</bookmark_value>"
-#. l[W.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10441,7 +9384,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
-#. 2Zs?
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10451,7 +9393,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Devuelve la distribución binomial negativa.</ahelp>"
-#. aAUV
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10461,7 +9402,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. z#_y
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10471,7 +9411,6 @@ msgctxt ""
msgid "NEGBINOMDIST(X; R; SP)"
msgstr "NEGBINOMDIST(núm_fracasos; núm_éxitos; prob_éxito)"
-#. D8[.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10481,7 +9420,6 @@ msgctxt ""
msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
msgstr "<emph>X</emph> representa el valor devuelto para las pruebas realizadas sin éxito."
-#. l@AJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10491,7 +9429,6 @@ msgctxt ""
msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr "<emph>R</emph> representa el valor devuelto para las pruebas realizadas con éxito."
-#. ]Hp.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10501,7 +9438,6 @@ msgctxt ""
msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph>prob_éxito</emph> es la probabilidad del éxito de un intento."
-#. JDCk
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10511,7 +9447,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. c@9N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10521,7 +9456,6 @@ msgctxt ""
msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0,5)</item> devuelve 0,25."
-#. \ne=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10530,7 +9464,6 @@ msgctxt ""
msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
msgstr "<bookmark_value>DISTR.NORM.INV</bookmark_value><bookmark_value>distribución normal;inversa de</bookmark_value>"
-#. JArK
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10540,7 +9473,6 @@ msgctxt ""
msgid "NORMINV"
msgstr "DISTR.NORM.INV"
-#. kw?T
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10550,7 +9482,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Devuelve el inverso de la distribución normal acumulativa.</ahelp>"
-#. lEwk
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10560,7 +9491,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 6/cb
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10570,7 +9500,6 @@ msgctxt ""
msgid "NORMINV(Number; Mean; StDev)"
msgstr "DISTR.NORM.INV(Número; Media; Desv_estándar)"
-#. 7dmD
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10580,7 +9509,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr "<emph>Número</emph> representa el valor de probabilidad utilizado para determinar la distribución normal inversa."
-#. )GOp
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10590,7 +9518,6 @@ msgctxt ""
msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph>Media</emph> es el valor medio de la distribución normal."
-#. %#u8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10600,7 +9527,6 @@ msgctxt ""
msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución normal."
-#. qPqe
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10610,7 +9536,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 3yFx
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10620,7 +9545,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 "<item type=\"input\">=DISTR.NORM.INV(0,9;63;5)</item> devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90%."
-#. (DO9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10629,7 +9553,6 @@ msgctxt ""
msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
msgstr "<bookmark_value>DISTR.NORM</bookmark_value><bookmark_value>función de densidad</bookmark_value>"
-#. WVj[
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10639,7 +9562,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr "DISTR.NORM"
-#. .@]@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10649,7 +9571,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Devuelve la función de densidad o la distribución acumulativa normal.</ahelp>"
-#. ogU(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10659,7 +9580,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. P55%
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10669,7 +9589,6 @@ msgctxt ""
msgid "NORMDIST(Number; Mean; StDev; C)"
msgstr "DISTR.NORM(Número; Media; Desv_estándar; C)"
-#. Dh|G
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10679,7 +9598,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr "<emph>Número</emph> es el valor de la distribución en la que se basará para calcular el valor de la distribución normal."
-#. CKC;
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10689,7 +9607,6 @@ msgctxt ""
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "<emph>Media</emph> es el valor medio de la distribución."
-#. r2*=
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -10700,7 +9617,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución."
-#. Q12M
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10710,7 +9626,6 @@ msgctxt ""
msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
msgstr "<emph>C</emph> es opcional. <emph>C</emph> = 0 calcula la función de densidad y <emph>C</emph> = 1 calcula la distribución."
-#. Kl?N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10720,7 +9635,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 1re]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10730,7 +9644,6 @@ msgctxt ""
msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
msgstr "<item type=\"input\">=DISTR.NORM(70;63;5;0)</item> devuelve 0,03."
-#. W}Uo
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10740,7 +9653,6 @@ msgctxt ""
msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
msgstr "<item type=\"input\">=DISTR.NORM(70;63;5;1)</item> devuelve 0,92."
-#. 8]OH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10749,7 +9661,6 @@ msgctxt ""
msgid "<bookmark_value>PEARSON function</bookmark_value>"
msgstr "<bookmark_value>PEARSON</bookmark_value>"
-#. Ur.E
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10759,7 +9670,6 @@ msgctxt ""
msgid "PEARSON"
msgstr "PEARSON"
-#. ,Swr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10769,7 +9679,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">Calcula el coeficiente de correlación producto o momento r de Pearson.</ahelp>"
-#. hk\=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10779,7 +9688,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. =D]e
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10789,7 +9697,6 @@ msgctxt ""
msgid "PEARSON(Data1; Data2)"
msgstr "PEARSON(Datos1; Datos2)"
-#. #!LL
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10799,7 +9706,6 @@ msgctxt ""
msgid "<emph>Data1</emph> represents the array of the first data set."
msgstr "<emph>Datos1</emph> representa la matriz del primer conjunto de datos."
-#. qjkA
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10809,7 +9715,6 @@ msgctxt ""
msgid "<emph>Data2</emph> represents the array of the second data set."
msgstr "<emph>Datos2</emph> representa la matriz del segundo conjunto de datos."
-#. c.2.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10819,7 +9724,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. |M,Q
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10829,7 +9733,6 @@ msgctxt ""
msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> devuelve el coeficiente de correlación de Pearson de ambos conjuntos de datos."
-#. nrds
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10838,7 +9741,6 @@ msgctxt ""
msgid "<bookmark_value>PHI function</bookmark_value>"
msgstr "<bookmark_value>PHI</bookmark_value>"
-#. A_O0
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10848,7 +9750,6 @@ msgctxt ""
msgid "PHI"
msgstr "PHI"
-#. e=kf
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10858,7 +9759,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\">Devuelve los valores de la función de distribución para una distribución normal estándar.</ahelp>"
-#. [,Is
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10868,7 +9768,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. (Bl8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10878,7 +9777,6 @@ msgctxt ""
msgid "PHI(Number)"
msgstr "PHI(Número)"
-#. #$hr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10888,7 +9786,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
msgstr "<emph>Número</emph> representa el valor en el que se basa para calcular la distribución de normal estándar."
-#. avo-
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10898,7 +9795,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. $Td,
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10908,7 +9804,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"
@@ -10918,7 +9813,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"
@@ -10928,7 +9822,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"
@@ -10937,7 +9830,6 @@ msgctxt ""
msgid "<bookmark_value>POISSON function</bookmark_value>"
msgstr "<bookmark_value>POISSON</bookmark_value>"
-#. B.ZL
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10947,7 +9839,6 @@ msgctxt ""
msgid "POISSON"
msgstr "POISSON"
-#. 0k]E
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10957,7 +9848,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Devuelve la distribución de Poisson.</ahelp>"
-#. Z76i
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10967,7 +9857,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. Ns7^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10977,7 +9866,6 @@ msgctxt ""
msgid "POISSON(Number; Mean; C)"
msgstr "POISSON(x; media; acumulado)"
-#. ;*O7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10987,7 +9875,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "<emph>Número</emph> representa el valor en el que se basa para calcular la distribución de Poisson."
-#. 39Y)
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10997,7 +9884,6 @@ msgctxt ""
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "<emph>Media</emph> es el valor medio de la distribución de Poisson."
-#. nC8+
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11007,7 +9893,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 "<emph>C</emph> (opcional) = 0 o Falso calcula la función de densidad. <emph>C</emph> = 1 o Verdadero calcula la distribución. Cuando se omite, se inserta el valor predeterminado Verdadero cuando guarda el documento, para una mayor compatibilidad con otros programas y versiones anteriores de %PRODUCTNAME."
-#. J2C!
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11017,7 +9902,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. O{co
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11027,7 +9911,6 @@ msgctxt ""
msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
msgstr "<item type=\"input\">=POISSON(60;50;1)</item> devuelve 0,93."
-#. qmbT
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11036,7 +9919,6 @@ msgctxt ""
msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
msgstr "<bookmark_value>PERCENTIL</bookmark_value>"
-#. qC=N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11046,7 +9928,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr "PERCENTIL"
-#. e{j2
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11056,7 +9937,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\">devuelve el alpha-percentil de los valores de datos en una matriz.</ahelp> Un percentil devuelve la escala de valores para una serie de datos que van desde el valor más pequeño (Alpha=0) al más alto (alpha=1) de una serie. Para <item type=\"literal\">Alpha</item> = 25%, el percentil significa el primer cuartil; <item type=\"literal\">Alpha</item> = 50% es la MEDIANA."
-#. $u?h
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11066,7 +9946,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. Ns8(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11076,7 +9955,6 @@ msgctxt ""
msgid "PERCENTILE(Data; Alpha)"
msgstr "PERCENTIL(Datos; Alpha)"
-#. 7mwm
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11086,7 +9964,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph>Datos</emph> es la matriz de los datos."
-#. Wa`c
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11096,7 +9973,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph>Alfa</emph> representa el porcentaje de la escala entre 0 y 1."
-#. MHn7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11106,7 +9982,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 4St7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11116,7 +9991,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 "<item type=\"input\">=PERCENTIL(A1:A50;0,1)</item> representa el valor en el grupo de datos, que equivale al 10% de la escala de todos los datos contenidos en A1:A50."
-#. aV]P
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11125,7 +9999,6 @@ msgctxt ""
msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
msgstr "<bookmark_value>RANGO.PERCENTIL</bookmark_value>"
-#. b@`V
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11135,7 +10008,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr "RANGO.PERCENTIL"
-#. \cep
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11145,7 +10017,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\">Calcula el rango porcentual de un valor en una muestra.</ahelp>"
-#. 3Y$]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11155,7 +10026,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. nIi_
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11165,7 +10035,6 @@ msgctxt ""
msgid "PERCENTRANK(Data; Value)"
msgstr "RANGO.PERCENTIL(Datos; x)"
-#. ni!U
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11175,7 +10044,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>Datos</emph> es la matriz de datos en la muestra."
-#. 6.}F
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11185,7 +10053,6 @@ msgctxt ""
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph>Valor</emph> representa el valor para el que debe determinarse el rango de percentil."
-#. T/P]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11195,7 +10062,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. mq5]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11205,7 +10071,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 "<item type=\"input\">=RANGO.PERCENTIL(A1:A50;50)</item> devuelve el rango de porcentaje del valor 50 a partir del rango total de todos los valores que se encuentran en A1:A50. Si 50 no está dentro del rango total, aparecerá un mensaje de error."
-#. $T@9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11214,7 +10079,6 @@ msgctxt ""
msgid "<bookmark_value>QUARTILE function</bookmark_value>"
msgstr "<bookmark_value>CUARTIL</bookmark_value>"
-#. M^/9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11224,7 +10088,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr "CUARTIL"
-#. |wHH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11234,7 +10097,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Calcula el cuartil de un conjunto de datos.</ahelp>"
-#. ;ZXr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11244,7 +10106,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. D]@C
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11254,7 +10115,6 @@ msgctxt ""
msgid "QUARTILE(Data; Type)"
msgstr "CUARTIL(Datos; Cuartil)"
-#. )Je9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11264,7 +10124,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>Datos</emph> es la matriz de datos en la muestra."
-#. W[j(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11274,7 +10133,6 @@ msgctxt ""
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "<emph>Tipo</emph> representa el tipo de cuartil. (0 = MÍN, 1 = 25%, 2 = 50% (MEDIA), 3 = 75% y 4 = MÁX.)"
-#. )Ac9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11284,7 +10142,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 2pTa
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11294,7 +10151,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 "<item type=\"input\">=CUARTIL(A1:A50;2)</item> devuelve el valor cuyo 50% de la escala corresponde a los valores de inferior a superior en el área A1:A50."
-#. h:`q
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11303,7 +10159,6 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "Operadores en $[officename] Calc"
-#. BX?a
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11312,7 +10167,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>fórmulas; operadores</bookmark_value><bookmark_value>operadores; función de fórmulas</bookmark_value><bookmark_value>signo de división, ver también operadores</bookmark_value><bookmark_value>signo de multiplicación, ver también operadores</bookmark_value><bookmark_value>signo de menos, ver también operadores</bookmark_value><bookmark_value>signo de suma, ver también operador</bookmark_value><bookmark_value>operadores de texto</bookmark_value><bookmark_value>comparación;operadores en Calc</bookmark_value><bookmark_value>operadores aritméticos</bookmark_value><bookmark_value>reference operators</bookmark_value><bookmark_value>operadores de referencia</bookmark_value>"
-#. KI~.
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11322,7 +10176,6 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "Operadores en $[officename] Calc"
-#. $a+*
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11332,7 +10185,6 @@ msgctxt ""
msgid "You can use the following operators in $[officename] Calc:"
msgstr "En $[officename] Calc se pueden utilizar los operadores siguientes:"
-#. d6.!
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11342,7 +10194,6 @@ msgctxt ""
msgid "Arithmetical Operators"
msgstr "Operadores aritméticos"
-#. /EGM
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11352,7 +10203,6 @@ msgctxt ""
msgid "These operators return numerical results."
msgstr "Estos operadores proporcionan resultados numéricos."
-#. !xd3
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11362,7 +10212,6 @@ msgctxt ""
msgid "Operator"
msgstr "<emph>Operador</emph>"
-#. kANp
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11372,7 +10221,6 @@ msgctxt ""
msgid "Name"
msgstr "<emph>Nombre</emph>"
-#. YnIH
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11382,7 +10230,6 @@ msgctxt ""
msgid "Example"
msgstr "<emph>Ejemplo</emph>"
-#. NzQ^
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11392,7 +10239,6 @@ msgctxt ""
msgid "+ (Plus)"
msgstr "+ (Más)"
-#. $5}-
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11402,7 +10248,6 @@ msgctxt ""
msgid "Addition"
msgstr "Suma"
-#. Z/2b
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11412,7 +10257,6 @@ msgctxt ""
msgid "1+1"
msgstr "1+1"
-#. (,SX
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11422,7 +10266,6 @@ msgctxt ""
msgid "- (Minus)"
msgstr "- (Menos)"
-#. s5HU
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11432,7 +10275,6 @@ msgctxt ""
msgid "Subtraction"
msgstr "Resta"
-#. @wqV
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11442,7 +10284,6 @@ msgctxt ""
msgid "2-1"
msgstr "2-1"
-#. dM[Y
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11452,7 +10293,6 @@ msgctxt ""
msgid "- (Minus)"
msgstr "- (Menos)"
-#. #}IH
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11462,7 +10302,6 @@ msgctxt ""
msgid "Negation"
msgstr "Negación"
-#. 2R{(
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11472,7 +10311,6 @@ msgctxt ""
msgid "-5"
msgstr "-5"
-#. jpQ%
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11482,7 +10320,6 @@ msgctxt ""
msgid "* (asterisk)"
msgstr "* (Asterisco)"
-#. 0$hT
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11492,7 +10329,6 @@ msgctxt ""
msgid "Multiplication"
msgstr "Multiplicación"
-#. @OKk
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11502,7 +10338,6 @@ msgctxt ""
msgid "2*2"
msgstr "2*2"
-#. 3G1F
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11512,7 +10347,6 @@ msgctxt ""
msgid "/ (Slash)"
msgstr "/ (Barra invertida)"
-#. \\Z7
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11522,7 +10356,6 @@ msgctxt ""
msgid "Division"
msgstr "División"
-#. J^5T
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11532,7 +10365,6 @@ msgctxt ""
msgid "9/3"
msgstr "9/3"
-#. 7TV.
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11542,7 +10374,6 @@ msgctxt ""
msgid "% (Percent)"
msgstr "% (Porcentaje)"
-#. ToPg
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11552,7 +10383,6 @@ msgctxt ""
msgid "Percent"
msgstr "Porciento"
-#. 55ax
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11562,7 +10392,6 @@ msgctxt ""
msgid "15%"
msgstr "15%"
-#. QX6d
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11572,7 +10401,6 @@ msgctxt ""
msgid "^ (Caret)"
msgstr "^ (Caret)"
-#. `DK,
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11582,7 +10410,6 @@ msgctxt ""
msgid "Exponentiation"
msgstr "Potencia"
-#. tJ}{
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11592,7 +10419,6 @@ msgctxt ""
msgid "3^2"
msgstr "3^2"
-#. T.Qv
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11602,7 +10428,6 @@ msgctxt ""
msgid "Comparative operators"
msgstr "Operadores de comparación"
-#. OPQA
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11612,7 +10437,6 @@ msgctxt ""
msgid "These operators return either true or false."
msgstr "Estos operadores muestran el valor VERDADERO o FALSO."
-#. *=E,
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11622,7 +10446,6 @@ msgctxt ""
msgid "Operator"
msgstr "<emph>Operador</emph>"
-#. ]l=W
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11632,7 +10455,6 @@ msgctxt ""
msgid "Name"
msgstr "<emph>Nombre</emph>"
-#. @0Pc
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11642,7 +10464,6 @@ msgctxt ""
msgid "Example"
msgstr "<emph>Ejemplo</emph>"
-#. v#nb
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11652,7 +10473,6 @@ msgctxt ""
msgid "= (equal sign)"
msgstr "= (símbolo de igualdad)"
-#. jkOm
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11662,7 +10482,6 @@ msgctxt ""
msgid "Equal"
msgstr "Igual"
-#. yYpR
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11672,7 +10491,6 @@ msgctxt ""
msgid "A1=B1"
msgstr "A1=B1"
-#. 18TZ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11682,7 +10500,6 @@ msgctxt ""
msgid "> (Greater than)"
msgstr "> (Mayor que)"
-#. MxW!
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11692,7 +10509,6 @@ msgctxt ""
msgid "Greater than"
msgstr "Mayor que"
-#. gDa+
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11702,7 +10518,6 @@ msgctxt ""
msgid "A1>B1"
msgstr "A1>B1"
-#. rqvC
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11712,7 +10527,6 @@ msgctxt ""
msgid "< (Less than)"
msgstr "< (Menor que)"
-#. RZa9
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11722,7 +10536,6 @@ msgctxt ""
msgid "Less than"
msgstr "Menor que"
-#. Dd-j
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11732,7 +10545,6 @@ msgctxt ""
msgid "A1<B1"
msgstr "A1<B1"
-#. 6`8d
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11742,7 +10554,6 @@ msgctxt ""
msgid ">= (Greater than or equal to)"
msgstr ">= (Mayor que o igual a)"
-#. X`4c
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11752,7 +10563,6 @@ msgctxt ""
msgid "Greater than or equal to"
msgstr "Mayor que o igual a"
-#. Qjn@
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11762,7 +10572,6 @@ msgctxt ""
msgid "A1>=B1"
msgstr "A1>=B1"
-#. 7TCN
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11772,7 +10581,6 @@ msgctxt ""
msgid "<= (Less than or equal to)"
msgstr "<= (Menor que o igual a)"
-#. fAiJ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11782,7 +10590,6 @@ msgctxt ""
msgid "Less than or equal to"
msgstr "Menor que o igual a"
-#. 12Dq
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11792,7 +10599,6 @@ msgctxt ""
msgid "A1<=B1"
msgstr "A1<=B1"
-#. ~=OE
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11802,7 +10608,6 @@ msgctxt ""
msgid "<> (Inequality)"
msgstr "<> (No es igual a)"
-#. NVdC
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11812,7 +10617,6 @@ msgctxt ""
msgid "Inequality"
msgstr "No es igual a"
-#. -KzZ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11822,7 +10626,6 @@ msgctxt ""
msgid "A1<>B1"
msgstr "A1<>B1"
-#. #_ND
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11832,7 +10635,6 @@ msgctxt ""
msgid "Text operators"
msgstr "Operador de texto"
-#. %PP}
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11842,7 +10644,6 @@ msgctxt ""
msgid "The operator combines separate texts into one text."
msgstr "El operador une varios textos en uno solo."
-#. 6PH0
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11852,7 +10653,6 @@ msgctxt ""
msgid "Operator"
msgstr "<emph>Operador</emph>"
-#. ;D)K
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11862,7 +10662,6 @@ msgctxt ""
msgid "Name"
msgstr "<emph>Nombre</emph>"
-#. T9al
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11872,7 +10671,6 @@ msgctxt ""
msgid "Example"
msgstr "<emph>Ejemplo</emph>"
-#. Yf|a
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11882,7 +10680,6 @@ msgctxt ""
msgid "& (And)"
msgstr "& (Y)"
-#. Ul^4
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11891,7 +10688,6 @@ msgctxt ""
msgid "<bookmark_value>text concatenation AND</bookmark_value>"
msgstr "<bookmark_value>Concatenación de texto Y</bookmark_value>"
-#. Zr^0
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11901,7 +10697,6 @@ msgctxt ""
msgid "text concatenation AND"
msgstr "Vínculo de texto Y"
-#. It5Z
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11911,7 +10706,6 @@ msgctxt ""
msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr "\"Sun\" & \"day\" se convierte en \"Sunday\""
-#. 1dMJ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11921,7 +10715,6 @@ msgctxt ""
msgid "Reference operators"
msgstr "Operadores de referencia"
-#. ss+=
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11931,7 +10724,6 @@ msgctxt ""
msgid "These operators return a cell range of zero, one or more cells."
msgstr "Estos operadores devuelven un rango de celdas de con cero, una o más celdas."
-#. 2B)t
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11940,7 +10732,6 @@ msgctxt ""
msgid "Range has the highest precedence, then intersection, and then finally union."
msgstr "El rango tiene la más alta precedencia, luego la intersección y finalmente la unión."
-#. I$2}
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11950,7 +10741,6 @@ msgctxt ""
msgid "Operator"
msgstr "<emph>Operador</emph>"
-#. 2Y:p
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11960,7 +10750,6 @@ msgctxt ""
msgid "Name"
msgstr "<emph>Nombre</emph>"
-#. Uiyj
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11970,7 +10759,6 @@ msgctxt ""
msgid "Example"
msgstr "<emph>Ejemplo</emph>"
-#. Pnl]
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11980,7 +10768,6 @@ msgctxt ""
msgid ": (Colon)"
msgstr ": (dos puntos)"
-#. 0f.[
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11990,7 +10777,6 @@ msgctxt ""
msgid "Range"
msgstr "Área"
-#. )ur~
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12000,7 +10786,6 @@ msgctxt ""
msgid "A1:C108"
msgstr "A1:C108"
-#. ):8K
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12010,7 +10795,6 @@ msgctxt ""
msgid "! (Exclamation point)"
msgstr "! (signo de admiración)"
-#. P#\D
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12019,7 +10803,6 @@ msgctxt ""
msgid "<bookmark_value>intersection operator</bookmark_value>"
msgstr "<bookmark_value>intersección;operador</bookmark_value>"
-#. Hm?N
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12029,7 +10812,6 @@ msgctxt ""
msgid "Intersection"
msgstr "Intersección"
-#. t#?h
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12039,7 +10821,6 @@ msgctxt ""
msgid "SUM(A1:B6!B5:C12)"
msgstr "SUMA(A1:B6!B5:C12)"
-#. Pj5^
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12049,7 +10830,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 "En este ejemplo B5 y B6 están en la intersección y se calcula su suma."
-#. vw0N
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12058,7 +10838,6 @@ msgctxt ""
msgid "~ (Tilde)"
msgstr "~ (Virgulilla)"
-#. S84-
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12067,7 +10846,6 @@ msgctxt ""
msgid "Concatenation or union"
msgstr "Encadenar o unir"
-#. D)QK
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12076,7 +10854,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 "Toma dos referencias y devuelve una lista de referencia, la cual es una concatenación de las referencias a la izquierda seguida por las referencias a la derecha. A las entradas dobles se les hace referencia dos veces. Ver nota debajo de esta tabla."
-#. FU6L
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12085,7 +10862,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 "La concatenación de referencias por medio del carácter de virgulilla se implementó recientemente. Se devuelve un error cuando se abre en una versión antigua del software un documento que contiene una fórmula con el operador virgulilla. No está permitido el uso de una lista de referencias dentro de una expresión de matriz."
-#. XQEV
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12094,7 +10870,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr "DÍASEM"
-#. f#2h
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12103,7 +10878,6 @@ msgctxt ""
msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
msgstr "<bookmark_value>DÍASEM</bookmark_value>"
-#. /M.T
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12113,7 +10887,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\">DÍASEM</link></variable>"
-#. KV1\
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12123,7 +10896,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\">Devuelve el día de la semana para el valor de la fecha dada. </ahelp> El día se regresa como un entero entre 1 (Domingo) y 7 (Sábado) si no hay tipo o el tipo=1 se especifica. Si el tipo=2, la numeración comienza en Lunes=1; y si el tipo=3 la numeración comienza en Lunes=0."
-#. h#.V
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12133,7 +10905,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ^!mD
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12143,7 +10914,6 @@ msgctxt ""
msgid "WEEKDAY(Number; Type)"
msgstr "DÍASEM(número; tipo)"
-#. vY1m
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12153,7 +10923,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el día de la semana."
-#. x4.b
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12163,7 +10932,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 "<emph>Tipo</emph> determina el tipo de calculo. Por Tipo=1, los días de la semana son contados desde el domingo (este es el predeterminado incluso cuando el parámetro es de tipo desconocido). Por Tipo=2, los días de la semana son contados iniciando desde Lunes=1. Por Tipo=3, los días de la semana son contados iniciando desde el Lunes=0."
-#. HH=S
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12173,7 +10941,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 "Estos valores se aplican solo al formato de fecha estándar que se selecciona en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline> Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Calcular</emph>."
-#. 1mPF
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12183,7 +10950,6 @@ msgctxt ""
msgid "Examples"
msgstr "Ejemplos"
-#. )8J1
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12193,7 +10959,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 "=DÍASEM(\"2000-06-14\") devuelve 4 (el tipo de parámetro es desconocido, por lo tanto, el estándar de contar se utiliza. El estándar de contar inicia con el domingo como día número 1. El 14 de Junio de 2000 fue un día miércoles y, por tanto, número 4)."
-#. *4l-
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12203,7 +10968,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 "=DÍASEM(\"1996-07-24\";2) devuelve 3 (el tipo de parámetro es 2, por lo tanto el lunes es el día número 1. El 24 de julio de 1996 fue un miércoles, por lo tanto es un día número 3)."
-#. LHX#
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12213,7 +10977,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 "=DÍASEM(\"1996-07-24\";1) devuelve 4 (el tipo de parámetro es 1, el domingo es el día número 1. El 24 de julio de 1996 fue un miércoles, por lo tanto, el número de día es 4)."
-#. H;k*
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12223,7 +10986,6 @@ msgctxt ""
msgid "=WEEKDAY(NOW()) returns the number of the current day."
msgstr "=DÍASEM(AHORA()) devuelve el número del día actual."
-#. bkIY
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12233,7 +10995,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 "Para obtener una función que indique si un día en A1 es laboral, utilice las funciones SI y DÍASEM del siguiente modo: SI(DÍASEM(A1;2)<6;\"Día laboral\";\"Fin de semana\")"
-#. v*5%
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12242,7 +11003,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "Consolidar según"
-#. ^r^n
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12252,7 +11012,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "Consolidar según"
-#. O%Gv
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12262,7 +11021,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "Consolidar según"
-#. XdtP
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12272,7 +11030,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 "Utilice esta sección si las áreas de celdas que desea consolidar contienen etiquetas. Sólo debe seleccionar estas opciones si las áreas de consolidación contienen etiquetas similares y los datos están dispuestos de forma distinta."
-#. u,3#
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12282,7 +11039,6 @@ msgctxt ""
msgid "Row labels"
msgstr "Etiqueta de filas"
-#. )9s!
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12292,7 +11048,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\">Utiliza las etiquetas de fila para disponer los datos consolidados.</ahelp>"
-#. N/d~
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12302,7 +11057,6 @@ msgctxt ""
msgid "Column labels"
msgstr "Etiquetas de columna"
-#. z#Q+
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12312,7 +11066,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\">Utiliza las etiquetas de columna para disponer los datos consolidados.</ahelp>"
-#. :5cb
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12322,7 +11075,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. Um*8
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12332,7 +11084,6 @@ msgctxt ""
msgid "Link to source data"
msgstr "Conectar con datos fuente"
-#. jHF.
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12342,7 +11093,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\">Vincula los datos del área de consolidación con los datos fuente y actualiza automáticamente los resultados de la consolidación en caso de modificación de dichos datos fuente.</ahelp>"
-#. Eur]
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12352,7 +11102,6 @@ msgctxt ""
msgid "More <<"
msgstr "Opciones <<"
-#. uzBj
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12362,7 +11111,6 @@ msgctxt ""
msgid "Hides the additional options."
msgstr "Oculta las opciones adicionales."
-#. =bYy
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12371,7 +11119,6 @@ msgctxt ""
msgid "Define"
msgstr "Definir"
-#. jh6^
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12381,7 +11128,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Definir\">Definir</link>"
-#. ;4(J
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12391,7 +11137,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\">Define una celda activa o el área de celdas seleccionada como intervalo de impresión.</ahelp>"
-#. pZU/
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12400,7 +11145,6 @@ msgctxt ""
msgid "Date & Time Functions"
msgstr "Funciones de fecha y hora"
-#. \.Q*
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12409,7 +11153,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>fecha y hora;funciones</bookmark_value><bookmark_value>funciones;fecha y hora</bookmark_value><bookmark_value>Asistente para funciones;fecha y hora</bookmark_value>"
-#. t5JY
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12419,7 +11162,6 @@ msgctxt ""
msgid "Date & Time Functions"
msgstr "Categoría fecha y hora"
-#. AmI0
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12429,7 +11171,6 @@ msgctxt ""
msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
msgstr "<variable id=\"datumzeittext\">Estas funciones de hoja de cálculo se utilizan para insertar y editar fechas y horas.</variable>"
-#. /H+a
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12438,7 +11179,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 "Las funciones cuyo nombre termina con _ADD devuelven el mismo resultado que las funciones correspondientes de Microsoft Excel. Utilice las funciones sin _ADD para obtener resultados basados en estándares internacionales. Por ejemplo, la función SEM.DEL.AÑO calcula el número de semana de una fecha concreta basándose en el estándar internacional ISO 6801, mientras que SEM.DEL.AÑO_ADD devuelve el mismo número de semana que Microsoft Excel."
-#. _sEE
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12448,7 +11188,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 "$[officename] maneja internamente los valores de fecha/hora como si fuesen valores numéricos. Si asigna el formato \"Número\" a un valor de fecha u hora, dicho valor se convierte en un número. Por ejemplo, 01/01/2000 12:00 PM se convierte en 36526,5. El valor anterior a la coma decimal corresponde a la fecha; el valor situado a continuación de dicha coma corresponde a la hora. Si no desea ver las fechas u horas con este tipo de representación numérica, cambie el formato según corresponda (fecha u hora). Para ello, seleccione la celda que contiene el valor de fecha u hora, abra su menú contextual y seleccione <emph>Formatear celdas</emph>. La pestaña <emph>Números</emph> contiene funciones para definir el formato numérico."
-#. ,4lB
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12457,7 +11196,6 @@ msgctxt ""
msgid "Date base for day zero"
msgstr "Configuración de fecha para el día cero"
-#. ^3{`
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12466,7 +11204,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 "Las fechas se calculan según la diferencia respecto al día cero. Puede establecer uno de los siguientes días como día cero:"
-#. r/0k
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12475,7 +11212,6 @@ msgctxt ""
msgid "Date base"
msgstr "Configuración de fecha"
-#. hkzV
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12484,7 +11220,6 @@ msgctxt ""
msgid "Use"
msgstr "Usar"
-#. 3=n5
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12493,7 +11228,6 @@ msgctxt ""
msgid "'12/30/1899'"
msgstr "'30/12/1899'"
-#. HJq_
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12502,7 +11236,6 @@ msgctxt ""
msgid "(default)"
msgstr "(predeterminada)"
-#. {_%2
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12511,7 +11244,6 @@ msgctxt ""
msgid "'01/01/1900'"
msgstr "'01/01/1900'"
-#. 3n-o
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12520,7 +11252,6 @@ msgctxt ""
msgid "(used in former StarCalc 1.0)"
msgstr "(utilizada en la antigua versión StarCalc 1.0)"
-#. Chr9
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12529,7 +11260,6 @@ msgctxt ""
msgid "'01/01/1904'"
msgstr "'01/01/1904'"
-#. wNN1
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12538,7 +11268,6 @@ msgctxt ""
msgid "(used in Apple software)"
msgstr "(utilizado en software Apple)"
-#. A@f3
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12547,7 +11276,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 "Puede elegirse <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Calcular</emph> para seleccionar la base de las fechas."
-#. C_I;
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12556,7 +11284,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 "Cuando copia y pega celdas que contienen valores de fecha entre diferentes hojas de cálculo, ambos documentos de hojas de cálculo deben tener la misma configuración para las fechas. Si la configuración de fecha es diferente, cambiarán los valores de fecha."
-#. [On8
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12565,7 +11292,6 @@ msgctxt ""
msgid "Two digits years"
msgstr "Años de dos dígitos"
-#. _g~,
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12575,7 +11301,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 "En <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - $[officename] - General</emph> se encuentra la sección <emph>Año (con dos dígitos)</emph>. Esto establece el período que abarca la información de dos dígitos. Hay que tener en cuenta que los cambios realizados aquí tienen efectos sobre algunas de las siguientes funciones."
-#. n2wR
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12585,7 +11310,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 "Al escribir las fechas, las barras o guiones que se utilizan como separadores pueden interpretarse como operadores aritméticos. Por consiguiente, las fechas escritas con este formato no siempre se reconocen como tales, lo que puede dar lugar a errores en los cálculos. Para evitar que las fechas se interpreten como porciones de fórmulas escríbalas entre comillas; por ejemplo, \"20/07/54\"."
-#. cJw7
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12594,7 +11318,6 @@ msgctxt ""
msgid "Functions"
msgstr "Funciones"
-#. {=@J
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12603,7 +11326,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"
@@ -12612,7 +11334,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"
@@ -12621,7 +11342,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
-#. 74@p
#: 04060102.xhp
#, fuzzy
msgctxt ""
@@ -12631,7 +11351,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
-#. ,h*?
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12640,7 +11359,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"
@@ -12649,7 +11367,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"
@@ -12658,7 +11375,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"
@@ -12667,7 +11383,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"
@@ -12676,7 +11391,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"
@@ -12685,7 +11399,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"
@@ -12694,7 +11407,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"
@@ -12703,7 +11415,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"
@@ -12712,7 +11423,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"
@@ -12721,7 +11431,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"
@@ -12730,7 +11439,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"
@@ -12739,7 +11447,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"
@@ -12748,7 +11455,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"
@@ -12757,7 +11463,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"
@@ -12766,7 +11471,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"
@@ -12775,7 +11479,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"
@@ -12784,7 +11487,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"
@@ -12793,7 +11495,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"
@@ -12802,7 +11503,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"
@@ -12811,7 +11511,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"
@@ -12820,7 +11519,6 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. A*Sv
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12830,7 +11528,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Fila\">Fila</link>"
-#. jUGG
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12840,7 +11537,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
msgstr "<ahelp hid=\".\">Establece la altura de la fila y oculta o muestra las filas seleccionadas.</ahelp>"
-#. `l6[
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12850,7 +11546,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Altura...\">Altura...</link>"
-#. @4eZ
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12860,7 +11555,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=\"Altura óptima...\">Altura óptima...</link>"
-#. x`=(
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12869,7 +11563,6 @@ msgctxt ""
msgid "DAYS"
msgstr "DÍAS"
-#. T\j5
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12878,7 +11571,6 @@ msgctxt ""
msgid "<bookmark_value>DAYS function</bookmark_value>"
msgstr "<bookmark_value>DÍAS</bookmark_value>"
-#. ql2^
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12888,7 +11580,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\">DÍAS</link></variable>"
-#. -9vs
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12898,7 +11589,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\">Calcula la diferencia entre dos valores de fecha.</ahelp> El resultado es el número de días que hay entre ambas fechas."
-#. ~}RP
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12908,7 +11598,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ?fQQ
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12918,7 +11607,6 @@ msgctxt ""
msgid "DAYS(Date2; Date1)"
msgstr "DÍAS(Datos2; Datos1)"
-#. 4Cq!
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12928,7 +11616,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 "<emph>Datos1</emph> es la fecha de inicio, <emph>Datos2</emph> es la fecha final. Si <emph>Datos2</emph> es una fecha anterior a <emph>Datos1</emph> el resultado es un número negativo."
-#. /XJ%
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12938,7 +11625,6 @@ msgctxt ""
msgid "Examples"
msgstr "Ejemplos"
-#. koGR
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12948,7 +11634,6 @@ msgctxt ""
msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
msgstr "=DÍAS(\"2010-01-01\"; AHORA()) devuelve el número de días desde hoy y hasta el 1 de enero de 2010."
-#. _!KN
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12958,7 +11643,6 @@ msgctxt ""
msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
msgstr "=DÍAS(\"1990-10-10\";\"1980-10-10\") devuelve 3652 días."
-#. /g;;
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12967,7 +11651,6 @@ msgctxt ""
msgid "Split"
msgstr "Dividir"
-#. W%]P
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12977,7 +11660,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Dividir\">Dividir</link>"
-#. ?ot+
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12987,7 +11669,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\">Divide la ventana actual en la esquina superior izquierda de la celda activa.</ahelp>"
-#. dk+W
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12997,7 +11678,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 "También puede utilizarse el ratón para dividir la ventana en sentido horizontal o vertical. Para ello, arrastre hacia la ventana la línea negra gruesa situada justo encima de la barra de desplazamiento vertical o a la derecha de la barra de desplazamiento horizontal. El lugar de división de la ventana quedará indicado mediante una línea negra gruesa."
-#. %?.]
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -13007,7 +11687,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 "Una ventana dividida contiene barras de desplazamiento propias en cada área, mientras que un <link href=\"text/scalc/01/07090000.xhp\" name=\"área de ventana fija\">área de ventana fija</link> no dispone de ellas."
-#. .TZ0
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13016,7 +11695,6 @@ msgctxt ""
msgid "AutoOutline"
msgstr "Esquema automático"
-#. G0mi
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13026,7 +11704,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"Esquema automático\">Esquema automático</link>"
-#. i]nf
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13036,7 +11713,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\">Si el rango de celdas seleccionado contiene fórmulas o referencias, $[officename] automáticamente crea un esquema con la selección.</ahelp>"
-#. cJa6
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13046,7 +11722,6 @@ msgctxt ""
msgid "For example, consider the following table:"
msgstr "Por ejemplo, supongamos la tabla siguiente:"
-#. hR^N
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13056,7 +11731,6 @@ msgctxt ""
msgid "January"
msgstr "Enero"
-#. --nL
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13066,7 +11740,6 @@ msgctxt ""
msgid "February"
msgstr "Febrero"
-#. ZR$O
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13076,7 +11749,6 @@ msgctxt ""
msgid "March"
msgstr "Marzo"
-#. [zh|
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13086,7 +11758,6 @@ msgctxt ""
msgid "1st Quarter"
msgstr "Primer trimestre"
-#. q9Ur
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13096,7 +11767,6 @@ msgctxt ""
msgid "April"
msgstr "Abril"
-#. [#Ud
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13106,7 +11776,6 @@ msgctxt ""
msgid "May"
msgstr "Mayo"
-#. [@i3
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13116,7 +11785,6 @@ msgctxt ""
msgid "June"
msgstr "Junio"
-#. oT89
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13126,7 +11794,6 @@ msgctxt ""
msgid "2nd Quarter"
msgstr "Segundo trimestre"
-#. X_Mm
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13136,7 +11803,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. 9P]]
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13146,7 +11812,6 @@ msgctxt ""
msgid "120"
msgstr "120"
-#. y]Xk
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13156,7 +11821,6 @@ msgctxt ""
msgid "130"
msgstr "130"
-#. p+5F
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13166,7 +11830,6 @@ msgctxt ""
msgid "350"
msgstr "350"
-#. [[|f
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13176,7 +11839,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. 9YaZ
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13186,7 +11848,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. !:=X
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13196,7 +11857,6 @@ msgctxt ""
msgid "200"
msgstr "200"
-#. RfB?
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13206,7 +11866,6 @@ msgctxt ""
msgid "400"
msgstr "400"
-#. ((\1
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13216,7 +11875,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 "Las celdas correspondientes al 1º y 2º trimestres contienen una fórmula de suma de las tres celdas situadas a su izquierda. Si se aplica la orden <emph>Esquema automático</emph>, la tabla se agrupa en dos trimestres."
-#. L6%J
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13226,7 +11884,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 "Para borrar el esquema, seleccione la tabla y elija <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Otuline - Remove\">Datos - Esquema - Borrar</link>."
-#. nuBe
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13235,7 +11892,6 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "Formateado condicionado"
-#. 7,+`
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13245,7 +11901,6 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "Formateado condicional"
-#. e[cM
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13255,7 +11910,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\">Elija <emph>Formateado condicional</emph> para definir estilos de formato en función de ciertas condiciones.</ahelp></variable> Si ya se ha asignado un estilo a una celda, ésta permanece sin cambios. A continuación se evalúa el estilo especificado aquí. Se pueden especificar tres condiciones que tienen en cuenta el contenido de las celdas, sean valores o fórmulas. Las condiciones se evalúan de 1 a 3. Si la condición 1 coincide con la condición, se utiliza el estilo definido. En caso contrario se evalúa la condición 2 y se utiliza el estilo definido para ella. Si esta condición no se cumple, se evalúa la condición 3."
-#. M4$_
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13264,7 +11918,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 "Para aplicar formato condicionado, debe habilitar la función Cálculo automático. Seleccione Herramientas - Contenido de las celdas - Calcular automáticamente (aparece una marca de verificación junto al comando cuando la función de cálculo automático está activada)."
-#. GpG\
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13273,7 +11926,6 @@ msgctxt ""
msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
msgstr "<bookmark_value>formato condicionado;condiciones</bookmark_value>"
-#. _isV
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13283,7 +11935,6 @@ msgctxt ""
msgid "Condition 1/2/3"
msgstr "Condición 1/2/3"
-#. :n7b
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13293,7 +11944,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\">Marque los cuadros correspondientes a cada una de las condiciones y escriba la condición.</ahelp> Haga clic en <emph>Aceptar</emph> para cerrar el diálogo."
-#. #=P0
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13303,7 +11953,6 @@ msgctxt ""
msgid "Cell Value / Formula"
msgstr "Valor de la celda/Fórmula"
-#. u]Sg
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13313,7 +11962,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\">Especifica si el formateado condicional depende de un valor de celda o de una fórmula.</ahelp> Si selecciona una fórmula como referencia, el cuadro <emph>Condición de valor de celda</emph> se mostrará a la derecha del cuadro <emph>Valor de celda/Fórmula</emph>. Si la condición es \"La fórmula es\", escriba una referencia de celda. Si la referencia de celda tiene un valor distinto de cero, la condición se cumple."
-#. nJ7#
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13323,7 +11971,6 @@ msgctxt ""
msgid "Cell Value Condition"
msgstr "Condición de valor de celda"
-#. _O$X
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13333,7 +11980,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\">Elija un parámetro para el formato que se debe aplicar a las celdas seleccionadas.</ahelp>"
-#. q1W:
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13343,7 +11989,6 @@ msgctxt ""
msgid "Cell Style"
msgstr "Estilo de celda"
-#. @I1O
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13353,7 +11998,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\">Permite seleccionar el estilo que debe aplicarse cuando se cumple la condición.</ahelp>"
-#. J2g_
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13362,7 +12006,6 @@ msgctxt ""
msgid "New Style"
msgstr "Nuevo estilo"
-#. 10/.
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13371,7 +12014,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=\".\">Si todavía no ha definido un estilo para utilizarlo, haga clic en Nuevo estilo para abrir la ficha Organizador del cuadro de diálogo Estilo de celda. Defina un nuevo estilo y haga clic en Aceptar.</ahelp>"
-#. 2svd
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13381,7 +12023,6 @@ msgctxt ""
msgid "Parameter field"
msgstr "Campo de parámetro"
-#. Qsc}
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13391,7 +12032,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\">Escriba una referencia, valor o fórmula.</ahelp> Escriba una referencia, valor o fórmula en el campo del parámetro o en ambos parámetros si ha seleccionado una condición que los requiera. También puede especificar fórmulas con referencias relativas."
-#. PV,}
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13401,7 +12041,6 @@ msgctxt ""
msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
msgstr "De este modo se completa la condición. Esta podría tener, por ejemplo, la forma siguiente:"
-#. icsB
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13411,7 +12050,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 "Valor de celda igual a 0: Estilo de celda Valor cero; este ejemplo requiere haber definido previamente un estilo de celda con el nombre Valor cero, que destaca este tipo de valores."
-#. m1%s
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13421,7 +12059,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 "El valor de la celda se ecuentra entre $B$20 y $B$21: Estilo de celda \"Resultado\" (los correspondientes valores extremos ya deben existir en las celdas B20 y B21)."
-#. Rd4v
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13431,7 +12068,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 "La fórmula es SUMA($A$1:$A$5)=10: Estilo de celda \"Resultado\"; las celdas seleccionadas se formatean con el estilo \"Resultado\" cuando la suma de los contenidos de las celdas entre A1 y A5 es igual a 10."
-#. 4yh(
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13440,7 +12076,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"
@@ -13449,7 +12084,6 @@ msgctxt ""
msgid "Show Details"
msgstr "Mostrar detalles"
-#. rjkq
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13458,7 +12092,6 @@ msgctxt ""
msgid "<bookmark_value>tables; showing details</bookmark_value>"
msgstr "<bookmark_value>tablas;mostrar detalles</bookmark_value>"
-#. s7dD
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13468,7 +12101,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=\"Mostrar detalles\">Mostrar detalles</link>"
-#. Sd7F
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13478,7 +12110,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\">Muestra los detalles de la fila o columna agrupada en la que se encuentra el cursor. Para mostrar los detalles de todas las filas o columnas agrupadas, seleccione la tabla del esquema y elija este comando.</ahelp>"
-#. acFa
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13488,7 +12119,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 "Para ocultar un grupo seleccionado, elija <emph>Datos - Esquema -</emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Ocultar detalles\"><emph>Ocultar detalles</emph></link>."
-#. =PWp
#: 12080200.xhp
#, fuzzy
msgctxt ""
@@ -13498,7 +12128,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\">comando Mostrar detalles en Tablas del Piloto de Datos</link>"
-#. D%y7
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13507,7 +12136,6 @@ msgctxt ""
msgid "Statistical Functions Part Three"
msgstr "Funciones estadísticas, tercera parte"
-#. 3pV[
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13517,7 +12145,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=\"Funciones estadísticas, tercera parte\">Funciones estadísticas, tercera parte</link></variable>"
-#. l0Oi
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13526,7 +12153,6 @@ msgctxt ""
msgid "<bookmark_value>LARGE function</bookmark_value>"
msgstr "<bookmark_value>K.ESIMO.MAYOR</bookmark_value>"
-#. ^Wsn
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13536,7 +12162,6 @@ msgctxt ""
msgid "LARGE"
msgstr "K.ESIMO.MAYOR"
-#. iF)U
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13546,7 +12171,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\">Calcula el valor c de rango más grande de un grupo de datos.</ahelp>"
-#. oJrM
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13556,7 +12180,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ;p%Z
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13566,7 +12189,6 @@ msgctxt ""
msgid "LARGE(Data; RankC)"
msgstr "K.ESIMO.MAYOR(Datos; Rango_C)"
-#. KJy|
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13576,7 +12198,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>Datos</emph> es la matriz de los datos de la muestra."
-#. */Y,
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13586,7 +12207,6 @@ msgctxt ""
msgid "<emph>RankC</emph> is the ranking of the value."
msgstr "<emph>Rango_C</emph> es el rango del valor."
-#. :R[\
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13596,7 +12216,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. L`U]
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13606,7 +12225,6 @@ msgctxt ""
msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
msgstr "<item type=\"input\">=K.ESIMO.MAYOR(A1:C50;2)</item> da el segundo mayor valor en A1:C50."
-#. @V[F
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13615,7 +12233,6 @@ msgctxt ""
msgid "<bookmark_value>SMALL function</bookmark_value>"
msgstr "<bookmark_value>K.ESIMO.MENOR</bookmark_value>"
-#. Xl]R
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13625,7 +12242,6 @@ msgctxt ""
msgid "SMALL"
msgstr "K.ESIMO.MENOR"
-#. 1Wp#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13635,7 +12251,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\">Calcula el valor c de rango más pequeño de un grupo de datos.</ahelp>"
-#. J6w.
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13645,7 +12260,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. b0r-
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13655,7 +12269,6 @@ msgctxt ""
msgid "SMALL(Data; RankC)"
msgstr "K.ESIMO.MENOR(Datos; Rango_C)"
-#. GXAX
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13665,7 +12278,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>Datos</emph> es la matriz de los datos en la muestra."
-#. TkEZ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13675,7 +12287,6 @@ msgctxt ""
msgid "<emph>RankC</emph> is the rank of the value."
msgstr "<emph>Rango_C</emph> es el rango del valor."
-#. -NlO
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13685,7 +12296,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. {^EE
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13695,7 +12305,6 @@ msgctxt ""
msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
msgstr "<item type=\"input\">=K.ESIMO.MENOR(A1:C50;2)</item> da el segundo mínimo valor en el rango A1:C50."
-#. *=$p
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13704,7 +12313,6 @@ msgctxt ""
msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
msgstr "<bookmark_value>INTERVALO.CONFIANZA</bookmark_value>"
-#. |6jr
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13714,7 +12322,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr "INTERVALO.CONFIANZA"
-#. m++F
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13724,7 +12331,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\">Calcula un intervalo de confianza (1 alfa) para distribución normal.</ahelp>"
-#. hHZQ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13734,7 +12340,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. Qj/M
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13744,7 +12349,6 @@ msgctxt ""
msgid "CONFIDENCE(Alpha; StDev; Size)"
msgstr "CONFIANZA(Alpha; Desv_estándar; Tamaño)"
-#. /[T0
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13754,7 +12358,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph>Alfa</emph> es el nivel del intervalo de confianza."
-#. .7g9
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13764,7 +12367,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la población total."
-#. )c;#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13774,7 +12376,6 @@ msgctxt ""
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph>tamaño</emph> es el tamaño de la totalidad base."
-#. q*2r
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13784,7 +12385,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ,D(`
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13794,7 +12394,6 @@ msgctxt ""
msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr "<item type=\"input\">=INTERVALO.CONFIANZA(0.05;1.5;100)</item> da 0.29."
-#. _a*Q
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13803,7 +12402,6 @@ msgctxt ""
msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
msgstr "<bookmark_value>COEF.DE.CORREL</bookmark_value><bookmark_value>coeficiente de correlación</bookmark_value>"
-#. 0]*G
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13813,7 +12411,6 @@ msgctxt ""
msgid "CORREL"
msgstr "COEF.DE.CORREL"
-#. FJ[V
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13823,7 +12420,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KORREL\">Calcula el coeficiente de correlación entre dos grupos de datos.</ahelp>"
-#. f{z@
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13833,7 +12429,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ny96
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13843,7 +12438,6 @@ msgctxt ""
msgid "CORREL(Data1; Data2)"
msgstr "COEF.DE.CORREL(Datos1; Datos2)"
-#. m4rZ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13853,7 +12447,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Datos1</emph> es el primer grupo de datos."
-#. z)ho
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13863,7 +12456,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Datos2</emph> es el segundo conjunto de datos."
-#. xjg9
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13873,7 +12465,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. G=lC
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13883,7 +12474,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 "<item type=\"input\">=COEF.DE.CORREL(A1:A50;B1:B50)</item> calcula el coeficiente de correlación como medida de la correlación lineal de dos conjuntos de datos."
-#. nV2r
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13892,7 +12482,6 @@ msgctxt ""
msgid "<bookmark_value>COVAR function</bookmark_value>"
msgstr "<bookmark_value>COVAR</bookmark_value>"
-#. [Fr$
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13902,7 +12491,6 @@ msgctxt ""
msgid "COVAR"
msgstr "COVAR"
-#. L*C2
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13912,7 +12500,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Calcula la covarianza del producto de las desviaciones de pares.</ahelp>"
-#. +i$/
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13922,7 +12509,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. KcFJ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13932,7 +12518,6 @@ msgctxt ""
msgid "COVAR(Data1; Data2)"
msgstr "COVAR(Datos1; Datos2)"
-#. 6-${
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13942,7 +12527,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Datos1</emph> es el primer conjunto de datos."
-#. 9a1_
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13952,7 +12536,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Datos2</emph> es el segundo conjunto de datos."
-#. s+g\
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13962,7 +12545,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ivo#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13972,7 +12554,6 @@ msgctxt ""
msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
-#. $W^w
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13981,7 +12562,6 @@ msgctxt ""
msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
msgstr "<bookmark_value>BINOM.CRIT</bookmark_value>"
-#. b#n{
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13991,7 +12571,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr "BINOM.CRIT"
-#. gt5X
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14001,7 +12580,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\">Calcula el valor menor para el que la distribución binominal acumulativa es igual o inferior a uno de los valores buscados.</ahelp>"
-#. (@pR
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14011,7 +12589,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. r7kB
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14021,7 +12598,6 @@ msgctxt ""
msgid "CRITBINOM(Trials; SP; Alpha)"
msgstr "BINOM.CRIT(ensayos; prob_éxito; alfa)"
-#. *Hi|
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14031,7 +12607,6 @@ msgctxt ""
msgid "<emph>Trials</emph> is the total number of trials."
msgstr "<emph>ensayos</emph> es el total de intentos."
-#. z[6L
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14041,7 +12616,6 @@ msgctxt ""
msgid "<emph>SP</emph> is the probability of success for one trial."
msgstr "<emph>prob_éxito</emph> es el intervalo de probabilidad de éxito de un intento."
-#. |H^8
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14051,7 +12625,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
msgstr "<emph>Alfa</emph> es el intervalo de probabilidad límite que se debe alcanzar o superar."
-#. _5l?
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14061,7 +12634,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. w#G(
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14071,7 +12643,6 @@ msgctxt ""
msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
msgstr "<item type=\"input\">=BINOM.CRIT(100;0.5;0.1)</item> rendimientos 44."
-#. K9,8
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14080,7 +12651,6 @@ msgctxt ""
msgid "<bookmark_value>KURT function</bookmark_value>"
msgstr "<bookmark_value>CURTOSIS</bookmark_value>"
-#. FC@7
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14090,7 +12660,6 @@ msgctxt ""
msgid "KURT"
msgstr "CURTOSIS"
-#. +7:P
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14100,7 +12669,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\">Calcula la curtosis (medición del grado de agudeza de la curva de frecuencia) de un grupo de datos (se deben introducir un mínimo de cuatro valores).</ahelp>"
-#. O`d2
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14110,7 +12678,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. gLn*
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14120,7 +12687,6 @@ msgctxt ""
msgid "KURT(Number1; Number2; ...Number30)"
msgstr "CURTOSIS(Número1; Número2; ...; Número30)"
-#. |svS
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14130,7 +12696,6 @@ msgctxt ""
msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
msgstr "<emph>Número1,Número2,...Número30</emph> son argumentos o rangos numéricos que representan una muestra aleatoria de la distribución."
-#. ,Iz:
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14140,7 +12705,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Q!r6
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14150,7 +12714,6 @@ msgctxt ""
msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
msgstr "<item type=\"input\">=CURTOSIS(A1;A2;A3;A4;A5;A6)</item>"
-#. 9jsC
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14159,7 +12722,6 @@ msgctxt ""
msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
msgstr "<bookmark_value>INV.LOG</bookmark_value><bookmark_value>inverso de la distribución normal logarítmica</bookmark_value>"
-#. hQ}*
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14169,7 +12731,6 @@ msgctxt ""
msgid "LOGINV"
msgstr "INV.LOG"
-#. WC|1
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14179,7 +12740,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Calcula el inverso de la distribución normal logarítmica.</ahelp>"
-#. F`Uw
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14189,7 +12749,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. +3TN
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14199,7 +12758,6 @@ msgctxt ""
msgid "LOGINV(Number; Mean; StDev)"
msgstr "INV.LOG(Número; Media; Desviación Estandar)"
-#. aq7S
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14209,7 +12767,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "<emph>Probabilidad</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución normal logarítmica inversa."
-#. C_)X
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14219,7 +12776,6 @@ msgctxt ""
msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
msgstr "<emph>Media</emph> es el promedio de la distribución normal logarítmica."
-#. ov^!
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14229,7 +12785,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución logarítmica estándar."
-#. *2Kh
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14239,7 +12794,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. kWiO
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14249,7 +12803,6 @@ msgctxt ""
msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
msgstr "<item type=\"input\">=INV.LOG(0.05;0;1)</item> devuelve 0.19."
-#. $r6!
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14258,7 +12811,6 @@ msgctxt ""
msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
msgstr "<bookmark_value>DISTR.LOG.NORM</bookmark_value><bookmark_value>distribución normal logarítmica acumulativa</bookmark_value>"
-#. 6u0-
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14268,7 +12820,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr "DISTR.LOG.NORM"
-#. K9Im
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14278,7 +12829,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Devuelve la distribución normal logarítmica acumulativa.</ahelp>"
-#. *v%0
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14288,7 +12838,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. N.m+
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14298,7 +12847,6 @@ msgctxt ""
msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
msgstr "DISTR.LOG.NORM(Número; Media; Desv_estándar; Acumulativa)"
-#. )5gG
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14308,7 +12856,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "<emph>x</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución normal logarítmica."
-#. DB-6
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14318,7 +12865,6 @@ msgctxt ""
msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
msgstr "<emph>Media</emph> (opcional) es el valor medio de la distribución logarítmica estándar."
-#. aMDn
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14328,7 +12874,6 @@ msgctxt ""
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>Desv_estándar</emph> (opcional) es la desviación estándar de la distribución logarítmica estándar."
-#. S2?a
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14337,7 +12882,6 @@ msgctxt ""
msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
msgstr "<emph>Acumulativa</emph> (opcional) = 0 calcula la función de densidad, Acumulativa = 1 calcula la distribución."
-#. ^Xh1
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14347,7 +12891,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. uOa@
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14357,7 +12900,6 @@ msgctxt ""
msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
msgstr "<item type=\"input\">=DISTR.LOG.NORM(0.1;0;1)</item> retorna 0.01."
-#. YO]S
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14366,7 +12908,6 @@ msgctxt ""
msgid "Names"
msgstr "Nombres"
-#. uf:/
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14376,7 +12917,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Nombres\">Nombres</link>"
-#. 7^%V
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14386,7 +12926,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=\".\">Permite asignar un nombre a las distintas secciones del documento de hoja de cálculo.</ahelp> Al asignar un nombre a las distintas secciones, se puede <link href=\"text/scalc/01/02110000.xhp\" name=\"navegar\">navegar</link> fácilmente por los documentos de hoja de cálculo para buscar información concreta."
-#. )UCS
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14396,7 +12935,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Definir...\">Definir...</link>"
-#. 5b6T
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14406,7 +12944,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Pegar...\">Pegar...</link>"
-#. Sm0\
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14416,7 +12953,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Aplicar...\">Aplicar...</link>"
-#. K9#-
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14426,7 +12962,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Etiquetas...\">Etiquetas...</link>"
-#. hbe:
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14435,7 +12970,6 @@ msgctxt ""
msgid "Show Sheet"
msgstr "Mostrar hoja"
-#. shyR
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14444,7 +12978,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
msgstr "<bookmark_value>hojas;mostrar</bookmark_value><bookmark_value>mostrar;hojas</bookmark_value>"
-#. 7v{s
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14454,7 +12987,6 @@ msgctxt ""
msgid "Show Sheet"
msgstr "Mostrar hoja de cálculo"
-#. pfv#
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14464,7 +12996,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\">Muestra las hojas que se ocultaron mediante la orden <emph>Ocultar</emph>.</ahelp></variable> Seleccione una única página para ejecutar la orden. La hoja actual siempre está seleccionada. Si está seleccionada una hoja distinta de la actual, puede quitar la selección pulsando <switchinline select=\"sys\"> <caseinline select=\"MAC\">Comando</caseinline> <defaultinline>Control</defaultinline> </switchinline> al tiempo que hace clic en la pestaña correspondiente en la parte inferior de la ventana."
-#. uFN+
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14474,7 +13005,6 @@ msgctxt ""
msgid "Hidden sheets"
msgstr "Hojas ocultas"
-#. }i5X
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14484,7 +13014,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\">Muestra una lista de hojas ocultas en el documento de la hoja de cálculo.</ahelp> Para mostrar una hoja determinada, pulse en la entrada correspondiente de la lista y confirme pulsando Aceptar."
-#. FsYX
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14493,7 +13022,6 @@ msgctxt ""
msgid "Cell Contents"
msgstr "Contenido de las celdas"
-#. +smV
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14503,7 +13031,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=\"Contenidos de celda\">Contenidos de celda</link>"
-#. NMr\
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14513,7 +13040,6 @@ msgctxt ""
msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
msgstr "Abre un submenú que contiene órdenes para calcular tablas y activar la Entrada automática."
-#. Z4b(
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14522,7 +13048,6 @@ msgctxt ""
msgid "Select Source"
msgstr "Seleccionar origen"
-#. sil!
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14532,7 +13057,6 @@ msgctxt ""
msgid "Select Source"
msgstr "Seleccionar fuente"
-#. $N!G
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14543,7 +13067,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\">Abre un diálogo que permite seleccionar el origen de la tabla del Piloto de datos y, a continuación, crear la tabla.</ahelp>"
-#. nQuP
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14553,7 +13076,6 @@ msgctxt ""
msgid "Selection"
msgstr "Selección"
-#. OFEQ
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14564,7 +13086,6 @@ msgctxt ""
msgid "Select a data source for the pivot table."
msgstr "Seleccione una fuente de datos para la tabla del Piloto de datos."
-#. Q.+-
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14574,7 +13095,6 @@ msgctxt ""
msgid "Current Selection"
msgstr "Selección actual"
-#. )uF:
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14585,7 +13105,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Utiliza las celdas seleccionadas como origen de datos para la tabla del Piloto de datos.</ahelp>"
-#. \aJ+
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14596,7 +13115,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 "Las columnas de datos de la tabla del Piloto de datos utilizan el mismo formato que la primera fila de datos de la selección actual."
-#. MJ*;
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14606,7 +13124,6 @@ msgctxt ""
msgid "Data source registered in $[officename]"
msgstr "Fuente de datos registrada en $[officename]"
-#. oIo9
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14617,7 +13134,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=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Utiliza una tabla o consulta de una base de datos registrada en $[officename] como origen de datos de la tabla del Piloto de datos.</ahelp>"
-#. Lm{Y
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14627,7 +13143,6 @@ msgctxt ""
msgid "External source/interface"
msgstr "Fuente externa/interfaz"
-#. sp.@
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14638,7 +13153,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=\".\">Abre el diálogo<emph>Autoformatear</emph>,donde puede seleccionar un diseño predefinido para la tabla.</ahelp>"
-#. EGI^
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14648,7 +13162,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=\"Diálogo Piloto de datos\">Diálogo Piloto de datos</link>"
-#. rlBf
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14658,7 +13171,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "Tabla dinámica"
-#. Q9n=
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14668,7 +13180,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
msgstr "<bookmark_value>Piloto de datos;mostrar detalles</bookmark_value> <bookmark_value>Piloto de datos;detallada</bookmark_value>"
-#. l9bQ
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14679,7 +13190,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "Tabla dinámica"
-#. {ZSr
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14690,7 +13200,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\">Especifique el diseño de la tabla generada por el Piloto de datos.</ahelp>"
-#. pJEr
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14701,7 +13210,6 @@ msgctxt ""
msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
msgstr "El Piloto de datos muestra los campos de datos en forma de botones que puede arrastrar y colocar para definir la tabla del Piloto de datos."
-#. m=T)
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14711,7 +13219,6 @@ msgctxt ""
msgid "Layout"
msgstr "Diseño"
-#. H*#J
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14722,7 +13229,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\">Para definir el diseño de una tabla del Piloto de datos, arrastre y coloque los botones del campo de datos en las áreas <emph>Campos de página, Fila, Columna </emph>y<emph> Campos de datos</emph>.</ahelp> También se puede utilizar la función de arrastrar y colocar para cambiar la disposición de los campos de datos en una tabla del Piloto de datos."
-#. .Itd
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14732,7 +13238,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 "$[officename] incorpora automáticamente una etiqueta a los botones que se arrastran al área <emph>Campos de datos</emph>. La etiqueta contiene el nombre del campo de datos y la fórmula que crea los datos."
-#. %h-^
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14742,7 +13247,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 "Para cambiar la función utilizada en un campo de datos, haga doble clic en un botón del área <emph>Campos de datos</emph> para abrir el diálogo <link href=\"text/scalc/01/12090105.xhp\" name=\"Campo de datos\">Campo de datos</link>. También puede hacer doble clic en los botones de las áreas <emph>Fila</emph> o <emph>Columna</emph>."
-#. -SI;
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14752,7 +13256,6 @@ msgctxt ""
msgid "Remove"
msgstr "Borrar"
-#. [0ai
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14762,7 +13265,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\">Borra el campo de datos seleccionado del diseño de la tabla.</ahelp>"
-#. \+eh
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14772,7 +13274,6 @@ msgctxt ""
msgid "Options"
msgstr "Opciones"
-#. *W|f
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14782,7 +13283,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\">Abre el diálogo <link href=\"text/scalc/01/12090105.xhp\" name=\"Campo de datos\"><emph>Campo de datos</emph></link>, en el que puede cambiar la función asociada con el campo seleccionado.</ahelp>"
-#. baXN
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14792,7 +13292,6 @@ msgctxt ""
msgid "More"
msgstr "Opciones"
-#. %m[\
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14803,7 +13302,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\">Muestra u oculta opciones adicionales para definir la tabla del Piloto de datos.</ahelp>"
-#. ,QGD
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14813,7 +13311,6 @@ msgctxt ""
msgid "Result"
msgstr "Resultado"
-#. ~COc
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14824,7 +13321,6 @@ msgctxt ""
msgid "Specify the settings for displaying the results of the pivot table."
msgstr "Especifica la configuración de presentación de los resultados de la tabla del Piloto de datos."
-#. SVaH
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14833,7 +13329,6 @@ msgctxt ""
msgid "Selection from"
msgstr "Selección de"
-#. ?-fL
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14843,7 +13338,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccione el área que contiene los datos para la tabla de piloto de datos actual.</ahelp>"
-#. mM`!
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14853,7 +13347,6 @@ msgctxt ""
msgid "Results to"
msgstr "Resultado en"
-#. k[S~
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14864,7 +13357,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\">Seleccione el área en la que desea mostrar los resultados de la tabla del Piloto de datos.</ahelp>"
-#. h/=7
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14875,7 +13367,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 "Si el área seleccionada contiene datos, el Piloto de datos los sobrescribe. Para evitar la pérdida de datos, deje que el Piloto de datos seleccione automáticamente el área para mostrar los resultados."
-#. CVEI
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14885,7 +13376,6 @@ msgctxt ""
msgid "Ignore empty rows"
msgstr "Ignorar filas vacías"
-#. i89N
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14895,7 +13385,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\">Hace caso omiso de los campos vacíos del origen de datos.</ahelp>"
-#. /hCj
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14905,7 +13394,6 @@ msgctxt ""
msgid "Identify categories"
msgstr "Identificar categorías"
-#. eYY)
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14915,7 +13403,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\">Asignaautomáticamente filas sin etiqueta a la categoría de filas superiores.</ahelp>"
-#. /z)-
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14925,7 +13412,6 @@ msgctxt ""
msgid "Total columns"
msgstr "Columnas de totales"
-#. 4f,*
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14935,7 +13421,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\">Calcula y muestra el total del cálculo de columna.</ahelp>"
-#. U_kT
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14945,7 +13430,6 @@ msgctxt ""
msgid "Total rows"
msgstr "Filas de totales"
-#. R*,G
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14955,7 +13439,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\">Calcula y muestra el total del cálculo de fila.</ahelp>"
-#. KB_h
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14964,7 +13447,6 @@ msgctxt ""
msgid "Add filter"
msgstr "Agregar filtro"
-#. )ght
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14974,7 +13456,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
msgstr "<ahelp hid=\".\">Agrega un botón Filtro a las tablas del Piloto de datos que se basan en datos de hoja de cálculo.</ahelp>"
-#. ,16p
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14983,7 +13464,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Abre el diálogo Filtro.</ahelp>"
-#. a+SU
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14992,7 +13472,6 @@ msgctxt ""
msgid "Enable drill to details"
msgstr "Habilitar la función de profundización en detalles"
-#. u_q.
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15001,7 +13480,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=\".\">Marque esta casilla de verificación y haga doble clic en una etiqueta de elemento de la tabla para mostrar u ocultar los detalles del elemento. Desmarque la casilla de verificación y haga doble clic en una celda de la tabla para editar su contenido.</ahelp>"
-#. y=[E
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -15011,7 +13489,6 @@ msgctxt ""
msgid "To examine details inside a pivot table"
msgstr "Para ver los detalles dentro de una tabla del Piloto de datos"
-#. S]uz
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15020,7 +13497,6 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Siga uno de estos procedimientos:"
-#. P!$y
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15029,7 +13505,6 @@ msgctxt ""
msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
msgstr "Seleccione un rango de celdas y elija <emph>Datos - Esquema - Mostrar detalles</emph>."
-#. e@9R
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15038,7 +13513,6 @@ msgctxt ""
msgid "Double-click a field in the table."
msgstr "Haga doble clic en un campo de la tabla."
-#. [lG[
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15047,7 +13521,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 "Si hace doble clic en un campo con campos adyacentes en el mismo nivel, se abrirá el diálogo <emph>Mostrar detalle</emph>:"
-#. @T=s
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15056,7 +13529,6 @@ msgctxt ""
msgid "Show Detail"
msgstr "Mostrar detalle"
-#. EBE0
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15065,7 +13537,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccione el campo del que desee ver los detalles.</ahelp>"
-#. =:t6
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -15076,7 +13547,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=\"Combinaciones de teclas del Piloto de datos\">Combinaciones de teclas del Piloto de datos</link>"
-#. i4kn
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15085,7 +13555,6 @@ msgctxt ""
msgid "Column & Row Headers"
msgstr "Encabezados de filas y columnas"
-#. 5ZPd
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15094,7 +13563,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>hojas de cálculo;mostrar encabezados de columnas/filas</bookmark_value><bookmark_value>mostrar;encabezados de columnas/filas</bookmark_value>"
-#. jgf2
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15104,7 +13572,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Encabezamientos de fila y de columna</link>"
-#. 2KYN
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15114,7 +13581,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Muestra encabezados de filas y de columnas.</ahelp>"
-#. Cf05
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15124,7 +13590,6 @@ msgctxt ""
msgid "To hide the column and row headers unmark this menu entry."
msgstr "Para ocultar la barra de fórmulas, anule la selección de este elemento de menú."
-#. kA|4
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15134,7 +13599,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 "Se puede establecer la visualización de los encabezados de las columnas y las filas en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline> Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Hojas de cálculo - Ver\">%PRODUCTNAME Calc - Ver</link></emph>."
-#. z[3T
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15143,7 +13607,6 @@ msgctxt ""
msgid "Define Label Range"
msgstr "Definir área de etiqueta"
-#. KJHW
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15152,7 +13615,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
msgstr "<bookmark_value>hojas;definir áreas de etiquetas</bookmark_value><bookmark_value>áreas de etiquetas en hojas</bookmark_value>"
-#. 7Wb/
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15162,7 +13624,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\">Definir área de etiqueta</link></variable>"
-#. .rfT
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15172,7 +13633,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\">Abre un diálogo en el que puede definir un área de etiquetas.</ahelp></variable>"
-#. +kZG
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15182,7 +13642,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 "El contenido de las celdas de un área de etiquetas se puede utilizar como los nombres en las fórmulas; $[officename] reconoce estos nombres de la misma forma que lo hace con los nombres predefinidos de los días de la semana y los meses. Estos nombres se completan automáticamente al escribirlos en una fórmula. Asimismo, los nombres definidos por áreas de etiquetas tienen prioridad sobre los definidos por áreas generadas automáticamente."
-#. ?tN5
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15192,7 +13651,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 "Es posible definir varias áreas de etiqueta que contengan los mismos títulos en diferentes tablas. En tal caso, $[officename] comprueba en primer lugar las áreas de la tabla actual y, de no obtener resultados, las del resto de las tablas."
-#. HhO+
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15202,7 +13660,6 @@ msgctxt ""
msgid "Range"
msgstr "Áreas"
-#. 2\-X
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15212,7 +13669,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\">Muestra la referencia de celda de cada área de etiquetas.</ahelp> Para quitar un área de etiquetas del listado, selecciónela y haga clic en <emph>Eliminar</emph>."
-#. fsKZ
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15222,7 +13678,6 @@ msgctxt ""
msgid "Contains column labels"
msgstr "Contiene etiquetas de columna"
-#. Zg+B
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15232,7 +13687,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\">Incluye las etiquetas de columna en el área de etiquetas actual.</ahelp>"
-#. 6m[o
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15242,7 +13696,6 @@ msgctxt ""
msgid "Contains row labels"
msgstr "Contiene etiquetas de fila"
-#. o4[7
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15252,7 +13705,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\">Incluye las etiquetas de fila en el área de etiquetas actual.</ahelp>"
-#. nLL+
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15262,7 +13714,6 @@ msgctxt ""
msgid "For data range"
msgstr "para área de datos"
-#. Qp^j
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15272,7 +13723,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\">Establece el área de datos en la que es válida el área de etiquetas seleccionada. Para modificarla, haga clic en la hoja y seleccione otra área con el ratón.</ahelp>"
-#. HHEF
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15282,7 +13732,6 @@ msgctxt ""
msgid "Add"
msgstr "Agregar"
-#. 2E1,
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15292,7 +13741,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\">Agrega a la lista el área de etiquetas actual.</ahelp>"
-#. bbPU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15301,7 +13749,6 @@ msgctxt ""
msgid "Statistical Functions Part Two"
msgstr "Funciones estadísticas, segunda parte"
-#. rs?J
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15311,7 +13758,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=\"Funciones estadísticas, segunda parte\">Funciones estadísticas, segunda parte</link></variable>"
-#. ?ECF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15320,7 +13766,6 @@ msgctxt ""
msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
msgstr "<bookmark_value>DISTR.F.INV</bookmark_value> <bookmark_value>distribución de probabilidad F inversa</bookmark_value>"
-#. p;yj
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15330,7 +13775,6 @@ msgctxt ""
msgid "FINV"
msgstr "DISTR.F.INV"
-#. JZSU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15340,7 +13784,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\">Devuelve el inverso de la distribución de probabilidad F.</ahelp> La distribución F se utiliza en pruebas F para establecer la relación entre dos grupos de datos distintos."
-#. bobk
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15350,7 +13793,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. Y7Cp
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15360,7 +13802,6 @@ msgctxt ""
msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "DISTR.F.INV(Número; GradosdeLibertad1; GradosdeLibertad2)"
-#. ]N$4
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15370,7 +13811,6 @@ msgctxt ""
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph>Número</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución F inversa."
-#. _*eL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15380,7 +13820,6 @@ msgctxt ""
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>GradosdeLibertad1</emph> es el número de grados de libertad en el numerador de la distribución F."
-#. QTr]
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15390,7 +13829,6 @@ msgctxt ""
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>GradosdeLibertad2</emph> es el número de grados de libertad en el denominador de la distribución F."
-#. WYYD
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15400,7 +13838,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Z5f2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15410,7 +13847,6 @@ msgctxt ""
msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
msgstr "<item type=\"input\">=DISTR.F.INV(0,5;5;10)</item> da 0,93."
-#. =Khl
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15419,7 +13855,6 @@ msgctxt ""
msgid "<bookmark_value>FISHER function</bookmark_value>"
msgstr "<bookmark_value>FISHER</bookmark_value>"
-#. RSXg
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15429,7 +13864,6 @@ msgctxt ""
msgid "FISHER"
msgstr "FISHER"
-#. e-*\
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15439,7 +13873,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\">Devuelve la función inversa de la transformación de Fisher para x y crea una función que se distribuye de forma casi normal.</ahelp>"
-#. ]=.u
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15449,7 +13882,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. H6mq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15459,7 +13891,6 @@ msgctxt ""
msgid "FISHER(Number)"
msgstr "FISHER(número)"
-#. V8eS
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15469,7 +13900,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value to be transformed."
msgstr "<emph>Número</emph> es el valor que se transformará."
-#. CIcA
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15479,7 +13909,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Q);(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15489,7 +13918,6 @@ msgctxt ""
msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
msgstr "<item type=\"input\">=FISHER(0,5)</item> da 0,55."
-#. OE;[
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15498,7 +13926,6 @@ msgctxt ""
msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
msgstr "<bookmark_value>PRUEBA.FISHER.INV</bookmark_value> <bookmark_value>inverso de transformación Fisher</bookmark_value>"
-#. u#a[
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15508,7 +13935,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr "PRUEBA.FISHER.INV"
-#. 1o}D
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15518,7 +13944,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\">Devuelve la función inversa de la transformación de Fisher para X y da como resultado una función que se distribuye de forma casi normal.</ahelp>"
-#. nZ2R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15528,7 +13953,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. lnG.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15538,7 +13962,6 @@ msgctxt ""
msgid "FISHERINV(Number)"
msgstr "PRUEBA.FISHER.INV(número)"
-#. 1+^1
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15548,7 +13971,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
msgstr "<emph>Número</emph> es el valor que va a recibir una transformación inversa."
-#. p-Sz
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15558,7 +13980,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. C~9g
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15568,7 +13989,6 @@ msgctxt ""
msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
msgstr "<item type=\"input\">=PRUEBA.FISHER.INV(0,5)</item> da 0,46."
-#. *A)K
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15577,7 +13997,6 @@ msgctxt ""
msgid "<bookmark_value>FTEST function</bookmark_value>"
msgstr "<bookmark_value>PRUEBA.F</bookmark_value>"
-#. ID@|
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15587,7 +14006,6 @@ msgctxt ""
msgid "FTEST"
msgstr "PRUEBA.F"
-#. !18z
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15597,7 +14015,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Devuelve el resultado de una prueba F.</ahelp>"
-#. 6XzL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15607,7 +14024,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 2{G#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15617,7 +14033,6 @@ msgctxt ""
msgid "FTEST(Data1; Data2)"
msgstr "PRUEBA.F(Datos1; Datos2)"
-#. S]my
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15627,7 +14042,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first record array."
msgstr "<emph>Datos1</emph> es la primera matriz de registros."
-#. !=z6
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15637,7 +14051,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second record array."
msgstr "<emph>Datos2</emph> es la segunda matriz de registros."
-#. \=KG
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15647,7 +14060,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. ~+}p
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15657,7 +14069,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 "<item type=\"input\">=PRUEBA.F(A1:A30;B1:B12)</item> calcula si los dos conjuntos de datos son distintos en su varianza y devuelve la probabilidad de que ambos conjuntos procedan de la misma población total."
-#. BjV:
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15666,7 +14077,6 @@ msgctxt ""
msgid "<bookmark_value>FDIST function</bookmark_value>"
msgstr "<bookmark_value>DISTR.F</bookmark_value>"
-#. ko~R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15676,7 +14086,6 @@ msgctxt ""
msgid "FDIST"
msgstr "DISTR.F"
-#. 1)e(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15686,7 +14095,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Calcula el valor de la función de distribución F.</ahelp>"
-#. n;]_
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15696,7 +14104,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ;FMS
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15706,7 +14113,6 @@ msgctxt ""
msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "DISTR.F(Número; GradosdeLibertad1; GradosdeLibertad2)"
-#. o-?p
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15716,7 +14122,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph>Número</emph> es el valor para el cual se debe calcular la distribución F."
-#. L~K.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15726,7 +14131,6 @@ msgctxt ""
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>GradosdeLibertad1</emph> son los grados de libertad en el numerador de la distribución F."
-#. c8)a
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15736,7 +14140,6 @@ msgctxt ""
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>GradosdeLibertad2</emph> son los grados de libertad en el denominador de la distribución F."
-#. %1qB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15746,7 +14149,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. +FfT
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15756,7 +14158,6 @@ msgctxt ""
msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
msgstr "<item type=\"input\">=DISTR.F(0,8;8;12)</item> da 0,61."
-#. D?#J
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15765,7 +14166,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMA function</bookmark_value>"
msgstr "<bookmark_value>GAMMA</bookmark_value>"
-#. :49r
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15774,7 +14174,6 @@ msgctxt ""
msgid "GAMMA"
msgstr "GAMMA"
-#. (=d)
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15783,7 +14182,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=\".\">Devuelve el valor de la función Gamma.</ahelp> DISTR.GAMMA.INV no es el inverso de GAMMA, sino de DISTR.GAMMA."
-#. !=U@
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15792,7 +14190,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. J5pn
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15801,7 +14198,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
msgstr "<emph>Número</emph> es el número para el que debe calcularse la función Gamma."
-#. q^02
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15810,7 +14206,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
msgstr "<bookmark_value>DISTR.GAMMA.INV</bookmark_value>"
-#. b@\R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15820,7 +14215,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr "DISTR.GAMMA.INV"
-#. (`;~
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15830,7 +14224,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\">Devuelve el inverso de la distribución gamma acumulativa DISTR.GAMMA.</ahelp> Esta función permite buscar variables con distribución diferente."
-#. }/1.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15840,7 +14233,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. LPdY
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15850,7 +14242,6 @@ msgctxt ""
msgid "GAMMAINV(Number; Alpha; Beta)"
msgstr "DISTR.GAMMA.INV(probabilidad; alfa; beta)"
-#. bsA3
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15860,7 +14251,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "<emph>Número</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución Gamma inversa."
-#. G%*0
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15870,7 +14260,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>Alfa</emph> es el parámetro Alfa de la distribución Gamma."
-#. 3e+y
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15880,7 +14269,6 @@ msgctxt ""
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "<emph>Beta</emph> es el parámetro Beta de la distribución Gamma."
-#. Nccf
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15890,7 +14278,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. fWf1
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15900,7 +14287,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
msgstr "<item type=\"input\">=DISTR.GAMMA.INV(0,8;1;1)</item> da 1,61."
-#. mFHc
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15909,7 +14295,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
msgstr "<bookmark_value>GAMMA.LN</bookmark_value> <bookmark_value>logaritmo natural de función Gamma</bookmark_value>"
-#. X3zn
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15919,7 +14304,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr "GAMMA.LN"
-#. bNZJ
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15929,7 +14313,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\">Devuelve el logaritmo natural de la función gamma: G(x).</ahelp>"
-#. dRiG
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15939,7 +14322,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. 6yw?
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15949,7 +14331,6 @@ msgctxt ""
msgid "GAMMALN(Number)"
msgstr "GAMMA.LN(X)"
-#. f]-Y
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15959,7 +14340,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "<emph>Número</emph> es el valor para el que debe calcularse el logaritmo natural de la función Gamma."
-#. EmVU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15969,7 +14349,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. @w@j
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15979,7 +14358,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
msgstr "<item type=\"input\">=GAMMA.LN(2)</item> da 0."
-#. +:o=
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15988,7 +14366,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
msgstr "<bookmark_value>DISTR.GAMMA</bookmark_value>"
-#. ?IpK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15998,7 +14375,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr "DISTR.GAMMA"
-#. cti)
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16008,7 +14384,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Devuelve el valor de una distribución gamma.</ahelp>"
-#. Q$U?
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16017,7 +14392,6 @@ msgctxt ""
msgid "The inverse function is GAMMAINV."
msgstr "La función inversa es DISTR.GAMMA.INV."
-#. q/q=
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16027,7 +14401,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. j2Eq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16037,7 +14410,6 @@ msgctxt ""
msgid "GAMMADIST(Number; Alpha; Beta; C)"
msgstr "DISTR.GAMMA(x; alfa; beta; acum)"
-#. DlO$
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16047,7 +14419,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
msgstr "<emph>Número</emph> es el valor para el cual se debe calcular la distribución Gamma."
-#. JKSI
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16057,7 +14428,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>Alfa</emph> es el parámetro Alfa de la distribución Gamma."
-#. 1U$x
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16067,7 +14437,6 @@ msgctxt ""
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "<emph>Beta</emph> es el parámetro Beta de la distribución Gamma."
-#. -m?(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16077,7 +14446,6 @@ msgctxt ""
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
msgstr "<emph>C</emph> (opcional) = 0 o Falso calcula la función de densidad. <emph>C</emph> = 1 o Verdadero calcula la distribución."
-#. jJ0a
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16087,7 +14455,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. 4b{e
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16097,7 +14464,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
msgstr "<item type=\"input\">=DISTR.GAMMA(2;1;1;1)</item> da 0,86."
-#. 5rf$
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16106,7 +14472,6 @@ msgctxt ""
msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
msgstr "<bookmark_value>GAUSS</bookmark_value> <bookmark_value>distribución normal; estándar</bookmark_value>"
-#. $L(l
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16116,7 +14481,6 @@ msgctxt ""
msgid "GAUSS"
msgstr "GAUSS"
-#. .jy2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16126,7 +14490,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Calcula la distribución normal predeterminada acumulativa.</ahelp>"
-#. K^FB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16135,7 +14498,6 @@ msgctxt ""
msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
msgstr "Es GAUSS(x)=NORMSDIST(x)-0.5"
-#. {,|R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16145,7 +14507,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. L;vg
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16155,7 +14516,6 @@ msgctxt ""
msgid "GAUSS(Number)"
msgstr "GAUSS(Número)"
-#. NdMF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16165,7 +14525,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
msgstr "<emph>Número</emph> es el valor para el que se calculará el valor de la distribución normal estándar."
-#. eVOK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16175,7 +14534,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. `:3d
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16185,7 +14543,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"
@@ -16195,7 +14552,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"
@@ -16204,7 +14560,6 @@ msgctxt ""
msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
msgstr "<bookmark_value>MEDIA.GEOM</bookmark_value> <bookmark_value>medias;geométricas</bookmark_value>"
-#. ]uCX
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16214,7 +14569,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr "MEDIA.GEOM"
-#. 78$b
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16224,7 +14578,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Calcula la media geométrica de una muestra.</ahelp>"
-#. 5K)d
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16234,7 +14587,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. |T_7
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16244,7 +14596,6 @@ msgctxt ""
msgid "GEOMEAN(Number1; Number2; ...Number30)"
msgstr "MEDIA.GEOM(Número1; Número2; ...; Número30)"
-#. ?`uK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16254,7 +14605,6 @@ msgctxt ""
msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
msgstr "<emph>Número1, Número2... Número30</emph> son argumentos o rangos numéricos que representan un ejemplo aleatorio."
-#. o/4;
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16264,7 +14614,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. Knm@
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16274,7 +14623,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\">=MEDIA.GEOM(23;46;69)</item> = 41,79. El valor de la media geométrica de este ejemplo aleatorio es, por tanto, 41,79."
-#. 0O;:
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16283,7 +14631,6 @@ msgctxt ""
msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
msgstr "<bookmark_value>MEDIA.ACOTADA</bookmark_value> <bookmark_value>medias;de grupo de datos sin datos de margen</bookmark_value>"
-#. =Mi#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16293,7 +14640,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr "MEDIA.ACOTADA"
-#. O81(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16303,7 +14649,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\">Calcula el promedio de un grupo de datos sin tener en cuenta el porcentaje alfa de los datos en los márgenes.</ahelp>"
-#. ~tqI
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16313,7 +14658,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. Xzuh
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16323,7 +14667,6 @@ msgctxt ""
msgid "TRIMMEAN(Data; Alpha)"
msgstr "MEDIA.ACOTADA(datos; alfa)"
-#. 0Dgd
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16333,7 +14676,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the array of data in the sample."
msgstr "<emph>Datos</emph> es la matriz de datos en la muestra."
-#. YoM8
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16343,7 +14685,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
msgstr "<emph>Alfa</emph> es el porcentaje de datos marginales que no se tendrán en cuenta."
-#. 7b4w
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16353,7 +14694,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. lkf+
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16363,7 +14703,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 "<item type=\"input\">=MEDIA.ACOTADA(A1:A50; 0,1)</item> calcula el promedio de los números en A1:A50, sin tener en cuenta el 5 por ciento de valores más bajos y el 5 por ciento de valores más altos. Los porcentajes se aplican a la cantidad del promedio no recortado, no a la cantidad de los sumandos."
-#. ^`=|
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16372,7 +14711,6 @@ msgctxt ""
msgid "<bookmark_value>ZTEST function</bookmark_value>"
msgstr "<bookmark_value>PRUEBA.Z</bookmark_value>"
-#. 6[)V
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16382,7 +14720,6 @@ msgctxt ""
msgid "ZTEST"
msgstr "PRUEBA.Z"
-#. A^R5
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16392,7 +14729,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\">Calcula la probabilidad de observar un estadístico z mayor que el calculado basado en una muestra.</ahelp>"
-#. -!Ho
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16402,7 +14738,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. ifNL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16412,7 +14747,6 @@ msgctxt ""
msgid "ZTEST(Data; mu; Sigma)"
msgstr "PRUEBA.Z(Datos; mu; Sigma)"
-#. OzKc
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16422,7 +14756,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr "<emph>Datos</emph> es la muestra indicada, extraida de una población distribuida en forma normal."
-#. [:%-
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16432,7 +14765,6 @@ msgctxt ""
msgid "<emph>mu</emph> is the known mean of the population."
msgstr "<emph>mu</emph> es la media conocida de la población."
-#. +*8(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16442,7 +14774,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 "<emph>Sigma</emph> (opcional) es la desviación estándar conocida de la población. Si se omite, se utiliza la desviación estándar de la muestra indicada."
-#. Z60f
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16451,7 +14782,6 @@ msgctxt ""
msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
msgstr "Consulte también la <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">página del wiki</link>."
-#. Hi(U
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16460,7 +14790,6 @@ msgctxt ""
msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
msgstr "<bookmark_value>MEDIA.ARMO</bookmark_value> <bookmark_value>medias;armónicas</bookmark_value>"
-#. b`un
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16470,7 +14799,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr "MEDIA.ARMO"
-#. (FYq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16480,7 +14808,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Calcula la media armonizada de un grupo de datos.</ahelp>"
-#. a7)A
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16490,7 +14817,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. p:b#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16500,7 +14826,6 @@ msgctxt ""
msgid "HARMEAN(Number1; Number2; ...Number30)"
msgstr "MEDIA.ARMO(Número1; Número2; ...; Número30)"
-#. N9Me
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16510,7 +14835,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 "<emph>Número1,Número2... Número30</emph> son hasta 30 valores o rangos que se pueden utilizar para calcular la media armónica."
-#. *~5k
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16520,7 +14844,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. H?sh
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16530,7 +14853,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\">=MEDIA.ARMO(23;46;69)</item> = 37,64. La media armónica de este ejemplo aleatorio es, por tanto, 37,64."
-#. ~Z/S
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16539,7 +14861,6 @@ msgctxt ""
msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
msgstr "<bookmark_value>DISTR.HIPERGEOM</bookmark_value> <bookmark_value>muestras sin reemplazo</bookmark_value>"
-#. }hbd
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16549,7 +14870,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr "DISTR.HIPERGEOM"
-#. .Jog
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16559,7 +14879,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Devuelve la distribución hipergeométrica.</ahelp>"
-#. Qlh-
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16569,7 +14888,6 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxis"
-#. LGDf
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16579,7 +14897,6 @@ msgctxt ""
msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgstr "DISTR.HIPERGEOM(X; EjemploN; Éxitos; PoblaciónN)"
-#. pgh*
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16589,7 +14906,6 @@ msgctxt ""
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "<emph>X</emph> es el número de resultados obtenidos en la muestra aleatoria."
-#. E!n%
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16599,7 +14915,6 @@ msgctxt ""
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "<emph>EjemploN</emph> es el tamaño del ejemplo aleatorio."
-#. \3gV
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16609,7 +14924,6 @@ msgctxt ""
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "<emph>Éxitos</emph> es el número de posibles resultados en la población total."
-#. \uMB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16619,7 +14933,6 @@ msgctxt ""
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "<emph>PoblaciónN</emph> es el tamaño de la población total."
-#. XC(S
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16629,7 +14942,6 @@ msgctxt ""
msgid "Example"
msgstr "Ejemplo"
-#. vT/2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16639,7 +14951,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 "<item type=\"input\">=DISTR.HIPERGEOM(2;2;90;100)</item> da 0,81. Si 90 de cada 100 piezas de tostadas con mantequilla que caen de una mesa caen sobre el suelo con la parte con mantequilla primero, entonces si se caen 2 tostadas con mantequilla de la mesa, la probabilidad de que ambas caigan con la parte con mantequilla primero es del 81%."
-#. W~BN